paws.storage (version 0.1.0)

storagegateway_describe_vtl_devices: Returns a description of virtual tape library (VTL) devices for the specified tape gateway

Description

Returns a description of virtual tape library (VTL) devices for the specified tape gateway. In the response, AWS Storage Gateway returns VTL device information.

Usage

storagegateway_describe_vtl_devices(GatewayARN, VTLDeviceARNs, Marker,
  Limit)

Arguments

GatewayARN

[required]

VTLDeviceARNs

An array of strings, where each string represents the Amazon Resource Name (ARN) of a VTL device.

All of the specified VTL devices must be from the same gateway. If no VTL devices are specified, the result will contain all devices on the specified gateway.

Marker

An opaque string that indicates the position at which to begin describing the VTL devices.

Limit

Specifies that the number of VTL devices described be limited to the specified number.

Request syntax

svc$describe_vtl_devices(
  GatewayARN = "string",
  VTLDeviceARNs = list(
    "string"
  ),
  Marker = "string",
  Limit = 123
)

Details

This operation is only supported in the tape gateway type.

Examples

Run this code
# NOT RUN {
# Returns a description of virtual tape library (VTL) devices for the
# specified gateway.
# }
# NOT RUN {
svc$describe_vtl_devices(
  GatewayARN = "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
  Limit = 123L,
  Marker = "1",
  VTLDeviceARNs = list()
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace