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()
- 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)