Create a snapshot of the specified volume within the data center; this snapshot can later be used to restore this volume.
Example
from __future__ import print_functionimport timeimport ionoscloudfrom ionoscloud.rest import ApiException# Defining the host is optional and defaults to https://api.ionos.com/cloudapi/v6configuration = ionoscloud.Configuration(host='https://api.ionos.com/cloudapi/v6',)# Example of configuring HTTP Basic Authorizationconfiguration.username ='YOUR_USERNAME'configuration.password ='YOUR_PASSWORD'with ionoscloud.ApiClient(configuration)as api_client:# Create an instance of the API class api_instance = ionoscloud.VolumesApi(api_client) datacenter_id ='datacenter_id_example'# str | The unique ID of the data center. volume_id ='volume_id_example'# str | The unique ID of the volume.try:# Create volume snapshots api_response = api_instance.datacenters_volumes_create_snapshot_post(datacenter_id, volume_id)print(api_response)except ApiException as e:print('Exception when calling VolumesApi.datacenters_volumes_create_snapshot_post: %s\n'% e)
Parameters
Name
Type
Description
Notes
datacenter_id
str
The unique ID of the data center.
volume_id
str
The unique ID of the volume.
pretty
bool
Controls whether the response is pretty-printed (with indentations and new lines).
[optional] [default to True]
depth
int
Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on
[optional] [default to 0]
x_contract_number
int
Users with multiple contracts must provide the contract number, for which all API requests are to be executed.
[optional]
name
str
Snapshot name
[optional]
description
str
Snapshot description
[optional]
sec_auth_protection
bool
Flag for enabling extra protection for this snapshot, such as two-step verification.
Delete the specified volume within the data center. Use with caution, the volume will be permanently removed!
Example
Parameters
Name
Type
Description
Notes
datacenter_id
str
The unique ID of the data center.
volume_id
str
The unique ID of the volume.
pretty
bool
Controls whether the response is pretty-printed (with indentations and new lines).
[optional] [default to True]
depth
int
Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on
[optional] [default to 0]
x_contract_number
int
Users with multiple contracts must provide the contract number, for which all API requests are to be executed.
Retrieve the properties of the specified volume within the data center.
Example
Parameters
Name
Type
Description
Notes
datacenter_id
str
The unique ID of the data center.
volume_id
str
The unique ID of the volume.
pretty
bool
Controls whether the response is pretty-printed (with indentations and new lines).
[optional] [default to True]
depth
int
Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on
[optional] [default to 0]
x_contract_number
int
Users with multiple contracts must provide the contract number, for which all API requests are to be executed.
Controls whether the response is pretty-printed (with indentations and new lines).
[optional] [default to True]
depth
int
Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on
[optional] [default to 0]
x_contract_number
int
Users with multiple contracts must provide the contract number, for which all API requests are to be executed.
[optional]
offset
int
The first element (from the complete list of the elements) to include in the response (used together with <b><i>limit</i></b> for pagination).
[optional] [default to 0]
limit
int
The maximum number of elements to return (use together with offset for pagination).
Controls whether the response is pretty-printed (with indentations and new lines).
[optional] [default to True]
depth
int
Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on
[optional] [default to 0]
x_contract_number
int
Users with multiple contracts must provide the contract number, for which all API requests are to be executed.
Controls whether the response is pretty-printed (with indentations and new lines).
[optional] [default to True]
depth
int
Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on
[optional] [default to 0]
x_contract_number
int
Users with multiple contracts must provide the contract number, for which all API requests are to be executed.
Controls whether the response is pretty-printed (with indentations and new lines).
[optional] [default to True]
depth
int
Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on
[optional] [default to 0]
x_contract_number
int
Users with multiple contracts must provide the contract number, for which all API requests are to be executed.
Restore a snapshot for the specified volume within the data center. A snapshot is an image of a volume, which can be used to restore this volume at a later time.
Example
Parameters
Name
Type
Description
Notes
datacenter_id
str
The unique ID of the data center.
volume_id
str
The unique ID of the volume.
pretty
bool
Controls whether the response is pretty-printed (with indentations and new lines).
[optional] [default to True]
depth
int
Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on
[optional] [default to 0]
x_contract_number
int
Users with multiple contracts must provide the contract number, for which all API requests are to be executed.
from __future__ import print_function
import time
import ionoscloud
from ionoscloud.rest import ApiException
# Defining the host is optional and defaults to https://api.ionos.com/cloudapi/v6
configuration = ionoscloud.Configuration(
host = 'https://api.ionos.com/cloudapi/v6',
)
# Example of configuring HTTP Basic Authorization
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
with ionoscloud.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ionoscloud.VolumesApi(api_client)
datacenter_id = 'datacenter_id_example' # str | The unique ID of the data center.
volume_id = 'volume_id_example' # str | The unique ID of the volume.
try:
# Delete volumes
api_instance.datacenters_volumes_delete(datacenter_id, volume_id)
except ApiException as e:
print('Exception when calling VolumesApi.datacenters_volumes_delete: %s\n' % e)
from __future__ import print_function
import time
import ionoscloud
from ionoscloud.rest import ApiException
# Defining the host is optional and defaults to https://api.ionos.com/cloudapi/v6
configuration = ionoscloud.Configuration(
host = 'https://api.ionos.com/cloudapi/v6',
)
# Example of configuring HTTP Basic Authorization
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
with ionoscloud.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ionoscloud.VolumesApi(api_client)
datacenter_id = 'datacenter_id_example' # str | The unique ID of the data center.
volume_id = 'volume_id_example' # str | The unique ID of the volume.
try:
# Retrieve volumes
api_response = api_instance.datacenters_volumes_find_by_id(datacenter_id, volume_id)
print(api_response)
except ApiException as e:
print('Exception when calling VolumesApi.datacenters_volumes_find_by_id: %s\n' % e)
from __future__ import print_function
import time
import ionoscloud
from ionoscloud.rest import ApiException
# Defining the host is optional and defaults to https://api.ionos.com/cloudapi/v6
configuration = ionoscloud.Configuration(
host = 'https://api.ionos.com/cloudapi/v6',
)
# Example of configuring HTTP Basic Authorization
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
with ionoscloud.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ionoscloud.VolumesApi(api_client)
datacenter_id = 'datacenter_id_example' # str | The unique ID of the data center.
try:
# List volumes
api_response = api_instance.datacenters_volumes_get(datacenter_id)
print(api_response)
except ApiException as e:
print('Exception when calling VolumesApi.datacenters_volumes_get: %s\n' % e)
from __future__ import print_function
import time
import ionoscloud
from ionoscloud.rest import ApiException
# Defining the host is optional and defaults to https://api.ionos.com/cloudapi/v6
configuration = ionoscloud.Configuration(
host = 'https://api.ionos.com/cloudapi/v6',
)
# Example of configuring HTTP Basic Authorization
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
with ionoscloud.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ionoscloud.VolumesApi(api_client)
datacenter_id = 'datacenter_id_example' # str | The unique ID of the data center.
volume_id = 'volume_id_example' # str | The unique ID of the volume.
volume = ionoscloud.VolumeProperties() # VolumeProperties | The properties of the volume to be updated.
try:
# Partially modify volumes
api_response = api_instance.datacenters_volumes_patch(datacenter_id, volume_id, volume)
print(api_response)
except ApiException as e:
print('Exception when calling VolumesApi.datacenters_volumes_patch: %s\n' % e)
from __future__ import print_function
import time
import ionoscloud
from ionoscloud.rest import ApiException
# Defining the host is optional and defaults to https://api.ionos.com/cloudapi/v6
configuration = ionoscloud.Configuration(
host = 'https://api.ionos.com/cloudapi/v6',
)
# Example of configuring HTTP Basic Authorization
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
with ionoscloud.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ionoscloud.VolumesApi(api_client)
datacenter_id = 'datacenter_id_example' # str | The unique ID of the data center.
volume = ionoscloud.Volume() # Volume | The volume to create.
try:
# Create a Volume
api_response = api_instance.datacenters_volumes_post(datacenter_id, volume)
print(api_response)
except ApiException as e:
print('Exception when calling VolumesApi.datacenters_volumes_post: %s\n' % e)
from __future__ import print_function
import time
import ionoscloud
from ionoscloud.rest import ApiException
# Defining the host is optional and defaults to https://api.ionos.com/cloudapi/v6
configuration = ionoscloud.Configuration(
host = 'https://api.ionos.com/cloudapi/v6',
)
# Example of configuring HTTP Basic Authorization
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
with ionoscloud.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ionoscloud.VolumesApi(api_client)
datacenter_id = 'datacenter_id_example' # str | The unique ID of the data center.
volume_id = 'volume_id_example' # str | The unique ID of the volume.
volume = ionoscloud.Volume() # Volume | The modified volume
try:
# Modify a Volume by ID
api_response = api_instance.datacenters_volumes_put(datacenter_id, volume_id, volume)
print(api_response)
except ApiException as e:
print('Exception when calling VolumesApi.datacenters_volumes_put: %s\n' % e)
from __future__ import print_function
import time
import ionoscloud
from ionoscloud.rest import ApiException
# Defining the host is optional and defaults to https://api.ionos.com/cloudapi/v6
configuration = ionoscloud.Configuration(
host = 'https://api.ionos.com/cloudapi/v6',
)
# Example of configuring HTTP Basic Authorization
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
with ionoscloud.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ionoscloud.VolumesApi(api_client)
datacenter_id = 'datacenter_id_example' # str | The unique ID of the data center.
volume_id = 'volume_id_example' # str | The unique ID of the volume.
try:
# Restore volume snapshots
api_instance.datacenters_volumes_restore_snapshot_post(datacenter_id, volume_id)
except ApiException as e:
print('Exception when calling VolumesApi.datacenters_volumes_restore_snapshot_post: %s\n' % e)