paws.storage (version 0.1.0)

storagegateway_list_volumes: 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 DescribeStorediSCSIVolumes or the DescribeCachediSCSIVolumes API.

Usage

storagegateway_list_volumes(GatewayARN, Marker, Limit)

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.

Request syntax

svc$list_volumes(
  GatewayARN = "string",
  Marker = "string",
  Limit = 123
)

Details

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.

Examples

Run this code
# NOT RUN {
# Lists the iSCSI stored volumes of a gateway. Results are sorted by
# volume ARN up to a maximum of 100 volumes.
# }
# NOT RUN {
svc$list_volumes(
  GatewayARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
  Limit = 2L,
  Marker = "1"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab