snowflake.core.network_policy.NetworkPolicyResourceΒΆ

class snowflake.core.network_policy.NetworkPolicyResource(name: Annotated[str, Strict(strict=True)], collection: NetworkPolicyCollection)ΒΆ

Bases: ObjectReferenceMixin[NetworkPolicyCollection]

Represents a reference to a Snowflake Network Policy resource.

With this network policy reference, you can create, update, and fetch information about network policies, as well as perform certain actions on them.

Attributes

rootΒΆ

Methods

drop() β†’ NoneΒΆ

Drop this network policy.

Examples

Deleting a network policy using its reference:

>>> network_policy_reference.drop()
Copy
fetch() β†’ NetworkPolicyΒΆ

Fetch the details of a network policy.

Examples

Fetching a network policy reference to print its time of creation:

>>> print(network_policy_reference.fetch().created_on)
Copy