line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::DeviceFarm::ScheduleRun; |
3
|
1
|
|
|
1
|
|
675
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
has AppArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'appArn' ); |
5
|
|
|
|
|
|
|
has Configuration => (is => 'ro', isa => 'Paws::DeviceFarm::ScheduleRunConfiguration', traits => ['NameInRequest'], request_name => 'configuration' ); |
6
|
|
|
|
|
|
|
has DevicePoolArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'devicePoolArn' , required => 1); |
7
|
|
|
|
|
|
|
has ExecutionConfiguration => (is => 'ro', isa => 'Paws::DeviceFarm::ExecutionConfiguration', traits => ['NameInRequest'], request_name => 'executionConfiguration' ); |
8
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name' ); |
9
|
|
|
|
|
|
|
has ProjectArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'projectArn' , required => 1); |
10
|
|
|
|
|
|
|
has Test => (is => 'ro', isa => 'Paws::DeviceFarm::ScheduleRunTest', traits => ['NameInRequest'], request_name => 'test' , required => 1); |
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
7261
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'ScheduleRun'); |
15
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DeviceFarm::ScheduleRunResult'); |
16
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
### main pod documentation begin ### |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Paws::DeviceFarm::ScheduleRun - Arguments for method ScheduleRun on Paws::DeviceFarm |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This class represents the parameters used for calling the method ScheduleRun on the |
28
|
|
|
|
|
|
|
AWS Device Farm service. Use the attributes of this class |
29
|
|
|
|
|
|
|
as arguments to method ScheduleRun. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ScheduleRun. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
As an example: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$service_obj->ScheduleRun(Att1 => $value1, Att2 => $value2, ...); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
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. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 AppArn => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The ARN of the app to schedule a run. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 Configuration => L<Paws::DeviceFarm::ScheduleRunConfiguration> |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Information about the settings for the run to be scheduled. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 B<REQUIRED> DevicePoolArn => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The ARN of the device pool for the run to be scheduled. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 ExecutionConfiguration => L<Paws::DeviceFarm::ExecutionConfiguration> |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
Specifies configuration information about a test run, such as the |
63
|
|
|
|
|
|
|
execution timeout (in minutes). |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 Name => Str |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
The name for the run to be scheduled. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 B<REQUIRED> ProjectArn => Str |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
The ARN of the project for the run to be scheduled. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head2 B<REQUIRED> Test => L<Paws::DeviceFarm::ScheduleRunTest> |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
Information about the test for the run to be scheduled. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=head1 SEE ALSO |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method ScheduleRun 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
|
|
|
|
|
|
|
|