aws-sdk-clouddirectory 1.19.0 → 1.24.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
- SHA1:
3
- metadata.gz: 0af034ff7fc44cf563ac4fb748bc562eef60a3b6
4
- data.tar.gz: 9d7f643b6b36aa5c511d385de86f9e7dfe34ac53
2
+ SHA256:
3
+ metadata.gz: 38c8ebb9a333d6198117da22e40210eb8e44af49b597801f19c9c71bb4d94ffc
4
+ data.tar.gz: c6c2652ffff3cb86585285ea7506869d63b251427bd203a3a5919408c275a3da
5
5
  SHA512:
6
- metadata.gz: 949c7ed4c60c77e2c36dd1721eca5af7d537b8bf17f639dfc8a9f19a188917394077f4bafdaf8956c2cb7c4e74d41a8138048f651011cbe0de93712fdd655f2d
7
- data.tar.gz: 76315105363967b707ccf3393f97f883035441ed3e50d0651c51c8e5e34e6a10c88bf5c3b0fcf4066597acad7693dfd4256c7d738005f9ce877a8b849e7ea1ae
6
+ metadata.gz: cc52cd00a1822505dc310f1dbf86ce170c56b7d80f0d32bc8413f2f7d93f62ca223f30bacec646e4799588a670a3eeca4b2836d572f0f0de7bd9891906e05266
7
+ data.tar.gz: 78d2f5c0aea83ca8cf7c62443083f2212e1ffc44aaf819190cf0b90ba33140d17db35fe2ee24a3d8bbca37383ad7cfa32e8ab2660e814b85ec6e51590fdc41a0
@@ -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 all
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 service API errors
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.19.0'
48
+ GEM_VERSION = '1.24.0'
46
49
 
47
50
  end
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/rest_json.rb'
30
30
  Aws::Plugins::GlobalConfiguration.add_identifier(:clouddirectory)
31
31
 
32
32
  module Aws::CloudDirectory
33
+ # An API client for CloudDirectory. To construct a client, you need to configure a `:region` and `:credentials`.
34
+ #
35
+ # client = Aws::CloudDirectory::Client.new(
36
+ # region: region_name,
37
+ # credentials: credentials,
38
+ # # ...
39
+ # )
40
+ #
41
+ # For details on configuring region and credentials see
42
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
43
+ #
44
+ # See {#initialize} for a full list of supported configuration options.
33
45
  class Client < Seahorse::Client::Base
34
46
 
35
47
  include Aws::ClientStubs
@@ -93,7 +105,7 @@ module Aws::CloudDirectory
93
105
  # @option options [required, String] :region
94
106
  # The AWS region to connect to. The configured `:region` is
95
107
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
108
+ # a default `:region` is searched for in the following locations:
97
109
  #
98
110
  # * `Aws.config[:region]`
99
111
  # * `ENV['AWS_REGION']`
@@ -108,6 +120,12 @@ module Aws::CloudDirectory
108
120
  # When set to `true`, a thread polling for endpoints will be running in
109
121
  # the background every 60 secs (default). Defaults to `false`.
110
122
  #
123
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
124
+ # Used only in `adaptive` retry mode. When true, the request will sleep
125
+ # until there is sufficent client side capacity to retry the request.
126
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
127
+ # not retry instead of sleeping.
128
+ #
111
129
  # @option options [Boolean] :client_side_monitoring (false)
112
130
  # When `true`, client-side metrics will be collected for all API requests from
113
131
  # this client.
@@ -132,6 +150,10 @@ module Aws::CloudDirectory
132
150
  # When `true`, an attempt is made to coerce request parameters into
133
151
  # the required types.
134
152
  #
153
+ # @option options [Boolean] :correct_clock_skew (true)
154
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
155
+ # a clock skew correction and retry requests with skewed client clocks.
156
+ #
135
157
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
158
  # Set to true to disable SDK automatically adding host prefix
137
159
  # to default service endpoint when available.
@@ -139,7 +161,7 @@ module Aws::CloudDirectory
139
161
  # @option options [String] :endpoint
140
162
  # The client endpoint is normally constructed from the `:region`
141
163
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
164
+ # to test endpoints. This should be a valid HTTP(S) URI.
143
165
  #
144
166
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
167
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +176,7 @@ module Aws::CloudDirectory
154
176
  # requests fetching endpoints information. Defaults to 60 sec.
155
177
  #
156
178
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
179
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
180
  #
159
181
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
182
  # The log formatter.
@@ -166,15 +188,29 @@ module Aws::CloudDirectory
166
188
  # The Logger instance to send log messages to. If this option
167
189
  # is not set, logging will be disabled.
168
190
  #
191
+ # @option options [Integer] :max_attempts (3)
192
+ # An integer representing the maximum number attempts that will be made for
193
+ # a single request, including the initial attempt. For example,
194
+ # setting this value to 5 will result in a request being retried up to
195
+ # 4 times. Used in `standard` and `adaptive` retry modes.
196
+ #
169
197
  # @option options [String] :profile ("default")
170
198
  # Used when loading credentials from the shared credentials file
171
199
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
200
  #
201
+ # @option options [Proc] :retry_backoff
202
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
203
+ # This option is only used in the `legacy` retry mode.
204
+ #
173
205
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
206
+ # The base delay in seconds used by the default backoff function. This option
207
+ # is only used in the `legacy` retry mode.
175
208
  #
176
209
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
210
+ # A delay randomiser function used by the default backoff function.
211
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
212
+ # otherwise a Proc that takes and returns a number. This option is only used
213
+ # in the `legacy` retry mode.
178
214
  #
179
215
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
216
  #
@@ -182,11 +218,30 @@ module Aws::CloudDirectory
182
218
  # The maximum number of times to retry failed requests. Only
183
219
  # ~ 500 level server errors and certain ~ 400 level client errors
184
220
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
221
+ # checksum errors, networking errors, timeout errors, auth errors,
222
+ # endpoint discovery, and errors from expired credentials.
223
+ # This option is only used in the `legacy` retry mode.
187
224
  #
188
225
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
226
+ # The maximum number of seconds to delay between retries (0 for no limit)
227
+ # used by the default backoff function. This option is only used in the
228
+ # `legacy` retry mode.
229
+ #
230
+ # @option options [String] :retry_mode ("legacy")
231
+ # Specifies which retry algorithm to use. Values are:
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
+ #
190
245
  #
191
246
  # @option options [String] :secret_access_key
192
247
  #
@@ -209,16 +264,15 @@ module Aws::CloudDirectory
209
264
  # requests through. Formatted like 'http://proxy.com:123'.
210
265
  #
211
266
  # @option options [Float] :http_open_timeout (15) The number of
212
- # seconds to wait when opening a HTTP session before rasing a
267
+ # seconds to wait when opening a HTTP session before raising a
213
268
  # `Timeout::Error`.
214
269
  #
215
270
  # @option options [Integer] :http_read_timeout (60) The default
216
271
  # 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}.
272
+ # safely be set per-request on the session.
219
273
  #
220
274
  # @option options [Float] :http_idle_timeout (5) The number of
221
- # seconds a connection is allowed to sit idble before it is
275
+ # seconds a connection is allowed to sit idle before it is
222
276
  # considered stale. Stale connections are closed and removed
223
277
  # from the pool before making a request.
224
278
  #
@@ -227,7 +281,7 @@ module Aws::CloudDirectory
227
281
  # request body. This option has no effect unless the request has
228
282
  # "Expect" header set to "100-continue". Defaults to `nil` which
229
283
  # disables this behaviour. This value can safely be set per
230
- # request on the session yeidled by {#session_for}.
284
+ # request on the session.
231
285
  #
232
286
  # @option options [Boolean] :http_wire_trace (false) When `true`,
233
287
  # HTTP debug output will be sent to the `:logger`.
@@ -2354,6 +2408,8 @@ module Aws::CloudDirectory
2354
2408
  # * {Types::ListAppliedSchemaArnsResponse#schema_arns #schema_arns} => Array&lt;String&gt;
2355
2409
  # * {Types::ListAppliedSchemaArnsResponse#next_token #next_token} => String
2356
2410
  #
2411
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2412
+ #
2357
2413
  # @example Request syntax with placeholder values
2358
2414
  #
2359
2415
  # resp = client.list_applied_schema_arns({
@@ -2400,6 +2456,8 @@ module Aws::CloudDirectory
2400
2456
  # * {Types::ListAttachedIndicesResponse#index_attachments #index_attachments} => Array&lt;Types::IndexAttachment&gt;
2401
2457
  # * {Types::ListAttachedIndicesResponse#next_token #next_token} => String
2402
2458
  #
2459
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2460
+ #
2403
2461
  # @example Request syntax with placeholder values
2404
2462
  #
2405
2463
  # resp = client.list_attached_indices({
@@ -2450,6 +2508,8 @@ module Aws::CloudDirectory
2450
2508
  # * {Types::ListDevelopmentSchemaArnsResponse#schema_arns #schema_arns} => Array&lt;String&gt;
2451
2509
  # * {Types::ListDevelopmentSchemaArnsResponse#next_token #next_token} => String
2452
2510
  #
2511
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2512
+ #
2453
2513
  # @example Request syntax with placeholder values
2454
2514
  #
2455
2515
  # resp = client.list_development_schema_arns({
@@ -2489,6 +2549,8 @@ module Aws::CloudDirectory
2489
2549
  # * {Types::ListDirectoriesResponse#directories #directories} => Array&lt;Types::Directory&gt;
2490
2550
  # * {Types::ListDirectoriesResponse#next_token #next_token} => String
2491
2551
  #
2552
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2553
+ #
2492
2554
  # @example Request syntax with placeholder values
2493
2555
  #
2494
2556
  # resp = client.list_directories({
@@ -2534,6 +2596,8 @@ module Aws::CloudDirectory
2534
2596
  # * {Types::ListFacetAttributesResponse#attributes #attributes} => Array&lt;Types::FacetAttribute&gt;
2535
2597
  # * {Types::ListFacetAttributesResponse#next_token #next_token} => String
2536
2598
  #
2599
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2600
+ #
2537
2601
  # @example Request syntax with placeholder values
2538
2602
  #
2539
2603
  # resp = client.list_facet_attributes({
@@ -2588,6 +2652,8 @@ module Aws::CloudDirectory
2588
2652
  # * {Types::ListFacetNamesResponse#facet_names #facet_names} => Array&lt;String&gt;
2589
2653
  # * {Types::ListFacetNamesResponse#next_token #next_token} => String
2590
2654
  #
2655
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2656
+ #
2591
2657
  # @example Request syntax with placeholder values
2592
2658
  #
2593
2659
  # resp = client.list_facet_names({
@@ -2746,6 +2812,8 @@ module Aws::CloudDirectory
2746
2812
  # * {Types::ListIndexResponse#index_attachments #index_attachments} => Array&lt;Types::IndexAttachment&gt;
2747
2813
  # * {Types::ListIndexResponse#next_token #next_token} => String
2748
2814
  #
2815
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2816
+ #
2749
2817
  # @example Request syntax with placeholder values
2750
2818
  #
2751
2819
  # resp = client.list_index({
@@ -2828,6 +2896,8 @@ module Aws::CloudDirectory
2828
2896
  # * {Types::ListManagedSchemaArnsResponse#schema_arns #schema_arns} => Array&lt;String&gt;
2829
2897
  # * {Types::ListManagedSchemaArnsResponse#next_token #next_token} => String
2830
2898
  #
2899
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2900
+ #
2831
2901
  # @example Request syntax with placeholder values
2832
2902
  #
2833
2903
  # resp = client.list_managed_schema_arns({
@@ -2882,6 +2952,8 @@ module Aws::CloudDirectory
2882
2952
  # * {Types::ListObjectAttributesResponse#attributes #attributes} => Array&lt;Types::AttributeKeyAndValue&gt;
2883
2953
  # * {Types::ListObjectAttributesResponse#next_token #next_token} => String
2884
2954
  #
2955
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2956
+ #
2885
2957
  # @example Request syntax with placeholder values
2886
2958
  #
2887
2959
  # resp = client.list_object_attributes({
@@ -2948,6 +3020,8 @@ module Aws::CloudDirectory
2948
3020
  # * {Types::ListObjectChildrenResponse#children #children} => Hash&lt;String,String&gt;
2949
3021
  # * {Types::ListObjectChildrenResponse#next_token #next_token} => String
2950
3022
  #
3023
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3024
+ #
2951
3025
  # @example Request syntax with placeholder values
2952
3026
  #
2953
3027
  # resp = client.list_object_children({
@@ -3010,6 +3084,8 @@ module Aws::CloudDirectory
3010
3084
  # * {Types::ListObjectParentPathsResponse#path_to_object_identifiers_list #path_to_object_identifiers_list} => Array&lt;Types::PathToObjectIdentifiers&gt;
3011
3085
  # * {Types::ListObjectParentPathsResponse#next_token #next_token} => String
3012
3086
  #
3087
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3088
+ #
3013
3089
  # @example Request syntax with placeholder values
3014
3090
  #
3015
3091
  # resp = client.list_object_parent_paths({
@@ -3071,6 +3147,8 @@ module Aws::CloudDirectory
3071
3147
  # * {Types::ListObjectParentsResponse#next_token #next_token} => String
3072
3148
  # * {Types::ListObjectParentsResponse#parent_links #parent_links} => Array&lt;Types::ObjectIdentifierAndLinkNameTuple&gt;
3073
3149
  #
3150
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3151
+ #
3074
3152
  # @example Request syntax with placeholder values
3075
3153
  #
3076
3154
  # resp = client.list_object_parents({
@@ -3129,6 +3207,8 @@ module Aws::CloudDirectory
3129
3207
  # * {Types::ListObjectPoliciesResponse#attached_policy_ids #attached_policy_ids} => Array&lt;String&gt;
3130
3208
  # * {Types::ListObjectPoliciesResponse#next_token #next_token} => String
3131
3209
  #
3210
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3211
+ #
3132
3212
  # @example Request syntax with placeholder values
3133
3213
  #
3134
3214
  # resp = client.list_object_policies({
@@ -3288,6 +3368,8 @@ module Aws::CloudDirectory
3288
3368
  # * {Types::ListPolicyAttachmentsResponse#object_identifiers #object_identifiers} => Array&lt;String&gt;
3289
3369
  # * {Types::ListPolicyAttachmentsResponse#next_token #next_token} => String
3290
3370
  #
3371
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3372
+ #
3291
3373
  # @example Request syntax with placeholder values
3292
3374
  #
3293
3375
  # resp = client.list_policy_attachments({
@@ -3334,6 +3416,8 @@ module Aws::CloudDirectory
3334
3416
  # * {Types::ListPublishedSchemaArnsResponse#schema_arns #schema_arns} => Array&lt;String&gt;
3335
3417
  # * {Types::ListPublishedSchemaArnsResponse#next_token #next_token} => String
3336
3418
  #
3419
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3420
+ #
3337
3421
  # @example Request syntax with placeholder values
3338
3422
  #
3339
3423
  # resp = client.list_published_schema_arns({
@@ -3379,6 +3463,8 @@ module Aws::CloudDirectory
3379
3463
  # * {Types::ListTagsForResourceResponse#tags #tags} => Array&lt;Types::Tag&gt;
3380
3464
  # * {Types::ListTagsForResourceResponse#next_token #next_token} => String
3381
3465
  #
3466
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3467
+ #
3382
3468
  # @example Request syntax with placeholder values
3383
3469
  #
3384
3470
  # resp = client.list_tags_for_resource({
@@ -3428,6 +3514,8 @@ module Aws::CloudDirectory
3428
3514
  # * {Types::ListTypedLinkFacetAttributesResponse#attributes #attributes} => Array&lt;Types::TypedLinkAttributeDefinition&gt;
3429
3515
  # * {Types::ListTypedLinkFacetAttributesResponse#next_token #next_token} => String
3430
3516
  #
3517
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3518
+ #
3431
3519
  # @example Request syntax with placeholder values
3432
3520
  #
3433
3521
  # resp = client.list_typed_link_facet_attributes({
@@ -3486,6 +3574,8 @@ module Aws::CloudDirectory
3486
3574
  # * {Types::ListTypedLinkFacetNamesResponse#facet_names #facet_names} => Array&lt;String&gt;
3487
3575
  # * {Types::ListTypedLinkFacetNamesResponse#next_token #next_token} => String
3488
3576
  #
3577
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3578
+ #
3489
3579
  # @example Request syntax with placeholder values
3490
3580
  #
3491
3581
  # resp = client.list_typed_link_facet_names({
@@ -3540,6 +3630,8 @@ module Aws::CloudDirectory
3540
3630
  # * {Types::LookupPolicyResponse#policy_to_path_list #policy_to_path_list} => Array&lt;Types::PolicyToPath&gt;
3541
3631
  # * {Types::LookupPolicyResponse#next_token #next_token} => String
3542
3632
  #
3633
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3634
+ #
3543
3635
  # @example Request syntax with placeholder values
3544
3636
  #
3545
3637
  # resp = client.lookup_policy({
@@ -4176,7 +4268,7 @@ module Aws::CloudDirectory
4176
4268
  params: params,
4177
4269
  config: config)
4178
4270
  context[:gem_name] = 'aws-sdk-clouddirectory'
4179
- context[:gem_version] = '1.19.0'
4271
+ context[:gem_version] = '1.24.0'
4180
4272
  Seahorse::Client::Request.new(handlers, context)
4181
4273
  end
4182
4274
 
@@ -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
@@ -6,6 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::CloudDirectory
9
+
9
10
  class Resource
10
11
 
11
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.19.0
4
+ version: 1.24.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: 2019-07-01 00:00:00.000000000 Z
11
+ date: 2020-05-28 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.58.0
22
+ version: 3.71.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.58.0
32
+ version: 3.71.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.5.2.3
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