Skip to content

allRcvPrivateEndpointConnections

Get private endpoint connection approval request.

Arguments

Argument Type Description
input (required) UUID! Corresponds to ID of the target in Rubrik.

Returns

[DetailedPrivateEndpointConnection!]!

Sample

query AllRcvPrivateEndpointConnections($input: UUID!) {
  allRcvPrivateEndpointConnections(input: $input) {
    description
    name
    storageAccountId
  }
}
{
  "input": "00000000-0000-0000-0000-000000000000"
}
{
  "data": {
    "allRcvPrivateEndpointConnections": [
      {
        "description": "example-string",
        "name": "example-string",
        "storageAccountId": "example-string",
        "privateEndpointConnection": {
          "privateEndpointConnectionStatus": "APPROVED",
          "privateEndpointId": "example-string"
        }
      }
    ]
  }
}