FtdMultiDeviceDeploymentInput

Properties

Name Type Description Notes
deployment_notes str Specify notes, if any, for the deployment. [optional]
description str Specify a human-readable description for the deployment. [optional]
device_uids List[str] Deprecated. Use `devices` instead. The set of unique identifiers, represented as UUIDs, of the devices to deploy in Security Cloud Control. [optional]
devices List[FtdSingleDeviceDeploymentInput] Per-device deployment configuration. Cannot be combined with the deprecated `deviceUids` field. Each entry identifies a device and optionally selects which policy types to deploy. Set `selectedPolicyTypes` to null or include FULL_DEPLOY to perform a full deployment for that device. Each entry must have a unique uid. [optional]
effective_device_uids List[str] [optional]
ignore_warnings bool Specify whether to ignore warnings generated during the pre-validation of the deployment job and proceed with the deployment regardless. Warning: Do not set this to `true` unless you know what you are doing. [optional] [default to False]

Example

from scc_firewall_manager_sdk.models.ftd_multi_device_deployment_input import FtdMultiDeviceDeploymentInput

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

# convert the object into a dict
ftd_multi_device_deployment_input_dict = ftd_multi_device_deployment_input_instance.to_dict()
# create an instance of FtdMultiDeviceDeploymentInput from a dict
ftd_multi_device_deployment_input_form_dict = ftd_multi_device_deployment_input.from_dict(ftd_multi_device_deployment_input_dict)

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