MspManagedCloudService

Properties

Name Type Description Notes
address str The address of the cloud service (if applicable), in <code>host:port</code> format. Security Cloud Control connects to the cloud service at this address. [optional]
cloud_service_type EntityType [optional]
config_state ConfigState [optional]
conflict_detection_state ConflictDetectionState [optional]
connectivity_state ConnectivityState [optional]
managed_scc_organization_uid str The unique identifier, represented as a UUID, of the managed organization on Security Cloud Control that this cloud service 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 cloud service 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 cloud service belongs to. [optional]
name str The name of the cloud service in CDO. Cloud service names are unique in Security Cloud Control.
tenant_uid str [optional]
uid str The unique identifier, represented as a UUID, of the cloud service in Security Cloud Control. [optional]

Example

from scc_firewall_manager_sdk.models.msp_managed_cloud_service import MspManagedCloudService

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

# convert the object into a dict
msp_managed_cloud_service_dict = msp_managed_cloud_service_instance.to_dict()
# create an instance of MspManagedCloudService from a dict
msp_managed_cloud_service_form_dict = msp_managed_cloud_service.from_dict(msp_managed_cloud_service_dict)

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