aws-sdk-clouddirectory 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-clouddirectory.rb +1 -1
- data/lib/aws-sdk-clouddirectory/client.rb +124 -74
- data/lib/aws-sdk-clouddirectory/client_api.rb +39 -2
- data/lib/aws-sdk-clouddirectory/types.rb +298 -234
- metadata +2 -2
@@ -172,6 +172,7 @@ module Aws::CloudDirectory
|
|
172
172
|
FacetName = Shapes::StringShape.new(name: 'FacetName')
|
173
173
|
FacetNameList = Shapes::ListShape.new(name: 'FacetNameList')
|
174
174
|
FacetNotFoundException = Shapes::StructureShape.new(name: 'FacetNotFoundException')
|
175
|
+
FacetStyle = Shapes::StringShape.new(name: 'FacetStyle')
|
175
176
|
FacetValidationException = Shapes::StructureShape.new(name: 'FacetValidationException')
|
176
177
|
GetAppliedSchemaVersionRequest = Shapes::StructureShape.new(name: 'GetAppliedSchemaVersionRequest')
|
177
178
|
GetAppliedSchemaVersionResponse = Shapes::StructureShape.new(name: 'GetAppliedSchemaVersionResponse')
|
@@ -224,6 +225,8 @@ module Aws::CloudDirectory
|
|
224
225
|
ListIncomingTypedLinksResponse = Shapes::StructureShape.new(name: 'ListIncomingTypedLinksResponse')
|
225
226
|
ListIndexRequest = Shapes::StructureShape.new(name: 'ListIndexRequest')
|
226
227
|
ListIndexResponse = Shapes::StructureShape.new(name: 'ListIndexResponse')
|
228
|
+
ListManagedSchemaArnsRequest = Shapes::StructureShape.new(name: 'ListManagedSchemaArnsRequest')
|
229
|
+
ListManagedSchemaArnsResponse = Shapes::StructureShape.new(name: 'ListManagedSchemaArnsResponse')
|
227
230
|
ListObjectAttributesRequest = Shapes::StructureShape.new(name: 'ListObjectAttributesRequest')
|
228
231
|
ListObjectAttributesResponse = Shapes::StructureShape.new(name: 'ListObjectAttributesResponse')
|
229
232
|
ListObjectChildrenRequest = Shapes::StructureShape.new(name: 'ListObjectChildrenRequest')
|
@@ -749,7 +752,8 @@ module Aws::CloudDirectory
|
|
749
752
|
CreateFacetRequest.add_member(:schema_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "header", location_name: "x-amz-data-partition"))
|
750
753
|
CreateFacetRequest.add_member(:name, Shapes::ShapeRef.new(shape: FacetName, required: true, location_name: "Name"))
|
751
754
|
CreateFacetRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: FacetAttributeList, location_name: "Attributes"))
|
752
|
-
CreateFacetRequest.add_member(:object_type, Shapes::ShapeRef.new(shape: ObjectType,
|
755
|
+
CreateFacetRequest.add_member(:object_type, Shapes::ShapeRef.new(shape: ObjectType, location_name: "ObjectType"))
|
756
|
+
CreateFacetRequest.add_member(:facet_style, Shapes::ShapeRef.new(shape: FacetStyle, location_name: "FacetStyle"))
|
753
757
|
CreateFacetRequest.struct_class = Types::CreateFacetRequest
|
754
758
|
|
755
759
|
CreateFacetResponse.struct_class = Types::CreateFacetResponse
|
@@ -865,6 +869,7 @@ module Aws::CloudDirectory
|
|
865
869
|
|
866
870
|
Facet.add_member(:name, Shapes::ShapeRef.new(shape: FacetName, location_name: "Name"))
|
867
871
|
Facet.add_member(:object_type, Shapes::ShapeRef.new(shape: ObjectType, location_name: "ObjectType"))
|
872
|
+
Facet.add_member(:facet_style, Shapes::ShapeRef.new(shape: FacetStyle, location_name: "FacetStyle"))
|
868
873
|
Facet.struct_class = Types::Facet
|
869
874
|
|
870
875
|
FacetAttribute.add_member(:name, Shapes::ShapeRef.new(shape: AttributeName, required: true, location_name: "Name"))
|
@@ -1055,6 +1060,15 @@ module Aws::CloudDirectory
|
|
1055
1060
|
ListIndexResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1056
1061
|
ListIndexResponse.struct_class = Types::ListIndexResponse
|
1057
1062
|
|
1063
|
+
ListManagedSchemaArnsRequest.add_member(:schema_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SchemaArn"))
|
1064
|
+
ListManagedSchemaArnsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1065
|
+
ListManagedSchemaArnsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: NumberResults, location_name: "MaxResults"))
|
1066
|
+
ListManagedSchemaArnsRequest.struct_class = Types::ListManagedSchemaArnsRequest
|
1067
|
+
|
1068
|
+
ListManagedSchemaArnsResponse.add_member(:schema_arns, Shapes::ShapeRef.new(shape: Arns, location_name: "SchemaArns"))
|
1069
|
+
ListManagedSchemaArnsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1070
|
+
ListManagedSchemaArnsResponse.struct_class = Types::ListManagedSchemaArnsResponse
|
1071
|
+
|
1058
1072
|
ListObjectAttributesRequest.add_member(:directory_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "header", location_name: "x-amz-data-partition"))
|
1059
1073
|
ListObjectAttributesRequest.add_member(:object_reference, Shapes::ShapeRef.new(shape: ObjectReference, required: true, location_name: "ObjectReference"))
|
1060
1074
|
ListObjectAttributesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
@@ -1397,7 +1411,7 @@ module Aws::CloudDirectory
|
|
1397
1411
|
# @api private
|
1398
1412
|
API = Seahorse::Model::Api.new.tap do |api|
|
1399
1413
|
|
1400
|
-
api.version = "
|
1414
|
+
api.version = "2017-01-11"
|
1401
1415
|
|
1402
1416
|
api.metadata = {
|
1403
1417
|
"endpointPrefix" => "clouddirectory",
|
@@ -1436,6 +1450,7 @@ module Aws::CloudDirectory
|
|
1436
1450
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1437
1451
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1438
1452
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1453
|
+
o.errors << Shapes::ShapeRef.new(shape: SchemaAlreadyExistsException)
|
1439
1454
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1440
1455
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAttachmentException)
|
1441
1456
|
end)
|
@@ -2140,6 +2155,26 @@ module Aws::CloudDirectory
|
|
2140
2155
|
)
|
2141
2156
|
end)
|
2142
2157
|
|
2158
|
+
api.add_operation(:list_managed_schema_arns, Seahorse::Model::Operation.new.tap do |o|
|
2159
|
+
o.name = "ListManagedSchemaArns"
|
2160
|
+
o.http_method = "POST"
|
2161
|
+
o.http_request_uri = "/amazonclouddirectory/2017-01-11/schema/managed"
|
2162
|
+
o.input = Shapes::ShapeRef.new(shape: ListManagedSchemaArnsRequest)
|
2163
|
+
o.output = Shapes::ShapeRef.new(shape: ListManagedSchemaArnsResponse)
|
2164
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2165
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
2166
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2167
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2168
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2169
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
2170
|
+
o[:pager] = Aws::Pager.new(
|
2171
|
+
limit_key: "max_results",
|
2172
|
+
tokens: {
|
2173
|
+
"next_token" => "next_token"
|
2174
|
+
}
|
2175
|
+
)
|
2176
|
+
end)
|
2177
|
+
|
2143
2178
|
api.add_operation(:list_object_attributes, Seahorse::Model::Operation.new.tap do |o|
|
2144
2179
|
o.name = "ListObjectAttributes"
|
2145
2180
|
o.http_method = "POST"
|
@@ -2506,6 +2541,7 @@ module Aws::CloudDirectory
|
|
2506
2541
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
2507
2542
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2508
2543
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFacetUpdateException)
|
2544
|
+
o.errors << Shapes::ShapeRef.new(shape: FacetValidationException)
|
2509
2545
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2510
2546
|
o.errors << Shapes::ShapeRef.new(shape: FacetNotFoundException)
|
2511
2547
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRuleException)
|
@@ -2594,6 +2630,7 @@ module Aws::CloudDirectory
|
|
2594
2630
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2595
2631
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2596
2632
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAttachmentException)
|
2633
|
+
o.errors << Shapes::ShapeRef.new(shape: SchemaAlreadyExistsException)
|
2597
2634
|
end)
|
2598
2635
|
|
2599
2636
|
api.add_operation(:upgrade_published_schema, Seahorse::Model::Operation.new.tap do |o|
|
@@ -56,7 +56,7 @@ module Aws::CloudDirectory
|
|
56
56
|
# A reference to the object you are adding the specified facet to.
|
57
57
|
# @return [Types::ObjectReference]
|
58
58
|
#
|
59
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
59
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AddFacetToObjectRequest AWS API Documentation
|
60
60
|
#
|
61
61
|
class AddFacetToObjectRequest < Struct.new(
|
62
62
|
:directory_arn,
|
@@ -66,7 +66,7 @@ module Aws::CloudDirectory
|
|
66
66
|
include Aws::Structure
|
67
67
|
end
|
68
68
|
|
69
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
69
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AddFacetToObjectResponse AWS API Documentation
|
70
70
|
#
|
71
71
|
class AddFacetToObjectResponse < Aws::EmptyStructure; end
|
72
72
|
|
@@ -88,7 +88,7 @@ module Aws::CloudDirectory
|
|
88
88
|
# into which the schema is copied. For more information, see arns.
|
89
89
|
# @return [String]
|
90
90
|
#
|
91
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
91
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ApplySchemaRequest AWS API Documentation
|
92
92
|
#
|
93
93
|
class ApplySchemaRequest < Struct.new(
|
94
94
|
:published_schema_arn,
|
@@ -108,7 +108,7 @@ module Aws::CloudDirectory
|
|
108
108
|
# see arns.
|
109
109
|
# @return [String]
|
110
110
|
#
|
111
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
111
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ApplySchemaResponse AWS API Documentation
|
112
112
|
#
|
113
113
|
class ApplySchemaResponse < Struct.new(
|
114
114
|
:applied_schema_arn,
|
@@ -147,7 +147,7 @@ module Aws::CloudDirectory
|
|
147
147
|
# The link name with which the child object is attached to the parent.
|
148
148
|
# @return [String]
|
149
149
|
#
|
150
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttachObjectRequest AWS API Documentation
|
151
151
|
#
|
152
152
|
class AttachObjectRequest < Struct.new(
|
153
153
|
:directory_arn,
|
@@ -162,7 +162,7 @@ module Aws::CloudDirectory
|
|
162
162
|
# `ObjectIdentifier`.
|
163
163
|
# @return [String]
|
164
164
|
#
|
165
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttachObjectResponse AWS API Documentation
|
166
166
|
#
|
167
167
|
class AttachObjectResponse < Struct.new(
|
168
168
|
:attached_object_identifier)
|
@@ -196,7 +196,7 @@ module Aws::CloudDirectory
|
|
196
196
|
# attached.
|
197
197
|
# @return [Types::ObjectReference]
|
198
198
|
#
|
199
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttachPolicyRequest AWS API Documentation
|
200
200
|
#
|
201
201
|
class AttachPolicyRequest < Struct.new(
|
202
202
|
:directory_arn,
|
@@ -205,7 +205,7 @@ module Aws::CloudDirectory
|
|
205
205
|
include Aws::Structure
|
206
206
|
end
|
207
207
|
|
208
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttachPolicyResponse AWS API Documentation
|
209
209
|
#
|
210
210
|
class AttachPolicyResponse < Aws::EmptyStructure; end
|
211
211
|
|
@@ -235,7 +235,7 @@ module Aws::CloudDirectory
|
|
235
235
|
# A reference to the object that you are attaching to the index.
|
236
236
|
# @return [Types::ObjectReference]
|
237
237
|
#
|
238
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttachToIndexRequest AWS API Documentation
|
239
239
|
#
|
240
240
|
class AttachToIndexRequest < Struct.new(
|
241
241
|
:directory_arn,
|
@@ -248,7 +248,7 @@ module Aws::CloudDirectory
|
|
248
248
|
# The `ObjectIdentifier` of the object that was attached to the index.
|
249
249
|
# @return [String]
|
250
250
|
#
|
251
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttachToIndexResponse AWS API Documentation
|
252
252
|
#
|
253
253
|
class AttachToIndexResponse < Struct.new(
|
254
254
|
:attached_object_identifier)
|
@@ -306,7 +306,7 @@ module Aws::CloudDirectory
|
|
306
306
|
# A set of attributes that are associated with the typed link.
|
307
307
|
# @return [Array<Types::AttributeNameAndValue>]
|
308
308
|
#
|
309
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttachTypedLinkRequest AWS API Documentation
|
310
310
|
#
|
311
311
|
class AttachTypedLinkRequest < Struct.new(
|
312
312
|
:directory_arn,
|
@@ -321,7 +321,7 @@ module Aws::CloudDirectory
|
|
321
321
|
# Returns a typed link specifier as output.
|
322
322
|
# @return [Types::TypedLinkSpecifier]
|
323
323
|
#
|
324
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttachTypedLinkResponse AWS API Documentation
|
325
325
|
#
|
326
326
|
class AttachTypedLinkResponse < Struct.new(
|
327
327
|
:typed_link_specifier)
|
@@ -352,7 +352,7 @@ module Aws::CloudDirectory
|
|
352
352
|
# The name of the attribute.
|
353
353
|
# @return [String]
|
354
354
|
#
|
355
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttributeKey AWS API Documentation
|
356
356
|
#
|
357
357
|
class AttributeKey < Struct.new(
|
358
358
|
:schema_arn,
|
@@ -389,7 +389,7 @@ module Aws::CloudDirectory
|
|
389
389
|
# The value of the attribute.
|
390
390
|
# @return [Types::TypedAttributeValue]
|
391
391
|
#
|
392
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
392
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttributeKeyAndValue AWS API Documentation
|
393
393
|
#
|
394
394
|
class AttributeKeyAndValue < Struct.new(
|
395
395
|
:key,
|
@@ -421,7 +421,7 @@ module Aws::CloudDirectory
|
|
421
421
|
# The value for the typed link.
|
422
422
|
# @return [Types::TypedAttributeValue]
|
423
423
|
#
|
424
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
424
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/AttributeNameAndValue AWS API Documentation
|
425
425
|
#
|
426
426
|
class AttributeNameAndValue < Struct.new(
|
427
427
|
:attribute_name,
|
@@ -472,7 +472,7 @@ module Aws::CloudDirectory
|
|
472
472
|
# A reference to the object being mutated.
|
473
473
|
# @return [Types::ObjectReference]
|
474
474
|
#
|
475
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAddFacetToObject AWS API Documentation
|
476
476
|
#
|
477
477
|
class BatchAddFacetToObject < Struct.new(
|
478
478
|
:schema_facet,
|
@@ -483,7 +483,7 @@ module Aws::CloudDirectory
|
|
483
483
|
|
484
484
|
# The result of a batch add facet to object operation.
|
485
485
|
#
|
486
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAddFacetToObjectResponse AWS API Documentation
|
487
487
|
#
|
488
488
|
class BatchAddFacetToObjectResponse < Aws::EmptyStructure; end
|
489
489
|
|
@@ -514,7 +514,7 @@ module Aws::CloudDirectory
|
|
514
514
|
# The name of the link.
|
515
515
|
# @return [String]
|
516
516
|
#
|
517
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAttachObject AWS API Documentation
|
518
518
|
#
|
519
519
|
class BatchAttachObject < Struct.new(
|
520
520
|
:parent_reference,
|
@@ -529,7 +529,7 @@ module Aws::CloudDirectory
|
|
529
529
|
# The `ObjectIdentifier` of the object that has been attached.
|
530
530
|
# @return [String]
|
531
531
|
#
|
532
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
532
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAttachObjectResponse AWS API Documentation
|
533
533
|
#
|
534
534
|
class BatchAttachObjectResponse < Struct.new(
|
535
535
|
:attached_object_identifier)
|
@@ -561,7 +561,7 @@ module Aws::CloudDirectory
|
|
561
561
|
# attached.
|
562
562
|
# @return [Types::ObjectReference]
|
563
563
|
#
|
564
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAttachPolicy AWS API Documentation
|
565
565
|
#
|
566
566
|
class BatchAttachPolicy < Struct.new(
|
567
567
|
:policy_reference,
|
@@ -571,7 +571,7 @@ module Aws::CloudDirectory
|
|
571
571
|
|
572
572
|
# Represents the output of an AttachPolicy response operation.
|
573
573
|
#
|
574
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAttachPolicyResponse AWS API Documentation
|
575
575
|
#
|
576
576
|
class BatchAttachPolicyResponse < Aws::EmptyStructure; end
|
577
577
|
|
@@ -599,7 +599,7 @@ module Aws::CloudDirectory
|
|
599
599
|
# A reference to the object that you are attaching to the index.
|
600
600
|
# @return [Types::ObjectReference]
|
601
601
|
#
|
602
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
602
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAttachToIndex AWS API Documentation
|
603
603
|
#
|
604
604
|
class BatchAttachToIndex < Struct.new(
|
605
605
|
:index_reference,
|
@@ -613,7 +613,7 @@ module Aws::CloudDirectory
|
|
613
613
|
# The `ObjectIdentifier` of the object that was attached to the index.
|
614
614
|
# @return [String]
|
615
615
|
#
|
616
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
616
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAttachToIndexResponse AWS API Documentation
|
617
617
|
#
|
618
618
|
class BatchAttachToIndexResponse < Struct.new(
|
619
619
|
:attached_object_identifier)
|
@@ -669,7 +669,7 @@ module Aws::CloudDirectory
|
|
669
669
|
# A set of attributes that are associated with the typed link.
|
670
670
|
# @return [Array<Types::AttributeNameAndValue>]
|
671
671
|
#
|
672
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAttachTypedLink AWS API Documentation
|
673
673
|
#
|
674
674
|
class BatchAttachTypedLink < Struct.new(
|
675
675
|
:source_object_reference,
|
@@ -685,7 +685,7 @@ module Aws::CloudDirectory
|
|
685
685
|
# Returns a typed link specifier as output.
|
686
686
|
# @return [Types::TypedLinkSpecifier]
|
687
687
|
#
|
688
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchAttachTypedLinkResponse AWS API Documentation
|
689
689
|
#
|
690
690
|
class BatchAttachTypedLinkResponse < Struct.new(
|
691
691
|
:typed_link_specifier)
|
@@ -740,7 +740,7 @@ module Aws::CloudDirectory
|
|
740
740
|
# [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#batches
|
741
741
|
# @return [String]
|
742
742
|
#
|
743
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchCreateIndex AWS API Documentation
|
744
744
|
#
|
745
745
|
class BatchCreateIndex < Struct.new(
|
746
746
|
:ordered_indexed_attribute_list,
|
@@ -757,7 +757,7 @@ module Aws::CloudDirectory
|
|
757
757
|
# The `ObjectIdentifier` of the index created by this operation.
|
758
758
|
# @return [String]
|
759
759
|
#
|
760
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchCreateIndexResponse AWS API Documentation
|
761
761
|
#
|
762
762
|
class BatchCreateIndexResponse < Struct.new(
|
763
763
|
:object_identifier)
|
@@ -826,7 +826,7 @@ module Aws::CloudDirectory
|
|
826
826
|
# [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#batches
|
827
827
|
# @return [String]
|
828
828
|
#
|
829
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchCreateObject AWS API Documentation
|
830
830
|
#
|
831
831
|
class BatchCreateObject < Struct.new(
|
832
832
|
:schema_facet,
|
@@ -843,7 +843,7 @@ module Aws::CloudDirectory
|
|
843
843
|
# The ID that is associated with the object.
|
844
844
|
# @return [String]
|
845
845
|
#
|
846
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
846
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchCreateObjectResponse AWS API Documentation
|
847
847
|
#
|
848
848
|
class BatchCreateObjectResponse < Struct.new(
|
849
849
|
:object_identifier)
|
@@ -865,7 +865,7 @@ module Aws::CloudDirectory
|
|
865
865
|
# The reference that identifies the object.
|
866
866
|
# @return [Types::ObjectReference]
|
867
867
|
#
|
868
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDeleteObject AWS API Documentation
|
869
869
|
#
|
870
870
|
class BatchDeleteObject < Struct.new(
|
871
871
|
:object_reference)
|
@@ -874,7 +874,7 @@ module Aws::CloudDirectory
|
|
874
874
|
|
875
875
|
# Represents the output of a DeleteObject response operation.
|
876
876
|
#
|
877
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
877
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDeleteObjectResponse AWS API Documentation
|
878
878
|
#
|
879
879
|
class BatchDeleteObjectResponse < Aws::EmptyStructure; end
|
880
880
|
|
@@ -902,7 +902,7 @@ module Aws::CloudDirectory
|
|
902
902
|
# A reference to the object being detached from the index.
|
903
903
|
# @return [Types::ObjectReference]
|
904
904
|
#
|
905
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDetachFromIndex AWS API Documentation
|
906
906
|
#
|
907
907
|
class BatchDetachFromIndex < Struct.new(
|
908
908
|
:index_reference,
|
@@ -917,7 +917,7 @@ module Aws::CloudDirectory
|
|
917
917
|
# index.
|
918
918
|
# @return [String]
|
919
919
|
#
|
920
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDetachFromIndexResponse AWS API Documentation
|
921
921
|
#
|
922
922
|
class BatchDetachFromIndexResponse < Struct.new(
|
923
923
|
:detached_object_identifier)
|
@@ -954,7 +954,7 @@ module Aws::CloudDirectory
|
|
954
954
|
# [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#batches
|
955
955
|
# @return [String]
|
956
956
|
#
|
957
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDetachObject AWS API Documentation
|
958
958
|
#
|
959
959
|
class BatchDetachObject < Struct.new(
|
960
960
|
:parent_reference,
|
@@ -969,7 +969,7 @@ module Aws::CloudDirectory
|
|
969
969
|
# The `ObjectIdentifier` of the detached object.
|
970
970
|
# @return [String]
|
971
971
|
#
|
972
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
972
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDetachObjectResponse AWS API Documentation
|
973
973
|
#
|
974
974
|
class BatchDetachObjectResponse < Struct.new(
|
975
975
|
:detached_object_identifier)
|
@@ -1001,7 +1001,7 @@ module Aws::CloudDirectory
|
|
1001
1001
|
# detached.
|
1002
1002
|
# @return [Types::ObjectReference]
|
1003
1003
|
#
|
1004
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDetachPolicy AWS API Documentation
|
1005
1005
|
#
|
1006
1006
|
class BatchDetachPolicy < Struct.new(
|
1007
1007
|
:policy_reference,
|
@@ -1011,7 +1011,7 @@ module Aws::CloudDirectory
|
|
1011
1011
|
|
1012
1012
|
# Represents the output of a DetachPolicy response operation.
|
1013
1013
|
#
|
1014
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDetachPolicyResponse AWS API Documentation
|
1015
1015
|
#
|
1016
1016
|
class BatchDetachPolicyResponse < Aws::EmptyStructure; end
|
1017
1017
|
|
@@ -1053,7 +1053,7 @@ module Aws::CloudDirectory
|
|
1053
1053
|
# Used to accept a typed link specifier as input.
|
1054
1054
|
# @return [Types::TypedLinkSpecifier]
|
1055
1055
|
#
|
1056
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1056
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDetachTypedLink AWS API Documentation
|
1057
1057
|
#
|
1058
1058
|
class BatchDetachTypedLink < Struct.new(
|
1059
1059
|
:typed_link_specifier)
|
@@ -1062,7 +1062,7 @@ module Aws::CloudDirectory
|
|
1062
1062
|
|
1063
1063
|
# Represents the output of a DetachTypedLink response operation.
|
1064
1064
|
#
|
1065
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1065
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDetachTypedLinkResponse AWS API Documentation
|
1066
1066
|
#
|
1067
1067
|
class BatchDetachTypedLinkResponse < Aws::EmptyStructure; end
|
1068
1068
|
|
@@ -1109,7 +1109,7 @@ module Aws::CloudDirectory
|
|
1109
1109
|
# A list of attribute names whose values will be retrieved.
|
1110
1110
|
# @return [Array<String>]
|
1111
1111
|
#
|
1112
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchGetLinkAttributes AWS API Documentation
|
1113
1113
|
#
|
1114
1114
|
class BatchGetLinkAttributes < Struct.new(
|
1115
1115
|
:typed_link_specifier,
|
@@ -1123,7 +1123,7 @@ module Aws::CloudDirectory
|
|
1123
1123
|
# The attributes that are associated with the typed link.
|
1124
1124
|
# @return [Array<Types::AttributeKeyAndValue>]
|
1125
1125
|
#
|
1126
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchGetLinkAttributesResponse AWS API Documentation
|
1127
1127
|
#
|
1128
1128
|
class BatchGetLinkAttributesResponse < Struct.new(
|
1129
1129
|
:attributes)
|
@@ -1162,7 +1162,7 @@ module Aws::CloudDirectory
|
|
1162
1162
|
# List of attribute names whose values will be retrieved.
|
1163
1163
|
# @return [Array<String>]
|
1164
1164
|
#
|
1165
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchGetObjectAttributes AWS API Documentation
|
1166
1166
|
#
|
1167
1167
|
class BatchGetObjectAttributes < Struct.new(
|
1168
1168
|
:object_reference,
|
@@ -1177,7 +1177,7 @@ module Aws::CloudDirectory
|
|
1177
1177
|
# The attribute values that are associated with an object.
|
1178
1178
|
# @return [Array<Types::AttributeKeyAndValue>]
|
1179
1179
|
#
|
1180
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchGetObjectAttributesResponse AWS API Documentation
|
1181
1181
|
#
|
1182
1182
|
class BatchGetObjectAttributesResponse < Struct.new(
|
1183
1183
|
:attributes)
|
@@ -1201,7 +1201,7 @@ module Aws::CloudDirectory
|
|
1201
1201
|
# A reference to the object.
|
1202
1202
|
# @return [Types::ObjectReference]
|
1203
1203
|
#
|
1204
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchGetObjectInformation AWS API Documentation
|
1205
1205
|
#
|
1206
1206
|
class BatchGetObjectInformation < Struct.new(
|
1207
1207
|
:object_reference)
|
@@ -1218,7 +1218,7 @@ module Aws::CloudDirectory
|
|
1218
1218
|
# The `ObjectIdentifier` of the specified object.
|
1219
1219
|
# @return [String]
|
1220
1220
|
#
|
1221
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchGetObjectInformationResponse AWS API Documentation
|
1222
1222
|
#
|
1223
1223
|
class BatchGetObjectInformationResponse < Struct.new(
|
1224
1224
|
:schema_facets,
|
@@ -1253,7 +1253,7 @@ module Aws::CloudDirectory
|
|
1253
1253
|
# The maximum number of results to retrieve.
|
1254
1254
|
# @return [Integer]
|
1255
1255
|
#
|
1256
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1256
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListAttachedIndices AWS API Documentation
|
1257
1257
|
#
|
1258
1258
|
class BatchListAttachedIndices < Struct.new(
|
1259
1259
|
:target_reference,
|
@@ -1272,7 +1272,7 @@ module Aws::CloudDirectory
|
|
1272
1272
|
# The pagination token.
|
1273
1273
|
# @return [String]
|
1274
1274
|
#
|
1275
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1275
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListAttachedIndicesResponse AWS API Documentation
|
1276
1276
|
#
|
1277
1277
|
class BatchListAttachedIndicesResponse < Struct.new(
|
1278
1278
|
:index_attachments,
|
@@ -1349,7 +1349,7 @@ module Aws::CloudDirectory
|
|
1349
1349
|
# The maximum number of results to retrieve.
|
1350
1350
|
# @return [Integer]
|
1351
1351
|
#
|
1352
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1352
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListIncomingTypedLinks AWS API Documentation
|
1353
1353
|
#
|
1354
1354
|
class BatchListIncomingTypedLinks < Struct.new(
|
1355
1355
|
:object_reference,
|
@@ -1370,7 +1370,7 @@ module Aws::CloudDirectory
|
|
1370
1370
|
# The pagination token.
|
1371
1371
|
# @return [String]
|
1372
1372
|
#
|
1373
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1373
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListIncomingTypedLinksResponse AWS API Documentation
|
1374
1374
|
#
|
1375
1375
|
class BatchListIncomingTypedLinksResponse < Struct.new(
|
1376
1376
|
:link_specifiers,
|
@@ -1436,7 +1436,7 @@ module Aws::CloudDirectory
|
|
1436
1436
|
# The pagination token.
|
1437
1437
|
# @return [String]
|
1438
1438
|
#
|
1439
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1439
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListIndex AWS API Documentation
|
1440
1440
|
#
|
1441
1441
|
class BatchListIndex < Struct.new(
|
1442
1442
|
:ranges_on_indexed_values,
|
@@ -1456,7 +1456,7 @@ module Aws::CloudDirectory
|
|
1456
1456
|
# The pagination token.
|
1457
1457
|
# @return [String]
|
1458
1458
|
#
|
1459
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListIndexResponse AWS API Documentation
|
1460
1460
|
#
|
1461
1461
|
class BatchListIndexResponse < Struct.new(
|
1462
1462
|
:index_attachments,
|
@@ -1499,7 +1499,7 @@ module Aws::CloudDirectory
|
|
1499
1499
|
# with a certain facet.
|
1500
1500
|
# @return [Types::SchemaFacet]
|
1501
1501
|
#
|
1502
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1502
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectAttributes AWS API Documentation
|
1503
1503
|
#
|
1504
1504
|
class BatchListObjectAttributes < Struct.new(
|
1505
1505
|
:object_reference,
|
@@ -1520,7 +1520,7 @@ module Aws::CloudDirectory
|
|
1520
1520
|
# The pagination token.
|
1521
1521
|
# @return [String]
|
1522
1522
|
#
|
1523
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1523
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectAttributesResponse AWS API Documentation
|
1524
1524
|
#
|
1525
1525
|
class BatchListObjectAttributesResponse < Struct.new(
|
1526
1526
|
:attributes,
|
@@ -1554,7 +1554,7 @@ module Aws::CloudDirectory
|
|
1554
1554
|
# approximate number.
|
1555
1555
|
# @return [Integer]
|
1556
1556
|
#
|
1557
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectChildren AWS API Documentation
|
1558
1558
|
#
|
1559
1559
|
class BatchListObjectChildren < Struct.new(
|
1560
1560
|
:object_reference,
|
@@ -1574,7 +1574,7 @@ module Aws::CloudDirectory
|
|
1574
1574
|
# The pagination token.
|
1575
1575
|
# @return [String]
|
1576
1576
|
#
|
1577
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectChildrenResponse AWS API Documentation
|
1578
1578
|
#
|
1579
1579
|
class BatchListObjectChildrenResponse < Struct.new(
|
1580
1580
|
:children,
|
@@ -1611,7 +1611,7 @@ module Aws::CloudDirectory
|
|
1611
1611
|
# The maximum number of results to retrieve.
|
1612
1612
|
# @return [Integer]
|
1613
1613
|
#
|
1614
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1614
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectParentPaths AWS API Documentation
|
1615
1615
|
#
|
1616
1616
|
class BatchListObjectParentPaths < Struct.new(
|
1617
1617
|
:object_reference,
|
@@ -1631,7 +1631,7 @@ module Aws::CloudDirectory
|
|
1631
1631
|
# The pagination token.
|
1632
1632
|
# @return [String]
|
1633
1633
|
#
|
1634
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectParentPathsResponse AWS API Documentation
|
1635
1635
|
#
|
1636
1636
|
class BatchListObjectParentPathsResponse < Struct.new(
|
1637
1637
|
:path_to_object_identifiers_list,
|
@@ -1667,7 +1667,7 @@ module Aws::CloudDirectory
|
|
1667
1667
|
# The maximum number of results to retrieve.
|
1668
1668
|
# @return [Integer]
|
1669
1669
|
#
|
1670
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectPolicies AWS API Documentation
|
1671
1671
|
#
|
1672
1672
|
class BatchListObjectPolicies < Struct.new(
|
1673
1673
|
:object_reference,
|
@@ -1687,7 +1687,7 @@ module Aws::CloudDirectory
|
|
1687
1687
|
# The pagination token.
|
1688
1688
|
# @return [String]
|
1689
1689
|
#
|
1690
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1690
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectPoliciesResponse AWS API Documentation
|
1691
1691
|
#
|
1692
1692
|
class BatchListObjectPoliciesResponse < Struct.new(
|
1693
1693
|
:attached_policy_ids,
|
@@ -1764,7 +1764,7 @@ module Aws::CloudDirectory
|
|
1764
1764
|
# The maximum number of results to retrieve.
|
1765
1765
|
# @return [Integer]
|
1766
1766
|
#
|
1767
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListOutgoingTypedLinks AWS API Documentation
|
1768
1768
|
#
|
1769
1769
|
class BatchListOutgoingTypedLinks < Struct.new(
|
1770
1770
|
:object_reference,
|
@@ -1785,7 +1785,7 @@ module Aws::CloudDirectory
|
|
1785
1785
|
# The pagination token.
|
1786
1786
|
# @return [String]
|
1787
1787
|
#
|
1788
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListOutgoingTypedLinksResponse AWS API Documentation
|
1789
1789
|
#
|
1790
1790
|
class BatchListOutgoingTypedLinksResponse < Struct.new(
|
1791
1791
|
:typed_link_specifiers,
|
@@ -1820,7 +1820,7 @@ module Aws::CloudDirectory
|
|
1820
1820
|
# The maximum number of results to retrieve.
|
1821
1821
|
# @return [Integer]
|
1822
1822
|
#
|
1823
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1823
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListPolicyAttachments AWS API Documentation
|
1824
1824
|
#
|
1825
1825
|
class BatchListPolicyAttachments < Struct.new(
|
1826
1826
|
:policy_reference,
|
@@ -1839,7 +1839,7 @@ module Aws::CloudDirectory
|
|
1839
1839
|
# The pagination token.
|
1840
1840
|
# @return [String]
|
1841
1841
|
#
|
1842
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1842
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListPolicyAttachmentsResponse AWS API Documentation
|
1843
1843
|
#
|
1844
1844
|
class BatchListPolicyAttachmentsResponse < Struct.new(
|
1845
1845
|
:object_identifiers,
|
@@ -1875,7 +1875,7 @@ module Aws::CloudDirectory
|
|
1875
1875
|
# The maximum number of results to retrieve.
|
1876
1876
|
# @return [Integer]
|
1877
1877
|
#
|
1878
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1878
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchLookupPolicy AWS API Documentation
|
1879
1879
|
#
|
1880
1880
|
class BatchLookupPolicy < Struct.new(
|
1881
1881
|
:object_reference,
|
@@ -1900,7 +1900,7 @@ module Aws::CloudDirectory
|
|
1900
1900
|
# The pagination token.
|
1901
1901
|
# @return [String]
|
1902
1902
|
#
|
1903
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1903
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchLookupPolicyResponse AWS API Documentation
|
1904
1904
|
#
|
1905
1905
|
class BatchLookupPolicyResponse < Struct.new(
|
1906
1906
|
:policy_to_path_list,
|
@@ -1919,7 +1919,7 @@ module Aws::CloudDirectory
|
|
1919
1919
|
# An exception message that is associated with the failure.
|
1920
1920
|
# @return [String]
|
1921
1921
|
#
|
1922
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
1922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchReadException AWS API Documentation
|
1923
1923
|
#
|
1924
1924
|
class BatchReadException < Struct.new(
|
1925
1925
|
:type,
|
@@ -2218,7 +2218,7 @@ module Aws::CloudDirectory
|
|
2218
2218
|
# Retrieves attributes that are associated with a typed link.
|
2219
2219
|
# @return [Types::BatchGetLinkAttributes]
|
2220
2220
|
#
|
2221
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchReadOperation AWS API Documentation
|
2222
2222
|
#
|
2223
2223
|
class BatchReadOperation < Struct.new(
|
2224
2224
|
:list_object_attributes,
|
@@ -2247,7 +2247,7 @@ module Aws::CloudDirectory
|
|
2247
2247
|
# Identifies which operation in a batch has failed.
|
2248
2248
|
# @return [Types::BatchReadException]
|
2249
2249
|
#
|
2250
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchReadOperationResponse AWS API Documentation
|
2251
2251
|
#
|
2252
2252
|
class BatchReadOperationResponse < Struct.new(
|
2253
2253
|
:successful_response,
|
@@ -2479,7 +2479,7 @@ module Aws::CloudDirectory
|
|
2479
2479
|
# that same object.
|
2480
2480
|
# @return [String]
|
2481
2481
|
#
|
2482
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2482
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchReadRequest AWS API Documentation
|
2483
2483
|
#
|
2484
2484
|
class BatchReadRequest < Struct.new(
|
2485
2485
|
:directory_arn,
|
@@ -2492,7 +2492,7 @@ module Aws::CloudDirectory
|
|
2492
2492
|
# A list of all the responses for each batch read.
|
2493
2493
|
# @return [Array<Types::BatchReadOperationResponse>]
|
2494
2494
|
#
|
2495
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2495
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchReadResponse AWS API Documentation
|
2496
2496
|
#
|
2497
2497
|
class BatchReadResponse < Struct.new(
|
2498
2498
|
:responses)
|
@@ -2587,7 +2587,7 @@ module Aws::CloudDirectory
|
|
2587
2587
|
# The list of attributes to retrieve from the typed link.
|
2588
2588
|
# @return [Types::BatchGetLinkAttributesResponse]
|
2589
2589
|
#
|
2590
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchReadSuccessfulResponse AWS API Documentation
|
2591
2591
|
#
|
2592
2592
|
class BatchReadSuccessfulResponse < Struct.new(
|
2593
2593
|
:list_object_attributes,
|
@@ -2629,7 +2629,7 @@ module Aws::CloudDirectory
|
|
2629
2629
|
# A reference to the object whose facet will be removed.
|
2630
2630
|
# @return [Types::ObjectReference]
|
2631
2631
|
#
|
2632
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchRemoveFacetFromObject AWS API Documentation
|
2633
2633
|
#
|
2634
2634
|
class BatchRemoveFacetFromObject < Struct.new(
|
2635
2635
|
:schema_facet,
|
@@ -2639,7 +2639,7 @@ module Aws::CloudDirectory
|
|
2639
2639
|
|
2640
2640
|
# An empty result that represents success.
|
2641
2641
|
#
|
2642
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchRemoveFacetFromObjectResponse AWS API Documentation
|
2643
2643
|
#
|
2644
2644
|
class BatchRemoveFacetFromObjectResponse < Aws::EmptyStructure; end
|
2645
2645
|
|
@@ -2705,7 +2705,7 @@ module Aws::CloudDirectory
|
|
2705
2705
|
# The attributes update structure.
|
2706
2706
|
# @return [Array<Types::LinkAttributeUpdate>]
|
2707
2707
|
#
|
2708
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchUpdateLinkAttributes AWS API Documentation
|
2709
2709
|
#
|
2710
2710
|
class BatchUpdateLinkAttributes < Struct.new(
|
2711
2711
|
:typed_link_specifier,
|
@@ -2715,7 +2715,7 @@ module Aws::CloudDirectory
|
|
2715
2715
|
|
2716
2716
|
# Represents the output of a UpdateLinkAttributes response operation.
|
2717
2717
|
#
|
2718
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchUpdateLinkAttributesResponse AWS API Documentation
|
2719
2719
|
#
|
2720
2720
|
class BatchUpdateLinkAttributesResponse < Aws::EmptyStructure; end
|
2721
2721
|
|
@@ -2757,7 +2757,7 @@ module Aws::CloudDirectory
|
|
2757
2757
|
# Attributes update structure.
|
2758
2758
|
# @return [Array<Types::ObjectAttributeUpdate>]
|
2759
2759
|
#
|
2760
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchUpdateObjectAttributes AWS API Documentation
|
2761
2761
|
#
|
2762
2762
|
class BatchUpdateObjectAttributes < Struct.new(
|
2763
2763
|
:object_reference,
|
@@ -2771,7 +2771,7 @@ module Aws::CloudDirectory
|
|
2771
2771
|
# ID that is associated with the object.
|
2772
2772
|
# @return [String]
|
2773
2773
|
#
|
2774
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
2774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchUpdateObjectAttributesResponse AWS API Documentation
|
2775
2775
|
#
|
2776
2776
|
class BatchUpdateObjectAttributesResponse < Struct.new(
|
2777
2777
|
:object_identifier)
|
@@ -3111,7 +3111,7 @@ module Aws::CloudDirectory
|
|
3111
3111
|
# Updates a given object's attributes.
|
3112
3112
|
# @return [Types::BatchUpdateLinkAttributes]
|
3113
3113
|
#
|
3114
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3114
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchWriteOperation AWS API Documentation
|
3115
3115
|
#
|
3116
3116
|
class BatchWriteOperation < Struct.new(
|
3117
3117
|
:create_object,
|
@@ -3209,7 +3209,7 @@ module Aws::CloudDirectory
|
|
3209
3209
|
# Represents the output of a `BatchWrite` response operation.
|
3210
3210
|
# @return [Types::BatchUpdateLinkAttributesResponse]
|
3211
3211
|
#
|
3212
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3212
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchWriteOperationResponse AWS API Documentation
|
3213
3213
|
#
|
3214
3214
|
class BatchWriteOperationResponse < Struct.new(
|
3215
3215
|
:create_object,
|
@@ -3500,7 +3500,7 @@ module Aws::CloudDirectory
|
|
3500
3500
|
# A list of operations that are part of the batch.
|
3501
3501
|
# @return [Array<Types::BatchWriteOperation>]
|
3502
3502
|
#
|
3503
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3503
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchWriteRequest AWS API Documentation
|
3504
3504
|
#
|
3505
3505
|
class BatchWriteRequest < Struct.new(
|
3506
3506
|
:directory_arn,
|
@@ -3512,7 +3512,7 @@ module Aws::CloudDirectory
|
|
3512
3512
|
# A list of all the responses for each batch write.
|
3513
3513
|
# @return [Array<Types::BatchWriteOperationResponse>]
|
3514
3514
|
#
|
3515
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchWriteResponse AWS API Documentation
|
3516
3516
|
#
|
3517
3517
|
class BatchWriteResponse < Struct.new(
|
3518
3518
|
:responses)
|
@@ -3536,7 +3536,7 @@ module Aws::CloudDirectory
|
|
3536
3536
|
# copied into the data Directory. For more information, see arns.
|
3537
3537
|
# @return [String]
|
3538
3538
|
#
|
3539
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateDirectoryRequest AWS API Documentation
|
3540
3540
|
#
|
3541
3541
|
class CreateDirectoryRequest < Struct.new(
|
3542
3542
|
:name,
|
@@ -3563,7 +3563,7 @@ module Aws::CloudDirectory
|
|
3563
3563
|
# referred to applied schema ARN. For more information, see arns.
|
3564
3564
|
# @return [String]
|
3565
3565
|
#
|
3566
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateDirectoryResponse AWS API Documentation
|
3567
3567
|
#
|
3568
3568
|
class CreateDirectoryResponse < Struct.new(
|
3569
3569
|
:directory_arn,
|
@@ -3583,7 +3583,7 @@ module Aws::CloudDirectory
|
|
3583
3583
|
# {
|
3584
3584
|
# name: "AttributeName", # required
|
3585
3585
|
# attribute_definition: {
|
3586
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
3586
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
3587
3587
|
# default_value: {
|
3588
3588
|
# string_value: "StringAttributeValue",
|
3589
3589
|
# binary_value: "data",
|
@@ -3608,7 +3608,8 @@ module Aws::CloudDirectory
|
|
3608
3608
|
# required_behavior: "REQUIRED_ALWAYS", # accepts REQUIRED_ALWAYS, NOT_REQUIRED
|
3609
3609
|
# },
|
3610
3610
|
# ],
|
3611
|
-
# object_type: "NODE", #
|
3611
|
+
# object_type: "NODE", # accepts NODE, LEAF_NODE, POLICY, INDEX
|
3612
|
+
# facet_style: "STATIC", # accepts STATIC, DYNAMIC
|
3612
3613
|
# }
|
3613
3614
|
#
|
3614
3615
|
# @!attribute [rw] schema_arn
|
@@ -3653,17 +3654,25 @@ module Aws::CloudDirectory
|
|
3653
3654
|
# [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies
|
3654
3655
|
# @return [String]
|
3655
3656
|
#
|
3656
|
-
#
|
3657
|
+
# @!attribute [rw] facet_style
|
3658
|
+
# There are two different styles that you can define on any given
|
3659
|
+
# facet, `Static` and `Dynamic`. For static facets, all attributes
|
3660
|
+
# must be defined in the schema. For dynamic facets, attributes can be
|
3661
|
+
# defined during data plane operations.
|
3662
|
+
# @return [String]
|
3663
|
+
#
|
3664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateFacetRequest AWS API Documentation
|
3657
3665
|
#
|
3658
3666
|
class CreateFacetRequest < Struct.new(
|
3659
3667
|
:schema_arn,
|
3660
3668
|
:name,
|
3661
3669
|
:attributes,
|
3662
|
-
:object_type
|
3670
|
+
:object_type,
|
3671
|
+
:facet_style)
|
3663
3672
|
include Aws::Structure
|
3664
3673
|
end
|
3665
3674
|
|
3666
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateFacetResponse AWS API Documentation
|
3667
3676
|
#
|
3668
3677
|
class CreateFacetResponse < Aws::EmptyStructure; end
|
3669
3678
|
|
@@ -3708,7 +3717,7 @@ module Aws::CloudDirectory
|
|
3708
3717
|
# The name of the link between the parent object and the index object.
|
3709
3718
|
# @return [String]
|
3710
3719
|
#
|
3711
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3720
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateIndexRequest AWS API Documentation
|
3712
3721
|
#
|
3713
3722
|
class CreateIndexRequest < Struct.new(
|
3714
3723
|
:directory_arn,
|
@@ -3723,7 +3732,7 @@ module Aws::CloudDirectory
|
|
3723
3732
|
# The `ObjectIdentifier` of the index created by this operation.
|
3724
3733
|
# @return [String]
|
3725
3734
|
#
|
3726
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3735
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateIndexResponse AWS API Documentation
|
3727
3736
|
#
|
3728
3737
|
class CreateIndexResponse < Struct.new(
|
3729
3738
|
:object_identifier)
|
@@ -3787,7 +3796,7 @@ module Aws::CloudDirectory
|
|
3787
3796
|
# The name of link that is used to attach this object to a parent.
|
3788
3797
|
# @return [String]
|
3789
3798
|
#
|
3790
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateObjectRequest AWS API Documentation
|
3791
3800
|
#
|
3792
3801
|
class CreateObjectRequest < Struct.new(
|
3793
3802
|
:directory_arn,
|
@@ -3802,7 +3811,7 @@ module Aws::CloudDirectory
|
|
3802
3811
|
# The identifier that is associated with the object.
|
3803
3812
|
# @return [String]
|
3804
3813
|
#
|
3805
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3814
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateObjectResponse AWS API Documentation
|
3806
3815
|
#
|
3807
3816
|
class CreateObjectResponse < Struct.new(
|
3808
3817
|
:object_identifier)
|
@@ -3821,7 +3830,7 @@ module Aws::CloudDirectory
|
|
3821
3830
|
# account and in each region.
|
3822
3831
|
# @return [String]
|
3823
3832
|
#
|
3824
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3833
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateSchemaRequest AWS API Documentation
|
3825
3834
|
#
|
3826
3835
|
class CreateSchemaRequest < Struct.new(
|
3827
3836
|
:name)
|
@@ -3833,7 +3842,7 @@ module Aws::CloudDirectory
|
|
3833
3842
|
# For more information, see arns.
|
3834
3843
|
# @return [String]
|
3835
3844
|
#
|
3836
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateSchemaResponse AWS API Documentation
|
3837
3846
|
#
|
3838
3847
|
class CreateSchemaResponse < Struct.new(
|
3839
3848
|
:schema_arn)
|
@@ -3850,7 +3859,7 @@ module Aws::CloudDirectory
|
|
3850
3859
|
# attributes: [ # required
|
3851
3860
|
# {
|
3852
3861
|
# name: "AttributeName", # required
|
3853
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
3862
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
3854
3863
|
# default_value: {
|
3855
3864
|
# string_value: "StringAttributeValue",
|
3856
3865
|
# binary_value: "data",
|
@@ -3883,7 +3892,7 @@ module Aws::CloudDirectory
|
|
3883
3892
|
# Facet structure that is associated with the typed link facet.
|
3884
3893
|
# @return [Types::TypedLinkFacet]
|
3885
3894
|
#
|
3886
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateTypedLinkFacetRequest AWS API Documentation
|
3887
3896
|
#
|
3888
3897
|
class CreateTypedLinkFacetRequest < Struct.new(
|
3889
3898
|
:schema_arn,
|
@@ -3891,7 +3900,7 @@ module Aws::CloudDirectory
|
|
3891
3900
|
include Aws::Structure
|
3892
3901
|
end
|
3893
3902
|
|
3894
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3903
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/CreateTypedLinkFacetResponse AWS API Documentation
|
3895
3904
|
#
|
3896
3905
|
class CreateTypedLinkFacetResponse < Aws::EmptyStructure; end
|
3897
3906
|
|
@@ -3906,7 +3915,7 @@ module Aws::CloudDirectory
|
|
3906
3915
|
# The ARN of the directory to delete.
|
3907
3916
|
# @return [String]
|
3908
3917
|
#
|
3909
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3918
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteDirectoryRequest AWS API Documentation
|
3910
3919
|
#
|
3911
3920
|
class DeleteDirectoryRequest < Struct.new(
|
3912
3921
|
:directory_arn)
|
@@ -3917,7 +3926,7 @@ module Aws::CloudDirectory
|
|
3917
3926
|
# The ARN of the deleted directory.
|
3918
3927
|
# @return [String]
|
3919
3928
|
#
|
3920
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3929
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteDirectoryResponse AWS API Documentation
|
3921
3930
|
#
|
3922
3931
|
class DeleteDirectoryResponse < Struct.new(
|
3923
3932
|
:directory_arn)
|
@@ -3941,7 +3950,7 @@ module Aws::CloudDirectory
|
|
3941
3950
|
# The name of the facet to delete.
|
3942
3951
|
# @return [String]
|
3943
3952
|
#
|
3944
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3953
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteFacetRequest AWS API Documentation
|
3945
3954
|
#
|
3946
3955
|
class DeleteFacetRequest < Struct.new(
|
3947
3956
|
:schema_arn,
|
@@ -3949,7 +3958,7 @@ module Aws::CloudDirectory
|
|
3949
3958
|
include Aws::Structure
|
3950
3959
|
end
|
3951
3960
|
|
3952
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3961
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteFacetResponse AWS API Documentation
|
3953
3962
|
#
|
3954
3963
|
class DeleteFacetResponse < Aws::EmptyStructure; end
|
3955
3964
|
|
@@ -3972,7 +3981,7 @@ module Aws::CloudDirectory
|
|
3972
3981
|
# A reference that identifies the object.
|
3973
3982
|
# @return [Types::ObjectReference]
|
3974
3983
|
#
|
3975
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteObjectRequest AWS API Documentation
|
3976
3985
|
#
|
3977
3986
|
class DeleteObjectRequest < Struct.new(
|
3978
3987
|
:directory_arn,
|
@@ -3980,7 +3989,7 @@ module Aws::CloudDirectory
|
|
3980
3989
|
include Aws::Structure
|
3981
3990
|
end
|
3982
3991
|
|
3983
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
3992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteObjectResponse AWS API Documentation
|
3984
3993
|
#
|
3985
3994
|
class DeleteObjectResponse < Aws::EmptyStructure; end
|
3986
3995
|
|
@@ -3996,7 +4005,7 @@ module Aws::CloudDirectory
|
|
3996
4005
|
# information, see arns.
|
3997
4006
|
# @return [String]
|
3998
4007
|
#
|
3999
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4008
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteSchemaRequest AWS API Documentation
|
4000
4009
|
#
|
4001
4010
|
class DeleteSchemaRequest < Struct.new(
|
4002
4011
|
:schema_arn)
|
@@ -4008,7 +4017,7 @@ module Aws::CloudDirectory
|
|
4008
4017
|
# information, see arns.
|
4009
4018
|
# @return [String]
|
4010
4019
|
#
|
4011
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteSchemaResponse AWS API Documentation
|
4012
4021
|
#
|
4013
4022
|
class DeleteSchemaResponse < Struct.new(
|
4014
4023
|
:schema_arn)
|
@@ -4032,7 +4041,7 @@ module Aws::CloudDirectory
|
|
4032
4041
|
# The unique name of the typed link facet.
|
4033
4042
|
# @return [String]
|
4034
4043
|
#
|
4035
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4044
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteTypedLinkFacetRequest AWS API Documentation
|
4036
4045
|
#
|
4037
4046
|
class DeleteTypedLinkFacetRequest < Struct.new(
|
4038
4047
|
:schema_arn,
|
@@ -4040,7 +4049,7 @@ module Aws::CloudDirectory
|
|
4040
4049
|
include Aws::Structure
|
4041
4050
|
end
|
4042
4051
|
|
4043
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DeleteTypedLinkFacetResponse AWS API Documentation
|
4044
4053
|
#
|
4045
4054
|
class DeleteTypedLinkFacetResponse < Aws::EmptyStructure; end
|
4046
4055
|
|
@@ -4070,7 +4079,7 @@ module Aws::CloudDirectory
|
|
4070
4079
|
# A reference to the object being detached from the index.
|
4071
4080
|
# @return [Types::ObjectReference]
|
4072
4081
|
#
|
4073
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4082
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DetachFromIndexRequest AWS API Documentation
|
4074
4083
|
#
|
4075
4084
|
class DetachFromIndexRequest < Struct.new(
|
4076
4085
|
:directory_arn,
|
@@ -4084,7 +4093,7 @@ module Aws::CloudDirectory
|
|
4084
4093
|
# index.
|
4085
4094
|
# @return [String]
|
4086
4095
|
#
|
4087
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4096
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DetachFromIndexResponse AWS API Documentation
|
4088
4097
|
#
|
4089
4098
|
class DetachFromIndexResponse < Struct.new(
|
4090
4099
|
:detached_object_identifier)
|
@@ -4116,7 +4125,7 @@ module Aws::CloudDirectory
|
|
4116
4125
|
# The link name associated with the object that needs to be detached.
|
4117
4126
|
# @return [String]
|
4118
4127
|
#
|
4119
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4128
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DetachObjectRequest AWS API Documentation
|
4120
4129
|
#
|
4121
4130
|
class DetachObjectRequest < Struct.new(
|
4122
4131
|
:directory_arn,
|
@@ -4129,7 +4138,7 @@ module Aws::CloudDirectory
|
|
4129
4138
|
# The `ObjectIdentifier` that was detached from the object.
|
4130
4139
|
# @return [String]
|
4131
4140
|
#
|
4132
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4141
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DetachObjectResponse AWS API Documentation
|
4133
4142
|
#
|
4134
4143
|
class DetachObjectResponse < Struct.new(
|
4135
4144
|
:detached_object_identifier)
|
@@ -4163,7 +4172,7 @@ module Aws::CloudDirectory
|
|
4163
4172
|
# detached.
|
4164
4173
|
# @return [Types::ObjectReference]
|
4165
4174
|
#
|
4166
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DetachPolicyRequest AWS API Documentation
|
4167
4176
|
#
|
4168
4177
|
class DetachPolicyRequest < Struct.new(
|
4169
4178
|
:directory_arn,
|
@@ -4172,7 +4181,7 @@ module Aws::CloudDirectory
|
|
4172
4181
|
include Aws::Structure
|
4173
4182
|
end
|
4174
4183
|
|
4175
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DetachPolicyResponse AWS API Documentation
|
4176
4185
|
#
|
4177
4186
|
class DetachPolicyResponse < Aws::EmptyStructure; end
|
4178
4187
|
|
@@ -4216,7 +4225,7 @@ module Aws::CloudDirectory
|
|
4216
4225
|
# Used to accept a typed link specifier as input.
|
4217
4226
|
# @return [Types::TypedLinkSpecifier]
|
4218
4227
|
#
|
4219
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DetachTypedLinkRequest AWS API Documentation
|
4220
4229
|
#
|
4221
4230
|
class DetachTypedLinkRequest < Struct.new(
|
4222
4231
|
:directory_arn,
|
@@ -4245,7 +4254,7 @@ module Aws::CloudDirectory
|
|
4245
4254
|
# The date and time when the directory was created.
|
4246
4255
|
# @return [Time]
|
4247
4256
|
#
|
4248
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4257
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/Directory AWS API Documentation
|
4249
4258
|
#
|
4250
4259
|
class Directory < Struct.new(
|
4251
4260
|
:name,
|
@@ -4266,7 +4275,7 @@ module Aws::CloudDirectory
|
|
4266
4275
|
# The ARN of the directory to disable.
|
4267
4276
|
# @return [String]
|
4268
4277
|
#
|
4269
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4278
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DisableDirectoryRequest AWS API Documentation
|
4270
4279
|
#
|
4271
4280
|
class DisableDirectoryRequest < Struct.new(
|
4272
4281
|
:directory_arn)
|
@@ -4277,7 +4286,7 @@ module Aws::CloudDirectory
|
|
4277
4286
|
# The ARN of the directory that has been disabled.
|
4278
4287
|
# @return [String]
|
4279
4288
|
#
|
4280
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/DisableDirectoryResponse AWS API Documentation
|
4281
4290
|
#
|
4282
4291
|
class DisableDirectoryResponse < Struct.new(
|
4283
4292
|
:directory_arn)
|
@@ -4295,7 +4304,7 @@ module Aws::CloudDirectory
|
|
4295
4304
|
# The ARN of the directory to enable.
|
4296
4305
|
# @return [String]
|
4297
4306
|
#
|
4298
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4307
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/EnableDirectoryRequest AWS API Documentation
|
4299
4308
|
#
|
4300
4309
|
class EnableDirectoryRequest < Struct.new(
|
4301
4310
|
:directory_arn)
|
@@ -4306,7 +4315,7 @@ module Aws::CloudDirectory
|
|
4306
4315
|
# The ARN of the enabled directory.
|
4307
4316
|
# @return [String]
|
4308
4317
|
#
|
4309
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4318
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/EnableDirectoryResponse AWS API Documentation
|
4310
4319
|
#
|
4311
4320
|
class EnableDirectoryResponse < Struct.new(
|
4312
4321
|
:directory_arn)
|
@@ -4329,11 +4338,19 @@ module Aws::CloudDirectory
|
|
4329
4338
|
# CreateFacetRequest$ObjectType for more details.
|
4330
4339
|
# @return [String]
|
4331
4340
|
#
|
4332
|
-
#
|
4341
|
+
# @!attribute [rw] facet_style
|
4342
|
+
# There are two different styles that you can define on any given
|
4343
|
+
# facet, `Static` and `Dynamic`. For static facets, all attributes
|
4344
|
+
# must be defined in the schema. For dynamic facets, attributes can be
|
4345
|
+
# defined during data plane operations.
|
4346
|
+
# @return [String]
|
4347
|
+
#
|
4348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/Facet AWS API Documentation
|
4333
4349
|
#
|
4334
4350
|
class Facet < Struct.new(
|
4335
4351
|
:name,
|
4336
|
-
:object_type
|
4352
|
+
:object_type,
|
4353
|
+
:facet_style)
|
4337
4354
|
include Aws::Structure
|
4338
4355
|
end
|
4339
4356
|
|
@@ -4345,7 +4362,7 @@ module Aws::CloudDirectory
|
|
4345
4362
|
# {
|
4346
4363
|
# name: "AttributeName", # required
|
4347
4364
|
# attribute_definition: {
|
4348
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
4365
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
4349
4366
|
# default_value: {
|
4350
4367
|
# string_value: "StringAttributeValue",
|
4351
4368
|
# binary_value: "data",
|
@@ -4397,7 +4414,7 @@ module Aws::CloudDirectory
|
|
4397
4414
|
# The required behavior of the `FacetAttribute`.
|
4398
4415
|
# @return [String]
|
4399
4416
|
#
|
4400
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/FacetAttribute AWS API Documentation
|
4401
4418
|
#
|
4402
4419
|
class FacetAttribute < Struct.new(
|
4403
4420
|
:name,
|
@@ -4418,7 +4435,7 @@ module Aws::CloudDirectory
|
|
4418
4435
|
# data as a hash:
|
4419
4436
|
#
|
4420
4437
|
# {
|
4421
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
4438
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
4422
4439
|
# default_value: {
|
4423
4440
|
# string_value: "StringAttributeValue",
|
4424
4441
|
# binary_value: "data",
|
@@ -4453,7 +4470,7 @@ module Aws::CloudDirectory
|
|
4453
4470
|
# Validation rules attached to the attribute definition.
|
4454
4471
|
# @return [Hash<String,Types::Rule>]
|
4455
4472
|
#
|
4456
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4473
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/FacetAttributeDefinition AWS API Documentation
|
4457
4474
|
#
|
4458
4475
|
class FacetAttributeDefinition < Struct.new(
|
4459
4476
|
:type,
|
@@ -4492,7 +4509,7 @@ module Aws::CloudDirectory
|
|
4492
4509
|
# [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences
|
4493
4510
|
# @return [String]
|
4494
4511
|
#
|
4495
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/FacetAttributeReference AWS API Documentation
|
4496
4513
|
#
|
4497
4514
|
class FacetAttributeReference < Struct.new(
|
4498
4515
|
:target_facet_name,
|
@@ -4509,7 +4526,7 @@ module Aws::CloudDirectory
|
|
4509
4526
|
# attribute: {
|
4510
4527
|
# name: "AttributeName", # required
|
4511
4528
|
# attribute_definition: {
|
4512
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
4529
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
4513
4530
|
# default_value: {
|
4514
4531
|
# string_value: "StringAttributeValue",
|
4515
4532
|
# binary_value: "data",
|
@@ -4544,7 +4561,7 @@ module Aws::CloudDirectory
|
|
4544
4561
|
# The action to perform when updating the attribute.
|
4545
4562
|
# @return [String]
|
4546
4563
|
#
|
4547
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/FacetAttributeUpdate AWS API Documentation
|
4548
4565
|
#
|
4549
4566
|
class FacetAttributeUpdate < Struct.new(
|
4550
4567
|
:attribute,
|
@@ -4563,7 +4580,7 @@ module Aws::CloudDirectory
|
|
4563
4580
|
# The ARN of the applied schema.
|
4564
4581
|
# @return [String]
|
4565
4582
|
#
|
4566
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4583
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetAppliedSchemaVersionRequest AWS API Documentation
|
4567
4584
|
#
|
4568
4585
|
class GetAppliedSchemaVersionRequest < Struct.new(
|
4569
4586
|
:schema_arn)
|
@@ -4575,7 +4592,7 @@ module Aws::CloudDirectory
|
|
4575
4592
|
# one was provided.
|
4576
4593
|
# @return [String]
|
4577
4594
|
#
|
4578
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4595
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetAppliedSchemaVersionResponse AWS API Documentation
|
4579
4596
|
#
|
4580
4597
|
class GetAppliedSchemaVersionResponse < Struct.new(
|
4581
4598
|
:applied_schema_arn)
|
@@ -4593,7 +4610,7 @@ module Aws::CloudDirectory
|
|
4593
4610
|
# The ARN of the directory.
|
4594
4611
|
# @return [String]
|
4595
4612
|
#
|
4596
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetDirectoryRequest AWS API Documentation
|
4597
4614
|
#
|
4598
4615
|
class GetDirectoryRequest < Struct.new(
|
4599
4616
|
:directory_arn)
|
@@ -4604,7 +4621,7 @@ module Aws::CloudDirectory
|
|
4604
4621
|
# Metadata about the directory.
|
4605
4622
|
# @return [Types::Directory]
|
4606
4623
|
#
|
4607
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetDirectoryResponse AWS API Documentation
|
4608
4625
|
#
|
4609
4626
|
class GetDirectoryResponse < Struct.new(
|
4610
4627
|
:directory)
|
@@ -4628,7 +4645,7 @@ module Aws::CloudDirectory
|
|
4628
4645
|
# The name of the facet to retrieve.
|
4629
4646
|
# @return [String]
|
4630
4647
|
#
|
4631
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetFacetRequest AWS API Documentation
|
4632
4649
|
#
|
4633
4650
|
class GetFacetRequest < Struct.new(
|
4634
4651
|
:schema_arn,
|
@@ -4640,7 +4657,7 @@ module Aws::CloudDirectory
|
|
4640
4657
|
# The Facet structure that is associated with the facet.
|
4641
4658
|
# @return [Types::Facet]
|
4642
4659
|
#
|
4643
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetFacetResponse AWS API Documentation
|
4644
4661
|
#
|
4645
4662
|
class GetFacetResponse < Struct.new(
|
4646
4663
|
:facet)
|
@@ -4703,7 +4720,7 @@ module Aws::CloudDirectory
|
|
4703
4720
|
# link.
|
4704
4721
|
# @return [String]
|
4705
4722
|
#
|
4706
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4723
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetLinkAttributesRequest AWS API Documentation
|
4707
4724
|
#
|
4708
4725
|
class GetLinkAttributesRequest < Struct.new(
|
4709
4726
|
:directory_arn,
|
@@ -4717,7 +4734,7 @@ module Aws::CloudDirectory
|
|
4717
4734
|
# The attributes that are associated with the typed link.
|
4718
4735
|
# @return [Array<Types::AttributeKeyAndValue>]
|
4719
4736
|
#
|
4720
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4737
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetLinkAttributesResponse AWS API Documentation
|
4721
4738
|
#
|
4722
4739
|
class GetLinkAttributesResponse < Struct.new(
|
4723
4740
|
:attributes)
|
@@ -4764,7 +4781,7 @@ module Aws::CloudDirectory
|
|
4764
4781
|
# List of attribute names whose values will be retrieved.
|
4765
4782
|
# @return [Array<String>]
|
4766
4783
|
#
|
4767
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetObjectAttributesRequest AWS API Documentation
|
4768
4785
|
#
|
4769
4786
|
class GetObjectAttributesRequest < Struct.new(
|
4770
4787
|
:directory_arn,
|
@@ -4779,7 +4796,7 @@ module Aws::CloudDirectory
|
|
4779
4796
|
# The attributes that are associated with the object.
|
4780
4797
|
# @return [Array<Types::AttributeKeyAndValue>]
|
4781
4798
|
#
|
4782
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetObjectAttributesResponse AWS API Documentation
|
4783
4800
|
#
|
4784
4801
|
class GetObjectAttributesResponse < Struct.new(
|
4785
4802
|
:attributes)
|
@@ -4809,7 +4826,7 @@ module Aws::CloudDirectory
|
|
4809
4826
|
# The consistency level at which to retrieve the object information.
|
4810
4827
|
# @return [String]
|
4811
4828
|
#
|
4812
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetObjectInformationRequest AWS API Documentation
|
4813
4830
|
#
|
4814
4831
|
class GetObjectInformationRequest < Struct.new(
|
4815
4832
|
:directory_arn,
|
@@ -4829,7 +4846,7 @@ module Aws::CloudDirectory
|
|
4829
4846
|
# The `ObjectIdentifier` of the specified object.
|
4830
4847
|
# @return [String]
|
4831
4848
|
#
|
4832
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetObjectInformationResponse AWS API Documentation
|
4833
4850
|
#
|
4834
4851
|
class GetObjectInformationResponse < Struct.new(
|
4835
4852
|
:schema_facets,
|
@@ -4848,7 +4865,7 @@ module Aws::CloudDirectory
|
|
4848
4865
|
# The ARN of the schema to retrieve.
|
4849
4866
|
# @return [String]
|
4850
4867
|
#
|
4851
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetSchemaAsJsonRequest AWS API Documentation
|
4852
4869
|
#
|
4853
4870
|
class GetSchemaAsJsonRequest < Struct.new(
|
4854
4871
|
:schema_arn)
|
@@ -4863,7 +4880,7 @@ module Aws::CloudDirectory
|
|
4863
4880
|
# The JSON representation of the schema document.
|
4864
4881
|
# @return [String]
|
4865
4882
|
#
|
4866
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetSchemaAsJsonResponse AWS API Documentation
|
4867
4884
|
#
|
4868
4885
|
class GetSchemaAsJsonResponse < Struct.new(
|
4869
4886
|
:name,
|
@@ -4888,7 +4905,7 @@ module Aws::CloudDirectory
|
|
4888
4905
|
# The unique name of the typed link facet.
|
4889
4906
|
# @return [String]
|
4890
4907
|
#
|
4891
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4908
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetTypedLinkFacetInformationRequest AWS API Documentation
|
4892
4909
|
#
|
4893
4910
|
class GetTypedLinkFacetInformationRequest < Struct.new(
|
4894
4911
|
:schema_arn,
|
@@ -4913,7 +4930,7 @@ module Aws::CloudDirectory
|
|
4913
4930
|
# [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
|
4914
4931
|
# @return [Array<String>]
|
4915
4932
|
#
|
4916
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetTypedLinkFacetInformationResponse AWS API Documentation
|
4917
4934
|
#
|
4918
4935
|
class GetTypedLinkFacetInformationResponse < Struct.new(
|
4919
4936
|
:identity_attribute_order)
|
@@ -4934,7 +4951,7 @@ module Aws::CloudDirectory
|
|
4934
4951
|
# opposite side of the attachment specified in the query.
|
4935
4952
|
# @return [String]
|
4936
4953
|
#
|
4937
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/IndexAttachment AWS API Documentation
|
4938
4955
|
#
|
4939
4956
|
class IndexAttachment < Struct.new(
|
4940
4957
|
:indexed_attributes,
|
@@ -4967,7 +4984,7 @@ module Aws::CloudDirectory
|
|
4967
4984
|
# The value that you want to update to.
|
4968
4985
|
# @return [Types::TypedAttributeValue]
|
4969
4986
|
#
|
4970
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
4987
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/LinkAttributeAction AWS API Documentation
|
4971
4988
|
#
|
4972
4989
|
class LinkAttributeAction < Struct.new(
|
4973
4990
|
:attribute_action_type,
|
@@ -5006,7 +5023,7 @@ module Aws::CloudDirectory
|
|
5006
5023
|
# The action to perform as part of the attribute update.
|
5007
5024
|
# @return [Types::LinkAttributeAction]
|
5008
5025
|
#
|
5009
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/LinkAttributeUpdate AWS API Documentation
|
5010
5027
|
#
|
5011
5028
|
class LinkAttributeUpdate < Struct.new(
|
5012
5029
|
:attribute_key,
|
@@ -5041,7 +5058,7 @@ module Aws::CloudDirectory
|
|
5041
5058
|
# The maximum number of results to retrieve.
|
5042
5059
|
# @return [Integer]
|
5043
5060
|
#
|
5044
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListAppliedSchemaArnsRequest AWS API Documentation
|
5045
5062
|
#
|
5046
5063
|
class ListAppliedSchemaArnsRequest < Struct.new(
|
5047
5064
|
:directory_arn,
|
@@ -5059,7 +5076,7 @@ module Aws::CloudDirectory
|
|
5059
5076
|
# The pagination token.
|
5060
5077
|
# @return [String]
|
5061
5078
|
#
|
5062
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListAppliedSchemaArnsResponse AWS API Documentation
|
5063
5080
|
#
|
5064
5081
|
class ListAppliedSchemaArnsResponse < Struct.new(
|
5065
5082
|
:schema_arns,
|
@@ -5100,7 +5117,7 @@ module Aws::CloudDirectory
|
|
5100
5117
|
# The consistency level to use for this operation.
|
5101
5118
|
# @return [String]
|
5102
5119
|
#
|
5103
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListAttachedIndicesRequest AWS API Documentation
|
5104
5121
|
#
|
5105
5122
|
class ListAttachedIndicesRequest < Struct.new(
|
5106
5123
|
:directory_arn,
|
@@ -5119,7 +5136,7 @@ module Aws::CloudDirectory
|
|
5119
5136
|
# The pagination token.
|
5120
5137
|
# @return [String]
|
5121
5138
|
#
|
5122
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListAttachedIndicesResponse AWS API Documentation
|
5123
5140
|
#
|
5124
5141
|
class ListAttachedIndicesResponse < Struct.new(
|
5125
5142
|
:index_attachments,
|
@@ -5143,7 +5160,7 @@ module Aws::CloudDirectory
|
|
5143
5160
|
# The maximum number of results to retrieve.
|
5144
5161
|
# @return [Integer]
|
5145
5162
|
#
|
5146
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListDevelopmentSchemaArnsRequest AWS API Documentation
|
5147
5164
|
#
|
5148
5165
|
class ListDevelopmentSchemaArnsRequest < Struct.new(
|
5149
5166
|
:next_token,
|
@@ -5159,7 +5176,7 @@ module Aws::CloudDirectory
|
|
5159
5176
|
# The pagination token.
|
5160
5177
|
# @return [String]
|
5161
5178
|
#
|
5162
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListDevelopmentSchemaArnsResponse AWS API Documentation
|
5163
5180
|
#
|
5164
5181
|
class ListDevelopmentSchemaArnsResponse < Struct.new(
|
5165
5182
|
:schema_arns,
|
@@ -5189,7 +5206,7 @@ module Aws::CloudDirectory
|
|
5189
5206
|
# Disabled, or Deleted.
|
5190
5207
|
# @return [String]
|
5191
5208
|
#
|
5192
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListDirectoriesRequest AWS API Documentation
|
5193
5210
|
#
|
5194
5211
|
class ListDirectoriesRequest < Struct.new(
|
5195
5212
|
:next_token,
|
@@ -5207,7 +5224,7 @@ module Aws::CloudDirectory
|
|
5207
5224
|
# The pagination token.
|
5208
5225
|
# @return [String]
|
5209
5226
|
#
|
5210
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListDirectoriesResponse AWS API Documentation
|
5211
5228
|
#
|
5212
5229
|
class ListDirectoriesResponse < Struct.new(
|
5213
5230
|
:directories,
|
@@ -5241,7 +5258,7 @@ module Aws::CloudDirectory
|
|
5241
5258
|
# The maximum number of results to retrieve.
|
5242
5259
|
# @return [Integer]
|
5243
5260
|
#
|
5244
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListFacetAttributesRequest AWS API Documentation
|
5245
5262
|
#
|
5246
5263
|
class ListFacetAttributesRequest < Struct.new(
|
5247
5264
|
:schema_arn,
|
@@ -5259,7 +5276,7 @@ module Aws::CloudDirectory
|
|
5259
5276
|
# The pagination token.
|
5260
5277
|
# @return [String]
|
5261
5278
|
#
|
5262
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListFacetAttributesResponse AWS API Documentation
|
5263
5280
|
#
|
5264
5281
|
class ListFacetAttributesResponse < Struct.new(
|
5265
5282
|
:attributes,
|
@@ -5288,7 +5305,7 @@ module Aws::CloudDirectory
|
|
5288
5305
|
# The maximum number of results to retrieve.
|
5289
5306
|
# @return [Integer]
|
5290
5307
|
#
|
5291
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5308
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListFacetNamesRequest AWS API Documentation
|
5292
5309
|
#
|
5293
5310
|
class ListFacetNamesRequest < Struct.new(
|
5294
5311
|
:schema_arn,
|
@@ -5305,7 +5322,7 @@ module Aws::CloudDirectory
|
|
5305
5322
|
# The pagination token.
|
5306
5323
|
# @return [String]
|
5307
5324
|
#
|
5308
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListFacetNamesResponse AWS API Documentation
|
5309
5326
|
#
|
5310
5327
|
class ListFacetNamesResponse < Struct.new(
|
5311
5328
|
:facet_names,
|
@@ -5388,7 +5405,7 @@ module Aws::CloudDirectory
|
|
5388
5405
|
# The consistency level to execute the request at.
|
5389
5406
|
# @return [String]
|
5390
5407
|
#
|
5391
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5408
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListIncomingTypedLinksRequest AWS API Documentation
|
5392
5409
|
#
|
5393
5410
|
class ListIncomingTypedLinksRequest < Struct.new(
|
5394
5411
|
:directory_arn,
|
@@ -5409,7 +5426,7 @@ module Aws::CloudDirectory
|
|
5409
5426
|
# The pagination token.
|
5410
5427
|
# @return [String]
|
5411
5428
|
#
|
5412
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListIncomingTypedLinksResponse AWS API Documentation
|
5413
5430
|
#
|
5414
5431
|
class ListIncomingTypedLinksResponse < Struct.new(
|
5415
5432
|
:link_specifiers,
|
@@ -5487,7 +5504,7 @@ module Aws::CloudDirectory
|
|
5487
5504
|
# The consistency level to execute the request at.
|
5488
5505
|
# @return [String]
|
5489
5506
|
#
|
5490
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListIndexRequest AWS API Documentation
|
5491
5508
|
#
|
5492
5509
|
class ListIndexRequest < Struct.new(
|
5493
5510
|
:directory_arn,
|
@@ -5507,7 +5524,7 @@ module Aws::CloudDirectory
|
|
5507
5524
|
# The pagination token.
|
5508
5525
|
# @return [String]
|
5509
5526
|
#
|
5510
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5527
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListIndexResponse AWS API Documentation
|
5511
5528
|
#
|
5512
5529
|
class ListIndexResponse < Struct.new(
|
5513
5530
|
:index_attachments,
|
@@ -5515,6 +5532,53 @@ module Aws::CloudDirectory
|
|
5515
5532
|
include Aws::Structure
|
5516
5533
|
end
|
5517
5534
|
|
5535
|
+
# @note When making an API call, you may pass ListManagedSchemaArnsRequest
|
5536
|
+
# data as a hash:
|
5537
|
+
#
|
5538
|
+
# {
|
5539
|
+
# schema_arn: "Arn",
|
5540
|
+
# next_token: "NextToken",
|
5541
|
+
# max_results: 1,
|
5542
|
+
# }
|
5543
|
+
#
|
5544
|
+
# @!attribute [rw] schema_arn
|
5545
|
+
# The response for ListManagedSchemaArns. When this parameter is used,
|
5546
|
+
# all minor version ARNs for a major version are listed.
|
5547
|
+
# @return [String]
|
5548
|
+
#
|
5549
|
+
# @!attribute [rw] next_token
|
5550
|
+
# The pagination token.
|
5551
|
+
# @return [String]
|
5552
|
+
#
|
5553
|
+
# @!attribute [rw] max_results
|
5554
|
+
# The maximum number of results to retrieve.
|
5555
|
+
# @return [Integer]
|
5556
|
+
#
|
5557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListManagedSchemaArnsRequest AWS API Documentation
|
5558
|
+
#
|
5559
|
+
class ListManagedSchemaArnsRequest < Struct.new(
|
5560
|
+
:schema_arn,
|
5561
|
+
:next_token,
|
5562
|
+
:max_results)
|
5563
|
+
include Aws::Structure
|
5564
|
+
end
|
5565
|
+
|
5566
|
+
# @!attribute [rw] schema_arns
|
5567
|
+
# The ARNs for all AWS managed schemas.
|
5568
|
+
# @return [Array<String>]
|
5569
|
+
#
|
5570
|
+
# @!attribute [rw] next_token
|
5571
|
+
# The pagination token.
|
5572
|
+
# @return [String]
|
5573
|
+
#
|
5574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListManagedSchemaArnsResponse AWS API Documentation
|
5575
|
+
#
|
5576
|
+
class ListManagedSchemaArnsResponse < Struct.new(
|
5577
|
+
:schema_arns,
|
5578
|
+
:next_token)
|
5579
|
+
include Aws::Structure
|
5580
|
+
end
|
5581
|
+
|
5518
5582
|
# @note When making an API call, you may pass ListObjectAttributesRequest
|
5519
5583
|
# data as a hash:
|
5520
5584
|
#
|
@@ -5562,7 +5626,7 @@ module Aws::CloudDirectory
|
|
5562
5626
|
# with a certain facet.
|
5563
5627
|
# @return [Types::SchemaFacet]
|
5564
5628
|
#
|
5565
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5629
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectAttributesRequest AWS API Documentation
|
5566
5630
|
#
|
5567
5631
|
class ListObjectAttributesRequest < Struct.new(
|
5568
5632
|
:directory_arn,
|
@@ -5583,7 +5647,7 @@ module Aws::CloudDirectory
|
|
5583
5647
|
# The pagination token.
|
5584
5648
|
# @return [String]
|
5585
5649
|
#
|
5586
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectAttributesResponse AWS API Documentation
|
5587
5651
|
#
|
5588
5652
|
class ListObjectAttributesResponse < Struct.new(
|
5589
5653
|
:attributes,
|
@@ -5629,7 +5693,7 @@ module Aws::CloudDirectory
|
|
5629
5693
|
# that same object.
|
5630
5694
|
# @return [String]
|
5631
5695
|
#
|
5632
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectChildrenRequest AWS API Documentation
|
5633
5697
|
#
|
5634
5698
|
class ListObjectChildrenRequest < Struct.new(
|
5635
5699
|
:directory_arn,
|
@@ -5649,7 +5713,7 @@ module Aws::CloudDirectory
|
|
5649
5713
|
# The pagination token.
|
5650
5714
|
# @return [String]
|
5651
5715
|
#
|
5652
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5716
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectChildrenResponse AWS API Documentation
|
5653
5717
|
#
|
5654
5718
|
class ListObjectChildrenResponse < Struct.new(
|
5655
5719
|
:children,
|
@@ -5687,7 +5751,7 @@ module Aws::CloudDirectory
|
|
5687
5751
|
# is an approximate number.
|
5688
5752
|
# @return [Integer]
|
5689
5753
|
#
|
5690
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5754
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectParentPathsRequest AWS API Documentation
|
5691
5755
|
#
|
5692
5756
|
class ListObjectParentPathsRequest < Struct.new(
|
5693
5757
|
:directory_arn,
|
@@ -5706,7 +5770,7 @@ module Aws::CloudDirectory
|
|
5706
5770
|
# The pagination token.
|
5707
5771
|
# @return [String]
|
5708
5772
|
#
|
5709
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5773
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectParentPathsResponse AWS API Documentation
|
5710
5774
|
#
|
5711
5775
|
class ListObjectParentPathsResponse < Struct.new(
|
5712
5776
|
:path_to_object_identifiers_list,
|
@@ -5752,7 +5816,7 @@ module Aws::CloudDirectory
|
|
5752
5816
|
# that same object.
|
5753
5817
|
# @return [String]
|
5754
5818
|
#
|
5755
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5819
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectParentsRequest AWS API Documentation
|
5756
5820
|
#
|
5757
5821
|
class ListObjectParentsRequest < Struct.new(
|
5758
5822
|
:directory_arn,
|
@@ -5772,7 +5836,7 @@ module Aws::CloudDirectory
|
|
5772
5836
|
# The pagination token.
|
5773
5837
|
# @return [String]
|
5774
5838
|
#
|
5775
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectParentsResponse AWS API Documentation
|
5776
5840
|
#
|
5777
5841
|
class ListObjectParentsResponse < Struct.new(
|
5778
5842
|
:parents,
|
@@ -5818,7 +5882,7 @@ module Aws::CloudDirectory
|
|
5818
5882
|
# that same object.
|
5819
5883
|
# @return [String]
|
5820
5884
|
#
|
5821
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5885
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectPoliciesRequest AWS API Documentation
|
5822
5886
|
#
|
5823
5887
|
class ListObjectPoliciesRequest < Struct.new(
|
5824
5888
|
:directory_arn,
|
@@ -5838,7 +5902,7 @@ module Aws::CloudDirectory
|
|
5838
5902
|
# The pagination token.
|
5839
5903
|
# @return [String]
|
5840
5904
|
#
|
5841
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectPoliciesResponse AWS API Documentation
|
5842
5906
|
#
|
5843
5907
|
class ListObjectPoliciesResponse < Struct.new(
|
5844
5908
|
:attached_policy_ids,
|
@@ -5921,7 +5985,7 @@ module Aws::CloudDirectory
|
|
5921
5985
|
# The consistency level to execute the request at.
|
5922
5986
|
# @return [String]
|
5923
5987
|
#
|
5924
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
5988
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListOutgoingTypedLinksRequest AWS API Documentation
|
5925
5989
|
#
|
5926
5990
|
class ListOutgoingTypedLinksRequest < Struct.new(
|
5927
5991
|
:directory_arn,
|
@@ -5942,7 +6006,7 @@ module Aws::CloudDirectory
|
|
5942
6006
|
# The pagination token.
|
5943
6007
|
# @return [String]
|
5944
6008
|
#
|
5945
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6009
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListOutgoingTypedLinksResponse AWS API Documentation
|
5946
6010
|
#
|
5947
6011
|
class ListOutgoingTypedLinksResponse < Struct.new(
|
5948
6012
|
:typed_link_specifiers,
|
@@ -5987,7 +6051,7 @@ module Aws::CloudDirectory
|
|
5987
6051
|
# that same object.
|
5988
6052
|
# @return [String]
|
5989
6053
|
#
|
5990
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListPolicyAttachmentsRequest AWS API Documentation
|
5991
6055
|
#
|
5992
6056
|
class ListPolicyAttachmentsRequest < Struct.new(
|
5993
6057
|
:directory_arn,
|
@@ -6006,7 +6070,7 @@ module Aws::CloudDirectory
|
|
6006
6070
|
# The pagination token.
|
6007
6071
|
# @return [String]
|
6008
6072
|
#
|
6009
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6073
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListPolicyAttachmentsResponse AWS API Documentation
|
6010
6074
|
#
|
6011
6075
|
class ListPolicyAttachmentsResponse < Struct.new(
|
6012
6076
|
:object_identifiers,
|
@@ -6036,7 +6100,7 @@ module Aws::CloudDirectory
|
|
6036
6100
|
# The maximum number of results to retrieve.
|
6037
6101
|
# @return [Integer]
|
6038
6102
|
#
|
6039
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListPublishedSchemaArnsRequest AWS API Documentation
|
6040
6104
|
#
|
6041
6105
|
class ListPublishedSchemaArnsRequest < Struct.new(
|
6042
6106
|
:schema_arn,
|
@@ -6053,7 +6117,7 @@ module Aws::CloudDirectory
|
|
6053
6117
|
# The pagination token.
|
6054
6118
|
# @return [String]
|
6055
6119
|
#
|
6056
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListPublishedSchemaArnsResponse AWS API Documentation
|
6057
6121
|
#
|
6058
6122
|
class ListPublishedSchemaArnsResponse < Struct.new(
|
6059
6123
|
:schema_arns,
|
@@ -6086,7 +6150,7 @@ module Aws::CloudDirectory
|
|
6086
6150
|
# supported currently.
|
6087
6151
|
# @return [Integer]
|
6088
6152
|
#
|
6089
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListTagsForResourceRequest AWS API Documentation
|
6090
6154
|
#
|
6091
6155
|
class ListTagsForResourceRequest < Struct.new(
|
6092
6156
|
:resource_arn,
|
@@ -6104,7 +6168,7 @@ module Aws::CloudDirectory
|
|
6104
6168
|
# null when there are no more results to return.
|
6105
6169
|
# @return [String]
|
6106
6170
|
#
|
6107
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListTagsForResourceResponse AWS API Documentation
|
6108
6172
|
#
|
6109
6173
|
class ListTagsForResourceResponse < Struct.new(
|
6110
6174
|
:tags,
|
@@ -6139,7 +6203,7 @@ module Aws::CloudDirectory
|
|
6139
6203
|
# The maximum number of results to retrieve.
|
6140
6204
|
# @return [Integer]
|
6141
6205
|
#
|
6142
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListTypedLinkFacetAttributesRequest AWS API Documentation
|
6143
6207
|
#
|
6144
6208
|
class ListTypedLinkFacetAttributesRequest < Struct.new(
|
6145
6209
|
:schema_arn,
|
@@ -6157,7 +6221,7 @@ module Aws::CloudDirectory
|
|
6157
6221
|
# The pagination token.
|
6158
6222
|
# @return [String]
|
6159
6223
|
#
|
6160
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListTypedLinkFacetAttributesResponse AWS API Documentation
|
6161
6225
|
#
|
6162
6226
|
class ListTypedLinkFacetAttributesResponse < Struct.new(
|
6163
6227
|
:attributes,
|
@@ -6187,7 +6251,7 @@ module Aws::CloudDirectory
|
|
6187
6251
|
# The maximum number of results to retrieve.
|
6188
6252
|
# @return [Integer]
|
6189
6253
|
#
|
6190
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListTypedLinkFacetNamesRequest AWS API Documentation
|
6191
6255
|
#
|
6192
6256
|
class ListTypedLinkFacetNamesRequest < Struct.new(
|
6193
6257
|
:schema_arn,
|
@@ -6204,7 +6268,7 @@ module Aws::CloudDirectory
|
|
6204
6268
|
# The pagination token.
|
6205
6269
|
# @return [String]
|
6206
6270
|
#
|
6207
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListTypedLinkFacetNamesResponse AWS API Documentation
|
6208
6272
|
#
|
6209
6273
|
class ListTypedLinkFacetNamesResponse < Struct.new(
|
6210
6274
|
:facet_names,
|
@@ -6243,7 +6307,7 @@ module Aws::CloudDirectory
|
|
6243
6307
|
# is an approximate number.
|
6244
6308
|
# @return [Integer]
|
6245
6309
|
#
|
6246
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/LookupPolicyRequest AWS API Documentation
|
6247
6311
|
#
|
6248
6312
|
class LookupPolicyRequest < Struct.new(
|
6249
6313
|
:directory_arn,
|
@@ -6267,7 +6331,7 @@ module Aws::CloudDirectory
|
|
6267
6331
|
# The pagination token.
|
6268
6332
|
# @return [String]
|
6269
6333
|
#
|
6270
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/LookupPolicyResponse AWS API Documentation
|
6271
6335
|
#
|
6272
6336
|
class LookupPolicyResponse < Struct.new(
|
6273
6337
|
:policy_to_path_list,
|
@@ -6299,7 +6363,7 @@ module Aws::CloudDirectory
|
|
6299
6363
|
# The value that you want to update to.
|
6300
6364
|
# @return [Types::TypedAttributeValue]
|
6301
6365
|
#
|
6302
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ObjectAttributeAction AWS API Documentation
|
6303
6367
|
#
|
6304
6368
|
class ObjectAttributeAction < Struct.new(
|
6305
6369
|
:object_attribute_action_type,
|
@@ -6346,7 +6410,7 @@ module Aws::CloudDirectory
|
|
6346
6410
|
# The range of attribute values being selected.
|
6347
6411
|
# @return [Types::TypedAttributeValueRange]
|
6348
6412
|
#
|
6349
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ObjectAttributeRange AWS API Documentation
|
6350
6414
|
#
|
6351
6415
|
class ObjectAttributeRange < Struct.new(
|
6352
6416
|
:attribute_key,
|
@@ -6385,7 +6449,7 @@ module Aws::CloudDirectory
|
|
6385
6449
|
# The action to perform as part of the attribute update.
|
6386
6450
|
# @return [Types::ObjectAttributeAction]
|
6387
6451
|
#
|
6388
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6452
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ObjectAttributeUpdate AWS API Documentation
|
6389
6453
|
#
|
6390
6454
|
class ObjectAttributeUpdate < Struct.new(
|
6391
6455
|
:object_attribute_key,
|
@@ -6426,7 +6490,7 @@ module Aws::CloudDirectory
|
|
6426
6490
|
# [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#accessingobjects
|
6427
6491
|
# @return [String]
|
6428
6492
|
#
|
6429
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ObjectReference AWS API Documentation
|
6430
6494
|
#
|
6431
6495
|
class ObjectReference < Struct.new(
|
6432
6496
|
:selector)
|
@@ -6446,7 +6510,7 @@ module Aws::CloudDirectory
|
|
6446
6510
|
# in the request.
|
6447
6511
|
# @return [Array<String>]
|
6448
6512
|
#
|
6449
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6513
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/PathToObjectIdentifiers AWS API Documentation
|
6450
6514
|
#
|
6451
6515
|
class PathToObjectIdentifiers < Struct.new(
|
6452
6516
|
:path,
|
@@ -6473,7 +6537,7 @@ module Aws::CloudDirectory
|
|
6473
6537
|
# The type of policy that can be associated with `PolicyAttachment`.
|
6474
6538
|
# @return [String]
|
6475
6539
|
#
|
6476
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6540
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/PolicyAttachment AWS API Documentation
|
6477
6541
|
#
|
6478
6542
|
class PolicyAttachment < Struct.new(
|
6479
6543
|
:policy_id,
|
@@ -6494,7 +6558,7 @@ module Aws::CloudDirectory
|
|
6494
6558
|
# List of policy objects.
|
6495
6559
|
# @return [Array<Types::PolicyAttachment>]
|
6496
6560
|
#
|
6497
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/PolicyToPath AWS API Documentation
|
6498
6562
|
#
|
6499
6563
|
class PolicyToPath < Struct.new(
|
6500
6564
|
:path,
|
@@ -6533,7 +6597,7 @@ module Aws::CloudDirectory
|
|
6533
6597
|
# not provided, the development schema is considered.
|
6534
6598
|
# @return [String]
|
6535
6599
|
#
|
6536
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/PublishSchemaRequest AWS API Documentation
|
6537
6601
|
#
|
6538
6602
|
class PublishSchemaRequest < Struct.new(
|
6539
6603
|
:development_schema_arn,
|
@@ -6548,7 +6612,7 @@ module Aws::CloudDirectory
|
|
6548
6612
|
# information, see arns.
|
6549
6613
|
# @return [String]
|
6550
6614
|
#
|
6551
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/PublishSchemaResponse AWS API Documentation
|
6552
6616
|
#
|
6553
6617
|
class PublishSchemaResponse < Struct.new(
|
6554
6618
|
:published_schema_arn)
|
@@ -6571,7 +6635,7 @@ module Aws::CloudDirectory
|
|
6571
6635
|
# The replacement JSON schema.
|
6572
6636
|
# @return [String]
|
6573
6637
|
#
|
6574
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/PutSchemaFromJsonRequest AWS API Documentation
|
6575
6639
|
#
|
6576
6640
|
class PutSchemaFromJsonRequest < Struct.new(
|
6577
6641
|
:schema_arn,
|
@@ -6583,7 +6647,7 @@ module Aws::CloudDirectory
|
|
6583
6647
|
# The ARN of the schema to update.
|
6584
6648
|
# @return [String]
|
6585
6649
|
#
|
6586
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/PutSchemaFromJsonResponse AWS API Documentation
|
6587
6651
|
#
|
6588
6652
|
class PutSchemaFromJsonResponse < Struct.new(
|
6589
6653
|
:arn)
|
@@ -6616,7 +6680,7 @@ module Aws::CloudDirectory
|
|
6616
6680
|
# A reference to the object to remove the facet from.
|
6617
6681
|
# @return [Types::ObjectReference]
|
6618
6682
|
#
|
6619
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6683
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/RemoveFacetFromObjectRequest AWS API Documentation
|
6620
6684
|
#
|
6621
6685
|
class RemoveFacetFromObjectRequest < Struct.new(
|
6622
6686
|
:directory_arn,
|
@@ -6625,7 +6689,7 @@ module Aws::CloudDirectory
|
|
6625
6689
|
include Aws::Structure
|
6626
6690
|
end
|
6627
6691
|
|
6628
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/RemoveFacetFromObjectResponse AWS API Documentation
|
6629
6693
|
#
|
6630
6694
|
class RemoveFacetFromObjectResponse < Aws::EmptyStructure; end
|
6631
6695
|
|
@@ -6651,7 +6715,7 @@ module Aws::CloudDirectory
|
|
6651
6715
|
# rule.
|
6652
6716
|
# @return [Hash<String,String>]
|
6653
6717
|
#
|
6654
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/Rule AWS API Documentation
|
6655
6719
|
#
|
6656
6720
|
class Rule < Struct.new(
|
6657
6721
|
:type,
|
@@ -6683,7 +6747,7 @@ module Aws::CloudDirectory
|
|
6683
6747
|
# The name of the facet.
|
6684
6748
|
# @return [String]
|
6685
6749
|
#
|
6686
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6750
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/SchemaFacet AWS API Documentation
|
6687
6751
|
#
|
6688
6752
|
class SchemaFacet < Struct.new(
|
6689
6753
|
:schema_arn,
|
@@ -6709,7 +6773,7 @@ module Aws::CloudDirectory
|
|
6709
6773
|
# The value that is associated with the tag.
|
6710
6774
|
# @return [String]
|
6711
6775
|
#
|
6712
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/Tag AWS API Documentation
|
6713
6777
|
#
|
6714
6778
|
class Tag < Struct.new(
|
6715
6779
|
:key,
|
@@ -6739,7 +6803,7 @@ module Aws::CloudDirectory
|
|
6739
6803
|
# A list of tag key-value pairs.
|
6740
6804
|
# @return [Array<Types::Tag>]
|
6741
6805
|
#
|
6742
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6806
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TagResourceRequest AWS API Documentation
|
6743
6807
|
#
|
6744
6808
|
class TagResourceRequest < Struct.new(
|
6745
6809
|
:resource_arn,
|
@@ -6747,7 +6811,7 @@ module Aws::CloudDirectory
|
|
6747
6811
|
include Aws::Structure
|
6748
6812
|
end
|
6749
6813
|
|
6750
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6814
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TagResourceResponse AWS API Documentation
|
6751
6815
|
#
|
6752
6816
|
class TagResourceResponse < Aws::EmptyStructure; end
|
6753
6817
|
|
@@ -6786,7 +6850,7 @@ module Aws::CloudDirectory
|
|
6786
6850
|
# A date and time value.
|
6787
6851
|
# @return [Time]
|
6788
6852
|
#
|
6789
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6853
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TypedAttributeValue AWS API Documentation
|
6790
6854
|
#
|
6791
6855
|
class TypedAttributeValue < Struct.new(
|
6792
6856
|
:string_value,
|
@@ -6842,7 +6906,7 @@ module Aws::CloudDirectory
|
|
6842
6906
|
# The attribute value to terminate the range at.
|
6843
6907
|
# @return [Types::TypedAttributeValue]
|
6844
6908
|
#
|
6845
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TypedAttributeValueRange AWS API Documentation
|
6846
6910
|
#
|
6847
6911
|
class TypedAttributeValueRange < Struct.new(
|
6848
6912
|
:start_mode,
|
@@ -6859,7 +6923,7 @@ module Aws::CloudDirectory
|
|
6859
6923
|
#
|
6860
6924
|
# {
|
6861
6925
|
# name: "AttributeName", # required
|
6862
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
6926
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
6863
6927
|
# default_value: {
|
6864
6928
|
# string_value: "StringAttributeValue",
|
6865
6929
|
# binary_value: "data",
|
@@ -6903,7 +6967,7 @@ module Aws::CloudDirectory
|
|
6903
6967
|
# The required behavior of the `TypedLinkAttributeDefinition`.
|
6904
6968
|
# @return [String]
|
6905
6969
|
#
|
6906
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
6970
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TypedLinkAttributeDefinition AWS API Documentation
|
6907
6971
|
#
|
6908
6972
|
class TypedLinkAttributeDefinition < Struct.new(
|
6909
6973
|
:name,
|
@@ -6951,7 +7015,7 @@ module Aws::CloudDirectory
|
|
6951
7015
|
# The range of attribute values that are being selected.
|
6952
7016
|
# @return [Types::TypedAttributeValueRange]
|
6953
7017
|
#
|
6954
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TypedLinkAttributeRange AWS API Documentation
|
6955
7019
|
#
|
6956
7020
|
class TypedLinkAttributeRange < Struct.new(
|
6957
7021
|
:attribute_name,
|
@@ -6970,7 +7034,7 @@ module Aws::CloudDirectory
|
|
6970
7034
|
# attributes: [ # required
|
6971
7035
|
# {
|
6972
7036
|
# name: "AttributeName", # required
|
6973
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
7037
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
6974
7038
|
# default_value: {
|
6975
7039
|
# string_value: "StringAttributeValue",
|
6976
7040
|
# binary_value: "data",
|
@@ -7012,7 +7076,7 @@ module Aws::CloudDirectory
|
|
7012
7076
|
# ListOutgoingTypedLinks and ListIncomingTypedLinks for details.
|
7013
7077
|
# @return [Array<String>]
|
7014
7078
|
#
|
7015
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TypedLinkFacet AWS API Documentation
|
7016
7080
|
#
|
7017
7081
|
class TypedLinkFacet < Struct.new(
|
7018
7082
|
:name,
|
@@ -7029,7 +7093,7 @@ module Aws::CloudDirectory
|
|
7029
7093
|
# {
|
7030
7094
|
# attribute: { # required
|
7031
7095
|
# name: "AttributeName", # required
|
7032
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
7096
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
7033
7097
|
# default_value: {
|
7034
7098
|
# string_value: "StringAttributeValue",
|
7035
7099
|
# binary_value: "data",
|
@@ -7059,7 +7123,7 @@ module Aws::CloudDirectory
|
|
7059
7123
|
# The action to perform when updating the attribute.
|
7060
7124
|
# @return [String]
|
7061
7125
|
#
|
7062
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TypedLinkFacetAttributeUpdate AWS API Documentation
|
7063
7127
|
#
|
7064
7128
|
class TypedLinkFacetAttributeUpdate < Struct.new(
|
7065
7129
|
:attribute,
|
@@ -7087,7 +7151,7 @@ module Aws::CloudDirectory
|
|
7087
7151
|
# The unique name of the typed link facet.
|
7088
7152
|
# @return [String]
|
7089
7153
|
#
|
7090
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TypedLinkSchemaAndFacetName AWS API Documentation
|
7091
7155
|
#
|
7092
7156
|
class TypedLinkSchemaAndFacetName < Struct.new(
|
7093
7157
|
:schema_arn,
|
@@ -7148,7 +7212,7 @@ module Aws::CloudDirectory
|
|
7148
7212
|
# Identifies the attribute value to update.
|
7149
7213
|
# @return [Array<Types::AttributeNameAndValue>]
|
7150
7214
|
#
|
7151
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7215
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/TypedLinkSpecifier AWS API Documentation
|
7152
7216
|
#
|
7153
7217
|
class TypedLinkSpecifier < Struct.new(
|
7154
7218
|
:typed_link_facet,
|
@@ -7175,7 +7239,7 @@ module Aws::CloudDirectory
|
|
7175
7239
|
# Keys of the tag that need to be removed from the resource.
|
7176
7240
|
# @return [Array<String>]
|
7177
7241
|
#
|
7178
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7242
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UntagResourceRequest AWS API Documentation
|
7179
7243
|
#
|
7180
7244
|
class UntagResourceRequest < Struct.new(
|
7181
7245
|
:resource_arn,
|
@@ -7183,7 +7247,7 @@ module Aws::CloudDirectory
|
|
7183
7247
|
include Aws::Structure
|
7184
7248
|
end
|
7185
7249
|
|
7186
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UntagResourceResponse AWS API Documentation
|
7187
7251
|
#
|
7188
7252
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
7189
7253
|
|
@@ -7198,7 +7262,7 @@ module Aws::CloudDirectory
|
|
7198
7262
|
# attribute: {
|
7199
7263
|
# name: "AttributeName", # required
|
7200
7264
|
# attribute_definition: {
|
7201
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
7265
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
7202
7266
|
# default_value: {
|
7203
7267
|
# string_value: "StringAttributeValue",
|
7204
7268
|
# binary_value: "data",
|
@@ -7248,7 +7312,7 @@ module Aws::CloudDirectory
|
|
7248
7312
|
# CreateFacetRequest$ObjectType for more details.
|
7249
7313
|
# @return [String]
|
7250
7314
|
#
|
7251
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7315
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateFacetRequest AWS API Documentation
|
7252
7316
|
#
|
7253
7317
|
class UpdateFacetRequest < Struct.new(
|
7254
7318
|
:schema_arn,
|
@@ -7258,7 +7322,7 @@ module Aws::CloudDirectory
|
|
7258
7322
|
include Aws::Structure
|
7259
7323
|
end
|
7260
7324
|
|
7261
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateFacetResponse AWS API Documentation
|
7262
7326
|
#
|
7263
7327
|
class UpdateFacetResponse < Aws::EmptyStructure; end
|
7264
7328
|
|
@@ -7330,7 +7394,7 @@ module Aws::CloudDirectory
|
|
7330
7394
|
# The attributes update structure.
|
7331
7395
|
# @return [Array<Types::LinkAttributeUpdate>]
|
7332
7396
|
#
|
7333
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7397
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateLinkAttributesRequest AWS API Documentation
|
7334
7398
|
#
|
7335
7399
|
class UpdateLinkAttributesRequest < Struct.new(
|
7336
7400
|
:directory_arn,
|
@@ -7339,7 +7403,7 @@ module Aws::CloudDirectory
|
|
7339
7403
|
include Aws::Structure
|
7340
7404
|
end
|
7341
7405
|
|
7342
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateLinkAttributesResponse AWS API Documentation
|
7343
7407
|
#
|
7344
7408
|
class UpdateLinkAttributesResponse < Aws::EmptyStructure; end
|
7345
7409
|
|
@@ -7385,7 +7449,7 @@ module Aws::CloudDirectory
|
|
7385
7449
|
# The attributes update structure.
|
7386
7450
|
# @return [Array<Types::ObjectAttributeUpdate>]
|
7387
7451
|
#
|
7388
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7452
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateObjectAttributesRequest AWS API Documentation
|
7389
7453
|
#
|
7390
7454
|
class UpdateObjectAttributesRequest < Struct.new(
|
7391
7455
|
:directory_arn,
|
@@ -7398,7 +7462,7 @@ module Aws::CloudDirectory
|
|
7398
7462
|
# The `ObjectIdentifier` of the updated object.
|
7399
7463
|
# @return [String]
|
7400
7464
|
#
|
7401
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7465
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateObjectAttributesResponse AWS API Documentation
|
7402
7466
|
#
|
7403
7467
|
class UpdateObjectAttributesResponse < Struct.new(
|
7404
7468
|
:object_identifier)
|
@@ -7422,7 +7486,7 @@ module Aws::CloudDirectory
|
|
7422
7486
|
# The name of the schema.
|
7423
7487
|
# @return [String]
|
7424
7488
|
#
|
7425
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateSchemaRequest AWS API Documentation
|
7426
7490
|
#
|
7427
7491
|
class UpdateSchemaRequest < Struct.new(
|
7428
7492
|
:schema_arn,
|
@@ -7435,7 +7499,7 @@ module Aws::CloudDirectory
|
|
7435
7499
|
# information, see arns.
|
7436
7500
|
# @return [String]
|
7437
7501
|
#
|
7438
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7502
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateSchemaResponse AWS API Documentation
|
7439
7503
|
#
|
7440
7504
|
class UpdateSchemaResponse < Struct.new(
|
7441
7505
|
:schema_arn)
|
@@ -7452,7 +7516,7 @@ module Aws::CloudDirectory
|
|
7452
7516
|
# {
|
7453
7517
|
# attribute: { # required
|
7454
7518
|
# name: "AttributeName", # required
|
7455
|
-
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME
|
7519
|
+
# type: "STRING", # required, accepts STRING, BINARY, BOOLEAN, NUMBER, DATETIME, VARIANT
|
7456
7520
|
# default_value: {
|
7457
7521
|
# string_value: "StringAttributeValue",
|
7458
7522
|
# binary_value: "data",
|
@@ -7507,7 +7571,7 @@ module Aws::CloudDirectory
|
|
7507
7571
|
# [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
|
7508
7572
|
# @return [Array<String>]
|
7509
7573
|
#
|
7510
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateTypedLinkFacetRequest AWS API Documentation
|
7511
7575
|
#
|
7512
7576
|
class UpdateTypedLinkFacetRequest < Struct.new(
|
7513
7577
|
:schema_arn,
|
@@ -7517,7 +7581,7 @@ module Aws::CloudDirectory
|
|
7517
7581
|
include Aws::Structure
|
7518
7582
|
end
|
7519
7583
|
|
7520
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateTypedLinkFacetResponse AWS API Documentation
|
7521
7585
|
#
|
7522
7586
|
class UpdateTypedLinkFacetResponse < Aws::EmptyStructure; end
|
7523
7587
|
|
@@ -7546,7 +7610,7 @@ module Aws::CloudDirectory
|
|
7546
7610
|
# This parameter is optional.
|
7547
7611
|
# @return [Boolean]
|
7548
7612
|
#
|
7549
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpgradeAppliedSchemaRequest AWS API Documentation
|
7550
7614
|
#
|
7551
7615
|
class UpgradeAppliedSchemaRequest < Struct.new(
|
7552
7616
|
:published_schema_arn,
|
@@ -7564,7 +7628,7 @@ module Aws::CloudDirectory
|
|
7564
7628
|
# The ARN of the directory that is returned as part of the response.
|
7565
7629
|
# @return [String]
|
7566
7630
|
#
|
7567
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7631
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpgradeAppliedSchemaResponse AWS API Documentation
|
7568
7632
|
#
|
7569
7633
|
class UpgradeAppliedSchemaResponse < Struct.new(
|
7570
7634
|
:upgraded_schema_arn,
|
@@ -7604,7 +7668,7 @@ module Aws::CloudDirectory
|
|
7604
7668
|
# optional and defaults to false.
|
7605
7669
|
# @return [Boolean]
|
7606
7670
|
#
|
7607
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpgradePublishedSchemaRequest AWS API Documentation
|
7608
7672
|
#
|
7609
7673
|
class UpgradePublishedSchemaRequest < Struct.new(
|
7610
7674
|
:development_schema_arn,
|
@@ -7619,7 +7683,7 @@ module Aws::CloudDirectory
|
|
7619
7683
|
# response.
|
7620
7684
|
# @return [String]
|
7621
7685
|
#
|
7622
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-
|
7686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpgradePublishedSchemaResponse AWS API Documentation
|
7623
7687
|
#
|
7624
7688
|
class UpgradePublishedSchemaResponse < Struct.new(
|
7625
7689
|
:upgraded_schema_arn)
|