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   510 use Moose;
  1         3  
  1         22  
3             has AddFacetToObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchAddFacetToObject');
4             has AttachObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchAttachObject');
5             has AttachPolicy => (is => 'ro', isa => 'Paws::CloudDirectory::BatchAttachPolicy');
6             has AttachToIndex => (is => 'ro', isa => 'Paws::CloudDirectory::BatchAttachToIndex');
7             has AttachTypedLink => (is => 'ro', isa => 'Paws::CloudDirectory::BatchAttachTypedLink');
8             has CreateIndex => (is => 'ro', isa => 'Paws::CloudDirectory::BatchCreateIndex');
9             has CreateObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchCreateObject');
10             has DeleteObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchDeleteObject');
11             has DetachFromIndex => (is => 'ro', isa => 'Paws::CloudDirectory::BatchDetachFromIndex');
12             has DetachObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchDetachObject');
13             has DetachPolicy => (is => 'ro', isa => 'Paws::CloudDirectory::BatchDetachPolicy');
14             has DetachTypedLink => (is => 'ro', isa => 'Paws::CloudDirectory::BatchDetachTypedLink');
15             has RemoveFacetFromObject => (is => 'ro', isa => 'Paws::CloudDirectory::BatchRemoveFacetFromObject');
16             has UpdateObjectAttributes => (is => 'ro', isa => 'Paws::CloudDirectory::BatchUpdateObjectAttributes');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::CloudDirectory::BatchWriteOperation
24              
25             =head1 USAGE
26              
27             This class represents one of two things:
28              
29             =head3 Arguments in a call to a service
30              
31             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
32             Each attribute should be used as a named argument in the calls that expect this type of object.
33              
34             As an example, if Att1 is expected to be a Paws::CloudDirectory::BatchWriteOperation object:
35              
36             $service_obj->Method(Att1 => { AddFacetToObject => $value, ..., UpdateObjectAttributes => $value });
37              
38             =head3 Results returned from an API call
39              
40             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudDirectory::BatchWriteOperation object:
41              
42             $result = $service_obj->Method(...);
43             $result->Att1->AddFacetToObject
44              
45             =head1 DESCRIPTION
46              
47             Represents the output of a C<BatchWrite> operation.
48              
49             =head1 ATTRIBUTES
50              
51              
52             =head2 AddFacetToObject => L<Paws::CloudDirectory::BatchAddFacetToObject>
53              
54             A batch operation that adds a facet to an object.
55              
56              
57             =head2 AttachObject => L<Paws::CloudDirectory::BatchAttachObject>
58              
59             Attaches an object to a Directory.
60              
61              
62             =head2 AttachPolicy => L<Paws::CloudDirectory::BatchAttachPolicy>
63              
64             Attaches a policy object to a regular object. An object can have a
65             limited number of attached policies.
66              
67              
68             =head2 AttachToIndex => L<Paws::CloudDirectory::BatchAttachToIndex>
69              
70             Attaches the specified object to the specified index.
71              
72              
73             =head2 AttachTypedLink => L<Paws::CloudDirectory::BatchAttachTypedLink>
74              
75             Attaches a typed link to a specified source and target object. For more
76             information, see Typed link.
77              
78              
79             =head2 CreateIndex => L<Paws::CloudDirectory::BatchCreateIndex>
80              
81             Creates an index object. See Indexing for more information.
82              
83              
84             =head2 CreateObject => L<Paws::CloudDirectory::BatchCreateObject>
85              
86             Creates an object.
87              
88              
89             =head2 DeleteObject => L<Paws::CloudDirectory::BatchDeleteObject>
90              
91             Deletes an object in a Directory.
92              
93              
94             =head2 DetachFromIndex => L<Paws::CloudDirectory::BatchDetachFromIndex>
95              
96             Detaches the specified object from the specified index.
97              
98              
99             =head2 DetachObject => L<Paws::CloudDirectory::BatchDetachObject>
100              
101             Detaches an object from a Directory.
102              
103              
104             =head2 DetachPolicy => L<Paws::CloudDirectory::BatchDetachPolicy>
105              
106             Detaches a policy from a Directory.
107              
108              
109             =head2 DetachTypedLink => L<Paws::CloudDirectory::BatchDetachTypedLink>
110              
111             Detaches a typed link from a specified source and target object. For
112             more information, see Typed link.
113              
114              
115             =head2 RemoveFacetFromObject => L<Paws::CloudDirectory::BatchRemoveFacetFromObject>
116              
117             A batch operation that removes a facet from an object.
118              
119              
120             =head2 UpdateObjectAttributes => L<Paws::CloudDirectory::BatchUpdateObjectAttributes>
121              
122             Updates a given object's attributes.
123              
124              
125              
126             =head1 SEE ALSO
127              
128             This class forms part of L<Paws>, describing an object used in L<Paws::CloudDirectory>
129              
130             =head1 BUGS and CONTRIBUTIONS
131              
132             The source code is located here: https://github.com/pplu/aws-sdk-perl
133              
134             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
135              
136             =cut
137