ClustersApi
All URIs are relative to https://api.ionos.com/databases/mongodb
clusters_delete
clusters_delete(cluster_id)
Delete a Cluster
Deletes a MongoDB cluster.
Examples
require 'time'
require 'ionoscloud-dbaas-mongo'
# setup authorization
IonoscloudDbaasMongo.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'
end
api_instance = IonoscloudDbaasMongo::ClustersApi.new
cluster_id = 'cluster_id_example' # String | The unique ID of the cluster.
begin
# Delete a Cluster
result = api_instance.clusters_delete(cluster_id)
p result
rescue IonoscloudDbaasMongo::ApiError => e
puts "Error when calling ClustersApi->clusters_delete: #{e}"
endUsing the clusters_delete_with_http_info variant
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> clusters_delete_with_http_info(cluster_id)
Parameters
cluster_id
String
The unique ID of the cluster.
Return type
Authorization
basicAuth, tokenAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
clusters_find_by_id
clusters_find_by_id(cluster_id)
Get a cluster by id
Get a cluster by id.
Examples
Using the clusters_find_by_id_with_http_info variant
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> clusters_find_by_id_with_http_info(cluster_id)
Parameters
cluster_id
String
The unique ID of the cluster.
Return type
Authorization
basicAuth, tokenAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
clusters_get
clusters_get(opts)
Get Clusters
Retrieves a list of MongoDB clusters.
Examples
Using the clusters_get_with_http_info variant
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> clusters_get_with_http_info(opts)
Parameters
limit
Integer
The maximum number of elements to return. Use together with 'offset' for pagination.
[optional][default to 100]
offset
Integer
The first element to return. Use together with 'limit' for pagination.
[optional][default to 0]
filter_name
String
Response filter to list only the MongoDB clusters that contain the specified name. The value is case insensitive and matched on the 'displayName' field.
[optional]
Return type
Authorization
basicAuth, tokenAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
clusters_patch
clusters_patch(cluster_id, patch_cluster_request)
Patch a cluster
Patch attributes of a MongoDB cluster.
Examples
Using the clusters_patch_with_http_info variant
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> clusters_patch_with_http_info(cluster_id, patch_cluster_request)
Parameters
cluster_id
String
The unique ID of the cluster.
Return type
Authorization
basicAuth, tokenAuth
HTTP request headers
Content-Type: application/json
Accept: application/json
clusters_post
clusters_post(create_cluster_request)
Create a Cluster
Creates a new MongoDB cluster.
Examples
Using the clusters_post_with_http_info variant
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> clusters_post_with_http_info(create_cluster_request)
Parameters
Return type
Authorization
basicAuth, tokenAuth
HTTP request headers
Content-Type: application/json
Accept: application/json
Last updated
