Skip to content

managedVolumes

Paginated list of Managed Volumes.

Arguments

Argument Type Description
first Int Returns the first n elements from the list.
after String Returns the elements in the list that occur after the specified cursor.
sortBy HierarchySortByField Sort hierarchy objects according to the hierarchy field.
sortOrder SortOrder Sorts the order of results.
filter [Filter!] Hierarchy object filter.

Returns

ManagedVolumeConnection!

Sample

query {
  managedVolumes(first: 10) {
    nodes {
      applicationTag
      authorizedOperations
      cdmId
      cdmLink
      cdmPendingObjectPauseAssignment
      clientNamePatterns
      id
      isRelic
      lastResetReason
      managedVolumeType
      mountState
      name
      numChannels
      numWorkloadDescendants
      objectType
      onDemandSnapshotCount
      physicalUsedSize
      protectionDate
      protocol
      provisionedSize
      replicatedObjectCount
      slaAssignment
      slaPauseStatus
      state
      subnet
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}
{}
{
  "data": {
    "managedVolumes": {
      "nodes": [
        [
          {
            "applicationTag": "MANAGED_VOLUME_APPLICATION_TAG_DB_TRANSACTION_LOG",
            "authorizedOperations": [
              "ACCESS_CDM_CLUSTER"
            ],
            "cdmId": "example-string",
            "cdmLink": "example-string",
            "cdmPendingObjectPauseAssignment": "NO_PENDING_PAUSE_ASSIGNMENT",
            "clientNamePatterns": [
              "example-string"
            ]
          }
        ]
      ],
      "pageInfo": {
        "endCursor": "example-string",
        "hasNextPage": true,
        "hasPreviousPage": true,
        "startCursor": "example-string"
      }
    }
  }
}