File Coverage

blib/lib/Paws/DS/DirectoryLimits.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::DS::DirectoryLimits;
2 1     1   495 use Moose;
  1         3  
  1         7  
3             has CloudOnlyDirectoriesCurrentCount => (is => 'ro', isa => 'Int');
4             has CloudOnlyDirectoriesLimit => (is => 'ro', isa => 'Int');
5             has CloudOnlyDirectoriesLimitReached => (is => 'ro', isa => 'Bool');
6             has CloudOnlyMicrosoftADCurrentCount => (is => 'ro', isa => 'Int');
7             has CloudOnlyMicrosoftADLimit => (is => 'ro', isa => 'Int');
8             has CloudOnlyMicrosoftADLimitReached => (is => 'ro', isa => 'Bool');
9             has ConnectedDirectoriesCurrentCount => (is => 'ro', isa => 'Int');
10             has ConnectedDirectoriesLimit => (is => 'ro', isa => 'Int');
11             has ConnectedDirectoriesLimitReached => (is => 'ro', isa => 'Bool');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::DS::DirectoryLimits
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::DS::DirectoryLimits object:
30              
31             $service_obj->Method(Att1 => { CloudOnlyDirectoriesCurrentCount => $value, ..., ConnectedDirectoriesLimitReached => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::DS::DirectoryLimits object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->CloudOnlyDirectoriesCurrentCount
39              
40             =head1 DESCRIPTION
41              
42             Contains directory limit information for a region.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 CloudOnlyDirectoriesCurrentCount => Int
48              
49             The current number of cloud directories in the region.
50              
51              
52             =head2 CloudOnlyDirectoriesLimit => Int
53              
54             The maximum number of cloud directories allowed in the region.
55              
56              
57             =head2 CloudOnlyDirectoriesLimitReached => Bool
58              
59             Indicates if the cloud directory limit has been reached.
60              
61              
62             =head2 CloudOnlyMicrosoftADCurrentCount => Int
63              
64             The current number of Microsoft AD directories in the region.
65              
66              
67             =head2 CloudOnlyMicrosoftADLimit => Int
68              
69             The maximum number of Microsoft AD directories allowed in the region.
70              
71              
72             =head2 CloudOnlyMicrosoftADLimitReached => Bool
73              
74             Indicates if the Microsoft AD directory limit has been reached.
75              
76              
77             =head2 ConnectedDirectoriesCurrentCount => Int
78              
79             The current number of connected directories in the region.
80              
81              
82             =head2 ConnectedDirectoriesLimit => Int
83              
84             The maximum number of connected directories allowed in the region.
85              
86              
87             =head2 ConnectedDirectoriesLimitReached => Bool
88              
89             Indicates if the connected directory limit has been reached.
90              
91              
92              
93             =head1 SEE ALSO
94              
95             This class forms part of L<Paws>, describing an object used in L<Paws::DS>
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