DeviceManagerPatchInput

Properties

Name Type Description Notes
device_metadata DeviceMetadata [optional]
labels Labels [optional]
name str A human-readable name for the device manager. [optional]

Example

from scc_firewall_manager_sdk.models.device_manager_patch_input import DeviceManagerPatchInput

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

# convert the object into a dict
device_manager_patch_input_dict = device_manager_patch_input_instance.to_dict()
# create an instance of DeviceManagerPatchInput from a dict
device_manager_patch_input_form_dict = device_manager_patch_input.from_dict(device_manager_patch_input_dict)

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