Update Edge Cluster

Update Edge Cluster

Updates the specified Edge Cluster. Only QoS related config can be updated.

Request
URI
PUT
https://{api_host}/cloudapi/vcf/edgeClusters/{edgeClusterId}
COPY
Path Parameters
string
edgeClusterId
Required

edgeClusterId


Request Body
EdgeClusterItem of type(s) application/json
Required
This request body class requires all of the following: InlineEdgeClusterItem0 , InlineEdgeClusterItem1
{
    "status": "string",
    "id": "urn:vcloud:edgeCluster:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "name": "string",
    "description": "string",
    "regionRef": {
        "name": "string",
        "id": "string"
    },
    "deploymentType": "string",
    "nodeCount": 0,
    "orgCount": 0,
    "vpcCount": 0,
    "avgCpuUsagePercentage": "number",
    "avgMemoryUsagePercentage": "number",
    "healthStatus": "string",
    "defaultQosConfig": {
        "ingressProfile": {
            "id": "string",
            "name": "string",
            "type": "string",
            "committedBandwidthMbps": 0,
            "burstSizeBytes": 0
        },
        "egressProfile": {
            "id": "string",
            "name": "string",
            "type": "string",
            "committedBandwidthMbps": 0,
            "burstSizeBytes": 0
        }
    },
    "backingRef": {
        "id": "string",
        "name": "string"
    }
}
Authentication
This operation uses the following authentication methods.
Responses
202

The request have been accepted and the task to monitor the request is in the Location header.

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/cloudapi/vcf/edgeClusters/{edgeClusterId}