line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::DeviceFarm::CustomerArtifactPaths; |
2
|
1
|
|
|
1
|
|
564
|
use Moose; |
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
9
|
|
3
|
|
|
|
|
|
|
has AndroidPaths => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'androidPaths', traits => ['NameInRequest']); |
4
|
|
|
|
|
|
|
has DeviceHostPaths => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'deviceHostPaths', traits => ['NameInRequest']); |
5
|
|
|
|
|
|
|
has IosPaths => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'iosPaths', traits => ['NameInRequest']); |
6
|
|
|
|
|
|
|
1; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::DeviceFarm::CustomerArtifactPaths |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 USAGE |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
This class represents one of two things: |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
21
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::DeviceFarm::CustomerArtifactPaths object: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { AndroidPaths => $value, ..., IosPaths => $value }); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head3 Results returned from an API call |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::DeviceFarm::CustomerArtifactPaths object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
32
|
|
|
|
|
|
|
$result->Att1->AndroidPaths |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
A JSON object specifying the paths where the artifacts generated by the |
37
|
|
|
|
|
|
|
customer's tests, on the device or in the test environment, will be |
38
|
|
|
|
|
|
|
pulled from. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Specify C<deviceHostPaths> and optionally specify either C<iosPaths> or |
41
|
|
|
|
|
|
|
C<androidPaths>. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
For web app tests, you can specify both C<iosPaths> and |
44
|
|
|
|
|
|
|
C<androidPaths>. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 AndroidPaths => ArrayRef[Str|Undef] |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Comma-separated list of paths on the Android device where the artifacts |
52
|
|
|
|
|
|
|
generated by the customer's tests will be pulled from. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 DeviceHostPaths => ArrayRef[Str|Undef] |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Comma-separated list of paths in the test execution environment where |
58
|
|
|
|
|
|
|
the artifacts generated by the customer's tests will be pulled from. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 IosPaths => ArrayRef[Str|Undef] |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
Comma-separated list of paths on the iOS device where the artifacts |
64
|
|
|
|
|
|
|
generated by the customer's tests will be pulled from. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 SEE ALSO |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::DeviceFarm> |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=cut |
79
|
|
|
|
|
|
|
|