Properties
| Name |
Type |
Description |
Notes |
| connector_name |
str |
The name of the Secure Device Connector (SDC) that will be used to communicate with the device. This value is not required if the connector type selected is Cloud Connector (CDG). |
[optional] |
| connector_type |
ConnectorType |
|
|
| device_address |
str |
The address of the device to onboard, specified in the format `host:port` for IPv4 or `[host]:port` for IPv6. |
[optional] |
| ignore_certificate |
bool |
Set this attribute to true if you do not want Security Cloud Control to validate the certificate of this device before onboarding. |
[optional] [default to False] |
| labels |
Labels |
|
[optional] |
| name |
str |
A human-readable name for the device. |
|
| password |
str |
The password used to authenticate with the device. |
|
| username |
str |
The username used to authenticate with the device. |
|
Example
from scc_firewall_manager_sdk.models.asa_create_or_update_input import AsaCreateOrUpdateInput
# TODO update the JSON string below
json = "{}"
# create an instance of AsaCreateOrUpdateInput from a JSON string
asa_create_or_update_input_instance = AsaCreateOrUpdateInput.from_json(json)
# print the JSON string representation of the object
print(AsaCreateOrUpdateInput.to_json())
# convert the object into a dict
asa_create_or_update_input_dict = asa_create_or_update_input_instance.to_dict()
# create an instance of AsaCreateOrUpdateInput from a dict
asa_create_or_update_input_form_dict = asa_create_or_update_input.from_dict(asa_create_or_update_input_dict)
[Back to Model list] [Back to API list] [Back to README]