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(if_exists: bool | None = None) None ΒΆ
Drop this network policy.
- Parameters:
if_exists (bool, optional) β Check the existence of this network policy before dropping it. Default is
None
, which is equivalent toFalse
.
Examples
Deleting a network policy using its reference:
>>> network_policy_reference.drop()
Deleting a network policy using its reference if it exists:
>>> network_policy_reference.drop(if_exists=True)
- 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)