delete_registry¶
Operation¶
delete_registry
async
¶
delete_registry(input: DeleteRegistryInput, plugins: list[Plugin] | None = None) -> DeleteRegistryOutput
Deletes a registry. The registry must contain zero records before it can be deleted. This operation initiates the deletion process asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
DeleteRegistryInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
DeleteRegistryOutput
|
An instance of |
Input¶
DeleteRegistryInput
dataclass
¶
Output¶
DeleteRegistryOutput
dataclass
¶
Dataclass for DeleteRegistryOutput structure.
Attributes¶
status
instance-attribute
¶
status: RegistryStatus
The current status of the registry, set to DELETING when deletion is
initiated. For a list of all possible registry statuses, see the
RegistryStatus data type.