Target¶
Set of targets that contain the object. A target can be, for example, a device, service, or a shared policy (Ruleset).
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| display_name | str | The display name of the target | [optional] |
| id | str | The ID of the target with which the object is associated. A target can be, for example, a device, service, or a shared policy (Ruleset). | [optional] |
| type | str | The target type | [optional] |
Example¶
from scc_firewall_manager_sdk.models.target import Target
# TODO update the JSON string below
json = "{}"
# create an instance of Target from a JSON string
target_instance = Target.from_json(json)
# print the JSON string representation of the object
print(Target.to_json())
# convert the object into a dict
target_dict = target_instance.to_dict()
# create an instance of Target from a dict
target_form_dict = target.from_dict(target_dict)