DevicesPatchInput

Properties

Name Type Description Notes
device_uids List[str] A set of device UIDs to bulk update. [optional]
maintenance_window_duration_minutes int Duration of the maintenance window in minutes. [optional]
maintenance_window_start_cron str CRON expression defining the scheduled start time of the maintenance window in format: Minute, Hour, Day of Month, Month, Day of Week. [optional]
opted_in_to_asa_health_metrics bool Specify whether to enable or disable health metrics collection (SDC-managed ASA devices only). [optional]

Example

from scc_firewall_manager_sdk.models.devices_patch_input import DevicesPatchInput

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

# convert the object into a dict
devices_patch_input_dict = devices_patch_input_instance.to_dict()
# create an instance of DevicesPatchInput from a dict
devices_patch_input_form_dict = devices_patch_input.from_dict(devices_patch_input_dict)

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