aws-sdk-neptune 1.21.0 → 1.26.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-neptune.rb +9 -4
- data/lib/aws-sdk-neptune/client.rb +100 -18
- data/lib/aws-sdk-neptune/client_api.rb +120 -0
- data/lib/aws-sdk-neptune/errors.rb +673 -0
- data/lib/aws-sdk-neptune/resource.rb +3 -0
- data/lib/aws-sdk-neptune/types.rb +534 -0
- data/lib/aws-sdk-neptune/waiters.rb +64 -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: 52ebfbd8c1ee1520f44ac68eb7f5f0eef3523d122f89c6e6f18027ee7ba19497
|
4
|
+
data.tar.gz: 77cd662a1ec2d77fd72c73812c21628262065eab2532a53ecd31d2beaabf6e54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d168aac77a34ca8ea4d97145ed11b158356becca5d41104deeff59e2e9c483527f22b6110dd078d82f353d70a8d6f1b520c990617357eed4c0c152419c88979a
|
7
|
+
data.tar.gz: 0b67e81ff6ea47109a5faa6f931ffe83592f432b104a9301b21ee8e7ba155b5054ff69c487d675a33f0709f68555695006dd6ed791f97cdf9e9578d6efc12f3e
|
data/lib/aws-sdk-neptune.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -25,17 +27,20 @@ require_relative 'aws-sdk-neptune/customizations'
|
|
25
27
|
# methods each accept a hash of request parameters and return a response
|
26
28
|
# structure.
|
27
29
|
#
|
30
|
+
# neptune = Aws::Neptune::Client.new
|
31
|
+
# resp = neptune.add_role_to_db_cluster(params)
|
32
|
+
#
|
28
33
|
# See {Client} for more information.
|
29
34
|
#
|
30
35
|
# # Errors
|
31
36
|
#
|
32
|
-
# Errors returned from Amazon Neptune
|
33
|
-
# extend {Errors::ServiceError}.
|
37
|
+
# Errors returned from Amazon Neptune are defined in the
|
38
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
34
39
|
#
|
35
40
|
# begin
|
36
41
|
# # do stuff
|
37
42
|
# rescue Aws::Neptune::Errors::ServiceError
|
38
|
-
# # rescues all
|
43
|
+
# # rescues all Amazon Neptune API errors
|
39
44
|
# end
|
40
45
|
#
|
41
46
|
# See {Errors} for more information.
|
@@ -43,6 +48,6 @@ require_relative 'aws-sdk-neptune/customizations'
|
|
43
48
|
# @service
|
44
49
|
module Aws::Neptune
|
45
50
|
|
46
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.26.0'
|
47
52
|
|
48
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:neptune)
|
31
34
|
|
32
35
|
module Aws::Neptune
|
36
|
+
# An API client for Neptune. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::Neptune::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::Neptune
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::Neptune
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::Neptune
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::Neptune
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::Neptune
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::Neptune
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::Neptune
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::Neptune
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::Neptune
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# 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}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::Neptune
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -2968,6 +3026,8 @@ module Aws::Neptune
|
|
2968
3026
|
# * {Types::DBEngineVersionMessage#marker #marker} => String
|
2969
3027
|
# * {Types::DBEngineVersionMessage#db_engine_versions #db_engine_versions} => Array<Types::DBEngineVersion>
|
2970
3028
|
#
|
3029
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3030
|
+
#
|
2971
3031
|
# @example Request syntax with placeholder values
|
2972
3032
|
#
|
2973
3033
|
# resp = client.describe_db_engine_versions({
|
@@ -3080,6 +3140,8 @@ module Aws::Neptune
|
|
3080
3140
|
# * {Types::DBInstanceMessage#marker #marker} => String
|
3081
3141
|
# * {Types::DBInstanceMessage#db_instances #db_instances} => Array<Types::DBInstance>
|
3082
3142
|
#
|
3143
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3144
|
+
#
|
3083
3145
|
# @example Request syntax with placeholder values
|
3084
3146
|
#
|
3085
3147
|
# resp = client.describe_db_instances({
|
@@ -3197,6 +3259,12 @@ module Aws::Neptune
|
|
3197
3259
|
# resp.db_instances[0].enabled_cloudwatch_logs_exports[0] #=> String
|
3198
3260
|
# resp.db_instances[0].deletion_protection #=> Boolean
|
3199
3261
|
#
|
3262
|
+
#
|
3263
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
3264
|
+
#
|
3265
|
+
# * db_instance_available
|
3266
|
+
# * db_instance_deleted
|
3267
|
+
#
|
3200
3268
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBInstances AWS API Documentation
|
3201
3269
|
#
|
3202
3270
|
# @overload describe_db_instances(params = {})
|
@@ -3244,6 +3312,8 @@ module Aws::Neptune
|
|
3244
3312
|
# * {Types::DBParameterGroupsMessage#marker #marker} => String
|
3245
3313
|
# * {Types::DBParameterGroupsMessage#db_parameter_groups #db_parameter_groups} => Array<Types::DBParameterGroup>
|
3246
3314
|
#
|
3315
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3316
|
+
#
|
3247
3317
|
# @example Request syntax with placeholder values
|
3248
3318
|
#
|
3249
3319
|
# resp = client.describe_db_parameter_groups({
|
@@ -3319,6 +3389,8 @@ module Aws::Neptune
|
|
3319
3389
|
# * {Types::DBParameterGroupDetails#parameters #parameters} => Array<Types::Parameter>
|
3320
3390
|
# * {Types::DBParameterGroupDetails#marker #marker} => String
|
3321
3391
|
#
|
3392
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3393
|
+
#
|
3322
3394
|
# @example Request syntax with placeholder values
|
3323
3395
|
#
|
3324
3396
|
# resp = client.describe_db_parameters({
|
@@ -3395,6 +3467,8 @@ module Aws::Neptune
|
|
3395
3467
|
# * {Types::DBSubnetGroupMessage#marker #marker} => String
|
3396
3468
|
# * {Types::DBSubnetGroupMessage#db_subnet_groups #db_subnet_groups} => Array<Types::DBSubnetGroup>
|
3397
3469
|
#
|
3470
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3471
|
+
#
|
3398
3472
|
# @example Request syntax with placeholder values
|
3399
3473
|
#
|
3400
3474
|
# resp = client.describe_db_subnet_groups({
|
@@ -3530,6 +3604,8 @@ module Aws::Neptune
|
|
3530
3604
|
#
|
3531
3605
|
# * {Types::DescribeEngineDefaultParametersResult#engine_defaults #engine_defaults} => Types::EngineDefaults
|
3532
3606
|
#
|
3607
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3608
|
+
#
|
3533
3609
|
# @example Request syntax with placeholder values
|
3534
3610
|
#
|
3535
3611
|
# resp = client.describe_engine_default_parameters({
|
@@ -3647,6 +3723,8 @@ module Aws::Neptune
|
|
3647
3723
|
# * {Types::EventSubscriptionsMessage#marker #marker} => String
|
3648
3724
|
# * {Types::EventSubscriptionsMessage#event_subscriptions_list #event_subscriptions_list} => Array<Types::EventSubscription>
|
3649
3725
|
#
|
3726
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3727
|
+
#
|
3650
3728
|
# @example Request syntax with placeholder values
|
3651
3729
|
#
|
3652
3730
|
# resp = client.describe_event_subscriptions({
|
@@ -3773,6 +3851,8 @@ module Aws::Neptune
|
|
3773
3851
|
# * {Types::EventsMessage#marker #marker} => String
|
3774
3852
|
# * {Types::EventsMessage#events #events} => Array<Types::Event>
|
3775
3853
|
#
|
3854
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3855
|
+
#
|
3776
3856
|
# @example Request syntax with placeholder values
|
3777
3857
|
#
|
3778
3858
|
# resp = client.describe_events({
|
@@ -3859,6 +3939,8 @@ module Aws::Neptune
|
|
3859
3939
|
# * {Types::OrderableDBInstanceOptionsMessage#orderable_db_instance_options #orderable_db_instance_options} => Array<Types::OrderableDBInstanceOption>
|
3860
3940
|
# * {Types::OrderableDBInstanceOptionsMessage#marker #marker} => String
|
3861
3941
|
#
|
3942
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3943
|
+
#
|
3862
3944
|
# @example Request syntax with placeholder values
|
3863
3945
|
#
|
3864
3946
|
# resp = client.describe_orderable_db_instance_options({
|
@@ -6322,7 +6404,7 @@ module Aws::Neptune
|
|
6322
6404
|
params: params,
|
6323
6405
|
config: config)
|
6324
6406
|
context[:gem_name] = 'aws-sdk-neptune'
|
6325
|
-
context[:gem_version] = '1.
|
6407
|
+
context[:gem_version] = '1.26.0'
|
6326
6408
|
Seahorse::Client::Request.new(handlers, context)
|
6327
6409
|
end
|
6328
6410
|
|
@@ -6388,10 +6470,10 @@ module Aws::Neptune
|
|
6388
6470
|
# The following table lists the valid waiter names, the operations they call,
|
6389
6471
|
# and the default `:delay` and `:max_attempts` values.
|
6390
6472
|
#
|
6391
|
-
# | waiter_name | params
|
6392
|
-
# | --------------------- |
|
6393
|
-
# | db_instance_available | {#describe_db_instances} | 30 | 60 |
|
6394
|
-
# | db_instance_deleted | {#describe_db_instances} | 30 | 60 |
|
6473
|
+
# | waiter_name | params | :delay | :max_attempts |
|
6474
|
+
# | --------------------- | ------------------------------ | -------- | ------------- |
|
6475
|
+
# | db_instance_available | {Client#describe_db_instances} | 30 | 60 |
|
6476
|
+
# | db_instance_deleted | {Client#describe_db_instances} | 30 | 60 |
|
6395
6477
|
#
|
6396
6478
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
6397
6479
|
# because the waiter has entered a state that it will not transition
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -303,6 +305,8 @@ module Aws::Neptune
|
|
303
305
|
|
304
306
|
AttributeValueList.member = Shapes::ShapeRef.new(shape: String, location_name: "AttributeValue")
|
305
307
|
|
308
|
+
AuthorizationNotFoundFault.struct_class = Types::AuthorizationNotFoundFault
|
309
|
+
|
306
310
|
AvailabilityZone.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
307
311
|
AvailabilityZone.struct_class = Types::AvailabilityZone
|
308
312
|
|
@@ -310,6 +314,8 @@ module Aws::Neptune
|
|
310
314
|
|
311
315
|
AvailabilityZones.member = Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone")
|
312
316
|
|
317
|
+
CertificateNotFoundFault.struct_class = Types::CertificateNotFoundFault
|
318
|
+
|
313
319
|
CharacterSet.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
314
320
|
CharacterSet.add_member(:character_set_description, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetDescription"))
|
315
321
|
CharacterSet.struct_class = Types::CharacterSet
|
@@ -510,6 +516,8 @@ module Aws::Neptune
|
|
510
516
|
DBCluster.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
511
517
|
DBCluster.struct_class = Types::DBCluster
|
512
518
|
|
519
|
+
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
520
|
+
|
513
521
|
DBClusterList.member = Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster")
|
514
522
|
|
515
523
|
DBClusterMember.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceIdentifier"))
|
@@ -524,6 +532,8 @@ module Aws::Neptune
|
|
524
532
|
DBClusterMessage.add_member(:db_clusters, Shapes::ShapeRef.new(shape: DBClusterList, location_name: "DBClusters"))
|
525
533
|
DBClusterMessage.struct_class = Types::DBClusterMessage
|
526
534
|
|
535
|
+
DBClusterNotFoundFault.struct_class = Types::DBClusterNotFoundFault
|
536
|
+
|
527
537
|
DBClusterOptionGroupMemberships.member = Shapes::ShapeRef.new(shape: DBClusterOptionGroupStatus, location_name: "DBClusterOptionGroup")
|
528
538
|
|
529
539
|
DBClusterOptionGroupStatus.add_member(:db_cluster_option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterOptionGroupName"))
|
@@ -545,14 +555,24 @@ module Aws::Neptune
|
|
545
555
|
DBClusterParameterGroupNameMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
|
546
556
|
DBClusterParameterGroupNameMessage.struct_class = Types::DBClusterParameterGroupNameMessage
|
547
557
|
|
558
|
+
DBClusterParameterGroupNotFoundFault.struct_class = Types::DBClusterParameterGroupNotFoundFault
|
559
|
+
|
548
560
|
DBClusterParameterGroupsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
549
561
|
DBClusterParameterGroupsMessage.add_member(:db_cluster_parameter_groups, Shapes::ShapeRef.new(shape: DBClusterParameterGroupList, location_name: "DBClusterParameterGroups"))
|
550
562
|
DBClusterParameterGroupsMessage.struct_class = Types::DBClusterParameterGroupsMessage
|
551
563
|
|
564
|
+
DBClusterQuotaExceededFault.struct_class = Types::DBClusterQuotaExceededFault
|
565
|
+
|
552
566
|
DBClusterRole.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "RoleArn"))
|
553
567
|
DBClusterRole.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
554
568
|
DBClusterRole.struct_class = Types::DBClusterRole
|
555
569
|
|
570
|
+
DBClusterRoleAlreadyExistsFault.struct_class = Types::DBClusterRoleAlreadyExistsFault
|
571
|
+
|
572
|
+
DBClusterRoleNotFoundFault.struct_class = Types::DBClusterRoleNotFoundFault
|
573
|
+
|
574
|
+
DBClusterRoleQuotaExceededFault.struct_class = Types::DBClusterRoleQuotaExceededFault
|
575
|
+
|
556
576
|
DBClusterRoles.member = Shapes::ShapeRef.new(shape: DBClusterRole, location_name: "DBClusterRole")
|
557
577
|
|
558
578
|
DBClusterSnapshot.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
@@ -577,6 +597,8 @@ module Aws::Neptune
|
|
577
597
|
DBClusterSnapshot.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
578
598
|
DBClusterSnapshot.struct_class = Types::DBClusterSnapshot
|
579
599
|
|
600
|
+
DBClusterSnapshotAlreadyExistsFault.struct_class = Types::DBClusterSnapshotAlreadyExistsFault
|
601
|
+
|
580
602
|
DBClusterSnapshotAttribute.add_member(:attribute_name, Shapes::ShapeRef.new(shape: String, location_name: "AttributeName"))
|
581
603
|
DBClusterSnapshotAttribute.add_member(:attribute_values, Shapes::ShapeRef.new(shape: AttributeValueList, location_name: "AttributeValues"))
|
582
604
|
DBClusterSnapshotAttribute.struct_class = Types::DBClusterSnapshotAttribute
|
@@ -593,6 +615,8 @@ module Aws::Neptune
|
|
593
615
|
DBClusterSnapshotMessage.add_member(:db_cluster_snapshots, Shapes::ShapeRef.new(shape: DBClusterSnapshotList, location_name: "DBClusterSnapshots"))
|
594
616
|
DBClusterSnapshotMessage.struct_class = Types::DBClusterSnapshotMessage
|
595
617
|
|
618
|
+
DBClusterSnapshotNotFoundFault.struct_class = Types::DBClusterSnapshotNotFoundFault
|
619
|
+
|
596
620
|
DBEngineVersion.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
597
621
|
DBEngineVersion.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
598
622
|
DBEngineVersion.add_member(:db_parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupFamily"))
|
@@ -668,12 +692,16 @@ module Aws::Neptune
|
|
668
692
|
DBInstance.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
669
693
|
DBInstance.struct_class = Types::DBInstance
|
670
694
|
|
695
|
+
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
696
|
+
|
671
697
|
DBInstanceList.member = Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance")
|
672
698
|
|
673
699
|
DBInstanceMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
674
700
|
DBInstanceMessage.add_member(:db_instances, Shapes::ShapeRef.new(shape: DBInstanceList, location_name: "DBInstances"))
|
675
701
|
DBInstanceMessage.struct_class = Types::DBInstanceMessage
|
676
702
|
|
703
|
+
DBInstanceNotFoundFault.struct_class = Types::DBInstanceNotFoundFault
|
704
|
+
|
677
705
|
DBInstanceStatusInfo.add_member(:status_type, Shapes::ShapeRef.new(shape: String, location_name: "StatusType"))
|
678
706
|
DBInstanceStatusInfo.add_member(:normal, Shapes::ShapeRef.new(shape: Boolean, location_name: "Normal"))
|
679
707
|
DBInstanceStatusInfo.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
@@ -688,6 +716,8 @@ module Aws::Neptune
|
|
688
716
|
DBParameterGroup.add_member(:db_parameter_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupArn"))
|
689
717
|
DBParameterGroup.struct_class = Types::DBParameterGroup
|
690
718
|
|
719
|
+
DBParameterGroupAlreadyExistsFault.struct_class = Types::DBParameterGroupAlreadyExistsFault
|
720
|
+
|
691
721
|
DBParameterGroupDetails.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, location_name: "Parameters"))
|
692
722
|
DBParameterGroupDetails.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
693
723
|
DBParameterGroupDetails.struct_class = Types::DBParameterGroupDetails
|
@@ -697,6 +727,10 @@ module Aws::Neptune
|
|
697
727
|
DBParameterGroupNameMessage.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
|
698
728
|
DBParameterGroupNameMessage.struct_class = Types::DBParameterGroupNameMessage
|
699
729
|
|
730
|
+
DBParameterGroupNotFoundFault.struct_class = Types::DBParameterGroupNotFoundFault
|
731
|
+
|
732
|
+
DBParameterGroupQuotaExceededFault.struct_class = Types::DBParameterGroupQuotaExceededFault
|
733
|
+
|
700
734
|
DBParameterGroupStatus.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
|
701
735
|
DBParameterGroupStatus.add_member(:parameter_apply_status, Shapes::ShapeRef.new(shape: String, location_name: "ParameterApplyStatus"))
|
702
736
|
DBParameterGroupStatus.struct_class = Types::DBParameterGroupStatus
|
@@ -715,6 +749,12 @@ module Aws::Neptune
|
|
715
749
|
|
716
750
|
DBSecurityGroupNameList.member = Shapes::ShapeRef.new(shape: String, location_name: "DBSecurityGroupName")
|
717
751
|
|
752
|
+
DBSecurityGroupNotFoundFault.struct_class = Types::DBSecurityGroupNotFoundFault
|
753
|
+
|
754
|
+
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|
755
|
+
|
756
|
+
DBSnapshotNotFoundFault.struct_class = Types::DBSnapshotNotFoundFault
|
757
|
+
|
718
758
|
DBSubnetGroup.add_member(:db_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupName"))
|
719
759
|
DBSubnetGroup.add_member(:db_subnet_group_description, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupDescription"))
|
720
760
|
DBSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
@@ -723,12 +763,24 @@ module Aws::Neptune
|
|
723
763
|
DBSubnetGroup.add_member(:db_subnet_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupArn"))
|
724
764
|
DBSubnetGroup.struct_class = Types::DBSubnetGroup
|
725
765
|
|
766
|
+
DBSubnetGroupAlreadyExistsFault.struct_class = Types::DBSubnetGroupAlreadyExistsFault
|
767
|
+
|
768
|
+
DBSubnetGroupDoesNotCoverEnoughAZs.struct_class = Types::DBSubnetGroupDoesNotCoverEnoughAZs
|
769
|
+
|
726
770
|
DBSubnetGroupMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
727
771
|
DBSubnetGroupMessage.add_member(:db_subnet_groups, Shapes::ShapeRef.new(shape: DBSubnetGroups, location_name: "DBSubnetGroups"))
|
728
772
|
DBSubnetGroupMessage.struct_class = Types::DBSubnetGroupMessage
|
729
773
|
|
774
|
+
DBSubnetGroupNotFoundFault.struct_class = Types::DBSubnetGroupNotFoundFault
|
775
|
+
|
776
|
+
DBSubnetGroupQuotaExceededFault.struct_class = Types::DBSubnetGroupQuotaExceededFault
|
777
|
+
|
730
778
|
DBSubnetGroups.member = Shapes::ShapeRef.new(shape: DBSubnetGroup, location_name: "DBSubnetGroup")
|
731
779
|
|
780
|
+
DBSubnetQuotaExceededFault.struct_class = Types::DBSubnetQuotaExceededFault
|
781
|
+
|
782
|
+
DBUpgradeDependencyFailureFault.struct_class = Types::DBUpgradeDependencyFailureFault
|
783
|
+
|
732
784
|
DeleteDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
733
785
|
DeleteDBClusterMessage.add_member(:skip_final_snapshot, Shapes::ShapeRef.new(shape: Boolean, location_name: "SkipFinalSnapshot"))
|
734
786
|
DeleteDBClusterMessage.add_member(:final_db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "FinalDBSnapshotIdentifier"))
|
@@ -906,6 +958,8 @@ module Aws::Neptune
|
|
906
958
|
|
907
959
|
DomainMembershipList.member = Shapes::ShapeRef.new(shape: DomainMembership, location_name: "DomainMembership")
|
908
960
|
|
961
|
+
DomainNotFoundFault.struct_class = Types::DomainNotFoundFault
|
962
|
+
|
909
963
|
DoubleRange.add_member(:from, Shapes::ShapeRef.new(shape: Double, location_name: "From"))
|
910
964
|
DoubleRange.add_member(:to, Shapes::ShapeRef.new(shape: Double, location_name: "To"))
|
911
965
|
DoubleRange.struct_class = Types::DoubleRange
|
@@ -955,6 +1009,8 @@ module Aws::Neptune
|
|
955
1009
|
EventSubscription.add_member(:event_subscription_arn, Shapes::ShapeRef.new(shape: String, location_name: "EventSubscriptionArn"))
|
956
1010
|
EventSubscription.struct_class = Types::EventSubscription
|
957
1011
|
|
1012
|
+
EventSubscriptionQuotaExceededFault.struct_class = Types::EventSubscriptionQuotaExceededFault
|
1013
|
+
|
958
1014
|
EventSubscriptionsList.member = Shapes::ShapeRef.new(shape: EventSubscription, location_name: "EventSubscription")
|
959
1015
|
|
960
1016
|
EventSubscriptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
@@ -980,6 +1036,40 @@ module Aws::Neptune
|
|
980
1036
|
|
981
1037
|
FilterValueList.member = Shapes::ShapeRef.new(shape: String, location_name: "Value")
|
982
1038
|
|
1039
|
+
InstanceQuotaExceededFault.struct_class = Types::InstanceQuotaExceededFault
|
1040
|
+
|
1041
|
+
InsufficientDBClusterCapacityFault.struct_class = Types::InsufficientDBClusterCapacityFault
|
1042
|
+
|
1043
|
+
InsufficientDBInstanceCapacityFault.struct_class = Types::InsufficientDBInstanceCapacityFault
|
1044
|
+
|
1045
|
+
InsufficientStorageClusterCapacityFault.struct_class = Types::InsufficientStorageClusterCapacityFault
|
1046
|
+
|
1047
|
+
InvalidDBClusterSnapshotStateFault.struct_class = Types::InvalidDBClusterSnapshotStateFault
|
1048
|
+
|
1049
|
+
InvalidDBClusterStateFault.struct_class = Types::InvalidDBClusterStateFault
|
1050
|
+
|
1051
|
+
InvalidDBInstanceStateFault.struct_class = Types::InvalidDBInstanceStateFault
|
1052
|
+
|
1053
|
+
InvalidDBParameterGroupStateFault.struct_class = Types::InvalidDBParameterGroupStateFault
|
1054
|
+
|
1055
|
+
InvalidDBSecurityGroupStateFault.struct_class = Types::InvalidDBSecurityGroupStateFault
|
1056
|
+
|
1057
|
+
InvalidDBSnapshotStateFault.struct_class = Types::InvalidDBSnapshotStateFault
|
1058
|
+
|
1059
|
+
InvalidDBSubnetGroupStateFault.struct_class = Types::InvalidDBSubnetGroupStateFault
|
1060
|
+
|
1061
|
+
InvalidDBSubnetStateFault.struct_class = Types::InvalidDBSubnetStateFault
|
1062
|
+
|
1063
|
+
InvalidEventSubscriptionStateFault.struct_class = Types::InvalidEventSubscriptionStateFault
|
1064
|
+
|
1065
|
+
InvalidRestoreFault.struct_class = Types::InvalidRestoreFault
|
1066
|
+
|
1067
|
+
InvalidSubnet.struct_class = Types::InvalidSubnet
|
1068
|
+
|
1069
|
+
InvalidVPCNetworkStateFault.struct_class = Types::InvalidVPCNetworkStateFault
|
1070
|
+
|
1071
|
+
KMSKeyNotAccessibleFault.struct_class = Types::KMSKeyNotAccessibleFault
|
1072
|
+
|
983
1073
|
KeyList.member = Shapes::ShapeRef.new(shape: String)
|
984
1074
|
|
985
1075
|
ListTagsForResourceMessage.add_member(:resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceName"))
|
@@ -1091,6 +1181,8 @@ module Aws::Neptune
|
|
1091
1181
|
|
1092
1182
|
OptionGroupMembershipList.member = Shapes::ShapeRef.new(shape: OptionGroupMembership, location_name: "OptionGroupMembership")
|
1093
1183
|
|
1184
|
+
OptionGroupNotFoundFault.struct_class = Types::OptionGroupNotFoundFault
|
1185
|
+
|
1094
1186
|
OrderableDBInstanceOption.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
1095
1187
|
OrderableDBInstanceOption.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
1096
1188
|
OrderableDBInstanceOption.add_member(:db_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceClass"))
|
@@ -1175,6 +1267,8 @@ module Aws::Neptune
|
|
1175
1267
|
PromoteReadReplicaDBClusterResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
1176
1268
|
PromoteReadReplicaDBClusterResult.struct_class = Types::PromoteReadReplicaDBClusterResult
|
1177
1269
|
|
1270
|
+
ProvisionedIopsNotAvailableInAZFault.struct_class = Types::ProvisionedIopsNotAvailableInAZFault
|
1271
|
+
|
1178
1272
|
Range.add_member(:from, Shapes::ShapeRef.new(shape: Integer, location_name: "From"))
|
1179
1273
|
Range.add_member(:to, Shapes::ShapeRef.new(shape: Integer, location_name: "To"))
|
1180
1274
|
Range.add_member(:step, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Step"))
|
@@ -1220,6 +1314,8 @@ module Aws::Neptune
|
|
1220
1314
|
ResetDBParameterGroupMessage.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, location_name: "Parameters"))
|
1221
1315
|
ResetDBParameterGroupMessage.struct_class = Types::ResetDBParameterGroupMessage
|
1222
1316
|
|
1317
|
+
ResourceNotFoundFault.struct_class = Types::ResourceNotFoundFault
|
1318
|
+
|
1223
1319
|
ResourcePendingMaintenanceActions.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ResourceIdentifier"))
|
1224
1320
|
ResourcePendingMaintenanceActions.add_member(:pending_maintenance_action_details, Shapes::ShapeRef.new(shape: PendingMaintenanceActionDetails, location_name: "PendingMaintenanceActionDetails"))
|
1225
1321
|
ResourcePendingMaintenanceActions.struct_class = Types::ResourcePendingMaintenanceActions
|
@@ -1265,8 +1361,20 @@ module Aws::Neptune
|
|
1265
1361
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
1266
1362
|
RestoreDBClusterToPointInTimeResult.struct_class = Types::RestoreDBClusterToPointInTimeResult
|
1267
1363
|
|
1364
|
+
SNSInvalidTopicFault.struct_class = Types::SNSInvalidTopicFault
|
1365
|
+
|
1366
|
+
SNSNoAuthorizationFault.struct_class = Types::SNSNoAuthorizationFault
|
1367
|
+
|
1368
|
+
SNSTopicArnNotFoundFault.struct_class = Types::SNSTopicArnNotFoundFault
|
1369
|
+
|
1370
|
+
SharedSnapshotQuotaExceededFault.struct_class = Types::SharedSnapshotQuotaExceededFault
|
1371
|
+
|
1372
|
+
SnapshotQuotaExceededFault.struct_class = Types::SnapshotQuotaExceededFault
|
1373
|
+
|
1268
1374
|
SourceIdsList.member = Shapes::ShapeRef.new(shape: String, location_name: "SourceId")
|
1269
1375
|
|
1376
|
+
SourceNotFoundFault.struct_class = Types::SourceNotFoundFault
|
1377
|
+
|
1270
1378
|
StartDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
1271
1379
|
StartDBClusterMessage.struct_class = Types::StartDBClusterMessage
|
1272
1380
|
|
@@ -1279,15 +1387,27 @@ module Aws::Neptune
|
|
1279
1387
|
StopDBClusterResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
1280
1388
|
StopDBClusterResult.struct_class = Types::StopDBClusterResult
|
1281
1389
|
|
1390
|
+
StorageQuotaExceededFault.struct_class = Types::StorageQuotaExceededFault
|
1391
|
+
|
1392
|
+
StorageTypeNotSupportedFault.struct_class = Types::StorageTypeNotSupportedFault
|
1393
|
+
|
1282
1394
|
Subnet.add_member(:subnet_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier"))
|
1283
1395
|
Subnet.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "SubnetAvailabilityZone"))
|
1284
1396
|
Subnet.add_member(:subnet_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetStatus"))
|
1285
1397
|
Subnet.struct_class = Types::Subnet
|
1286
1398
|
|
1399
|
+
SubnetAlreadyInUse.struct_class = Types::SubnetAlreadyInUse
|
1400
|
+
|
1287
1401
|
SubnetIdentifierList.member = Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier")
|
1288
1402
|
|
1289
1403
|
SubnetList.member = Shapes::ShapeRef.new(shape: Subnet, location_name: "Subnet")
|
1290
1404
|
|
1405
|
+
SubscriptionAlreadyExistFault.struct_class = Types::SubscriptionAlreadyExistFault
|
1406
|
+
|
1407
|
+
SubscriptionCategoryNotFoundFault.struct_class = Types::SubscriptionCategoryNotFoundFault
|
1408
|
+
|
1409
|
+
SubscriptionNotFoundFault.struct_class = Types::SubscriptionNotFoundFault
|
1410
|
+
|
1291
1411
|
SupportedCharacterSetsList.member = Shapes::ShapeRef.new(shape: CharacterSet, location_name: "CharacterSet")
|
1292
1412
|
|
1293
1413
|
SupportedTimezonesList.member = Shapes::ShapeRef.new(shape: Timezone, location_name: "Timezone")
|