File Coverage

blib/lib/Paws/CloudDirectory/BatchWriteOperation.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::CloudDirectory::BatchWriteOperation;
2 1     1   595 use Moose;
  1         2  
  1         7  
3             has AddFacetToObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchAddFacetToObject');
4             has AttachObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchAttachObject');
5             has CreateObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchCreateObject');
6             has DeleteObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchDeleteObject');
7             has DetachObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchDetachObject');
8             has RemoveFacetFromObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchRemoveFacetFromObject');
9             has UpdateObjectAttributes => (is => 'ro', isa => 'Paws::CloudDirectory::BatchUpdateObjectAttributes');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::CloudDirectory::BatchWriteOperation
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::CloudDirectory::BatchWriteOperation object:
28              
29             $service_obj->Method(Att1 => { AddFacetToObject => $value, ..., UpdateObjectAttributes => $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::CloudDirectory::BatchWriteOperation object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->AddFacetToObject
37              
38             =head1 DESCRIPTION
39              
40             Represents the output of a C<BatchWrite> operation.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 AddFacetToObject => L<Paws::CloudDirectory::BatchAddFacetToObject>
46              
47             A batch operation that adds a facet to an object.
48              
49              
50             =head2 AttachObject => L<Paws::CloudDirectory::BatchAttachObject>
51              
52             Attaches an object to a Directory.
53              
54              
55             =head2 CreateObject => L<Paws::CloudDirectory::BatchCreateObject>
56              
57             Creates an object.
58              
59              
60             =head2 DeleteObject => L<Paws::CloudDirectory::BatchDeleteObject>
61              
62             Deletes an object in a Directory.
63              
64              
65             =head2 DetachObject => L<Paws::CloudDirectory::BatchDetachObject>
66              
67             Detaches an object from a Directory.
68              
69              
70             =head2 RemoveFacetFromObject => L<Paws::CloudDirectory::BatchRemoveFacetFromObject>
71              
72             A batch operation that removes a facet from an object.
73              
74              
75             =head2 UpdateObjectAttributes => L<Paws::CloudDirectory::BatchUpdateObjectAttributes>
76              
77             Updates a given object's attributes.
78              
79              
80              
81             =head1 SEE ALSO
82              
83             This class forms part of L<Paws>, describing an object used in L<Paws::CloudDirectory>
84              
85             =head1 BUGS and CONTRIBUTIONS
86              
87             The source code is located here: https://github.com/pplu/aws-sdk-perl
88              
89             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
90              
91             =cut
92