aws-sdk-clouddirectory 1.22.0 → 1.23.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 +5 -5
- data/lib/aws-sdk-clouddirectory.rb +1 -1
- data/lib/aws-sdk-clouddirectory/client.rb +61 -20
- data/lib/aws-sdk-clouddirectory/resource.rb +1 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a16386e78f552fb379fdb8e19161f6b2724d7b84b407a1ad7d1bcbb379f8304c
|
4
|
+
data.tar.gz: 00af67990c02cf103d6c524f505e57ab53be7ab17f9b1e19e3b3f5c440761619
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9a286f5b2596297c042940d670359203ca813ffc2c55b731232e2038a640081c1994ce02de2d845fd83c87edfb986b7a93bd67a75b082a7853b1164510c2e59
|
7
|
+
data.tar.gz: 823534ece514e1d8a8434f919331a5b6874ab6e9b3c6318567e68ac6aef637c55d74aff2be6d02b756e97f7e44498de5ba174309bf3ad3ae67bd567a09143e4e
|
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:clouddirectory)
|
|
32
32
|
module Aws::CloudDirectory
|
33
33
|
# An API client for CloudDirectory. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::CloudDirectory::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -105,7 +105,7 @@ module Aws::CloudDirectory
|
|
105
105
|
# @option options [required, String] :region
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
107
107
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
109
109
|
#
|
110
110
|
# * `Aws.config[:region]`
|
111
111
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +161,7 @@ module Aws::CloudDirectory
|
|
161
161
|
# @option options [String] :endpoint
|
162
162
|
# The client endpoint is normally constructed from the `:region`
|
163
163
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
165
165
|
#
|
166
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -229,15 +229,19 @@ module Aws::CloudDirectory
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -265,8 +269,7 @@ module Aws::CloudDirectory
|
|
265
269
|
#
|
266
270
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
271
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
272
|
+
# safely be set per-request on the session.
|
270
273
|
#
|
271
274
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
275
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +281,7 @@ module Aws::CloudDirectory
|
|
278
281
|
# request body. This option has no effect unless the request has
|
279
282
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
283
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
284
|
+
# request on the session.
|
282
285
|
#
|
283
286
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
287
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -2405,6 +2408,8 @@ module Aws::CloudDirectory
|
|
2405
2408
|
# * {Types::ListAppliedSchemaArnsResponse#schema_arns #schema_arns} => Array<String>
|
2406
2409
|
# * {Types::ListAppliedSchemaArnsResponse#next_token #next_token} => String
|
2407
2410
|
#
|
2411
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2412
|
+
#
|
2408
2413
|
# @example Request syntax with placeholder values
|
2409
2414
|
#
|
2410
2415
|
# resp = client.list_applied_schema_arns({
|
@@ -2451,6 +2456,8 @@ module Aws::CloudDirectory
|
|
2451
2456
|
# * {Types::ListAttachedIndicesResponse#index_attachments #index_attachments} => Array<Types::IndexAttachment>
|
2452
2457
|
# * {Types::ListAttachedIndicesResponse#next_token #next_token} => String
|
2453
2458
|
#
|
2459
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2460
|
+
#
|
2454
2461
|
# @example Request syntax with placeholder values
|
2455
2462
|
#
|
2456
2463
|
# resp = client.list_attached_indices({
|
@@ -2501,6 +2508,8 @@ module Aws::CloudDirectory
|
|
2501
2508
|
# * {Types::ListDevelopmentSchemaArnsResponse#schema_arns #schema_arns} => Array<String>
|
2502
2509
|
# * {Types::ListDevelopmentSchemaArnsResponse#next_token #next_token} => String
|
2503
2510
|
#
|
2511
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2512
|
+
#
|
2504
2513
|
# @example Request syntax with placeholder values
|
2505
2514
|
#
|
2506
2515
|
# resp = client.list_development_schema_arns({
|
@@ -2540,6 +2549,8 @@ module Aws::CloudDirectory
|
|
2540
2549
|
# * {Types::ListDirectoriesResponse#directories #directories} => Array<Types::Directory>
|
2541
2550
|
# * {Types::ListDirectoriesResponse#next_token #next_token} => String
|
2542
2551
|
#
|
2552
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2553
|
+
#
|
2543
2554
|
# @example Request syntax with placeholder values
|
2544
2555
|
#
|
2545
2556
|
# resp = client.list_directories({
|
@@ -2585,6 +2596,8 @@ module Aws::CloudDirectory
|
|
2585
2596
|
# * {Types::ListFacetAttributesResponse#attributes #attributes} => Array<Types::FacetAttribute>
|
2586
2597
|
# * {Types::ListFacetAttributesResponse#next_token #next_token} => String
|
2587
2598
|
#
|
2599
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2600
|
+
#
|
2588
2601
|
# @example Request syntax with placeholder values
|
2589
2602
|
#
|
2590
2603
|
# resp = client.list_facet_attributes({
|
@@ -2639,6 +2652,8 @@ module Aws::CloudDirectory
|
|
2639
2652
|
# * {Types::ListFacetNamesResponse#facet_names #facet_names} => Array<String>
|
2640
2653
|
# * {Types::ListFacetNamesResponse#next_token #next_token} => String
|
2641
2654
|
#
|
2655
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2656
|
+
#
|
2642
2657
|
# @example Request syntax with placeholder values
|
2643
2658
|
#
|
2644
2659
|
# resp = client.list_facet_names({
|
@@ -2797,6 +2812,8 @@ module Aws::CloudDirectory
|
|
2797
2812
|
# * {Types::ListIndexResponse#index_attachments #index_attachments} => Array<Types::IndexAttachment>
|
2798
2813
|
# * {Types::ListIndexResponse#next_token #next_token} => String
|
2799
2814
|
#
|
2815
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2816
|
+
#
|
2800
2817
|
# @example Request syntax with placeholder values
|
2801
2818
|
#
|
2802
2819
|
# resp = client.list_index({
|
@@ -2879,6 +2896,8 @@ module Aws::CloudDirectory
|
|
2879
2896
|
# * {Types::ListManagedSchemaArnsResponse#schema_arns #schema_arns} => Array<String>
|
2880
2897
|
# * {Types::ListManagedSchemaArnsResponse#next_token #next_token} => String
|
2881
2898
|
#
|
2899
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2900
|
+
#
|
2882
2901
|
# @example Request syntax with placeholder values
|
2883
2902
|
#
|
2884
2903
|
# resp = client.list_managed_schema_arns({
|
@@ -2933,6 +2952,8 @@ module Aws::CloudDirectory
|
|
2933
2952
|
# * {Types::ListObjectAttributesResponse#attributes #attributes} => Array<Types::AttributeKeyAndValue>
|
2934
2953
|
# * {Types::ListObjectAttributesResponse#next_token #next_token} => String
|
2935
2954
|
#
|
2955
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2956
|
+
#
|
2936
2957
|
# @example Request syntax with placeholder values
|
2937
2958
|
#
|
2938
2959
|
# resp = client.list_object_attributes({
|
@@ -2999,6 +3020,8 @@ module Aws::CloudDirectory
|
|
2999
3020
|
# * {Types::ListObjectChildrenResponse#children #children} => Hash<String,String>
|
3000
3021
|
# * {Types::ListObjectChildrenResponse#next_token #next_token} => String
|
3001
3022
|
#
|
3023
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3024
|
+
#
|
3002
3025
|
# @example Request syntax with placeholder values
|
3003
3026
|
#
|
3004
3027
|
# resp = client.list_object_children({
|
@@ -3061,6 +3084,8 @@ module Aws::CloudDirectory
|
|
3061
3084
|
# * {Types::ListObjectParentPathsResponse#path_to_object_identifiers_list #path_to_object_identifiers_list} => Array<Types::PathToObjectIdentifiers>
|
3062
3085
|
# * {Types::ListObjectParentPathsResponse#next_token #next_token} => String
|
3063
3086
|
#
|
3087
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3088
|
+
#
|
3064
3089
|
# @example Request syntax with placeholder values
|
3065
3090
|
#
|
3066
3091
|
# resp = client.list_object_parent_paths({
|
@@ -3122,6 +3147,8 @@ module Aws::CloudDirectory
|
|
3122
3147
|
# * {Types::ListObjectParentsResponse#next_token #next_token} => String
|
3123
3148
|
# * {Types::ListObjectParentsResponse#parent_links #parent_links} => Array<Types::ObjectIdentifierAndLinkNameTuple>
|
3124
3149
|
#
|
3150
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3151
|
+
#
|
3125
3152
|
# @example Request syntax with placeholder values
|
3126
3153
|
#
|
3127
3154
|
# resp = client.list_object_parents({
|
@@ -3180,6 +3207,8 @@ module Aws::CloudDirectory
|
|
3180
3207
|
# * {Types::ListObjectPoliciesResponse#attached_policy_ids #attached_policy_ids} => Array<String>
|
3181
3208
|
# * {Types::ListObjectPoliciesResponse#next_token #next_token} => String
|
3182
3209
|
#
|
3210
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3211
|
+
#
|
3183
3212
|
# @example Request syntax with placeholder values
|
3184
3213
|
#
|
3185
3214
|
# resp = client.list_object_policies({
|
@@ -3339,6 +3368,8 @@ module Aws::CloudDirectory
|
|
3339
3368
|
# * {Types::ListPolicyAttachmentsResponse#object_identifiers #object_identifiers} => Array<String>
|
3340
3369
|
# * {Types::ListPolicyAttachmentsResponse#next_token #next_token} => String
|
3341
3370
|
#
|
3371
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3372
|
+
#
|
3342
3373
|
# @example Request syntax with placeholder values
|
3343
3374
|
#
|
3344
3375
|
# resp = client.list_policy_attachments({
|
@@ -3385,6 +3416,8 @@ module Aws::CloudDirectory
|
|
3385
3416
|
# * {Types::ListPublishedSchemaArnsResponse#schema_arns #schema_arns} => Array<String>
|
3386
3417
|
# * {Types::ListPublishedSchemaArnsResponse#next_token #next_token} => String
|
3387
3418
|
#
|
3419
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3420
|
+
#
|
3388
3421
|
# @example Request syntax with placeholder values
|
3389
3422
|
#
|
3390
3423
|
# resp = client.list_published_schema_arns({
|
@@ -3430,6 +3463,8 @@ module Aws::CloudDirectory
|
|
3430
3463
|
# * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
|
3431
3464
|
# * {Types::ListTagsForResourceResponse#next_token #next_token} => String
|
3432
3465
|
#
|
3466
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3467
|
+
#
|
3433
3468
|
# @example Request syntax with placeholder values
|
3434
3469
|
#
|
3435
3470
|
# resp = client.list_tags_for_resource({
|
@@ -3479,6 +3514,8 @@ module Aws::CloudDirectory
|
|
3479
3514
|
# * {Types::ListTypedLinkFacetAttributesResponse#attributes #attributes} => Array<Types::TypedLinkAttributeDefinition>
|
3480
3515
|
# * {Types::ListTypedLinkFacetAttributesResponse#next_token #next_token} => String
|
3481
3516
|
#
|
3517
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3518
|
+
#
|
3482
3519
|
# @example Request syntax with placeholder values
|
3483
3520
|
#
|
3484
3521
|
# resp = client.list_typed_link_facet_attributes({
|
@@ -3537,6 +3574,8 @@ module Aws::CloudDirectory
|
|
3537
3574
|
# * {Types::ListTypedLinkFacetNamesResponse#facet_names #facet_names} => Array<String>
|
3538
3575
|
# * {Types::ListTypedLinkFacetNamesResponse#next_token #next_token} => String
|
3539
3576
|
#
|
3577
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3578
|
+
#
|
3540
3579
|
# @example Request syntax with placeholder values
|
3541
3580
|
#
|
3542
3581
|
# resp = client.list_typed_link_facet_names({
|
@@ -3591,6 +3630,8 @@ module Aws::CloudDirectory
|
|
3591
3630
|
# * {Types::LookupPolicyResponse#policy_to_path_list #policy_to_path_list} => Array<Types::PolicyToPath>
|
3592
3631
|
# * {Types::LookupPolicyResponse#next_token #next_token} => String
|
3593
3632
|
#
|
3633
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3634
|
+
#
|
3594
3635
|
# @example Request syntax with placeholder values
|
3595
3636
|
#
|
3596
3637
|
# resp = client.lookup_policy({
|
@@ -4227,7 +4268,7 @@ module Aws::CloudDirectory
|
|
4227
4268
|
params: params,
|
4228
4269
|
config: config)
|
4229
4270
|
context[:gem_name] = 'aws-sdk-clouddirectory'
|
4230
|
-
context[:gem_version] = '1.
|
4271
|
+
context[:gem_version] = '1.23.0'
|
4231
4272
|
Seahorse::Client::Request.new(handlers, context)
|
4232
4273
|
end
|
4233
4274
|
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::CloudDirectory
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::CloudDirectory::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::CloudDirectory::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::CloudDirectory::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
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.
|
4
|
+
version: 1.23.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: 2020-
|
11
|
+
date: 2020-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amazon CloudDirectory
|