Override¶
The list of target overrides for the object. Each override the default content for its target.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| content | ObjectContent | ||
| target_id | str | The ID of the target. A target can be, for example, a device, service, or a shared policy (Ruleset). | [optional] |
Example¶
from scc_firewall_manager_sdk.models.override import Override
# TODO update the JSON string below
json = "{}"
# create an instance of Override from a JSON string
override_instance = Override.from_json(json)
# print the JSON string representation of the object
print(Override.to_json())
# convert the object into a dict
override_dict = override_instance.to_dict()
# create an instance of Override from a dict
override_form_dict = override.from_dict(override_dict)