snowflake.core.managed_accountΒΆ

Manages Snowflake ManagedAccounts.

Example

>>> managed_account_collection = root.managed_accounts
>>> managed_account = ManagedAccount(
...     name="managed_account_name",
...     admin_name = "admin"
...     admin_password = 'TestPassword1'
...     account_type = "READER"
...  )
>>> managed_account_collection.create(managed_account)
Copy

Refer to snowflake.core.Root to create the root.

Classes

ManagedAccount(name, admin_name, admin_password)

A model object representing the ManagedAccount resource.

ManagedAccountCollection(root)

Represents the collection operations of the Snowflake ManagedAccount resource.

ManagedAccountResource(name, collection)

A reference to a ManagedAccount in Snowflake.