All URIs are relative to https://api.ionos.com/databases/mongodb
templates_get
templates_get(opts)
Get Templates
Retrieves a list of valid templates. These templates can be used to create MongoDB clusters; they contain properties, such as number of cores, RAM, and the storage size.
Examples
require'time'require'ionoscloud-dbaas-mongo'# setup authorizationIonoscloudDbaasMongo.configure do|config|# Configure HTTP basic authorization: basicAuth config.username ='YOUR USERNAME' config.password ='YOUR PASSWORD'# Configure API key authorization: tokenAuth config.api_key['Authorization'] ='YOUR API KEY'# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)# config.api_key_prefix['Authorization'] = 'Bearer'endapi_instance =IonoscloudDbaasMongo::TemplatesApi.newopts = { limit: 100,# Integer | The maximum number of elements to return. Use together with 'offset' for pagination. offset: 200# Integer | The first element to return. Use together with 'limit' for pagination.}begin# Get Templates result = api_instance.templates_get(opts)p resultrescueIonoscloudDbaasMongo::ApiError=> eputs"Error when calling TemplatesApi->templates_get: #{e}"end
Using the templates_get_with_http_info variant
This returns an Array which contains the response data, status code and headers.