1
2package Paws::StorageGateway::UpdateVTLDeviceType {
3  use Moose;
4  has DeviceType => (is => 'ro', isa => 'Str', required => 1);
5  has VTLDeviceARN => (is => 'ro', isa => 'Str', required => 1);
6
7  use MooseX::ClassAttribute;
8
9  class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateVTLDeviceType');
10  class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::StorageGateway::UpdateVTLDeviceTypeOutput');
11  class_has _result_key => (isa => 'Str', is => 'ro');
12}
131;
14
15### main pod documentation begin ###
16
17=head1 NAME
18
19Paws::StorageGateway::UpdateVTLDeviceType - Arguments for method UpdateVTLDeviceType on Paws::StorageGateway
20
21=head1 DESCRIPTION
22
23This class represents the parameters used for calling the method UpdateVTLDeviceType on the
24AWS Storage Gateway service. Use the attributes of this class
25as arguments to method UpdateVTLDeviceType.
26
27You shouln't make instances of this class. Each attribute should be used as a named argument in the call to UpdateVTLDeviceType.
28
29As an example:
30
31  $service_obj->UpdateVTLDeviceType(Att1 => $value1, Att2 => $value2, ...);
32
33Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
34
35=head1 ATTRIBUTES
36
37=head2 B<REQUIRED> DeviceType => Str
38
39
40
41The type of medium changer you want to select.
42
43I<Valid Values>: "STK-L700", "AWS-Gateway-VTL"
44
45
46
47
48
49
50
51
52
53
54=head2 B<REQUIRED> VTLDeviceARN => Str
55
56
57
58The Amazon Resource Name (ARN) of the medium changer you want to
59select.
60
61
62
63
64
65
66
67
68
69
70
71
72=head1 SEE ALSO
73
74This class forms part of L<Paws>, documenting arguments for method UpdateVTLDeviceType in L<Paws::StorageGateway>
75
76=head1 BUGS and CONTRIBUTIONS
77
78The source code is located here: https://github.com/pplu/aws-sdk-perl
79
80Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
81
82=cut
83
84