This object contains enough information for a Workload cluster to connect to an SDX cluster. This object contains no secrets.
| name | data type | description | 
|---|---|---|
| endPointId | string | A string to uniquely identify the SDX cluster. | 
| endPoints | array of ApiEndPoint | List of endPoints exported by this SDX cluster. | 
| configs | array of ApiMapEntry | SDX cluster specifc options. | 
| clusterVersion | string | Cluster version | 
Example
{
  "endPointId" : "...",
  "endPoints" : [ {
    "name" : "...",
    "version" : "...",
    "serviceConfigs" : [ {
      "key" : "...",
      "value" : "..."
    }, {
      "key" : "...",
      "value" : "..."
    } ],
    "endPointHostList" : [ {
      "uri" : "...",
      "endPointConfigs" : [ { }, { } ],
      "type" : "..."
    }, {
      "uri" : "...",
      "endPointConfigs" : [ { }, { } ],
      "type" : "..."
    } ],
    "serviceType" : "..."
  }, {
    "name" : "...",
    "version" : "...",
    "serviceConfigs" : [ {
      "key" : "...",
      "value" : "..."
    }, {
      "key" : "...",
      "value" : "..."
    } ],
    "endPointHostList" : [ {
      "uri" : "...",
      "endPointConfigs" : [ { }, { } ],
      "type" : "..."
    }, {
      "uri" : "...",
      "endPointConfigs" : [ { }, { } ],
      "type" : "..."
    } ],
    "serviceType" : "..."
  } ],
  "configs" : [ {
    "key" : "...",
    "value" : "..."
  }, {
    "key" : "...",
    "value" : "..."
  } ],
  "clusterVersion" : "..."
}