Skip to content

updateRcvPrivateEndpoint

UpdateRCVPrivateEndpoint updates the name and description of an existing RCV private endpoint connection.

Arguments

Argument Type Description
input (required) UpdateRcvPrivateEndpointInput! Input for updating RCV private endpoint details.

Returns

UpdateRcvPrivateEndpointReply!

Sample

mutation UpdateRcvPrivateEndpoint($input: UpdateRcvPrivateEndpointInput!) {
  updateRcvPrivateEndpoint(input: $input) {
    description
    name
    storageAccountId
  }
}
{
  "input": {}
}
{
  "data": {
    "updateRcvPrivateEndpoint": {
      "description": "example-string",
      "name": "example-string",
      "storageAccountId": "example-string",
      "privateEndpointConnection": {
        "privateEndpointConnectionStatus": "APPROVED",
        "privateEndpointId": "example-string"
      }
    }
  }
}