Policy

Results from the Security Cloud Control policies that match the search term.

Properties

Name Type Description Notes
name str The name of the policy in Security Cloud Control. [optional]
uid str The unique identifier, represented as a UUID, of the policy in Security Cloud Control. [optional]

Example

from scc_firewall_manager_sdk.models.policy import Policy

# TODO update the JSON string below
json = "{}"
# create an instance of Policy from a JSON string
policy_instance = Policy.from_json(json)
# print the JSON string representation of the object
print(Policy.to_json())

# convert the object into a dict
policy_dict = policy_instance.to_dict()
# create an instance of Policy from a dict
policy_form_dict = policy.from_dict(policy_dict)

[Back to Model list] [Back to API list] [Back to README]