CliCommandInput

Properties

Name Type Description Notes
device_uids List[str] List of UIDs of the devices to execute the CLI script for.
polling_interval str Optional polling interval for checking CLI command completion in ISO 8601 duration format. Minimum is 500 milliseconds. Maximum is 2 minutes. Defaults to 500 milliseconds if not provided. [optional]
polling_timeout str Optional timeout for polling the CLI command completion in ISO 8601 duration format. Minimum is 60 seconds. Maximum is 60 minutes. Defaults to 60 seconds if not provided. [optional]
script str The script executed to generate the CLI result.

Example

from scc_firewall_manager_sdk.models.cli_command_input import CliCommandInput

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

# convert the object into a dict
cli_command_input_dict = cli_command_input_instance.to_dict()
# create an instance of CliCommandInput from a dict
cli_command_input_form_dict = cli_command_input.from_dict(cli_command_input_dict)

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