UpdateRequest

Properties

Name Type Description Notes
description str The description of the object [optional]
ignore_duplicates bool Ignore duplicate issues on this object [optional]
ignore_unused_issues bool Ignore unused issues on this object [optional]
labels List[str] The labels for the object [optional]
name str The name of the object to update [optional]
tags Dict[str, List[str]] The tags for the object [optional]
value SharedObjectValue [optional]

Example

from scc_firewall_manager_sdk.models.update_request import UpdateRequest

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

# convert the object into a dict
update_request_dict = update_request_instance.to_dict()
# create an instance of UpdateRequest from a dict
update_request_form_dict = update_request.from_dict(update_request_dict)

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