snowflake.core.managed_account.ManagedAccountResource¶
- class snowflake.core.managed_account.ManagedAccountResource(name: str, collection: ManagedAccountCollection)¶
Bases:
ObjectReferenceMixin[ManagedAccountCollection]Represents a reference to a Snowflake managed account.
With this managed account reference, you can delete a managed account.
Attributes
- root¶
The Root object this reference belongs to.
Methods
- drop() None¶
Drop this managed account.
Examples
Deleting a warehouse using its reference:
>>> managed_account_reference.drop()
- drop_async() PollingOperation[None]¶
An asynchronous version of
drop().Refer to
PollingOperationfor more information on asynchronous execution and the return type.