Learn R Programming

paws.storage (version 0.1.12)

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 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

storagegateway_list_volumes(GatewayARN, Marker, Limit)

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"
    )
  )
)

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
)

Examples

Run this code
if (FALSE) {
# 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"
)
}

Run the code above in your browser using DataLab