BackupsApi
Method
HTTP request
Description
cluster_backups_get
Examples
require 'time'
require 'ionoscloud-dbaas-postgres'
# setup authorization
IonoscloudDbaasPostgres.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 = IonoscloudDbaasPostgres::BackupsApi.new
cluster_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
# List backups of cluster
result = api_instance.cluster_backups_get(cluster_id, opts)
p result
rescue IonoscloudDbaasPostgres::ApiError => e
puts "Error when calling BackupsApi->cluster_backups_get: #{e}"
endUsing the cluster_backups_get_with_http_info variant
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
clusters_backups_find_by_id
Examples
Using the clusters_backups_find_by_id_with_http_info variant
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
clusters_backups_get
Examples
Using the clusters_backups_get_with_http_info variant
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
Last updated
