FtdDeploymentInput

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]
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_deployment_input import FtdDeploymentInput

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

# convert the object into a dict
ftd_deployment_input_dict = ftd_deployment_input_instance.to_dict()
# create an instance of FtdDeploymentInput from a dict
ftd_deployment_input_form_dict = ftd_deployment_input.from_dict(ftd_deployment_input_dict)

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