aws-sdk-clouddirectory 1.9.0 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e101717b856c5d08a80409da224e521a018481c7
4
- data.tar.gz: 6b5d9bf4d63c7680a5242fcc5928920575fa7ffb
3
+ metadata.gz: 7123409518291f2f61758d25130c0ab1fe1099c7
4
+ data.tar.gz: 76d11db3acf81c14afdc265f6dbaf506b6d3aa8e
5
5
  SHA512:
6
- metadata.gz: 50e4b672f61e57422d08852485fc8ea272759b20b3ddf494a18c8f5cfea1284256f6e9a55a2aa60e3e7349c65002390c1ce492b977367855c44f70d3db7c3433
7
- data.tar.gz: fc2ab0bcd97feaee951c82e94985f3394e3d958db2c475065dfc9c4ce4b82ea365b267312d157ab461802c4b9507bb92589d3e9c7b92f36c9168473d9fdcf7ab
6
+ metadata.gz: 7cb4e04ded9dd5ad2e56309e372ed8950353582e8b56000ca0733057baa2a57242de7007348332c03b2957eeb1857cf812fa387cc759836a7408a60126fcb8b3
7
+ data.tar.gz: e4d6b70a2d46eb36734c1fe4aec6b0f386be7d24052d08a4e1df38aea22a1411da653e336dfdc0f2b08b105a1159bbd4ad7cace51a3f8b893fc21808c276bcc4
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-clouddirectory/customizations'
42
42
  # @service
43
43
  module Aws::CloudDirectory
44
44
 
45
- GEM_VERSION = '1.9.0'
45
+ GEM_VERSION = '1.10.0'
46
46
 
47
47
  end
@@ -402,11 +402,11 @@ module Aws::CloudDirectory
402
402
  end
403
403
 
404
404
  # Attaches a typed link to a specified source and target object. For
405
- # more information, see [Typed link][1].
405
+ # more information, see [Typed Links][1].
406
406
  #
407
407
  #
408
408
  #
409
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
409
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
410
410
  #
411
411
  # @option params [required, String] :directory_arn
412
412
  # The Amazon Resource Name (ARN) of the directory where you want to
@@ -551,6 +551,13 @@ module Aws::CloudDirectory
551
551
  # },
552
552
  # attribute_names: ["AttributeName"], # required
553
553
  # },
554
+ # list_object_parents: {
555
+ # object_reference: { # required
556
+ # selector: "SelectorObjectReference",
557
+ # },
558
+ # next_token: "NextToken",
559
+ # max_results: 1,
560
+ # },
554
561
  # list_object_policies: {
555
562
  # object_reference: { # required
556
563
  # selector: "SelectorObjectReference",
@@ -812,6 +819,10 @@ module Aws::CloudDirectory
812
819
  # resp.responses[0].successful_response.get_link_attributes.attributes[0].value.boolean_value #=> Boolean
813
820
  # resp.responses[0].successful_response.get_link_attributes.attributes[0].value.number_value #=> String
814
821
  # resp.responses[0].successful_response.get_link_attributes.attributes[0].value.datetime_value #=> Time
822
+ # resp.responses[0].successful_response.list_object_parents.parent_links #=> Array
823
+ # resp.responses[0].successful_response.list_object_parents.parent_links[0].object_identifier #=> String
824
+ # resp.responses[0].successful_response.list_object_parents.parent_links[0].link_name #=> String
825
+ # resp.responses[0].successful_response.list_object_parents.next_token #=> String
815
826
  # resp.responses[0].exception_response.type #=> String, one of "ValidationException", "InvalidArnException", "ResourceNotFoundException", "InvalidNextTokenException", "AccessDeniedException", "NotNodeException", "FacetValidationException", "CannotListParentOfRootException", "NotIndexException", "NotPolicyException", "DirectoryNotEnabledException", "LimitExceededException", "InternalServiceException"
816
827
  # resp.responses[0].exception_response.message #=> String
817
828
  #
@@ -1132,6 +1143,14 @@ module Aws::CloudDirectory
1132
1143
  # Creates a Directory by copying the published schema into the
1133
1144
  # directory. A directory cannot be created without a schema.
1134
1145
  #
1146
+ # You can also quickly create a directory using a managed schema, called
1147
+ # the `QuickStartSchema`. For more information, see [Managed Schema][1]
1148
+ # in the *Amazon Cloud Directory Developer Guide*.
1149
+ #
1150
+ #
1151
+ #
1152
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_managed.html
1153
+ #
1135
1154
  # @option params [required, String] :name
1136
1155
  # The name of the Directory. Should be unique per account, per region.
1137
1156
  #
@@ -1208,7 +1227,7 @@ module Aws::CloudDirectory
1208
1227
  #
1209
1228
  #
1210
1229
  #
1211
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies
1230
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies
1212
1231
  #
1213
1232
  # @option params [String] :facet_style
1214
1233
  # There are two different styles that you can define on any given facet,
@@ -1265,11 +1284,12 @@ module Aws::CloudDirectory
1265
1284
  req.send_request(options)
1266
1285
  end
1267
1286
 
1268
- # Creates an index object. See [Indexing][1] for more information.
1287
+ # Creates an index object. See [Indexing and search][1] for more
1288
+ # information.
1269
1289
  #
1270
1290
  #
1271
1291
  #
1272
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_indexing.html
1292
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.html
1273
1293
  #
1274
1294
  # @option params [required, String] :directory_arn
1275
1295
  # The ARN of the directory where the index should be created.
@@ -1439,11 +1459,11 @@ module Aws::CloudDirectory
1439
1459
  req.send_request(options)
1440
1460
  end
1441
1461
 
1442
- # Creates a TypedLinkFacet. For more information, see [Typed link][1].
1462
+ # Creates a TypedLinkFacet. For more information, see [Typed Links][1].
1443
1463
  #
1444
1464
  #
1445
1465
  #
1446
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
1466
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
1447
1467
  #
1448
1468
  # @option params [required, String] :schema_arn
1449
1469
  # The Amazon Resource Name (ARN) that is associated with the schema. For
@@ -1556,7 +1576,13 @@ module Aws::CloudDirectory
1556
1576
  end
1557
1577
 
1558
1578
  # Deletes an object and its associated attributes. Only objects with no
1559
- # children and no parents can be deleted.
1579
+ # children and no parents can be deleted. The maximum number of
1580
+ # attributes that can be deleted during an object deletion is 30. For
1581
+ # more information, see [Amazon Cloud Directory Limits][1].
1582
+ #
1583
+ #
1584
+ #
1585
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html
1560
1586
  #
1561
1587
  # @option params [required, String] :directory_arn
1562
1588
  # The Amazon Resource Name (ARN) that is associated with the Directory
@@ -1615,11 +1641,11 @@ module Aws::CloudDirectory
1615
1641
  req.send_request(options)
1616
1642
  end
1617
1643
 
1618
- # Deletes a TypedLinkFacet. For more information, see [Typed link][1].
1644
+ # Deletes a TypedLinkFacet. For more information, see [Typed Links][1].
1619
1645
  #
1620
1646
  #
1621
1647
  #
1622
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
1648
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
1623
1649
  #
1624
1650
  # @option params [required, String] :schema_arn
1625
1651
  # The Amazon Resource Name (ARN) that is associated with the schema. For
@@ -1765,11 +1791,11 @@ module Aws::CloudDirectory
1765
1791
  end
1766
1792
 
1767
1793
  # Detaches a typed link from a specified source and target object. For
1768
- # more information, see [Typed link][1].
1794
+ # more information, see [Typed Links][1].
1769
1795
  #
1770
1796
  #
1771
1797
  #
1772
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
1798
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
1773
1799
  #
1774
1800
  # @option params [required, String] :directory_arn
1775
1801
  # The Amazon Resource Name (ARN) of the directory where you want to
@@ -1980,11 +2006,11 @@ module Aws::CloudDirectory
1980
2006
  # @option params [required, String] :directory_arn
1981
2007
  # The Amazon Resource Name (ARN) that is associated with the Directory
1982
2008
  # where the typed link resides. For more information, see arns or [Typed
1983
- # link][1].
2009
+ # Links][1].
1984
2010
  #
1985
2011
  #
1986
2012
  #
1987
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
2013
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
1988
2014
  #
1989
2015
  # @option params [required, Types::TypedLinkSpecifier] :typed_link_specifier
1990
2016
  # Allows a typed link specifier to be accepted as input.
@@ -2162,7 +2188,7 @@ module Aws::CloudDirectory
2162
2188
  #
2163
2189
  #
2164
2190
  #
2165
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_schemas.html#jsonformat
2191
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_jsonformat.html#schemas_json
2166
2192
  #
2167
2193
  # @option params [required, String] :schema_arn
2168
2194
  # The ARN of the schema to retrieve.
@@ -2193,11 +2219,11 @@ module Aws::CloudDirectory
2193
2219
  end
2194
2220
 
2195
2221
  # Returns the identity attribute order for a specific TypedLinkFacet.
2196
- # For more information, see [Typed link][1].
2222
+ # For more information, see [Typed Links][1].
2197
2223
  #
2198
2224
  #
2199
2225
  #
2200
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
2226
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
2201
2227
  #
2202
2228
  # @option params [required, String] :schema_arn
2203
2229
  # The Amazon Resource Name (ARN) that is associated with the schema. For
@@ -2512,11 +2538,11 @@ module Aws::CloudDirectory
2512
2538
  # Returns a paginated list of all the incoming TypedLinkSpecifier
2513
2539
  # information for an object. It also supports filtering by typed link
2514
2540
  # facet and identity attributes. For more information, see [Typed
2515
- # link][1].
2541
+ # Links][1].
2516
2542
  #
2517
2543
  #
2518
2544
  #
2519
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
2545
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
2520
2546
  #
2521
2547
  # @option params [required, String] :directory_arn
2522
2548
  # The Amazon Resource Name (ARN) of the directory where you want to list
@@ -2626,12 +2652,12 @@ module Aws::CloudDirectory
2626
2652
  #
2627
2653
  # @option params [Integer] :max_results
2628
2654
  # The maximum number of objects in a single page to retrieve from the
2629
- # index during a request. For more information, see [AWS Directory
2630
- # Service Limits][1].
2655
+ # index during a request. For more information, see [Amazon Cloud
2656
+ # Directory Limits][1].
2631
2657
  #
2632
2658
  #
2633
2659
  #
2634
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html#limits_cd
2660
+ # [1]: http://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html
2635
2661
  #
2636
2662
  # @option params [String] :next_token
2637
2663
  # The pagination token.
@@ -2887,7 +2913,7 @@ module Aws::CloudDirectory
2887
2913
  #
2888
2914
  #
2889
2915
  #
2890
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#dirstructure
2916
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directorystructure.html
2891
2917
  #
2892
2918
  # @option params [required, String] :directory_arn
2893
2919
  # The ARN of the directory to which the parent path applies.
@@ -2959,10 +2985,15 @@ module Aws::CloudDirectory
2959
2985
  # update of an object is reflected in a subsequent read operation of
2960
2986
  # that same object.
2961
2987
  #
2988
+ # @option params [Boolean] :include_all_links_to_each_parent
2989
+ # When set to True, returns all ListObjectParentsResponse$ParentLinks.
2990
+ # There could be multiple links between a parent-child pair.
2991
+ #
2962
2992
  # @return [Types::ListObjectParentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2963
2993
  #
2964
2994
  # * {Types::ListObjectParentsResponse#parents #parents} => Hash<String,String>
2965
2995
  # * {Types::ListObjectParentsResponse#next_token #next_token} => String
2996
+ # * {Types::ListObjectParentsResponse#parent_links #parent_links} => Array<Types::ObjectIdentifierAndLinkNameTuple>
2966
2997
  #
2967
2998
  # @example Request syntax with placeholder values
2968
2999
  #
@@ -2974,6 +3005,7 @@ module Aws::CloudDirectory
2974
3005
  # next_token: "NextToken",
2975
3006
  # max_results: 1,
2976
3007
  # consistency_level: "SERIALIZABLE", # accepts SERIALIZABLE, EVENTUAL
3008
+ # include_all_links_to_each_parent: false,
2977
3009
  # })
2978
3010
  #
2979
3011
  # @example Response structure
@@ -2981,6 +3013,9 @@ module Aws::CloudDirectory
2981
3013
  # resp.parents #=> Hash
2982
3014
  # resp.parents["ObjectIdentifier"] #=> String
2983
3015
  # resp.next_token #=> String
3016
+ # resp.parent_links #=> Array
3017
+ # resp.parent_links[0].object_identifier #=> String
3018
+ # resp.parent_links[0].link_name #=> String
2984
3019
  #
2985
3020
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectParents AWS API Documentation
2986
3021
  #
@@ -3048,11 +3083,11 @@ module Aws::CloudDirectory
3048
3083
  # Returns a paginated list of all the outgoing TypedLinkSpecifier
3049
3084
  # information for an object. It also supports filtering by typed link
3050
3085
  # facet and identity attributes. For more information, see [Typed
3051
- # link][1].
3086
+ # Links][1].
3052
3087
  #
3053
3088
  #
3054
3089
  #
3055
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3090
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3056
3091
  #
3057
3092
  # @option params [required, String] :directory_arn
3058
3093
  # The Amazon Resource Name (ARN) of the directory where you want to list
@@ -3293,11 +3328,11 @@ module Aws::CloudDirectory
3293
3328
  end
3294
3329
 
3295
3330
  # Returns a paginated list of all attribute definitions for a particular
3296
- # TypedLinkFacet. For more information, see [Typed link][1].
3331
+ # TypedLinkFacet. For more information, see [Typed Links][1].
3297
3332
  #
3298
3333
  #
3299
3334
  #
3300
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3335
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3301
3336
  #
3302
3337
  # @option params [required, String] :schema_arn
3303
3338
  # The Amazon Resource Name (ARN) that is associated with the schema. For
@@ -3354,11 +3389,11 @@ module Aws::CloudDirectory
3354
3389
  end
3355
3390
 
3356
3391
  # Returns a paginated list of `TypedLink` facet names for a particular
3357
- # schema. For more information, see [Typed link][1].
3392
+ # schema. For more information, see [Typed Links][1].
3358
3393
  #
3359
3394
  #
3360
3395
  #
3361
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3396
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3362
3397
  #
3363
3398
  # @option params [required, String] :schema_arn
3364
3399
  # The Amazon Resource Name (ARN) that is associated with the schema. For
@@ -3408,7 +3443,7 @@ module Aws::CloudDirectory
3408
3443
  #
3409
3444
  #
3410
3445
  #
3411
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies
3446
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies
3412
3447
  #
3413
3448
  # @option params [required, String] :directory_arn
3414
3449
  # The Amazon Resource Name (ARN) that is associated with the Directory.
@@ -3510,7 +3545,7 @@ module Aws::CloudDirectory
3510
3545
  #
3511
3546
  #
3512
3547
  #
3513
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_schemas.html#jsonformat
3548
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_jsonformat.html#schemas_json
3514
3549
  #
3515
3550
  # @option params [required, String] :schema_arn
3516
3551
  # The ARN of the schema to update.
@@ -3718,11 +3753,11 @@ module Aws::CloudDirectory
3718
3753
  # @option params [required, String] :directory_arn
3719
3754
  # The Amazon Resource Name (ARN) that is associated with the Directory
3720
3755
  # where the updated typed link resides. For more information, see arns
3721
- # or [Typed link][1].
3756
+ # or [Typed Links][1].
3722
3757
  #
3723
3758
  #
3724
3759
  #
3725
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3760
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3726
3761
  #
3727
3762
  # @option params [required, Types::TypedLinkSpecifier] :typed_link_specifier
3728
3763
  # Allows a typed link specifier to be accepted as input.
@@ -3881,11 +3916,11 @@ module Aws::CloudDirectory
3881
3916
  req.send_request(options)
3882
3917
  end
3883
3918
 
3884
- # Updates a TypedLinkFacet. For more information, see [Typed link][1].
3919
+ # Updates a TypedLinkFacet. For more information, see [Typed Links][1].
3885
3920
  #
3886
3921
  #
3887
3922
  #
3888
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3923
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3889
3924
  #
3890
3925
  # @option params [required, String] :schema_arn
3891
3926
  # The Amazon Resource Name (ARN) that is associated with the schema. For
@@ -3906,11 +3941,11 @@ module Aws::CloudDirectory
3906
3941
  # specified are presumed to match the entire range. Filters are
3907
3942
  # interpreted in the order of the attributes on the typed link facet,
3908
3943
  # not the order in which they are supplied to any API calls. For more
3909
- # information about identity attributes, see [Typed link][1].
3944
+ # information about identity attributes, see [Typed Links][1].
3910
3945
  #
3911
3946
  #
3912
3947
  #
3913
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3948
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3914
3949
  #
3915
3950
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3916
3951
  #
@@ -4065,7 +4100,7 @@ module Aws::CloudDirectory
4065
4100
  params: params,
4066
4101
  config: config)
4067
4102
  context[:gem_name] = 'aws-sdk-clouddirectory'
4068
- context[:gem_version] = '1.9.0'
4103
+ context[:gem_version] = '1.10.0'
4069
4104
  Seahorse::Client::Request.new(handlers, context)
4070
4105
  end
4071
4106
 
@@ -76,6 +76,8 @@ module Aws::CloudDirectory
76
76
  BatchListObjectChildrenResponse = Shapes::StructureShape.new(name: 'BatchListObjectChildrenResponse')
77
77
  BatchListObjectParentPaths = Shapes::StructureShape.new(name: 'BatchListObjectParentPaths')
78
78
  BatchListObjectParentPathsResponse = Shapes::StructureShape.new(name: 'BatchListObjectParentPathsResponse')
79
+ BatchListObjectParents = Shapes::StructureShape.new(name: 'BatchListObjectParents')
80
+ BatchListObjectParentsResponse = Shapes::StructureShape.new(name: 'BatchListObjectParentsResponse')
79
81
  BatchListObjectPolicies = Shapes::StructureShape.new(name: 'BatchListObjectPolicies')
80
82
  BatchListObjectPoliciesResponse = Shapes::StructureShape.new(name: 'BatchListObjectPoliciesResponse')
81
83
  BatchListOutgoingTypedLinks = Shapes::StructureShape.new(name: 'BatchListOutgoingTypedLinks')
@@ -264,6 +266,8 @@ module Aws::CloudDirectory
264
266
  ObjectAttributeUpdate = Shapes::StructureShape.new(name: 'ObjectAttributeUpdate')
265
267
  ObjectAttributeUpdateList = Shapes::ListShape.new(name: 'ObjectAttributeUpdateList')
266
268
  ObjectIdentifier = Shapes::StringShape.new(name: 'ObjectIdentifier')
269
+ ObjectIdentifierAndLinkNameList = Shapes::ListShape.new(name: 'ObjectIdentifierAndLinkNameList')
270
+ ObjectIdentifierAndLinkNameTuple = Shapes::StructureShape.new(name: 'ObjectIdentifierAndLinkNameTuple')
267
271
  ObjectIdentifierList = Shapes::ListShape.new(name: 'ObjectIdentifierList')
268
272
  ObjectIdentifierToLinkNameMap = Shapes::MapShape.new(name: 'ObjectIdentifierToLinkNameMap')
269
273
  ObjectNotDetachedException = Shapes::StructureShape.new(name: 'ObjectNotDetachedException')
@@ -587,6 +591,15 @@ module Aws::CloudDirectory
587
591
  BatchListObjectParentPathsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
588
592
  BatchListObjectParentPathsResponse.struct_class = Types::BatchListObjectParentPathsResponse
589
593
 
594
+ BatchListObjectParents.add_member(:object_reference, Shapes::ShapeRef.new(shape: ObjectReference, required: true, location_name: "ObjectReference"))
595
+ BatchListObjectParents.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
596
+ BatchListObjectParents.add_member(:max_results, Shapes::ShapeRef.new(shape: NumberResults, location_name: "MaxResults"))
597
+ BatchListObjectParents.struct_class = Types::BatchListObjectParents
598
+
599
+ BatchListObjectParentsResponse.add_member(:parent_links, Shapes::ShapeRef.new(shape: ObjectIdentifierAndLinkNameList, location_name: "ParentLinks"))
600
+ BatchListObjectParentsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
601
+ BatchListObjectParentsResponse.struct_class = Types::BatchListObjectParentsResponse
602
+
590
603
  BatchListObjectPolicies.add_member(:object_reference, Shapes::ShapeRef.new(shape: ObjectReference, required: true, location_name: "ObjectReference"))
591
604
  BatchListObjectPolicies.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
592
605
  BatchListObjectPolicies.add_member(:max_results, Shapes::ShapeRef.new(shape: NumberResults, location_name: "MaxResults"))
@@ -635,6 +648,7 @@ module Aws::CloudDirectory
635
648
  BatchReadOperation.add_member(:list_object_parent_paths, Shapes::ShapeRef.new(shape: BatchListObjectParentPaths, location_name: "ListObjectParentPaths"))
636
649
  BatchReadOperation.add_member(:get_object_information, Shapes::ShapeRef.new(shape: BatchGetObjectInformation, location_name: "GetObjectInformation"))
637
650
  BatchReadOperation.add_member(:get_object_attributes, Shapes::ShapeRef.new(shape: BatchGetObjectAttributes, location_name: "GetObjectAttributes"))
651
+ BatchReadOperation.add_member(:list_object_parents, Shapes::ShapeRef.new(shape: BatchListObjectParents, location_name: "ListObjectParents"))
638
652
  BatchReadOperation.add_member(:list_object_policies, Shapes::ShapeRef.new(shape: BatchListObjectPolicies, location_name: "ListObjectPolicies"))
639
653
  BatchReadOperation.add_member(:list_policy_attachments, Shapes::ShapeRef.new(shape: BatchListPolicyAttachments, location_name: "ListPolicyAttachments"))
640
654
  BatchReadOperation.add_member(:lookup_policy, Shapes::ShapeRef.new(shape: BatchLookupPolicy, location_name: "LookupPolicy"))
@@ -673,6 +687,7 @@ module Aws::CloudDirectory
673
687
  BatchReadSuccessfulResponse.add_member(:list_outgoing_typed_links, Shapes::ShapeRef.new(shape: BatchListOutgoingTypedLinksResponse, location_name: "ListOutgoingTypedLinks"))
674
688
  BatchReadSuccessfulResponse.add_member(:list_incoming_typed_links, Shapes::ShapeRef.new(shape: BatchListIncomingTypedLinksResponse, location_name: "ListIncomingTypedLinks"))
675
689
  BatchReadSuccessfulResponse.add_member(:get_link_attributes, Shapes::ShapeRef.new(shape: BatchGetLinkAttributesResponse, location_name: "GetLinkAttributes"))
690
+ BatchReadSuccessfulResponse.add_member(:list_object_parents, Shapes::ShapeRef.new(shape: BatchListObjectParentsResponse, location_name: "ListObjectParents"))
676
691
  BatchReadSuccessfulResponse.struct_class = Types::BatchReadSuccessfulResponse
677
692
 
678
693
  BatchRemoveFacetFromObject.add_member(:schema_facet, Shapes::ShapeRef.new(shape: SchemaFacet, required: true, location_name: "SchemaFacet"))
@@ -1107,10 +1122,12 @@ module Aws::CloudDirectory
1107
1122
  ListObjectParentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1108
1123
  ListObjectParentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: NumberResults, location_name: "MaxResults"))
1109
1124
  ListObjectParentsRequest.add_member(:consistency_level, Shapes::ShapeRef.new(shape: ConsistencyLevel, location: "header", location_name: "x-amz-consistency-level"))
1125
+ ListObjectParentsRequest.add_member(:include_all_links_to_each_parent, Shapes::ShapeRef.new(shape: Bool, location_name: "IncludeAllLinksToEachParent"))
1110
1126
  ListObjectParentsRequest.struct_class = Types::ListObjectParentsRequest
1111
1127
 
1112
1128
  ListObjectParentsResponse.add_member(:parents, Shapes::ShapeRef.new(shape: ObjectIdentifierToLinkNameMap, location_name: "Parents"))
1113
1129
  ListObjectParentsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1130
+ ListObjectParentsResponse.add_member(:parent_links, Shapes::ShapeRef.new(shape: ObjectIdentifierAndLinkNameList, location_name: "ParentLinks"))
1114
1131
  ListObjectParentsResponse.struct_class = Types::ListObjectParentsResponse
1115
1132
 
1116
1133
  ListObjectPoliciesRequest.add_member(:directory_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "header", location_name: "x-amz-data-partition"))
@@ -1211,6 +1228,12 @@ module Aws::CloudDirectory
1211
1228
 
1212
1229
  ObjectAttributeUpdateList.member = Shapes::ShapeRef.new(shape: ObjectAttributeUpdate)
1213
1230
 
1231
+ ObjectIdentifierAndLinkNameList.member = Shapes::ShapeRef.new(shape: ObjectIdentifierAndLinkNameTuple)
1232
+
1233
+ ObjectIdentifierAndLinkNameTuple.add_member(:object_identifier, Shapes::ShapeRef.new(shape: ObjectIdentifier, location_name: "ObjectIdentifier"))
1234
+ ObjectIdentifierAndLinkNameTuple.add_member(:link_name, Shapes::ShapeRef.new(shape: LinkName, location_name: "LinkName"))
1235
+ ObjectIdentifierAndLinkNameTuple.struct_class = Types::ObjectIdentifierAndLinkNameTuple
1236
+
1214
1237
  ObjectIdentifierList.member = Shapes::ShapeRef.new(shape: ObjectIdentifier)
1215
1238
 
1216
1239
  ObjectIdentifierToLinkNameMap.key = Shapes::ShapeRef.new(shape: ObjectIdentifier)
@@ -1418,6 +1441,7 @@ module Aws::CloudDirectory
1418
1441
  "endpointPrefix" => "clouddirectory",
1419
1442
  "protocol" => "rest-json",
1420
1443
  "serviceFullName" => "Amazon CloudDirectory",
1444
+ "serviceId" => "CloudDirectory",
1421
1445
  "signatureVersion" => "v4",
1422
1446
  "signingName" => "clouddirectory",
1423
1447
  "uid" => "clouddirectory-2017-01-11",
@@ -733,11 +733,12 @@ module Aws::CloudDirectory
733
733
  # @return [String]
734
734
  #
735
735
  # @!attribute [rw] batch_reference_name
736
- # The batch reference name. See [Batches][1] for more information.
736
+ # The batch reference name. See [Transaction Support][1] for more
737
+ # information.
737
738
  #
738
739
  #
739
740
  #
740
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#batches
741
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/transaction_support.html
741
742
  # @return [String]
742
743
  #
743
744
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchCreateIndex AWS API Documentation
@@ -819,11 +820,12 @@ module Aws::CloudDirectory
819
820
  # @return [String]
820
821
  #
821
822
  # @!attribute [rw] batch_reference_name
822
- # The batch reference name. See [Batches][1] for more information.
823
+ # The batch reference name. See [Transaction Support][1] for more
824
+ # information.
823
825
  #
824
826
  #
825
827
  #
826
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#batches
828
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/transaction_support.html
827
829
  # @return [String]
828
830
  #
829
831
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchCreateObject AWS API Documentation
@@ -947,11 +949,12 @@ module Aws::CloudDirectory
947
949
  # @return [String]
948
950
  #
949
951
  # @!attribute [rw] batch_reference_name
950
- # The batch reference name. See [Batches][1] for more information.
952
+ # The batch reference name. See [Transaction Support][1] for more
953
+ # information.
951
954
  #
952
955
  #
953
956
  #
954
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#batches
957
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/transaction_support.html
955
958
  # @return [String]
956
959
  #
957
960
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchDetachObject AWS API Documentation
@@ -1639,6 +1642,50 @@ module Aws::CloudDirectory
1639
1642
  include Aws::Structure
1640
1643
  end
1641
1644
 
1645
+ # @note When making an API call, you may pass BatchListObjectParents
1646
+ # data as a hash:
1647
+ #
1648
+ # {
1649
+ # object_reference: { # required
1650
+ # selector: "SelectorObjectReference",
1651
+ # },
1652
+ # next_token: "NextToken",
1653
+ # max_results: 1,
1654
+ # }
1655
+ #
1656
+ # @!attribute [rw] object_reference
1657
+ # The reference that identifies an object.
1658
+ # @return [Types::ObjectReference]
1659
+ #
1660
+ # @!attribute [rw] next_token
1661
+ # @return [String]
1662
+ #
1663
+ # @!attribute [rw] max_results
1664
+ # @return [Integer]
1665
+ #
1666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectParents AWS API Documentation
1667
+ #
1668
+ class BatchListObjectParents < Struct.new(
1669
+ :object_reference,
1670
+ :next_token,
1671
+ :max_results)
1672
+ include Aws::Structure
1673
+ end
1674
+
1675
+ # @!attribute [rw] parent_links
1676
+ # @return [Array<Types::ObjectIdentifierAndLinkNameTuple>]
1677
+ #
1678
+ # @!attribute [rw] next_token
1679
+ # @return [String]
1680
+ #
1681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchListObjectParentsResponse AWS API Documentation
1682
+ #
1683
+ class BatchListObjectParentsResponse < Struct.new(
1684
+ :parent_links,
1685
+ :next_token)
1686
+ include Aws::Structure
1687
+ end
1688
+
1642
1689
  # Returns policies attached to an object in pagination fashion inside a
1643
1690
  # BatchRead operation. For more information, see ListObjectPolicies and
1644
1691
  # BatchReadRequest$Operations.
@@ -1893,7 +1940,7 @@ module Aws::CloudDirectory
1893
1940
  #
1894
1941
  #
1895
1942
  #
1896
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies
1943
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies
1897
1944
  # @return [Array<Types::PolicyToPath>]
1898
1945
  #
1899
1946
  # @!attribute [rw] next_token
@@ -1980,6 +2027,13 @@ module Aws::CloudDirectory
1980
2027
  # },
1981
2028
  # attribute_names: ["AttributeName"], # required
1982
2029
  # },
2030
+ # list_object_parents: {
2031
+ # object_reference: { # required
2032
+ # selector: "SelectorObjectReference",
2033
+ # },
2034
+ # next_token: "NextToken",
2035
+ # max_results: 1,
2036
+ # },
1983
2037
  # list_object_policies: {
1984
2038
  # object_reference: { # required
1985
2039
  # selector: "SelectorObjectReference",
@@ -2152,7 +2206,7 @@ module Aws::CloudDirectory
2152
2206
  #
2153
2207
  #
2154
2208
  #
2155
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#dirstructure
2209
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directorystructure.html
2156
2210
  # @return [Types::BatchListObjectParentPaths]
2157
2211
  #
2158
2212
  # @!attribute [rw] get_object_information
@@ -2164,6 +2218,9 @@ module Aws::CloudDirectory
2164
2218
  # object.
2165
2219
  # @return [Types::BatchGetObjectAttributes]
2166
2220
  #
2221
+ # @!attribute [rw] list_object_parents
2222
+ # @return [Types::BatchListObjectParents]
2223
+ #
2167
2224
  # @!attribute [rw] list_object_policies
2168
2225
  # Returns policies attached to an object in pagination fashion.
2169
2226
  # @return [Types::BatchListObjectPolicies]
@@ -2185,7 +2242,7 @@ module Aws::CloudDirectory
2185
2242
  #
2186
2243
  #
2187
2244
  #
2188
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies
2245
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies
2189
2246
  # @return [Types::BatchLookupPolicy]
2190
2247
  #
2191
2248
  # @!attribute [rw] list_index
@@ -2196,22 +2253,22 @@ module Aws::CloudDirectory
2196
2253
  # Returns a paginated list of all the outgoing TypedLinkSpecifier
2197
2254
  # information for an object. It also supports filtering by typed link
2198
2255
  # facet and identity attributes. For more information, see [Typed
2199
- # link][1].
2256
+ # Links][1].
2200
2257
  #
2201
2258
  #
2202
2259
  #
2203
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
2260
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
2204
2261
  # @return [Types::BatchListOutgoingTypedLinks]
2205
2262
  #
2206
2263
  # @!attribute [rw] list_incoming_typed_links
2207
2264
  # Returns a paginated list of all the incoming TypedLinkSpecifier
2208
2265
  # information for an object. It also supports filtering by typed link
2209
2266
  # facet and identity attributes. For more information, see [Typed
2210
- # link][1].
2267
+ # Links][1].
2211
2268
  #
2212
2269
  #
2213
2270
  #
2214
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
2271
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
2215
2272
  # @return [Types::BatchListIncomingTypedLinks]
2216
2273
  #
2217
2274
  # @!attribute [rw] get_link_attributes
@@ -2227,6 +2284,7 @@ module Aws::CloudDirectory
2227
2284
  :list_object_parent_paths,
2228
2285
  :get_object_information,
2229
2286
  :get_object_attributes,
2287
+ :list_object_parents,
2230
2288
  :list_object_policies,
2231
2289
  :list_policy_attachments,
2232
2290
  :lookup_policy,
@@ -2309,6 +2367,13 @@ module Aws::CloudDirectory
2309
2367
  # },
2310
2368
  # attribute_names: ["AttributeName"], # required
2311
2369
  # },
2370
+ # list_object_parents: {
2371
+ # object_reference: { # required
2372
+ # selector: "SelectorObjectReference",
2373
+ # },
2374
+ # next_token: "NextToken",
2375
+ # max_results: 1,
2376
+ # },
2312
2377
  # list_object_policies: {
2313
2378
  # object_reference: { # required
2314
2379
  # selector: "SelectorObjectReference",
@@ -2530,7 +2595,7 @@ module Aws::CloudDirectory
2530
2595
  #
2531
2596
  #
2532
2597
  #
2533
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#dirstructure
2598
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directorystructure.html
2534
2599
  # @return [Types::BatchListObjectParentPathsResponse]
2535
2600
  #
2536
2601
  # @!attribute [rw] list_object_policies
@@ -2554,7 +2619,7 @@ module Aws::CloudDirectory
2554
2619
  #
2555
2620
  #
2556
2621
  #
2557
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies
2622
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies
2558
2623
  # @return [Types::BatchLookupPolicyResponse]
2559
2624
  #
2560
2625
  # @!attribute [rw] list_index
@@ -2565,28 +2630,31 @@ module Aws::CloudDirectory
2565
2630
  # Returns a paginated list of all the outgoing TypedLinkSpecifier
2566
2631
  # information for an object. It also supports filtering by typed link
2567
2632
  # facet and identity attributes. For more information, see [Typed
2568
- # link][1].
2633
+ # Links][1].
2569
2634
  #
2570
2635
  #
2571
2636
  #
2572
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
2637
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
2573
2638
  # @return [Types::BatchListOutgoingTypedLinksResponse]
2574
2639
  #
2575
2640
  # @!attribute [rw] list_incoming_typed_links
2576
2641
  # Returns a paginated list of all the incoming TypedLinkSpecifier
2577
2642
  # information for an object. It also supports filtering by typed link
2578
2643
  # facet and identity attributes. For more information, see [Typed
2579
- # link][1].
2644
+ # Links][1].
2580
2645
  #
2581
2646
  #
2582
2647
  #
2583
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
2648
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
2584
2649
  # @return [Types::BatchListIncomingTypedLinksResponse]
2585
2650
  #
2586
2651
  # @!attribute [rw] get_link_attributes
2587
2652
  # The list of attributes to retrieve from the typed link.
2588
2653
  # @return [Types::BatchGetLinkAttributesResponse]
2589
2654
  #
2655
+ # @!attribute [rw] list_object_parents
2656
+ # @return [Types::BatchListObjectParentsResponse]
2657
+ #
2590
2658
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/BatchReadSuccessfulResponse AWS API Documentation
2591
2659
  #
2592
2660
  class BatchReadSuccessfulResponse < Struct.new(
@@ -2602,7 +2670,8 @@ module Aws::CloudDirectory
2602
2670
  :list_index,
2603
2671
  :list_outgoing_typed_links,
2604
2672
  :list_incoming_typed_links,
2605
- :get_link_attributes)
2673
+ :get_link_attributes,
2674
+ :list_object_parents)
2606
2675
  include Aws::Structure
2607
2676
  end
2608
2677
 
@@ -3074,11 +3143,12 @@ module Aws::CloudDirectory
3074
3143
  # @return [Types::BatchDetachPolicy]
3075
3144
  #
3076
3145
  # @!attribute [rw] create_index
3077
- # Creates an index object. See [Indexing][1] for more information.
3146
+ # Creates an index object. See [Indexing and search][1] for more
3147
+ # information.
3078
3148
  #
3079
3149
  #
3080
3150
  #
3081
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_indexing.html
3151
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.htm
3082
3152
  # @return [Types::BatchCreateIndex]
3083
3153
  #
3084
3154
  # @!attribute [rw] attach_to_index
@@ -3091,20 +3161,20 @@ module Aws::CloudDirectory
3091
3161
  #
3092
3162
  # @!attribute [rw] attach_typed_link
3093
3163
  # Attaches a typed link to a specified source and target object. For
3094
- # more information, see [Typed link][1].
3164
+ # more information, see [Typed Links][1].
3095
3165
  #
3096
3166
  #
3097
3167
  #
3098
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3168
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3099
3169
  # @return [Types::BatchAttachTypedLink]
3100
3170
  #
3101
3171
  # @!attribute [rw] detach_typed_link
3102
3172
  # Detaches a typed link from a specified source and target object. For
3103
- # more information, see [Typed link][1].
3173
+ # more information, see [Typed Links][1].
3104
3174
  #
3105
3175
  #
3106
3176
  #
3107
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3177
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3108
3178
  # @return [Types::BatchDetachTypedLink]
3109
3179
  #
3110
3180
  # @!attribute [rw] update_link_attributes
@@ -3172,11 +3242,12 @@ module Aws::CloudDirectory
3172
3242
  # @return [Types::BatchDetachPolicyResponse]
3173
3243
  #
3174
3244
  # @!attribute [rw] create_index
3175
- # Creates an index object. See [Indexing][1] for more information.
3245
+ # Creates an index object. See [Indexing and search][1] for more
3246
+ # information.
3176
3247
  #
3177
3248
  #
3178
3249
  #
3179
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_indexing.html
3250
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/indexing_search.htm
3180
3251
  # @return [Types::BatchCreateIndexResponse]
3181
3252
  #
3182
3253
  # @!attribute [rw] attach_to_index
@@ -3189,20 +3260,20 @@ module Aws::CloudDirectory
3189
3260
  #
3190
3261
  # @!attribute [rw] attach_typed_link
3191
3262
  # Attaches a typed link to a specified source and target object. For
3192
- # more information, see [Typed link][1].
3263
+ # more information, see [Typed Links][1].
3193
3264
  #
3194
3265
  #
3195
3266
  #
3196
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3267
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3197
3268
  # @return [Types::BatchAttachTypedLinkResponse]
3198
3269
  #
3199
3270
  # @!attribute [rw] detach_typed_link
3200
3271
  # Detaches a typed link from a specified source and target object. For
3201
- # more information, see [Typed link][1].
3272
+ # more information, see [Typed Links][1].
3202
3273
  #
3203
3274
  #
3204
3275
  #
3205
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
3276
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
3206
3277
  # @return [Types::BatchDetachTypedLinkResponse]
3207
3278
  #
3208
3279
  # @!attribute [rw] update_link_attributes
@@ -3651,7 +3722,7 @@ module Aws::CloudDirectory
3651
3722
  #
3652
3723
  #
3653
3724
  #
3654
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies
3725
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies
3655
3726
  # @return [String]
3656
3727
  #
3657
3728
  # @!attribute [rw] facet_style
@@ -4327,7 +4398,7 @@ module Aws::CloudDirectory
4327
4398
  #
4328
4399
  #
4329
4400
  #
4330
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/whatarefacets.html
4401
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_whatarefacets.html
4331
4402
  #
4332
4403
  # @!attribute [rw] name
4333
4404
  # The name of the Facet.
@@ -4398,7 +4469,7 @@ module Aws::CloudDirectory
4398
4469
  #
4399
4470
  #
4400
4471
  #
4401
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences
4472
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html
4402
4473
  # @return [Types::FacetAttributeDefinition]
4403
4474
  #
4404
4475
  # @!attribute [rw] attribute_reference
@@ -4407,7 +4478,7 @@ module Aws::CloudDirectory
4407
4478
  #
4408
4479
  #
4409
4480
  #
4410
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences
4481
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html
4411
4482
  # @return [Types::FacetAttributeReference]
4412
4483
  #
4413
4484
  # @!attribute [rw] required_behavior
@@ -4429,7 +4500,7 @@ module Aws::CloudDirectory
4429
4500
  #
4430
4501
  #
4431
4502
  #
4432
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences
4503
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html
4433
4504
  #
4434
4505
  # @note When making an API call, you may pass FacetAttributeDefinition
4435
4506
  # data as a hash:
@@ -4497,7 +4568,7 @@ module Aws::CloudDirectory
4497
4568
  #
4498
4569
  #
4499
4570
  #
4500
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences
4571
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html
4501
4572
  # @return [String]
4502
4573
  #
4503
4574
  # @!attribute [rw] target_attribute_name
@@ -4506,7 +4577,7 @@ module Aws::CloudDirectory
4506
4577
  #
4507
4578
  #
4508
4579
  #
4509
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_advanced.html#attributereferences
4580
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_attributereferences.html
4510
4581
  # @return [String]
4511
4582
  #
4512
4583
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/FacetAttributeReference AWS API Documentation
@@ -4700,11 +4771,11 @@ module Aws::CloudDirectory
4700
4771
  # @!attribute [rw] directory_arn
4701
4772
  # The Amazon Resource Name (ARN) that is associated with the Directory
4702
4773
  # where the typed link resides. For more information, see arns or
4703
- # [Typed link][1].
4774
+ # [Typed Links][1].
4704
4775
  #
4705
4776
  #
4706
4777
  #
4707
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
4778
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
4708
4779
  # @return [String]
4709
4780
  #
4710
4781
  # @!attribute [rw] typed_link_specifier
@@ -4923,11 +4994,11 @@ module Aws::CloudDirectory
4923
4994
  # Filters are interpreted in the order of the attributes on the typed
4924
4995
  # link facet, not the order in which they are supplied to any API
4925
4996
  # calls. For more information about identity attributes, see [Typed
4926
- # link][1].
4997
+ # Links][1].
4927
4998
  #
4928
4999
  #
4929
5000
  #
4930
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
5001
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
4931
5002
  # @return [Array<String>]
4932
5003
  #
4933
5004
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/GetTypedLinkFacetInformationResponse AWS API Documentation
@@ -5488,12 +5559,12 @@ module Aws::CloudDirectory
5488
5559
  #
5489
5560
  # @!attribute [rw] max_results
5490
5561
  # The maximum number of objects in a single page to retrieve from the
5491
- # index during a request. For more information, see [AWS Directory
5492
- # Service Limits][1].
5562
+ # index during a request. For more information, see [Amazon Cloud
5563
+ # Directory Limits][1].
5493
5564
  #
5494
5565
  #
5495
5566
  #
5496
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/limits.html#limits_cd
5567
+ # [1]: http://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html
5497
5568
  # @return [Integer]
5498
5569
  #
5499
5570
  # @!attribute [rw] next_token
@@ -5789,6 +5860,7 @@ module Aws::CloudDirectory
5789
5860
  # next_token: "NextToken",
5790
5861
  # max_results: 1,
5791
5862
  # consistency_level: "SERIALIZABLE", # accepts SERIALIZABLE, EVENTUAL
5863
+ # include_all_links_to_each_parent: false,
5792
5864
  # }
5793
5865
  #
5794
5866
  # @!attribute [rw] directory_arn
@@ -5816,6 +5888,11 @@ module Aws::CloudDirectory
5816
5888
  # that same object.
5817
5889
  # @return [String]
5818
5890
  #
5891
+ # @!attribute [rw] include_all_links_to_each_parent
5892
+ # When set to True, returns all ListObjectParentsResponse$ParentLinks.
5893
+ # There could be multiple links between a parent-child pair.
5894
+ # @return [Boolean]
5895
+ #
5819
5896
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectParentsRequest AWS API Documentation
5820
5897
  #
5821
5898
  class ListObjectParentsRequest < Struct.new(
@@ -5823,7 +5900,8 @@ module Aws::CloudDirectory
5823
5900
  :object_reference,
5824
5901
  :next_token,
5825
5902
  :max_results,
5826
- :consistency_level)
5903
+ :consistency_level,
5904
+ :include_all_links_to_each_parent)
5827
5905
  include Aws::Structure
5828
5906
  end
5829
5907
 
@@ -5836,11 +5914,16 @@ module Aws::CloudDirectory
5836
5914
  # The pagination token.
5837
5915
  # @return [String]
5838
5916
  #
5917
+ # @!attribute [rw] parent_links
5918
+ # Returns a list of parent reference and LinkName Tuples.
5919
+ # @return [Array<Types::ObjectIdentifierAndLinkNameTuple>]
5920
+ #
5839
5921
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ListObjectParentsResponse AWS API Documentation
5840
5922
  #
5841
5923
  class ListObjectParentsResponse < Struct.new(
5842
5924
  :parents,
5843
- :next_token)
5925
+ :next_token,
5926
+ :parent_links)
5844
5927
  include Aws::Structure
5845
5928
  end
5846
5929
 
@@ -6324,7 +6407,7 @@ module Aws::CloudDirectory
6324
6407
  #
6325
6408
  #
6326
6409
  #
6327
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies
6410
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies
6328
6411
  # @return [Array<Types::PolicyToPath>]
6329
6412
  #
6330
6413
  # @!attribute [rw] next_token
@@ -6457,6 +6540,24 @@ module Aws::CloudDirectory
6457
6540
  include Aws::Structure
6458
6541
  end
6459
6542
 
6543
+ # A pair of ObjectIdentifier and LinkName.
6544
+ #
6545
+ # @!attribute [rw] object_identifier
6546
+ # The ID that is associated with the object.
6547
+ # @return [String]
6548
+ #
6549
+ # @!attribute [rw] link_name
6550
+ # The name of the link between the parent and the child object.
6551
+ # @return [String]
6552
+ #
6553
+ # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ObjectIdentifierAndLinkNameTuple AWS API Documentation
6554
+ #
6555
+ class ObjectIdentifierAndLinkNameTuple < Struct.new(
6556
+ :object_identifier,
6557
+ :link_name)
6558
+ include Aws::Structure
6559
+ end
6560
+
6460
6561
  # The reference that identifies an object.
6461
6562
  #
6462
6563
  # @note When making an API call, you may pass ObjectReference
@@ -6471,9 +6572,8 @@ module Aws::CloudDirectory
6471
6572
  # parent/child links leading to it from the directory root. Use the
6472
6573
  # link names from each parent/child link to construct the path. Path
6473
6574
  # selectors start with a slash (/) and link names are separated by
6474
- # slashes. For more information about paths, see [Accessing
6475
- # Objects][1]. You can identify an object in one of the following
6476
- # ways:
6575
+ # slashes. For more information about paths, see [Access Objects][1].
6576
+ # You can identify an object in one of the following ways:
6477
6577
  #
6478
6578
  # * *$ObjectIdentifier* - An object identifier is an opaque string
6479
6579
  # provided by Amazon Cloud Directory. When creating objects, the
@@ -6487,7 +6587,7 @@ module Aws::CloudDirectory
6487
6587
  #
6488
6588
  #
6489
6589
  #
6490
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#accessingobjects
6590
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_access_objects.html
6491
6591
  # @return [String]
6492
6592
  #
6493
6593
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/ObjectReference AWS API Documentation
@@ -6523,7 +6623,7 @@ module Aws::CloudDirectory
6523
6623
  #
6524
6624
  #
6525
6625
  #
6526
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/cd_key_concepts.html#policies
6626
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/key_concepts_directory.html#key_concepts_policies
6527
6627
  #
6528
6628
  # @!attribute [rw] policy_id
6529
6629
  # The ID of `PolicyAttachment`.
@@ -6740,7 +6840,7 @@ module Aws::CloudDirectory
6740
6840
  #
6741
6841
  #
6742
6842
  #
6743
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/inplaceschemaupgrade.html
6843
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/schemas_inplaceschemaupgrade.html
6744
6844
  # @return [String]
6745
6845
  #
6746
6846
  # @!attribute [rw] facet_name
@@ -6866,7 +6966,7 @@ module Aws::CloudDirectory
6866
6966
  #
6867
6967
  #
6868
6968
  #
6869
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#rangefilters
6969
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_range_filters.html
6870
6970
  #
6871
6971
  # @note When making an API call, you may pass TypedAttributeValueRange
6872
6972
  # data as a hash:
@@ -7379,11 +7479,11 @@ module Aws::CloudDirectory
7379
7479
  # @!attribute [rw] directory_arn
7380
7480
  # The Amazon Resource Name (ARN) that is associated with the Directory
7381
7481
  # where the updated typed link resides. For more information, see arns
7382
- # or [Typed link][1].
7482
+ # or [Typed Links][1].
7383
7483
  #
7384
7484
  #
7385
7485
  #
7386
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
7486
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
7387
7487
  # @return [String]
7388
7488
  #
7389
7489
  # @!attribute [rw] typed_link_specifier
@@ -7564,11 +7664,11 @@ module Aws::CloudDirectory
7564
7664
  # Filters are interpreted in the order of the attributes on the typed
7565
7665
  # link facet, not the order in which they are supplied to any API
7566
7666
  # calls. For more information about identity attributes, see [Typed
7567
- # link][1].
7667
+ # Links][1].
7568
7668
  #
7569
7669
  #
7570
7670
  #
7571
- # [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/objectsandlinks.html#typedlink
7671
+ # [1]: https://docs.aws.amazon.com/clouddirectory/latest/developerguide/directory_objects_links.html#directory_objects_links_typedlink
7572
7672
  # @return [Array<String>]
7573
7673
  #
7574
7674
  # @see http://docs.aws.amazon.com/goto/WebAPI/clouddirectory-2017-01-11/UpdateTypedLinkFacetRequest AWS API Documentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-clouddirectory
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-24 00:00:00.000000000 Z
11
+ date: 2018-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core