Device

Properties

Name Type Description Notes
address str The address of the device, in `host:port` 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]
asa_license_entitlements Dict[str, str] (ASAs only) Map of ASA License entitlements. [optional]
asdm_version str (ASAs only) Version of the ASDM device manager running on the device. [optional]
cd_fmc_info CdFmcInfo [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]
compliance_status str Indicates whether the license used on the device is currently compliant with Smart Licensing restrictions. [optional]
config_state ConfigState [optional]
conflict_detection_state ConflictDetectionState [optional]
connectivity_state ConnectivityState [optional]
connector_type ConnectorType [optional]
connector_uid str The unique identifier, represented as a UUID, 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)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]
context_mode str The operating context mode of the ASA device. [optional]
dedicated_cd_fmc_instance bool Indicates whether the tenant's provisioned cdFMC instance is dedicated rather than shared. [optional]
device_maintenance_window DeviceMaintenanceWindow [optional]
device_metadata DeviceMetadata [optional]
device_record_on_fmc FmcDeviceRecord [optional]
device_role DeviceRole [optional]
device_roles List[DeviceRole] The roles that this device performs on the network. [optional]
device_type EntityType
edge_ftd_registration_info EdgeFtdRegistrationInfo [optional]
firewall_mode str (ASAs only) The firewall operating mode of the device. [optional]
fmc_access_policy FmcAccessPolicyReference [optional]
fmc_domain_uid str (FMC device managers only) The unique identifier, represented as a UUID, of the FMC domain. [optional]
ftd_cluster_info FtdClusterInfo [optional]
ftd_ha_info FtdHaInfo [optional]
ftd_licenses List[str] (FTDs only) List of FTD License entitlements. [optional]
ftd_performance_tier str (FTDvs only) The FTDv supports performance-tiered licensing that provides different throughput levels and VPN connection limits based on deployment requirements. This field specifies the performance tier of the FTD. [optional]
geo_db_version str (FMC device managers only) The version of the Cisco geolocation database (GeoDB). [optional]
hardware_model str (ASAs, FDM-managed FTDs, and FMC-managed FTDs only) The hardware model of the device [optional]
labels Labels [optional]
license_status str The license status of the device. [optional]
meraki_deployment_mode MerakiDeploymentMode [optional]
meraki_network Network [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. Device names are unique in Security Cloud Control.
notes str Free-form notes on the device. [optional]
on_prem_fmc_info OnPremFmcInfo [optional]
opted_in_to_asa_health_metrics bool Indicates whether the device has been opted in to collect ASA health metrics (SDC-managed ASAs only). [optional]
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]
snort_version str (FTDs only) List of FTD License entitlements. [optional]
software_version str The version of the software running on the device. [optional]
sru_version str (FMC device managers only) The version of the Intrusion Rules database on the FMC. [optional]
sse_device_data SseDeviceData [optional]
state str The device state. [optional]
state_machine_details StateMachineDetails [optional]
uid str The unique identifier, represented as a UUID, of the device in Security Cloud Control. [optional]
uid_on_fmc str (FMC-managed FTDs only) The unique identifier, represented as a UUID, of the device on a cdFMC. This field is deprecated. Please see `deviceRecordOnFmc`. [optional]
universal_ztna_settings UniversalZtnaSettings [optional]
vdb_version str (FMC device managers only) The version of the Cisco vulnerability database (VDB) on the FMC. [optional]
ztp_onboarding_job_id str The unique identifier, represented as a UUID, for an internal job that orchestrates the onboarding of devices through Zero-Touch Provisioning. This applies to devices managed by both on-premises and Cloud-delivered FMC. [optional]

Example

from scc_firewall_manager_sdk.models.device import Device

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

# convert the object into a dict
device_dict = device_instance.to_dict()
# create an instance of Device from a dict
device_form_dict = device.from_dict(device_dict)

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