Sdc

Properties

Name Type Description Notes
bootstrap_data str The bootstrap data is information used to automatically configure the SDC during its initial setup. This data is base64 encoded and includes essential details like the unique registration token and customer-specific settings that enable the SDC to communicate with and send data to Security Cloud Control. This field is populated only if the SDC is not onboarded. [optional]
ip_address str The IP address of the SDC. [optional]
last_heartbeat datetime The time (UTC; represented using the RFC-3339 standard) that a heartbeat was last received from the SDC. This serves as an indicator of the health of the SDC. [optional]
name str The name of the SDC. SDC names are unique in Security Cloud Control.
public_key PublicKey [optional]
software_version str The software version running on the SDC. [optional]
status Status [optional]
uid str The unique identifier, represented as a UUID, of the SDC in Security Cloud Control. [optional]

Example

from scc_firewall_manager_sdk.models.sdc import Sdc

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

# convert the object into a dict
sdc_dict = sdc_instance.to_dict()
# create an instance of Sdc from a dict
sdc_form_dict = sdc.from_dict(sdc_dict)

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