Cloud Connect Configuration
This is the global API to configure Cloud Connect settings.
URL
https://<server>/unifiedconfig/config/cloudconnectsettingsOperations
- Get:
Gets the current configuration information from the cloud connect.
- Put:
Updates the configuration information to cloud connect.
Parameters
-
proxyAddress: IP address or hostname of the proxy server that is used by Cloud Connect Publisher.
-
subscriberProxyAddress: IP address or hostname of the proxy server that is used by Cloud Connect Subscriber.
-
registrationStatus: Read-only field that displays the Cloud Connect registration status of Control Hub.
-
publisherHost: A readonly field that returns the hostname of the Cloud Connect Publisher machine.
-
subscriberHost: A readonly field that returns the hostname of the Cloud Connect Subscriber machine.
-
lastUpdatedTimestamp: Timestamp of the last successful proxy update operation. The latest value for this field must be supplied during PUT operation.
-
warnings: Warnings returned from the unifiedconfig service in response to GET / PUT operations. It may return one or both of the following warnings:
-
cce.cdn.cloudConnectNotUpgraded: This warning indicates that the Cloud Connect machines are of an older version that do not support separate proxy configuration for Publisher and Subscriber. In this case, the contents of subscriberProxyAddress field will be disregarded.
-
ccmgmtServiceDownErrorMsg: This warning indicates that the configuration service on the Cloud Connect servers are not reachable. This means that the response returned for the GET operation might be outdated.
-
Example Get Response
{
"lastUpdatedTimestamp": 1768335193101,
"proxyAddress": "http://proxy.example.com:80",
"registrationStatus": "Registered",
"subscriberProxyAddress": "http://proxy.example.com:80",
"publisherHost": "ccPublisher.example.com",
"subscriberHost": "ccSubscriber.example.com",
"warnings": ["cce.cdn.cloudConnectNotUpgraded", "ccmgmtServiceDownErrorMsg"]
}