All URIs are relative to https://api.ionos.com/databases/mongodb
Method
HTTP request
Description
clusters_users_delete
clusters_users_delete(cluster_id, username)
Delete a MongoDB User by ID
Deletes a MongoDB user specified by its ID.
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::UsersApi.newcluster_id ='cluster_id_example'# String | The unique ID of the cluster.username ='username_example'# String | The authentication username.begin# Delete a MongoDB User by ID result = api_instance.clusters_users_delete(cluster_id, username)p resultrescueIonoscloudDbaasMongo::ApiError=> eputs"Error when calling UsersApi->clusters_users_delete: #{e}"end
Using the clusters_users_delete_with_http_info variant
This returns an Array which contains the response data, status code and headers.
Retrieves the MongoDB user identified by the username.
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::UsersApi.newcluster_id ='cluster_id_example'# String | The unique ID of the cluster.username ='username_example'# String | The authentication username.begin# Get a MongoDB User by ID result = api_instance.clusters_users_find_by_id(cluster_id, username)p resultrescueIonoscloudDbaasMongo::ApiError=> eputs"Error when calling UsersApi->clusters_users_find_by_id: #{e}"end
Using the clusters_users_find_by_id_with_http_info variant
This returns an Array which contains the response data, status code and headers.
begin# Get a MongoDB User by ID data, status_code, headers = api_instance.clusters_users_find_by_id_with_http_info(cluster_id, username)p status_code # => 2xxp headers # => { ... }p data # => <User>rescueIonoscloudDbaasMongo::ApiError=> eputs"Error when calling UsersApi->clusters_users_find_by_id_with_http_info: #{e}"end
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::UsersApi.newcluster_id ='cluster_id_example'# String | The unique ID of the cluster.opts = { 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 all Cluster Users result = api_instance.clusters_users_get(cluster_id, opts)p resultrescueIonoscloudDbaasMongo::ApiError=> eputs"Error when calling UsersApi->clusters_users_get: #{e}"end
Using the clusters_users_get_with_http_info variant
This returns an Array which contains the response data, status code and headers.
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::UsersApi.newcluster_id ='cluster_id_example'# String | The unique ID of the cluster.username ='username_example'# String | The authentication username.patch_user_request = IonoscloudDbaasMongo::PatchUserRequest.new # PatchUserRequest | Part of the MongoDB user which should be modified.
begin# Patch a MongoDB User by ID result = api_instance.clusters_users_patch(cluster_id, username, patch_user_request)p resultrescueIonoscloudDbaasMongo::ApiError=> eputs"Error when calling UsersApi->clusters_users_patch: #{e}"end
Using the clusters_users_patch_with_http_info variant
This returns an Array which contains the response data, status code and headers.
begin# Patch a MongoDB User by ID data, status_code, headers = api_instance.clusters_users_patch_with_http_info(cluster_id, username, patch_user_request)
p status_code # => 2xxp headers # => { ... }p data # => <User>rescueIonoscloudDbaasMongo::ApiError=> eputs"Error when calling UsersApi->clusters_users_patch_with_http_info: #{e}"end
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::UsersApi.newcluster_id ='cluster_id_example'# String | The unique ID of the cluster.user =IonoscloudDbaasMongo::User.new# User | The user to be created.begin# Create MongoDB User result = api_instance.clusters_users_post(cluster_id, user)p resultrescueIonoscloudDbaasMongo::ApiError=> eputs"Error when calling UsersApi->clusters_users_post: #{e}"end
Using the clusters_users_post_with_http_info variant
This returns an Array which contains the response data, status code and headers.