File Coverage

blib/lib/Paws/DeviceFarm/Run.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             package Paws::DeviceFarm::Run;
2 1     1   631 use Moose;
  1         5  
  1         10  
3             has Arn => (is => 'ro', isa => 'Str', request_name => 'arn', traits => ['NameInRequest']);
4             has BillingMethod => (is => 'ro', isa => 'Str', request_name => 'billingMethod', traits => ['NameInRequest']);
5             has CompletedJobs => (is => 'ro', isa => 'Int', request_name => 'completedJobs', traits => ['NameInRequest']);
6             has Counters => (is => 'ro', isa => 'Paws::DeviceFarm::Counters', request_name => 'counters', traits => ['NameInRequest']);
7             has Created => (is => 'ro', isa => 'Str', request_name => 'created', traits => ['NameInRequest']);
8             has DeviceMinutes => (is => 'ro', isa => 'Paws::DeviceFarm::DeviceMinutes', request_name => 'deviceMinutes', traits => ['NameInRequest']);
9             has Message => (is => 'ro', isa => 'Str', request_name => 'message', traits => ['NameInRequest']);
10             has Name => (is => 'ro', isa => 'Str', request_name => 'name', traits => ['NameInRequest']);
11             has NetworkProfile => (is => 'ro', isa => 'Paws::DeviceFarm::NetworkProfile', request_name => 'networkProfile', traits => ['NameInRequest']);
12             has Platform => (is => 'ro', isa => 'Str', request_name => 'platform', traits => ['NameInRequest']);
13             has Result => (is => 'ro', isa => 'Str', request_name => 'result', traits => ['NameInRequest']);
14             has Started => (is => 'ro', isa => 'Str', request_name => 'started', traits => ['NameInRequest']);
15             has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']);
16             has Stopped => (is => 'ro', isa => 'Str', request_name => 'stopped', traits => ['NameInRequest']);
17             has TotalJobs => (is => 'ro', isa => 'Int', request_name => 'totalJobs', traits => ['NameInRequest']);
18             has Type => (is => 'ro', isa => 'Str', request_name => 'type', traits => ['NameInRequest']);
19             1;
20              
21             ### main pod documentation begin ###
22              
23             =head1 NAME
24              
25             Paws::DeviceFarm::Run
26              
27             =head1 USAGE
28              
29             This class represents one of two things:
30              
31             =head3 Arguments in a call to a service
32              
33             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
34             Each attribute should be used as a named argument in the calls that expect this type of object.
35              
36             As an example, if Att1 is expected to be a Paws::DeviceFarm::Run object:
37              
38             $service_obj->Method(Att1 => { Arn => $value, ..., Type => $value });
39              
40             =head3 Results returned from an API call
41              
42             Use accessors for each attribute. If Att1 is expected to be an Paws::DeviceFarm::Run object:
43              
44             $result = $service_obj->Method(...);
45             $result->Att1->Arn
46              
47             =head1 DESCRIPTION
48              
49             Represents an app on a set of devices with a specific test and
50             configuration.
51              
52             =head1 ATTRIBUTES
53              
54              
55             =head2 Arn => Str
56              
57             The run's ARN.
58              
59              
60             =head2 BillingMethod => Str
61              
62             Specifies the billing method for a test run: C<metered> or
63             C<unmetered>. If the parameter is not specified, the default value is
64             C<metered>.
65              
66              
67             =head2 CompletedJobs => Int
68              
69             The total number of completed jobs.
70              
71              
72             =head2 Counters => L<Paws::DeviceFarm::Counters>
73              
74             The run's result counters.
75              
76              
77             =head2 Created => Str
78              
79             When the run was created.
80              
81              
82             =head2 DeviceMinutes => L<Paws::DeviceFarm::DeviceMinutes>
83              
84             Represents the total (metered or unmetered) minutes used by the test
85             run.
86              
87              
88             =head2 Message => Str
89              
90             A message about the run's result.
91              
92              
93             =head2 Name => Str
94              
95             The run's name.
96              
97              
98             =head2 NetworkProfile => L<Paws::DeviceFarm::NetworkProfile>
99              
100             The network profile being used for a test run.
101              
102              
103             =head2 Platform => Str
104              
105             The run's platform.
106              
107             Allowed values include:
108              
109             =over
110              
111             =item *
112              
113             ANDROID: The Android platform.
114              
115             =item *
116              
117             IOS: The iOS platform.
118              
119             =back
120              
121              
122              
123             =head2 Result => Str
124              
125             The run's result.
126              
127             Allowed values include:
128              
129             =over
130              
131             =item *
132              
133             PENDING: A pending condition.
134              
135             =item *
136              
137             PASSED: A passing condition.
138              
139             =item *
140              
141             WARNED: A warning condition.
142              
143             =item *
144              
145             FAILED: A failed condition.
146              
147             =item *
148              
149             SKIPPED: A skipped condition.
150              
151             =item *
152              
153             ERRORED: An error condition.
154              
155             =item *
156              
157             STOPPED: A stopped condition.
158              
159             =back
160              
161              
162              
163             =head2 Started => Str
164              
165             The run's start time.
166              
167              
168             =head2 Status => Str
169              
170             The run's status.
171              
172             Allowed values include:
173              
174             =over
175              
176             =item *
177              
178             PENDING: A pending status.
179              
180             =item *
181              
182             PENDING_CONCURRENCY: A pending concurrency status.
183              
184             =item *
185              
186             PENDING_DEVICE: A pending device status.
187              
188             =item *
189              
190             PROCESSING: A processing status.
191              
192             =item *
193              
194             SCHEDULING: A scheduling status.
195              
196             =item *
197              
198             PREPARING: A preparing status.
199              
200             =item *
201              
202             RUNNING: A running status.
203              
204             =item *
205              
206             COMPLETED: A completed status.
207              
208             =item *
209              
210             STOPPING: A stopping status.
211              
212             =back
213              
214              
215              
216             =head2 Stopped => Str
217              
218             The run's stop time.
219              
220              
221             =head2 TotalJobs => Int
222              
223             The total number of jobs for the run.
224              
225              
226             =head2 Type => Str
227              
228             The run's type.
229              
230             Must be one of the following values:
231              
232             =over
233              
234             =item *
235              
236             BUILTIN_FUZZ: The built-in fuzz type.
237              
238             =item *
239              
240             BUILTIN_EXPLORER: For Android, an app explorer that will traverse an
241             Android app, interacting with it and capturing screenshots at the same
242             time.
243              
244             =item *
245              
246             APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
247              
248             =item *
249              
250             APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
251              
252             =item *
253              
254             APPIUM_PYTHON: The Appium Python type.
255              
256             =item *
257              
258             APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for Web apps.
259              
260             =item *
261              
262             APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for Web apps.
263              
264             =item *
265              
266             APPIUM_WEB_PYTHON: The Appium Python type for Web apps.
267              
268             =item *
269              
270             CALABASH: The Calabash type.
271              
272             =item *
273              
274             INSTRUMENTATION: The Instrumentation type.
275              
276             =item *
277              
278             UIAUTOMATION: The uiautomation type.
279              
280             =item *
281              
282             UIAUTOMATOR: The uiautomator type.
283              
284             =item *
285              
286             XCTEST: The XCode test type.
287              
288             =item *
289              
290             XCTEST_UI: The XCode UI test type.
291              
292             =back
293              
294              
295              
296              
297             =head1 SEE ALSO
298              
299             This class forms part of L<Paws>, describing an object used in L<Paws::DeviceFarm>
300              
301             =head1 BUGS and CONTRIBUTIONS
302              
303             The source code is located here: https://github.com/pplu/aws-sdk-perl
304              
305             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
306              
307             =cut
308