Skip to content

createRcvPrivateEndpointApprovalRequest

CreateRCVPrivateEndpointApprovalRequest creates an approval request for an RCV private endpoint. Once the request is approved, the customer can start using their RCV archival location through the private endpoint.

Arguments

Argument Type Description
input (required) CreateRcvPrivateEndpointApprovalRequestInput! Input for creating a private endpoint approval request for an RCV location.

Returns

CreateRcvPrivateEndpointApprovalRequestReply!

Sample

mutation CreateRcvPrivateEndpointApprovalRequest($input: CreateRcvPrivateEndpointApprovalRequestInput!) {
  createRcvPrivateEndpointApprovalRequest(input: $input) {
    requestMessage
    storageAccountId
  }
}
{
  "input": {
    "locationId": "00000000-0000-0000-0000-000000000000",
    "privateEndpointId": "example-string"
  }
}
{
  "data": {
    "createRcvPrivateEndpointApprovalRequest": {
      "requestMessage": "example-string",
      "storageAccountId": "example-string"
    }
  }
}