List Tapes
storagegateway_list_tapes | R Documentation |
Lists virtual tapes in your virtual tape library (VTL) and your virtual tape shelf (VTS)¶
Description¶
Lists virtual tapes in your virtual tape library (VTL) and your virtual tape shelf (VTS). You specify the tapes to list by specifying one or more tape Amazon Resource Names (ARNs). If you don't specify a tape ARN, the operation lists all virtual tapes in both your VTL and VTS.
This operation supports pagination. By default, the operation returns a
maximum of up to 100 tapes. You can optionally specify the Limit
parameter in the body to limit the number of tapes in the response. If
the number of tapes returned in the response is truncated, the response
includes a Marker
element that you can use in your subsequent request
to retrieve the next set of tapes. This operation is only supported in
the tape gateway type.
Usage¶
Arguments¶
TapeARNs
Marker
A string that indicates the position at which to begin the returned list of tapes.
Limit
An optional number limit for the tapes in the list returned by this call.
Value¶
A list with the following syntax:
list(
TapeInfos = list(
list(
TapeARN = "string",
TapeBarcode = "string",
TapeSizeInBytes = 123,
TapeStatus = "string",
GatewayARN = "string",
PoolId = "string",
RetentionStartDate = as.POSIXct(
"2015-01-01"
),
PoolEntryDate = as.POSIXct(
"2015-01-01"
)
)
),
Marker = "string"
)