RegistriesApi
RegistriesApi
Method
HTTP request
Description
registries_delete
Example
from __future__ import print_function
import time
import ionoscloud_container_registry
from ionoscloud_container_registry.rest import ApiException
# Defining the host is optional and defaults to https://api.ionos.com/containerregistries
configuration = ionoscloud_container_registry.Configuration(
host = 'https://api.ionos.com/containerregistries',
)
# Example of configuring HTTP Basic Authorization
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
with ionoscloud_container_registry.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ionoscloud_container_registry.RegistriesApi(api_client)
registry_id = 'registry_id_example' # str | The unique ID of the registry
try:
# Delete registry
api_instance.registries_delete(registry_id)
except ApiException as e:
print('Exception when calling RegistriesApi.registries_delete: %s\n' % e)Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
registries_find_by_id
Example
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
registries_get
Example
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
registries_patch
Example
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
registries_post
Example
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
registries_put
Example
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
Last updated
