snowflake.core.account¶
Manages Snowflake Accounts.
Example
>>> account_collection = root.accounts
>>> account = Account(
...     name="MY_ACCOUNT",
...     admin_name = "admin"
...     admin_password = 'TestPassword1'
...     first_name = "Jane"
...     last_name = "Smith"
...     email = 'myemail@myorg.org'
...     edition = "enterprise"
...     region = "aws_us_west_2"
...  )
>>> account_collection.create(account)
Refer to snowflake.core.Root to create the root.
Classes
| 
 | A model object representing the Account resource. | 
| 
 | Represents the collection operations of the Snowflake Account resource. | 
| 
 | Represents a reference to a Snowflake account. |