awsNativeEbsVolumes
Paginated list of all AWS EBS 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. |
| last | Int | Returns the last n elements from the list. |
| before | String | Returns the elements in the list that occur before the specified cursor. |
| sortBy | AwsNativeEbsVolumeSortFields | Sort fields for list of AWS EBS volumes. |
| sortOrder | SortOrder | Sorts the order of results. |
| ebsVolumeFilters | AwsNativeEbsVolumeFilters | Filter for EBS volumes. |
| includeSecurityMetadata | Boolean | Filter to include the security metadata. |
Returns
Sample
query {
awsNativeEbsVolumes(first: 10) {
nodes {
authorizedOperations
availabilityZone
awsAccountRubrikId
awsNativeAccountName
cloudNativeId
fileIndexingStatus
id
iops
isExocomputeConfigured
isIndexingEnabled
isMarketplace
isProtectable
isRelic
name
nativeName
numWorkloadDescendants
objectType
onDemandSnapshotCount
region
rscPendingObjectPauseAssignment
sizeInGiBs
slaAssignment
slaPauseStatus
volumeName
volumeNativeId
volumeType
}
pageInfo {
hasNextPage
endCursor
}
}
}
{
"data": {
"awsNativeEbsVolumes": {
"nodes": [
[
{
"authorizedOperations": [
"DELETE_SNAPSHOT"
],
"availabilityZone": "example-string",
"awsAccountRubrikId": "example-string",
"awsNativeAccountName": "example-string",
"cloudNativeId": "example-string",
"fileIndexingStatus": "DISABLED"
}
]
],
"pageInfo": {
"endCursor": "example-string",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "example-string"
}
}
}
}