snowflake.core.user

Manages Snowflake Users.

Example

>>> user = User("test_user")
>>> created_user = root.users.create(user)
>>> root.users["test_user"].fetch()
>>> root.users["test_user"].delete()
Copy

Classes

User(name[, password, login_name, ...])

UserCollection(root)

Represents the collection operations on the Snowflake User resource.

UserResource(name, collection)