List Volumes
storagegateway_list_volumes | R Documentation |
Lists the iSCSI stored volumes of a gateway¶
Description¶
Lists the iSCSI stored volumes of a gateway. Results are sorted by
volume ARN. The response includes only the volume ARNs. If you want
additional volume information, use the describe_storedi_scsi_volumes
or the describe_cachedi_scsi_volumes
API.
The operation supports pagination. By default, the operation returns a
maximum of up to 100 volumes. You can optionally specify the Limit
field in the body to limit the number of volumes in the response. If the
number of volumes returned in the response is truncated, the response
includes a Marker field. You can use this Marker value in your
subsequent request to retrieve the next set of volumes. This operation
is only supported in the cached volume and stored volume gateway types.
Usage¶
Arguments¶
GatewayARN
Marker
A string that indicates the position at which to begin the returned list of volumes. Obtain the marker from the response of a previous List iSCSI Volumes request.
Limit
Specifies that the list of volumes returned be limited to the specified number of items.
Value¶
A list with the following syntax:
list(
GatewayARN = "string",
Marker = "string",
VolumeInfos = list(
list(
VolumeARN = "string",
VolumeId = "string",
GatewayARN = "string",
GatewayId = "string",
VolumeType = "string",
VolumeSizeInBytes = 123,
VolumeAttachmentStatus = "string"
)
)
)
Request syntax¶
Examples¶
## Not run:
# Lists the iSCSI stored volumes of a gateway. Results are sorted by
# volume ARN up to a maximum of 100 volumes.
svc$list_volumes(
GatewayARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
Limit = 2L,
Marker = "1"
)
## End(Not run)