File Coverage

blib/lib/Paws/DeviceFarm/AccountSettings.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::AccountSettings;
2 1     1   578 use Moose;
  1         2  
  1         9  
3             has AwsAccountNumber => (is => 'ro', isa => 'Str', request_name => 'awsAccountNumber', traits => ['NameInRequest']);
4             has DefaultJobTimeoutMinutes => (is => 'ro', isa => 'Int', request_name => 'defaultJobTimeoutMinutes', traits => ['NameInRequest']);
5             has MaxJobTimeoutMinutes => (is => 'ro', isa => 'Int', request_name => 'maxJobTimeoutMinutes', traits => ['NameInRequest']);
6             has MaxSlots => (is => 'ro', isa => 'Paws::DeviceFarm::MaxSlotMap', request_name => 'maxSlots', traits => ['NameInRequest']);
7             has TrialMinutes => (is => 'ro', isa => 'Paws::DeviceFarm::TrialMinutes', request_name => 'trialMinutes', traits => ['NameInRequest']);
8             has UnmeteredDevices => (is => 'ro', isa => 'Paws::DeviceFarm::PurchasedDevicesMap', request_name => 'unmeteredDevices', traits => ['NameInRequest']);
9             has UnmeteredRemoteAccessDevices => (is => 'ro', isa => 'Paws::DeviceFarm::PurchasedDevicesMap', request_name => 'unmeteredRemoteAccessDevices', traits => ['NameInRequest']);
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::DeviceFarm::AccountSettings
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::DeviceFarm::AccountSettings object:
28              
29             $service_obj->Method(Att1 => { AwsAccountNumber => $value, ..., UnmeteredRemoteAccessDevices => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::DeviceFarm::AccountSettings object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->AwsAccountNumber
37              
38             =head1 DESCRIPTION
39              
40             A container for account-level settings within AWS Device Farm.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 AwsAccountNumber => Str
46              
47             The AWS account number specified in the C<AccountSettings> container.
48              
49              
50             =head2 DefaultJobTimeoutMinutes => Int
51              
52             The default number of minutes (at the account level) a test run will
53             execute before it times out. Default value is 60 minutes.
54              
55              
56             =head2 MaxJobTimeoutMinutes => Int
57              
58             The maximum number of minutes a test run will execute before it times
59             out.
60              
61              
62             =head2 MaxSlots => L<Paws::DeviceFarm::MaxSlotMap>
63              
64             The maximum number of device slots that the AWS account can purchase.
65             Each maximum is expressed as an C<offering-id:number> pair, where the
66             C<offering-id> represents one of the IDs returned by the
67             C<ListOfferings> command.
68              
69              
70             =head2 TrialMinutes => L<Paws::DeviceFarm::TrialMinutes>
71              
72             Information about an AWS account's usage of free trial device minutes.
73              
74              
75             =head2 UnmeteredDevices => L<Paws::DeviceFarm::PurchasedDevicesMap>
76              
77             Returns the unmetered devices you have purchased or want to purchase.
78              
79              
80             =head2 UnmeteredRemoteAccessDevices => L<Paws::DeviceFarm::PurchasedDevicesMap>
81              
82             Returns the unmetered remote access devices you have purchased or want
83             to purchase.
84              
85              
86              
87             =head1 SEE ALSO
88              
89             This class forms part of L<Paws>, describing an object used in L<Paws::DeviceFarm>
90              
91             =head1 BUGS and CONTRIBUTIONS
92              
93             The source code is located here: https://github.com/pplu/aws-sdk-perl
94              
95             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
96              
97             =cut
98