AsaMultiDeviceDeploymentInput

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] The set of unique identifiers, represented as UUIDs, of the ASA devices to deploy in Security Cloud Control.
force_deploy_unsupported_commands bool Force-deploy changes that cannot be applied incrementally. When false (the default), these changes are skipped and the rest of the deployment proceeds. When true, SCC Firewall Manager applies the full configuration to the device to deploy them. Warning: applying the full configuration drops all active connections to the device. Enable this only when you intend to accept that disruption. [optional]

Example

from scc_firewall_manager_sdk.models.asa_multi_device_deployment_input import AsaMultiDeviceDeploymentInput

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

# convert the object into a dict
asa_multi_device_deployment_input_dict = asa_multi_device_deployment_input_instance.to_dict()
# create an instance of AsaMultiDeviceDeploymentInput from a dict
asa_multi_device_deployment_input_form_dict = asa_multi_device_deployment_input.from_dict(asa_multi_device_deployment_input_dict)

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