aws-sdk-clouddirectory 1.20.0 → 1.25.1
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 +7 -4
- data/lib/aws-sdk-clouddirectory/client.rb +108 -14
- data/lib/aws-sdk-clouddirectory/errors.rb +57 -35
- data/lib/aws-sdk-clouddirectory/resource.rb +1 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c4f5043725cc7306cfb82d17995b474306a912b120bb714e3144a65c84ee9d35
|
4
|
+
data.tar.gz: 7da97f5e2fc386e1260e317fb31537bb1b58f51107ba07cab9ad3d3c1ea42e73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc4f5a3dd48145689bc519f254b9d74291e4830deb48c82465e231d11a68583691c5f1f6f2640eaf53d60100e692f044b007596bcaff36836aa563a52108411d
|
7
|
+
data.tar.gz: 3c7c34469a4a16dc9c0371ad55a4d1b6ec466374a9ebdeb49fce522ac11a51e957f5b13f08bfedd8f4ed6a21590dab0d5c2a8dc4b39d5d93203ecbf3b3d19de4
|
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-clouddirectory/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# cloud_directory = Aws::CloudDirectory::Client.new
|
28
|
+
# resp = cloud_directory.add_facet_to_object(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from Amazon CloudDirectory
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from Amazon CloudDirectory are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::CloudDirectory::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all Amazon CloudDirectory API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-clouddirectory/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::CloudDirectory
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.25.1'
|
46
49
|
|
47
50
|
end
|
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
30
|
|
30
31
|
Aws::Plugins::GlobalConfiguration.add_identifier(:clouddirectory)
|
31
32
|
|
32
33
|
module Aws::CloudDirectory
|
34
|
+
# An API client for CloudDirectory. To construct a client, you need to configure a `:region` and `:credentials`.
|
35
|
+
#
|
36
|
+
# client = Aws::CloudDirectory::Client.new(
|
37
|
+
# region: region_name,
|
38
|
+
# credentials: credentials,
|
39
|
+
# # ...
|
40
|
+
# )
|
41
|
+
#
|
42
|
+
# For details on configuring region and credentials see
|
43
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
44
|
+
#
|
45
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
46
|
class Client < Seahorse::Client::Base
|
34
47
|
|
35
48
|
include Aws::ClientStubs
|
@@ -57,6 +70,7 @@ module Aws::CloudDirectory
|
|
57
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
75
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
76
|
|
@@ -93,7 +107,7 @@ module Aws::CloudDirectory
|
|
93
107
|
# @option options [required, String] :region
|
94
108
|
# The AWS region to connect to. The configured `:region` is
|
95
109
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
97
111
|
#
|
98
112
|
# * `Aws.config[:region]`
|
99
113
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +122,12 @@ module Aws::CloudDirectory
|
|
108
122
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
123
|
# the background every 60 secs (default). Defaults to `false`.
|
110
124
|
#
|
125
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
126
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
127
|
+
# until there is sufficent client side capacity to retry the request.
|
128
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
129
|
+
# not retry instead of sleeping.
|
130
|
+
#
|
111
131
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
132
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
133
|
# this client.
|
@@ -132,6 +152,10 @@ module Aws::CloudDirectory
|
|
132
152
|
# When `true`, an attempt is made to coerce request parameters into
|
133
153
|
# the required types.
|
134
154
|
#
|
155
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
156
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
157
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
158
|
+
#
|
135
159
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
160
|
# Set to true to disable SDK automatically adding host prefix
|
137
161
|
# to default service endpoint when available.
|
@@ -139,7 +163,7 @@ module Aws::CloudDirectory
|
|
139
163
|
# @option options [String] :endpoint
|
140
164
|
# The client endpoint is normally constructed from the `:region`
|
141
165
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
167
|
#
|
144
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +178,7 @@ module Aws::CloudDirectory
|
|
154
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
179
|
#
|
156
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
182
|
#
|
159
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
184
|
# The log formatter.
|
@@ -166,15 +190,29 @@ module Aws::CloudDirectory
|
|
166
190
|
# The Logger instance to send log messages to. If this option
|
167
191
|
# is not set, logging will be disabled.
|
168
192
|
#
|
193
|
+
# @option options [Integer] :max_attempts (3)
|
194
|
+
# An integer representing the maximum number attempts that will be made for
|
195
|
+
# a single request, including the initial attempt. For example,
|
196
|
+
# setting this value to 5 will result in a request being retried up to
|
197
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
198
|
+
#
|
169
199
|
# @option options [String] :profile ("default")
|
170
200
|
# Used when loading credentials from the shared credentials file
|
171
201
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
202
|
#
|
203
|
+
# @option options [Proc] :retry_backoff
|
204
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
205
|
+
# This option is only used in the `legacy` retry mode.
|
206
|
+
#
|
173
207
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
208
|
+
# The base delay in seconds used by the default backoff function. This option
|
209
|
+
# is only used in the `legacy` retry mode.
|
175
210
|
#
|
176
211
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
212
|
+
# A delay randomiser function used by the default backoff function.
|
213
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
214
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
215
|
+
# in the `legacy` retry mode.
|
178
216
|
#
|
179
217
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
218
|
#
|
@@ -182,11 +220,30 @@ module Aws::CloudDirectory
|
|
182
220
|
# The maximum number of times to retry failed requests. Only
|
183
221
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
222
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
223
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
224
|
+
# endpoint discovery, and errors from expired credentials.
|
225
|
+
# This option is only used in the `legacy` retry mode.
|
187
226
|
#
|
188
227
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
228
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
229
|
+
# used by the default backoff function. This option is only used in the
|
230
|
+
# `legacy` retry mode.
|
231
|
+
#
|
232
|
+
# @option options [String] :retry_mode ("legacy")
|
233
|
+
# Specifies which retry algorithm to use. Values are:
|
234
|
+
#
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
236
|
+
# no retry mode is provided.
|
237
|
+
#
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
240
|
+
# unsuccessful retries a client can make.
|
241
|
+
#
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
245
|
+
# in the future.
|
246
|
+
#
|
190
247
|
#
|
191
248
|
# @option options [String] :secret_access_key
|
192
249
|
#
|
@@ -209,16 +266,15 @@ module Aws::CloudDirectory
|
|
209
266
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
267
|
#
|
211
268
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
269
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
270
|
# `Timeout::Error`.
|
214
271
|
#
|
215
272
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
273
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
274
|
+
# safely be set per-request on the session.
|
219
275
|
#
|
220
276
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
277
|
+
# seconds a connection is allowed to sit idle before it is
|
222
278
|
# considered stale. Stale connections are closed and removed
|
223
279
|
# from the pool before making a request.
|
224
280
|
#
|
@@ -227,7 +283,7 @@ module Aws::CloudDirectory
|
|
227
283
|
# request body. This option has no effect unless the request has
|
228
284
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
285
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
286
|
+
# request on the session.
|
231
287
|
#
|
232
288
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
289
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -2354,6 +2410,8 @@ module Aws::CloudDirectory
|
|
2354
2410
|
# * {Types::ListAppliedSchemaArnsResponse#schema_arns #schema_arns} => Array<String>
|
2355
2411
|
# * {Types::ListAppliedSchemaArnsResponse#next_token #next_token} => String
|
2356
2412
|
#
|
2413
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2414
|
+
#
|
2357
2415
|
# @example Request syntax with placeholder values
|
2358
2416
|
#
|
2359
2417
|
# resp = client.list_applied_schema_arns({
|
@@ -2400,6 +2458,8 @@ module Aws::CloudDirectory
|
|
2400
2458
|
# * {Types::ListAttachedIndicesResponse#index_attachments #index_attachments} => Array<Types::IndexAttachment>
|
2401
2459
|
# * {Types::ListAttachedIndicesResponse#next_token #next_token} => String
|
2402
2460
|
#
|
2461
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2462
|
+
#
|
2403
2463
|
# @example Request syntax with placeholder values
|
2404
2464
|
#
|
2405
2465
|
# resp = client.list_attached_indices({
|
@@ -2450,6 +2510,8 @@ module Aws::CloudDirectory
|
|
2450
2510
|
# * {Types::ListDevelopmentSchemaArnsResponse#schema_arns #schema_arns} => Array<String>
|
2451
2511
|
# * {Types::ListDevelopmentSchemaArnsResponse#next_token #next_token} => String
|
2452
2512
|
#
|
2513
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2514
|
+
#
|
2453
2515
|
# @example Request syntax with placeholder values
|
2454
2516
|
#
|
2455
2517
|
# resp = client.list_development_schema_arns({
|
@@ -2489,6 +2551,8 @@ module Aws::CloudDirectory
|
|
2489
2551
|
# * {Types::ListDirectoriesResponse#directories #directories} => Array<Types::Directory>
|
2490
2552
|
# * {Types::ListDirectoriesResponse#next_token #next_token} => String
|
2491
2553
|
#
|
2554
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2555
|
+
#
|
2492
2556
|
# @example Request syntax with placeholder values
|
2493
2557
|
#
|
2494
2558
|
# resp = client.list_directories({
|
@@ -2534,6 +2598,8 @@ module Aws::CloudDirectory
|
|
2534
2598
|
# * {Types::ListFacetAttributesResponse#attributes #attributes} => Array<Types::FacetAttribute>
|
2535
2599
|
# * {Types::ListFacetAttributesResponse#next_token #next_token} => String
|
2536
2600
|
#
|
2601
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2602
|
+
#
|
2537
2603
|
# @example Request syntax with placeholder values
|
2538
2604
|
#
|
2539
2605
|
# resp = client.list_facet_attributes({
|
@@ -2588,6 +2654,8 @@ module Aws::CloudDirectory
|
|
2588
2654
|
# * {Types::ListFacetNamesResponse#facet_names #facet_names} => Array<String>
|
2589
2655
|
# * {Types::ListFacetNamesResponse#next_token #next_token} => String
|
2590
2656
|
#
|
2657
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2658
|
+
#
|
2591
2659
|
# @example Request syntax with placeholder values
|
2592
2660
|
#
|
2593
2661
|
# resp = client.list_facet_names({
|
@@ -2746,6 +2814,8 @@ module Aws::CloudDirectory
|
|
2746
2814
|
# * {Types::ListIndexResponse#index_attachments #index_attachments} => Array<Types::IndexAttachment>
|
2747
2815
|
# * {Types::ListIndexResponse#next_token #next_token} => String
|
2748
2816
|
#
|
2817
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2818
|
+
#
|
2749
2819
|
# @example Request syntax with placeholder values
|
2750
2820
|
#
|
2751
2821
|
# resp = client.list_index({
|
@@ -2828,6 +2898,8 @@ module Aws::CloudDirectory
|
|
2828
2898
|
# * {Types::ListManagedSchemaArnsResponse#schema_arns #schema_arns} => Array<String>
|
2829
2899
|
# * {Types::ListManagedSchemaArnsResponse#next_token #next_token} => String
|
2830
2900
|
#
|
2901
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2902
|
+
#
|
2831
2903
|
# @example Request syntax with placeholder values
|
2832
2904
|
#
|
2833
2905
|
# resp = client.list_managed_schema_arns({
|
@@ -2882,6 +2954,8 @@ module Aws::CloudDirectory
|
|
2882
2954
|
# * {Types::ListObjectAttributesResponse#attributes #attributes} => Array<Types::AttributeKeyAndValue>
|
2883
2955
|
# * {Types::ListObjectAttributesResponse#next_token #next_token} => String
|
2884
2956
|
#
|
2957
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2958
|
+
#
|
2885
2959
|
# @example Request syntax with placeholder values
|
2886
2960
|
#
|
2887
2961
|
# resp = client.list_object_attributes({
|
@@ -2948,6 +3022,8 @@ module Aws::CloudDirectory
|
|
2948
3022
|
# * {Types::ListObjectChildrenResponse#children #children} => Hash<String,String>
|
2949
3023
|
# * {Types::ListObjectChildrenResponse#next_token #next_token} => String
|
2950
3024
|
#
|
3025
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3026
|
+
#
|
2951
3027
|
# @example Request syntax with placeholder values
|
2952
3028
|
#
|
2953
3029
|
# resp = client.list_object_children({
|
@@ -3010,6 +3086,8 @@ module Aws::CloudDirectory
|
|
3010
3086
|
# * {Types::ListObjectParentPathsResponse#path_to_object_identifiers_list #path_to_object_identifiers_list} => Array<Types::PathToObjectIdentifiers>
|
3011
3087
|
# * {Types::ListObjectParentPathsResponse#next_token #next_token} => String
|
3012
3088
|
#
|
3089
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3090
|
+
#
|
3013
3091
|
# @example Request syntax with placeholder values
|
3014
3092
|
#
|
3015
3093
|
# resp = client.list_object_parent_paths({
|
@@ -3071,6 +3149,8 @@ module Aws::CloudDirectory
|
|
3071
3149
|
# * {Types::ListObjectParentsResponse#next_token #next_token} => String
|
3072
3150
|
# * {Types::ListObjectParentsResponse#parent_links #parent_links} => Array<Types::ObjectIdentifierAndLinkNameTuple>
|
3073
3151
|
#
|
3152
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3153
|
+
#
|
3074
3154
|
# @example Request syntax with placeholder values
|
3075
3155
|
#
|
3076
3156
|
# resp = client.list_object_parents({
|
@@ -3129,6 +3209,8 @@ module Aws::CloudDirectory
|
|
3129
3209
|
# * {Types::ListObjectPoliciesResponse#attached_policy_ids #attached_policy_ids} => Array<String>
|
3130
3210
|
# * {Types::ListObjectPoliciesResponse#next_token #next_token} => String
|
3131
3211
|
#
|
3212
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3213
|
+
#
|
3132
3214
|
# @example Request syntax with placeholder values
|
3133
3215
|
#
|
3134
3216
|
# resp = client.list_object_policies({
|
@@ -3288,6 +3370,8 @@ module Aws::CloudDirectory
|
|
3288
3370
|
# * {Types::ListPolicyAttachmentsResponse#object_identifiers #object_identifiers} => Array<String>
|
3289
3371
|
# * {Types::ListPolicyAttachmentsResponse#next_token #next_token} => String
|
3290
3372
|
#
|
3373
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3374
|
+
#
|
3291
3375
|
# @example Request syntax with placeholder values
|
3292
3376
|
#
|
3293
3377
|
# resp = client.list_policy_attachments({
|
@@ -3334,6 +3418,8 @@ module Aws::CloudDirectory
|
|
3334
3418
|
# * {Types::ListPublishedSchemaArnsResponse#schema_arns #schema_arns} => Array<String>
|
3335
3419
|
# * {Types::ListPublishedSchemaArnsResponse#next_token #next_token} => String
|
3336
3420
|
#
|
3421
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3422
|
+
#
|
3337
3423
|
# @example Request syntax with placeholder values
|
3338
3424
|
#
|
3339
3425
|
# resp = client.list_published_schema_arns({
|
@@ -3379,6 +3465,8 @@ module Aws::CloudDirectory
|
|
3379
3465
|
# * {Types::ListTagsForResourceResponse#tags #tags} => Array<Types::Tag>
|
3380
3466
|
# * {Types::ListTagsForResourceResponse#next_token #next_token} => String
|
3381
3467
|
#
|
3468
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3469
|
+
#
|
3382
3470
|
# @example Request syntax with placeholder values
|
3383
3471
|
#
|
3384
3472
|
# resp = client.list_tags_for_resource({
|
@@ -3428,6 +3516,8 @@ module Aws::CloudDirectory
|
|
3428
3516
|
# * {Types::ListTypedLinkFacetAttributesResponse#attributes #attributes} => Array<Types::TypedLinkAttributeDefinition>
|
3429
3517
|
# * {Types::ListTypedLinkFacetAttributesResponse#next_token #next_token} => String
|
3430
3518
|
#
|
3519
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3520
|
+
#
|
3431
3521
|
# @example Request syntax with placeholder values
|
3432
3522
|
#
|
3433
3523
|
# resp = client.list_typed_link_facet_attributes({
|
@@ -3486,6 +3576,8 @@ module Aws::CloudDirectory
|
|
3486
3576
|
# * {Types::ListTypedLinkFacetNamesResponse#facet_names #facet_names} => Array<String>
|
3487
3577
|
# * {Types::ListTypedLinkFacetNamesResponse#next_token #next_token} => String
|
3488
3578
|
#
|
3579
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3580
|
+
#
|
3489
3581
|
# @example Request syntax with placeholder values
|
3490
3582
|
#
|
3491
3583
|
# resp = client.list_typed_link_facet_names({
|
@@ -3540,6 +3632,8 @@ module Aws::CloudDirectory
|
|
3540
3632
|
# * {Types::LookupPolicyResponse#policy_to_path_list #policy_to_path_list} => Array<Types::PolicyToPath>
|
3541
3633
|
# * {Types::LookupPolicyResponse#next_token #next_token} => String
|
3542
3634
|
#
|
3635
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3636
|
+
#
|
3543
3637
|
# @example Request syntax with placeholder values
|
3544
3638
|
#
|
3545
3639
|
# resp = client.lookup_policy({
|
@@ -4176,7 +4270,7 @@ module Aws::CloudDirectory
|
|
4176
4270
|
params: params,
|
4177
4271
|
config: config)
|
4178
4272
|
context[:gem_name] = 'aws-sdk-clouddirectory'
|
4179
|
-
context[:gem_version] = '1.
|
4273
|
+
context[:gem_version] = '1.25.1'
|
4180
4274
|
Seahorse::Client::Request.new(handlers, context)
|
4181
4275
|
end
|
4182
4276
|
|
@@ -6,6 +6,63 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::CloudDirectory
|
9
|
+
|
10
|
+
# When CloudDirectory returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::CloudDirectory::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all CloudDirectory errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::CloudDirectory::Errors::ServiceError
|
18
|
+
# # rescues all CloudDirectory API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {AccessDeniedException}
|
29
|
+
# * {BatchWriteException}
|
30
|
+
# * {CannotListParentOfRootException}
|
31
|
+
# * {DirectoryAlreadyExistsException}
|
32
|
+
# * {DirectoryDeletedException}
|
33
|
+
# * {DirectoryNotDisabledException}
|
34
|
+
# * {DirectoryNotEnabledException}
|
35
|
+
# * {FacetAlreadyExistsException}
|
36
|
+
# * {FacetInUseException}
|
37
|
+
# * {FacetNotFoundException}
|
38
|
+
# * {FacetValidationException}
|
39
|
+
# * {IncompatibleSchemaException}
|
40
|
+
# * {IndexedAttributeMissingException}
|
41
|
+
# * {InternalServiceException}
|
42
|
+
# * {InvalidArnException}
|
43
|
+
# * {InvalidAttachmentException}
|
44
|
+
# * {InvalidFacetUpdateException}
|
45
|
+
# * {InvalidNextTokenException}
|
46
|
+
# * {InvalidRuleException}
|
47
|
+
# * {InvalidSchemaDocException}
|
48
|
+
# * {InvalidTaggingRequestException}
|
49
|
+
# * {LimitExceededException}
|
50
|
+
# * {LinkNameAlreadyInUseException}
|
51
|
+
# * {NotIndexException}
|
52
|
+
# * {NotNodeException}
|
53
|
+
# * {NotPolicyException}
|
54
|
+
# * {ObjectAlreadyDetachedException}
|
55
|
+
# * {ObjectNotDetachedException}
|
56
|
+
# * {ResourceNotFoundException}
|
57
|
+
# * {RetryableConflictException}
|
58
|
+
# * {SchemaAlreadyExistsException}
|
59
|
+
# * {SchemaAlreadyPublishedException}
|
60
|
+
# * {StillContainsLinksException}
|
61
|
+
# * {UnsupportedIndexTypeException}
|
62
|
+
# * {ValidationException}
|
63
|
+
#
|
64
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
65
|
+
# if they are not defined above.
|
9
66
|
module Errors
|
10
67
|
|
11
68
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +80,6 @@ module Aws::CloudDirectory
|
|
23
80
|
def message
|
24
81
|
@message || @data[:message]
|
25
82
|
end
|
26
|
-
|
27
83
|
end
|
28
84
|
|
29
85
|
class BatchWriteException < ServiceError
|
@@ -49,7 +105,6 @@ module Aws::CloudDirectory
|
|
49
105
|
def message
|
50
106
|
@message || @data[:message]
|
51
107
|
end
|
52
|
-
|
53
108
|
end
|
54
109
|
|
55
110
|
class CannotListParentOfRootException < ServiceError
|
@@ -65,7 +120,6 @@ module Aws::CloudDirectory
|
|
65
120
|
def message
|
66
121
|
@message || @data[:message]
|
67
122
|
end
|
68
|
-
|
69
123
|
end
|
70
124
|
|
71
125
|
class DirectoryAlreadyExistsException < ServiceError
|
@@ -81,7 +135,6 @@ module Aws::CloudDirectory
|
|
81
135
|
def message
|
82
136
|
@message || @data[:message]
|
83
137
|
end
|
84
|
-
|
85
138
|
end
|
86
139
|
|
87
140
|
class DirectoryDeletedException < ServiceError
|
@@ -97,7 +150,6 @@ module Aws::CloudDirectory
|
|
97
150
|
def message
|
98
151
|
@message || @data[:message]
|
99
152
|
end
|
100
|
-
|
101
153
|
end
|
102
154
|
|
103
155
|
class DirectoryNotDisabledException < ServiceError
|
@@ -113,7 +165,6 @@ module Aws::CloudDirectory
|
|
113
165
|
def message
|
114
166
|
@message || @data[:message]
|
115
167
|
end
|
116
|
-
|
117
168
|
end
|
118
169
|
|
119
170
|
class DirectoryNotEnabledException < ServiceError
|
@@ -129,7 +180,6 @@ module Aws::CloudDirectory
|
|
129
180
|
def message
|
130
181
|
@message || @data[:message]
|
131
182
|
end
|
132
|
-
|
133
183
|
end
|
134
184
|
|
135
185
|
class FacetAlreadyExistsException < ServiceError
|
@@ -145,7 +195,6 @@ module Aws::CloudDirectory
|
|
145
195
|
def message
|
146
196
|
@message || @data[:message]
|
147
197
|
end
|
148
|
-
|
149
198
|
end
|
150
199
|
|
151
200
|
class FacetInUseException < ServiceError
|
@@ -161,7 +210,6 @@ module Aws::CloudDirectory
|
|
161
210
|
def message
|
162
211
|
@message || @data[:message]
|
163
212
|
end
|
164
|
-
|
165
213
|
end
|
166
214
|
|
167
215
|
class FacetNotFoundException < ServiceError
|
@@ -177,7 +225,6 @@ module Aws::CloudDirectory
|
|
177
225
|
def message
|
178
226
|
@message || @data[:message]
|
179
227
|
end
|
180
|
-
|
181
228
|
end
|
182
229
|
|
183
230
|
class FacetValidationException < ServiceError
|
@@ -193,7 +240,6 @@ module Aws::CloudDirectory
|
|
193
240
|
def message
|
194
241
|
@message || @data[:message]
|
195
242
|
end
|
196
|
-
|
197
243
|
end
|
198
244
|
|
199
245
|
class IncompatibleSchemaException < ServiceError
|
@@ -209,7 +255,6 @@ module Aws::CloudDirectory
|
|
209
255
|
def message
|
210
256
|
@message || @data[:message]
|
211
257
|
end
|
212
|
-
|
213
258
|
end
|
214
259
|
|
215
260
|
class IndexedAttributeMissingException < ServiceError
|
@@ -225,7 +270,6 @@ module Aws::CloudDirectory
|
|
225
270
|
def message
|
226
271
|
@message || @data[:message]
|
227
272
|
end
|
228
|
-
|
229
273
|
end
|
230
274
|
|
231
275
|
class InternalServiceException < ServiceError
|
@@ -241,7 +285,6 @@ module Aws::CloudDirectory
|
|
241
285
|
def message
|
242
286
|
@message || @data[:message]
|
243
287
|
end
|
244
|
-
|
245
288
|
end
|
246
289
|
|
247
290
|
class InvalidArnException < ServiceError
|
@@ -257,7 +300,6 @@ module Aws::CloudDirectory
|
|
257
300
|
def message
|
258
301
|
@message || @data[:message]
|
259
302
|
end
|
260
|
-
|
261
303
|
end
|
262
304
|
|
263
305
|
class InvalidAttachmentException < ServiceError
|
@@ -273,7 +315,6 @@ module Aws::CloudDirectory
|
|
273
315
|
def message
|
274
316
|
@message || @data[:message]
|
275
317
|
end
|
276
|
-
|
277
318
|
end
|
278
319
|
|
279
320
|
class InvalidFacetUpdateException < ServiceError
|
@@ -289,7 +330,6 @@ module Aws::CloudDirectory
|
|
289
330
|
def message
|
290
331
|
@message || @data[:message]
|
291
332
|
end
|
292
|
-
|
293
333
|
end
|
294
334
|
|
295
335
|
class InvalidNextTokenException < ServiceError
|
@@ -305,7 +345,6 @@ module Aws::CloudDirectory
|
|
305
345
|
def message
|
306
346
|
@message || @data[:message]
|
307
347
|
end
|
308
|
-
|
309
348
|
end
|
310
349
|
|
311
350
|
class InvalidRuleException < ServiceError
|
@@ -321,7 +360,6 @@ module Aws::CloudDirectory
|
|
321
360
|
def message
|
322
361
|
@message || @data[:message]
|
323
362
|
end
|
324
|
-
|
325
363
|
end
|
326
364
|
|
327
365
|
class InvalidSchemaDocException < ServiceError
|
@@ -337,7 +375,6 @@ module Aws::CloudDirectory
|
|
337
375
|
def message
|
338
376
|
@message || @data[:message]
|
339
377
|
end
|
340
|
-
|
341
378
|
end
|
342
379
|
|
343
380
|
class InvalidTaggingRequestException < ServiceError
|
@@ -353,7 +390,6 @@ module Aws::CloudDirectory
|
|
353
390
|
def message
|
354
391
|
@message || @data[:message]
|
355
392
|
end
|
356
|
-
|
357
393
|
end
|
358
394
|
|
359
395
|
class LimitExceededException < ServiceError
|
@@ -369,7 +405,6 @@ module Aws::CloudDirectory
|
|
369
405
|
def message
|
370
406
|
@message || @data[:message]
|
371
407
|
end
|
372
|
-
|
373
408
|
end
|
374
409
|
|
375
410
|
class LinkNameAlreadyInUseException < ServiceError
|
@@ -385,7 +420,6 @@ module Aws::CloudDirectory
|
|
385
420
|
def message
|
386
421
|
@message || @data[:message]
|
387
422
|
end
|
388
|
-
|
389
423
|
end
|
390
424
|
|
391
425
|
class NotIndexException < ServiceError
|
@@ -401,7 +435,6 @@ module Aws::CloudDirectory
|
|
401
435
|
def message
|
402
436
|
@message || @data[:message]
|
403
437
|
end
|
404
|
-
|
405
438
|
end
|
406
439
|
|
407
440
|
class NotNodeException < ServiceError
|
@@ -417,7 +450,6 @@ module Aws::CloudDirectory
|
|
417
450
|
def message
|
418
451
|
@message || @data[:message]
|
419
452
|
end
|
420
|
-
|
421
453
|
end
|
422
454
|
|
423
455
|
class NotPolicyException < ServiceError
|
@@ -433,7 +465,6 @@ module Aws::CloudDirectory
|
|
433
465
|
def message
|
434
466
|
@message || @data[:message]
|
435
467
|
end
|
436
|
-
|
437
468
|
end
|
438
469
|
|
439
470
|
class ObjectAlreadyDetachedException < ServiceError
|
@@ -449,7 +480,6 @@ module Aws::CloudDirectory
|
|
449
480
|
def message
|
450
481
|
@message || @data[:message]
|
451
482
|
end
|
452
|
-
|
453
483
|
end
|
454
484
|
|
455
485
|
class ObjectNotDetachedException < ServiceError
|
@@ -465,7 +495,6 @@ module Aws::CloudDirectory
|
|
465
495
|
def message
|
466
496
|
@message || @data[:message]
|
467
497
|
end
|
468
|
-
|
469
498
|
end
|
470
499
|
|
471
500
|
class ResourceNotFoundException < ServiceError
|
@@ -481,7 +510,6 @@ module Aws::CloudDirectory
|
|
481
510
|
def message
|
482
511
|
@message || @data[:message]
|
483
512
|
end
|
484
|
-
|
485
513
|
end
|
486
514
|
|
487
515
|
class RetryableConflictException < ServiceError
|
@@ -497,7 +525,6 @@ module Aws::CloudDirectory
|
|
497
525
|
def message
|
498
526
|
@message || @data[:message]
|
499
527
|
end
|
500
|
-
|
501
528
|
end
|
502
529
|
|
503
530
|
class SchemaAlreadyExistsException < ServiceError
|
@@ -513,7 +540,6 @@ module Aws::CloudDirectory
|
|
513
540
|
def message
|
514
541
|
@message || @data[:message]
|
515
542
|
end
|
516
|
-
|
517
543
|
end
|
518
544
|
|
519
545
|
class SchemaAlreadyPublishedException < ServiceError
|
@@ -529,7 +555,6 @@ module Aws::CloudDirectory
|
|
529
555
|
def message
|
530
556
|
@message || @data[:message]
|
531
557
|
end
|
532
|
-
|
533
558
|
end
|
534
559
|
|
535
560
|
class StillContainsLinksException < ServiceError
|
@@ -545,7 +570,6 @@ module Aws::CloudDirectory
|
|
545
570
|
def message
|
546
571
|
@message || @data[:message]
|
547
572
|
end
|
548
|
-
|
549
573
|
end
|
550
574
|
|
551
575
|
class UnsupportedIndexTypeException < ServiceError
|
@@ -561,7 +585,6 @@ module Aws::CloudDirectory
|
|
561
585
|
def message
|
562
586
|
@message || @data[:message]
|
563
587
|
end
|
564
|
-
|
565
588
|
end
|
566
589
|
|
567
590
|
class ValidationException < ServiceError
|
@@ -577,7 +600,6 @@ module Aws::CloudDirectory
|
|
577
600
|
def message
|
578
601
|
@message || @data[:message]
|
579
602
|
end
|
580
|
-
|
581
603
|
end
|
582
604
|
|
583
605
|
end
|
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.25.1
|
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:
|
11
|
+
date: 2020-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -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
|