ObjectResponse

Properties

Name Type Description Notes
description str The human-readable description of the object [optional]
elements List[str] A flattened list of the content value of the object [optional]
issues IssuesDto [optional]
labels List[str] The labels for the object [optional]
name str The name of the object [optional]
object_version int The version of the unified object [optional]
read_only bool Indicates if the object is read-only [optional]
references_info_from_default_and_overrides List[ReferenceInfo] List of objects referenced in the default content or in any of the overrides. [optional]
tags Dict[str, List[str]] The tags for the object [optional]
targets List[Target] Set of targets that contain the object. A target can be, for example, a device, service, or a shared policy (Ruleset). [optional]
uid str The unique identifier of the object [optional]
value SharedObjectValue [optional]

Example

from scc_firewall_manager_sdk.models.object_response import ObjectResponse

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

# convert the object into a dict
object_response_dict = object_response_instance.to_dict()
# create an instance of ObjectResponse from a dict
object_response_form_dict = object_response.from_dict(object_response_dict)

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