Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.79 KB

DeviceActionInput.md

File metadata and controls

35 lines (26 loc) · 1.79 KB

DeviceActionInput

Properties

Name Type Description Notes
deprovision_fast bool When type is `reinstall`, enabling fast deprovisioning will bypass full disk wiping. [optional]
force_delete bool May be required to perform actions under certain conditions [optional]
href str [optional]
ipxe_script_url str When type is `reinstall`, use this `ipxe_script_url` (`operating_system` must be `custom_ipxe`, defaults to the current `ipxe_script_url`) [optional]
operating_system str When type is `reinstall`, use this `operating_system` (defaults to the current `operating system`) [optional]
preserve_data bool When type is `reinstall`, preserve the existing data on all disks except the operating-system disk. [optional]
type str Action to perform. See Device.actions for possible actions.

Example

from equinix_metal.models.device_action_input import DeviceActionInput

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

# convert the object into a dict
device_action_input_dict = device_action_input_instance.to_dict()
# create an instance of DeviceActionInput from a dict
device_action_input_form_dict = device_action_input.from_dict(device_action_input_dict)

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