MspManagedDevice

Properties

Name Type Description Notes
address str The address of the device, in <code>host:port</code> format. Security Cloud Control connects to the device at this address. [optional]
asa_failover_mate AsaFailoverMate [optional]
asa_failover_mode AsaFailoverMode [optional]
asa_failover_state str (High Availability ASAs only) Failover state of this device. [optional]
asdm_version str (ASAs only) Version of the ASDM device manager running on the device. [optional]
certificate_expiry_date datetime (ASAs and FDM-managed FTDs only) Expiration date of the certificate used on the management interface of the device. [optional]
chassis_serial str The serial number on the chassis of the device (ASA-only). This is typically used to type up to Cisco SmartNet, and is not the same as the serial number. [optional]
config_state ConfigState [optional]
conflict_detection_state ConflictDetectionState [optional]
connectivity_state ConnectivityState [optional]
connector_type ConnectorType [optional]
context_mode str The operating context mode of the ASA device. [optional]
device_maintenance_window DeviceMaintenanceWindow [optional]
device_record_on_fmc FmcDeviceRecord [optional]
device_roles List[DeviceRole] The roles that this device performs on the network. [optional]
device_type EntityType [optional]
firewall_mode str (ASAs only) The firewall operating mode of the device. [optional]
ftd_cluster_info FtdClusterInfo [optional]
ftd_ha_info FtdHaInfo [optional]
hardware_model str (ASAs, FDM-managed FTDs, and FMC-managed FTDs only) The hardware model of the device [optional]
labels Labels [optional]
managed_scc_organization_uid str The unique identifier, represented as a UUID, of the managed organization on Security Cloud Control that this device belongs to. [optional]
managed_tenant_display_name str The display name of the managed tenant in CDO. [optional]
managed_tenant_name str The name of the managed tenant in CDO. [optional]
managed_tenant_region str The region of the managed tenant in CDO. This is the region where the device is located. [optional]
managed_tenant_uid str The unique identifier, represented as a UUID, of the managed tenant in Security Cloud Control Firewall Manager that this device belongs to. [optional]
meraki_physical_devices List[MerakiPhysicalDevice] (Meraki devices only) The physical devices associated with the Meraki appliance. [optional]
model_number str The hardware, or virtualized hardware platform, that the device is running on (ASA-only). This field can be missing in the case of a partially onboarded device. [optional]
name str The name of the device in CDO. Device names are unique in Security Cloud Control.
ra_vpn_certificate_expiry_date datetime (Remote Access VPN headends — ASA, FDM-managed FTD, and cdFMC-managed FTD — only) Expiration date of the Secure Client certificate installed on the device. [optional]
redundancy_mode str The redundancy mode this firewall is running in. Note: for High Availability pairs and clusters, Security Cloud Control represents all of the devices as part of one record. [optional]
serial str The serial number of the device. This is typically used for licensing, and is not the same as the chassis' serial number. [optional]
software_version str The version of the software running on the device. [optional]
tenant_uid str [optional]
uid str The unique identifier, represented as a UUID, of the device in Security Cloud Control. [optional]

Example

from scc_firewall_manager_sdk.models.msp_managed_device import MspManagedDevice

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

# convert the object into a dict
msp_managed_device_dict = msp_managed_device_instance.to_dict()
# create an instance of MspManagedDevice from a dict
msp_managed_device_form_dict = msp_managed_device.from_dict(msp_managed_device_dict)

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