File Coverage

blib/lib/Paws/StorageGateway/DescribeTapeArchivesOutput.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::StorageGateway::DescribeTapeArchivesOutput;
3 1     1   617 use Moose;
  1         3  
  1         8  
4             has Marker => (is => 'ro', isa => 'Str');
5             has TapeArchives => (is => 'ro', isa => 'ArrayRef[Paws::StorageGateway::TapeArchive]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::StorageGateway::DescribeTapeArchivesOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Marker => Str
19              
20             An opaque string that indicates the position at which the virtual tapes
21             that were fetched for description ended. Use this marker in your next
22             request to fetch the next set of virtual tapes in the virtual tape
23             shelf (VTS). If there are no more virtual tapes to describe, this field
24             does not appear in the response.
25              
26              
27             =head2 TapeArchives => ArrayRef[L<Paws::StorageGateway::TapeArchive>]
28              
29             An array of virtual tape objects in the virtual tape shelf (VTS). The
30             description includes of the Amazon Resource Name(ARN) of the virtual
31             tapes. The information returned includes the Amazon Resource Names
32             (ARNs) of the tapes, size of the tapes, status of the tapes, progress
33             of the description and tape barcode.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40              
41             1;