Specifies the policy for managing device updates, including when updates should be downloaded and applied.
| Name | Type | Description | Notes |
|---|---|---|---|
| download_schedule | UpdateSchedule | [optional] | |
| update_schedule | UpdateSchedule | [optional] |
from flightctl.models.device_update_policy_spec import DeviceUpdatePolicySpec
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceUpdatePolicySpec from a JSON string
device_update_policy_spec_instance = DeviceUpdatePolicySpec.from_json(json)
# print the JSON string representation of the object
print(DeviceUpdatePolicySpec.to_json())
# convert the object into a dict
device_update_policy_spec_dict = device_update_policy_spec_instance.to_dict()
# create an instance of DeviceUpdatePolicySpec from a dict
device_update_policy_spec_from_dict = DeviceUpdatePolicySpec.from_dict(device_update_policy_spec_dict)