line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::DeviceFarm::ScheduleRunConfiguration; |
2
|
1
|
|
|
1
|
|
555
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
10
|
|
3
|
|
|
|
|
|
|
has AuxiliaryApps => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'auxiliaryApps', traits => ['NameInRequest']); |
4
|
|
|
|
|
|
|
has BillingMethod => (is => 'ro', isa => 'Str', request_name => 'billingMethod', traits => ['NameInRequest']); |
5
|
|
|
|
|
|
|
has ExtraDataPackageArn => (is => 'ro', isa => 'Str', request_name => 'extraDataPackageArn', traits => ['NameInRequest']); |
6
|
|
|
|
|
|
|
has Locale => (is => 'ro', isa => 'Str', request_name => 'locale', traits => ['NameInRequest']); |
7
|
|
|
|
|
|
|
has Location => (is => 'ro', isa => 'Paws::DeviceFarm::Location', request_name => 'location', traits => ['NameInRequest']); |
8
|
|
|
|
|
|
|
has NetworkProfileArn => (is => 'ro', isa => 'Str', request_name => 'networkProfileArn', traits => ['NameInRequest']); |
9
|
|
|
|
|
|
|
has Radios => (is => 'ro', isa => 'Paws::DeviceFarm::Radios', request_name => 'radios', traits => ['NameInRequest']); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::DeviceFarm::ScheduleRunConfiguration |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 USAGE |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
This class represents one of two things: |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
25
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::DeviceFarm::ScheduleRunConfiguration object: |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { AuxiliaryApps => $value, ..., Radios => $value }); |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head3 Results returned from an API call |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::DeviceFarm::ScheduleRunConfiguration object: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
36
|
|
|
|
|
|
|
$result->Att1->AuxiliaryApps |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 DESCRIPTION |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Represents the settings for a run. Includes things like location, radio |
41
|
|
|
|
|
|
|
states, auxiliary apps, and network profiles. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 AuxiliaryApps => ArrayRef[Str|Undef] |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
A list of auxiliary apps for the run. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 BillingMethod => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
Specifies the billing method for a test run: C<metered> or |
54
|
|
|
|
|
|
|
C<unmetered>. If the parameter is not specified, the default value is |
55
|
|
|
|
|
|
|
C<metered>. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 ExtraDataPackageArn => Str |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The ARN of the extra data for the run. The extra data is a .zip file |
61
|
|
|
|
|
|
|
that AWS Device Farm will extract to external data for Android or the |
62
|
|
|
|
|
|
|
app's sandbox for iOS. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head2 Locale => Str |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
Information about the locale that is used for the run. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head2 Location => L<Paws::DeviceFarm::Location> |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Information about the location that is used for the run. |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head2 NetworkProfileArn => Str |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
Reserved for internal use. |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head2 Radios => L<Paws::DeviceFarm::Radios> |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
Information about the radio states for the run. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=head1 SEE ALSO |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::DeviceFarm> |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=cut |
97
|
|
|
|
|
|
|
|