File Coverage

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