CdFmcInfo

(FTDs managed by cdFMC only) Information on the cloud-delivered FMC managing this FTD. This information is not available for FTDs managed using FDM or on-prem FMCs.

Properties

Name Type Description Notes
cli_key str The CLI key to paste into the FTD CLI to register the FTD with a cdFMC. You need to paste this value in only once, when the FTD is being onboarded. Refer to the Security Cloud Control Documentation for details. [optional]
link str The endpoint to access this resource from. [optional]
nat_id str The Registration Key of this FTD. Refer to the Security Cloud Control Documentation for details. [optional]
reg_key str The Network Address Translation (NAT) ID of this FTD. Refer to the Security Cloud Control Documentation for details. [optional]
uid str The unique identifier, represented as a UUID, of the cdFMC that manages this device. [optional]

Example

from scc_firewall_manager_sdk.models.cd_fmc_info import CdFmcInfo

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

# convert the object into a dict
cd_fmc_info_dict = cd_fmc_info_instance.to_dict()
# create an instance of CdFmcInfo from a dict
cd_fmc_info_form_dict = cd_fmc_info.from_dict(cd_fmc_info_dict)

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