File Coverage

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