File Coverage

blib/lib/Paws/DeviceFarm/UpdateNetworkProfile.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::DeviceFarm::UpdateNetworkProfile;
3 1     1   490 use Moose;
  1         3  
  1         6  
4             has Arn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'arn' , required => 1);
5             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description' );
6             has DownlinkBandwidthBits => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'downlinkBandwidthBits' );
7             has DownlinkDelayMs => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'downlinkDelayMs' );
8             has DownlinkJitterMs => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'downlinkJitterMs' );
9             has DownlinkLossPercent => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'downlinkLossPercent' );
10             has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name' );
11             has Type => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'type' );
12             has UplinkBandwidthBits => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'uplinkBandwidthBits' );
13             has UplinkDelayMs => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'uplinkDelayMs' );
14             has UplinkJitterMs => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'uplinkJitterMs' );
15             has UplinkLossPercent => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'uplinkLossPercent' );
16              
17 1     1   6403 use MooseX::ClassAttribute;
  1         3  
  1         9  
18              
19             class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateNetworkProfile');
20             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DeviceFarm::UpdateNetworkProfileResult');
21             class_has _result_key => (isa => 'Str', is => 'ro');
22             1;
23              
24             ### main pod documentation begin ###
25              
26             =head1 NAME
27              
28             Paws::DeviceFarm::UpdateNetworkProfile - Arguments for method UpdateNetworkProfile on Paws::DeviceFarm
29              
30             =head1 DESCRIPTION
31              
32             This class represents the parameters used for calling the method UpdateNetworkProfile on the
33             AWS Device Farm service. Use the attributes of this class
34             as arguments to method UpdateNetworkProfile.
35              
36             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateNetworkProfile.
37              
38             As an example:
39              
40             $service_obj->UpdateNetworkProfile(Att1 => $value1, Att2 => $value2, ...);
41              
42             Values 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.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 B<REQUIRED> Arn => Str
48              
49             The Amazon Resource Name (ARN) of the project that you wish to update
50             network profile settings.
51              
52              
53              
54             =head2 Description => Str
55              
56             The descriptoin of the network profile about which you are returning
57             information.
58              
59              
60              
61             =head2 DownlinkBandwidthBits => Int
62              
63             The data throughput rate in bits per second, as an integer from 0 to
64             104857600.
65              
66              
67              
68             =head2 DownlinkDelayMs => Int
69              
70             Delay time for all packets to destination in milliseconds as an integer
71             from 0 to 2000.
72              
73              
74              
75             =head2 DownlinkJitterMs => Int
76              
77             Time variation in the delay of received packets in milliseconds as an
78             integer from 0 to 2000.
79              
80              
81              
82             =head2 DownlinkLossPercent => Int
83              
84             Proportion of received packets that fail to arrive from 0 to 100
85             percent.
86              
87              
88              
89             =head2 Name => Str
90              
91             The name of the network profile about which you are returning
92             information.
93              
94              
95              
96             =head2 Type => Str
97              
98             The type of network profile you wish to return information about. Valid
99             values are listed below.
100              
101             Valid values are: C<"CURATED">, C<"PRIVATE">
102              
103             =head2 UplinkBandwidthBits => Int
104              
105             The data throughput rate in bits per second, as an integer from 0 to
106             104857600.
107              
108              
109              
110             =head2 UplinkDelayMs => Int
111              
112             Delay time for all packets to destination in milliseconds as an integer
113             from 0 to 2000.
114              
115              
116              
117             =head2 UplinkJitterMs => Int
118              
119             Time variation in the delay of received packets in milliseconds as an
120             integer from 0 to 2000.
121              
122              
123              
124             =head2 UplinkLossPercent => Int
125              
126             Proportion of transmitted packets that fail to arrive from 0 to 100
127             percent.
128              
129              
130              
131              
132             =head1 SEE ALSO
133              
134             This class forms part of L<Paws>, documenting arguments for method UpdateNetworkProfile in L<Paws::DeviceFarm>
135              
136             =head1 BUGS and CONTRIBUTIONS
137              
138             The source code is located here: https://github.com/pplu/aws-sdk-perl
139              
140             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
141              
142             =cut
143