aws-sdk-dax 1.50.0 → 1.52.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c273a4125d805a7ccaa864e1c3593aca9d79d1349206c96d49a91456203ed93
4
- data.tar.gz: 2ba6ed20326b2b18d148cd823368a8829348a3b448602ccdd5436e34eb4959dc
3
+ metadata.gz: dfe612bdb57e72048d4509e9037aa5c8f46e69cce722d2a49915a16984c58229
4
+ data.tar.gz: 6b64065b5ea2e17489911873cad020f0d809f546d4908c44ba20a97a8b99d6f8
5
5
  SHA512:
6
- metadata.gz: 9a5af0f42897280e41fa066992e05c5bc07b7d92d85dd3745c84a6ca80304668862ed11035434b4dcee8e418e114bb16fb92d4c8c319121635b1777efe0ccfcf
7
- data.tar.gz: 13acd8c4a90059963e60d48f43ee98639f472f8a25cd011a02dd561cdc6ca3e1e6b71b6be5850dc7a4ab3771be47f5db274a7d3afce294cdaf0e098aab9e4dab
6
+ metadata.gz: 458315f1fe9d996ccdfdbbd275a3a6f7d4026c2edd959ee2f93cbb2e8be724c2083b1690de91560a1a2a2ca99ca8ff7ae23706aedc31f46a675e622c616a425c
7
+ data.tar.gz: aff7c6833ee4971f5463907b45ffd90125449983c514ce65c8f4a66c018d3afe5546a290f9959b557b16c297eb7beef0fadd106c61d2e3e1c8426ebf9e917f79
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.51.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.50.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.52.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::DAX
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::DAX
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::DAX
347
356
  # @option options [Aws::DAX::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::DAX::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -1726,7 +1750,7 @@ module Aws::DAX
1726
1750
  params: params,
1727
1751
  config: config)
1728
1752
  context[:gem_name] = 'aws-sdk-dax'
1729
- context[:gem_version] = '1.50.0'
1753
+ context[:gem_version] = '1.52.0'
1730
1754
  Seahorse::Client::Request.new(handlers, context)
1731
1755
  end
1732
1756
 
@@ -14,6 +14,7 @@ module Aws::DAX
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::DAX::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
data/lib/aws-sdk-dax.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-dax/customizations'
52
52
  # @!group service
53
53
  module Aws::DAX
54
54
 
55
- GEM_VERSION = '1.50.0'
55
+ GEM_VERSION = '1.52.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,362 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DAX
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ interface _CreateClusterResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateClusterResponse]
78
+ def cluster: () -> Types::Cluster
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#create_cluster-instance_method
81
+ def create_cluster: (
82
+ cluster_name: ::String,
83
+ node_type: ::String,
84
+ ?description: ::String,
85
+ replication_factor: ::Integer,
86
+ ?availability_zones: Array[::String],
87
+ ?subnet_group_name: ::String,
88
+ ?security_group_ids: Array[::String],
89
+ ?preferred_maintenance_window: ::String,
90
+ ?notification_topic_arn: ::String,
91
+ iam_role_arn: ::String,
92
+ ?parameter_group_name: ::String,
93
+ ?tags: Array[
94
+ {
95
+ key: ::String?,
96
+ value: ::String?
97
+ },
98
+ ],
99
+ ?sse_specification: {
100
+ enabled: bool
101
+ },
102
+ ?cluster_endpoint_encryption_type: ("NONE" | "TLS")
103
+ ) -> _CreateClusterResponseSuccess
104
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
105
+
106
+ interface _CreateParameterGroupResponseSuccess
107
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateParameterGroupResponse]
108
+ def parameter_group: () -> Types::ParameterGroup
109
+ end
110
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#create_parameter_group-instance_method
111
+ def create_parameter_group: (
112
+ parameter_group_name: ::String,
113
+ ?description: ::String
114
+ ) -> _CreateParameterGroupResponseSuccess
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateParameterGroupResponseSuccess
116
+
117
+ interface _CreateSubnetGroupResponseSuccess
118
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSubnetGroupResponse]
119
+ def subnet_group: () -> Types::SubnetGroup
120
+ end
121
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#create_subnet_group-instance_method
122
+ def create_subnet_group: (
123
+ subnet_group_name: ::String,
124
+ ?description: ::String,
125
+ subnet_ids: Array[::String]
126
+ ) -> _CreateSubnetGroupResponseSuccess
127
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSubnetGroupResponseSuccess
128
+
129
+ interface _DecreaseReplicationFactorResponseSuccess
130
+ include ::Seahorse::Client::_ResponseSuccess[Types::DecreaseReplicationFactorResponse]
131
+ def cluster: () -> Types::Cluster
132
+ end
133
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#decrease_replication_factor-instance_method
134
+ def decrease_replication_factor: (
135
+ cluster_name: ::String,
136
+ new_replication_factor: ::Integer,
137
+ ?availability_zones: Array[::String],
138
+ ?node_ids_to_remove: Array[::String]
139
+ ) -> _DecreaseReplicationFactorResponseSuccess
140
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DecreaseReplicationFactorResponseSuccess
141
+
142
+ interface _DeleteClusterResponseSuccess
143
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteClusterResponse]
144
+ def cluster: () -> Types::Cluster
145
+ end
146
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#delete_cluster-instance_method
147
+ def delete_cluster: (
148
+ cluster_name: ::String
149
+ ) -> _DeleteClusterResponseSuccess
150
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteClusterResponseSuccess
151
+
152
+ interface _DeleteParameterGroupResponseSuccess
153
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteParameterGroupResponse]
154
+ def deletion_message: () -> ::String
155
+ end
156
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#delete_parameter_group-instance_method
157
+ def delete_parameter_group: (
158
+ parameter_group_name: ::String
159
+ ) -> _DeleteParameterGroupResponseSuccess
160
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteParameterGroupResponseSuccess
161
+
162
+ interface _DeleteSubnetGroupResponseSuccess
163
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSubnetGroupResponse]
164
+ def deletion_message: () -> ::String
165
+ end
166
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#delete_subnet_group-instance_method
167
+ def delete_subnet_group: (
168
+ subnet_group_name: ::String
169
+ ) -> _DeleteSubnetGroupResponseSuccess
170
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSubnetGroupResponseSuccess
171
+
172
+ interface _DescribeClustersResponseSuccess
173
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClustersResponse]
174
+ def next_token: () -> ::String
175
+ def clusters: () -> ::Array[Types::Cluster]
176
+ end
177
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#describe_clusters-instance_method
178
+ def describe_clusters: (
179
+ ?cluster_names: Array[::String],
180
+ ?max_results: ::Integer,
181
+ ?next_token: ::String
182
+ ) -> _DescribeClustersResponseSuccess
183
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClustersResponseSuccess
184
+
185
+ interface _DescribeDefaultParametersResponseSuccess
186
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDefaultParametersResponse]
187
+ def next_token: () -> ::String
188
+ def parameters: () -> ::Array[Types::Parameter]
189
+ end
190
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#describe_default_parameters-instance_method
191
+ def describe_default_parameters: (
192
+ ?max_results: ::Integer,
193
+ ?next_token: ::String
194
+ ) -> _DescribeDefaultParametersResponseSuccess
195
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDefaultParametersResponseSuccess
196
+
197
+ interface _DescribeEventsResponseSuccess
198
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventsResponse]
199
+ def next_token: () -> ::String
200
+ def events: () -> ::Array[Types::Event]
201
+ end
202
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#describe_events-instance_method
203
+ def describe_events: (
204
+ ?source_name: ::String,
205
+ ?source_type: ("CLUSTER" | "PARAMETER_GROUP" | "SUBNET_GROUP"),
206
+ ?start_time: ::Time,
207
+ ?end_time: ::Time,
208
+ ?duration: ::Integer,
209
+ ?max_results: ::Integer,
210
+ ?next_token: ::String
211
+ ) -> _DescribeEventsResponseSuccess
212
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventsResponseSuccess
213
+
214
+ interface _DescribeParameterGroupsResponseSuccess
215
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeParameterGroupsResponse]
216
+ def next_token: () -> ::String
217
+ def parameter_groups: () -> ::Array[Types::ParameterGroup]
218
+ end
219
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#describe_parameter_groups-instance_method
220
+ def describe_parameter_groups: (
221
+ ?parameter_group_names: Array[::String],
222
+ ?max_results: ::Integer,
223
+ ?next_token: ::String
224
+ ) -> _DescribeParameterGroupsResponseSuccess
225
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeParameterGroupsResponseSuccess
226
+
227
+ interface _DescribeParametersResponseSuccess
228
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeParametersResponse]
229
+ def next_token: () -> ::String
230
+ def parameters: () -> ::Array[Types::Parameter]
231
+ end
232
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#describe_parameters-instance_method
233
+ def describe_parameters: (
234
+ parameter_group_name: ::String,
235
+ ?source: ::String,
236
+ ?max_results: ::Integer,
237
+ ?next_token: ::String
238
+ ) -> _DescribeParametersResponseSuccess
239
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeParametersResponseSuccess
240
+
241
+ interface _DescribeSubnetGroupsResponseSuccess
242
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSubnetGroupsResponse]
243
+ def next_token: () -> ::String
244
+ def subnet_groups: () -> ::Array[Types::SubnetGroup]
245
+ end
246
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#describe_subnet_groups-instance_method
247
+ def describe_subnet_groups: (
248
+ ?subnet_group_names: Array[::String],
249
+ ?max_results: ::Integer,
250
+ ?next_token: ::String
251
+ ) -> _DescribeSubnetGroupsResponseSuccess
252
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSubnetGroupsResponseSuccess
253
+
254
+ interface _IncreaseReplicationFactorResponseSuccess
255
+ include ::Seahorse::Client::_ResponseSuccess[Types::IncreaseReplicationFactorResponse]
256
+ def cluster: () -> Types::Cluster
257
+ end
258
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#increase_replication_factor-instance_method
259
+ def increase_replication_factor: (
260
+ cluster_name: ::String,
261
+ new_replication_factor: ::Integer,
262
+ ?availability_zones: Array[::String]
263
+ ) -> _IncreaseReplicationFactorResponseSuccess
264
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _IncreaseReplicationFactorResponseSuccess
265
+
266
+ interface _ListTagsResponseSuccess
267
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsResponse]
268
+ def tags: () -> ::Array[Types::Tag]
269
+ def next_token: () -> ::String
270
+ end
271
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#list_tags-instance_method
272
+ def list_tags: (
273
+ resource_name: ::String,
274
+ ?next_token: ::String
275
+ ) -> _ListTagsResponseSuccess
276
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsResponseSuccess
277
+
278
+ interface _RebootNodeResponseSuccess
279
+ include ::Seahorse::Client::_ResponseSuccess[Types::RebootNodeResponse]
280
+ def cluster: () -> Types::Cluster
281
+ end
282
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#reboot_node-instance_method
283
+ def reboot_node: (
284
+ cluster_name: ::String,
285
+ node_id: ::String
286
+ ) -> _RebootNodeResponseSuccess
287
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RebootNodeResponseSuccess
288
+
289
+ interface _TagResourceResponseSuccess
290
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
291
+ def tags: () -> ::Array[Types::Tag]
292
+ end
293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#tag_resource-instance_method
294
+ def tag_resource: (
295
+ resource_name: ::String,
296
+ tags: Array[
297
+ {
298
+ key: ::String?,
299
+ value: ::String?
300
+ },
301
+ ]
302
+ ) -> _TagResourceResponseSuccess
303
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
304
+
305
+ interface _UntagResourceResponseSuccess
306
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
307
+ def tags: () -> ::Array[Types::Tag]
308
+ end
309
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#untag_resource-instance_method
310
+ def untag_resource: (
311
+ resource_name: ::String,
312
+ tag_keys: Array[::String]
313
+ ) -> _UntagResourceResponseSuccess
314
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
315
+
316
+ interface _UpdateClusterResponseSuccess
317
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateClusterResponse]
318
+ def cluster: () -> Types::Cluster
319
+ end
320
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#update_cluster-instance_method
321
+ def update_cluster: (
322
+ cluster_name: ::String,
323
+ ?description: ::String,
324
+ ?preferred_maintenance_window: ::String,
325
+ ?notification_topic_arn: ::String,
326
+ ?notification_topic_status: ::String,
327
+ ?parameter_group_name: ::String,
328
+ ?security_group_ids: Array[::String]
329
+ ) -> _UpdateClusterResponseSuccess
330
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterResponseSuccess
331
+
332
+ interface _UpdateParameterGroupResponseSuccess
333
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateParameterGroupResponse]
334
+ def parameter_group: () -> Types::ParameterGroup
335
+ end
336
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#update_parameter_group-instance_method
337
+ def update_parameter_group: (
338
+ parameter_group_name: ::String,
339
+ parameter_name_values: Array[
340
+ {
341
+ parameter_name: ::String?,
342
+ parameter_value: ::String?
343
+ },
344
+ ]
345
+ ) -> _UpdateParameterGroupResponseSuccess
346
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateParameterGroupResponseSuccess
347
+
348
+ interface _UpdateSubnetGroupResponseSuccess
349
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSubnetGroupResponse]
350
+ def subnet_group: () -> Types::SubnetGroup
351
+ end
352
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Client.html#update_subnet_group-instance_method
353
+ def update_subnet_group: (
354
+ subnet_group_name: ::String,
355
+ ?description: ::String,
356
+ ?subnet_ids: Array[::String]
357
+ ) -> _UpdateSubnetGroupResponseSuccess
358
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSubnetGroupResponseSuccess
359
+ end
360
+ end
361
+ end
362
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,72 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DAX
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class ClusterAlreadyExistsFault < ::Aws::Errors::ServiceError
15
+ end
16
+ class ClusterNotFoundFault < ::Aws::Errors::ServiceError
17
+ end
18
+ class ClusterQuotaForCustomerExceededFault < ::Aws::Errors::ServiceError
19
+ end
20
+ class InsufficientClusterCapacityFault < ::Aws::Errors::ServiceError
21
+ end
22
+ class InvalidARNFault < ::Aws::Errors::ServiceError
23
+ end
24
+ class InvalidClusterStateFault < ::Aws::Errors::ServiceError
25
+ end
26
+ class InvalidParameterCombinationException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class InvalidParameterGroupStateFault < ::Aws::Errors::ServiceError
30
+ end
31
+ class InvalidParameterValueException < ::Aws::Errors::ServiceError
32
+ def message: () -> ::String
33
+ end
34
+ class InvalidSubnet < ::Aws::Errors::ServiceError
35
+ end
36
+ class InvalidVPCNetworkStateFault < ::Aws::Errors::ServiceError
37
+ end
38
+ class NodeNotFoundFault < ::Aws::Errors::ServiceError
39
+ end
40
+ class NodeQuotaForClusterExceededFault < ::Aws::Errors::ServiceError
41
+ end
42
+ class NodeQuotaForCustomerExceededFault < ::Aws::Errors::ServiceError
43
+ end
44
+ class ParameterGroupAlreadyExistsFault < ::Aws::Errors::ServiceError
45
+ end
46
+ class ParameterGroupNotFoundFault < ::Aws::Errors::ServiceError
47
+ end
48
+ class ParameterGroupQuotaExceededFault < ::Aws::Errors::ServiceError
49
+ end
50
+ class ServiceLinkedRoleNotFoundFault < ::Aws::Errors::ServiceError
51
+ end
52
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
53
+ end
54
+ class SubnetGroupAlreadyExistsFault < ::Aws::Errors::ServiceError
55
+ end
56
+ class SubnetGroupInUseFault < ::Aws::Errors::ServiceError
57
+ end
58
+ class SubnetGroupNotFoundFault < ::Aws::Errors::ServiceError
59
+ end
60
+ class SubnetGroupQuotaExceededFault < ::Aws::Errors::ServiceError
61
+ end
62
+ class SubnetInUse < ::Aws::Errors::ServiceError
63
+ end
64
+ class SubnetQuotaExceededFault < ::Aws::Errors::ServiceError
65
+ end
66
+ class TagNotFoundFault < ::Aws::Errors::ServiceError
67
+ end
68
+ class TagQuotaPerResourceExceeded < ::Aws::Errors::ServiceError
69
+ end
70
+ end
71
+ end
72
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,80 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DAX
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DAX/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> void
73
+ | (?Hash[Symbol, untyped]) -> void
74
+
75
+ def client: () -> Client
76
+
77
+
78
+ end
79
+ end
80
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,491 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::DAX
9
+ module Types
10
+
11
+ class Cluster
12
+ attr_accessor cluster_name: ::String
13
+ attr_accessor description: ::String
14
+ attr_accessor cluster_arn: ::String
15
+ attr_accessor total_nodes: ::Integer
16
+ attr_accessor active_nodes: ::Integer
17
+ attr_accessor node_type: ::String
18
+ attr_accessor status: ::String
19
+ attr_accessor cluster_discovery_endpoint: Types::Endpoint
20
+ attr_accessor node_ids_to_remove: ::Array[::String]
21
+ attr_accessor nodes: ::Array[Types::Node]
22
+ attr_accessor preferred_maintenance_window: ::String
23
+ attr_accessor notification_configuration: Types::NotificationConfiguration
24
+ attr_accessor subnet_group: ::String
25
+ attr_accessor security_groups: ::Array[Types::SecurityGroupMembership]
26
+ attr_accessor iam_role_arn: ::String
27
+ attr_accessor parameter_group: Types::ParameterGroupStatus
28
+ attr_accessor sse_description: Types::SSEDescription
29
+ attr_accessor cluster_endpoint_encryption_type: ("NONE" | "TLS")
30
+ SENSITIVE: []
31
+ end
32
+
33
+ class ClusterAlreadyExistsFault < Aws::EmptyStructure
34
+ end
35
+
36
+ class ClusterNotFoundFault < Aws::EmptyStructure
37
+ end
38
+
39
+ class ClusterQuotaForCustomerExceededFault < Aws::EmptyStructure
40
+ end
41
+
42
+ class CreateClusterRequest
43
+ attr_accessor cluster_name: ::String
44
+ attr_accessor node_type: ::String
45
+ attr_accessor description: ::String
46
+ attr_accessor replication_factor: ::Integer
47
+ attr_accessor availability_zones: ::Array[::String]
48
+ attr_accessor subnet_group_name: ::String
49
+ attr_accessor security_group_ids: ::Array[::String]
50
+ attr_accessor preferred_maintenance_window: ::String
51
+ attr_accessor notification_topic_arn: ::String
52
+ attr_accessor iam_role_arn: ::String
53
+ attr_accessor parameter_group_name: ::String
54
+ attr_accessor tags: ::Array[Types::Tag]
55
+ attr_accessor sse_specification: Types::SSESpecification
56
+ attr_accessor cluster_endpoint_encryption_type: ("NONE" | "TLS")
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class CreateClusterResponse
61
+ attr_accessor cluster: Types::Cluster
62
+ SENSITIVE: []
63
+ end
64
+
65
+ class CreateParameterGroupRequest
66
+ attr_accessor parameter_group_name: ::String
67
+ attr_accessor description: ::String
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class CreateParameterGroupResponse
72
+ attr_accessor parameter_group: Types::ParameterGroup
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class CreateSubnetGroupRequest
77
+ attr_accessor subnet_group_name: ::String
78
+ attr_accessor description: ::String
79
+ attr_accessor subnet_ids: ::Array[::String]
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class CreateSubnetGroupResponse
84
+ attr_accessor subnet_group: Types::SubnetGroup
85
+ SENSITIVE: []
86
+ end
87
+
88
+ class DecreaseReplicationFactorRequest
89
+ attr_accessor cluster_name: ::String
90
+ attr_accessor new_replication_factor: ::Integer
91
+ attr_accessor availability_zones: ::Array[::String]
92
+ attr_accessor node_ids_to_remove: ::Array[::String]
93
+ SENSITIVE: []
94
+ end
95
+
96
+ class DecreaseReplicationFactorResponse
97
+ attr_accessor cluster: Types::Cluster
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class DeleteClusterRequest
102
+ attr_accessor cluster_name: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class DeleteClusterResponse
107
+ attr_accessor cluster: Types::Cluster
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class DeleteParameterGroupRequest
112
+ attr_accessor parameter_group_name: ::String
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class DeleteParameterGroupResponse
117
+ attr_accessor deletion_message: ::String
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class DeleteSubnetGroupRequest
122
+ attr_accessor subnet_group_name: ::String
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class DeleteSubnetGroupResponse
127
+ attr_accessor deletion_message: ::String
128
+ SENSITIVE: []
129
+ end
130
+
131
+ class DescribeClustersRequest
132
+ attr_accessor cluster_names: ::Array[::String]
133
+ attr_accessor max_results: ::Integer
134
+ attr_accessor next_token: ::String
135
+ SENSITIVE: []
136
+ end
137
+
138
+ class DescribeClustersResponse
139
+ attr_accessor next_token: ::String
140
+ attr_accessor clusters: ::Array[Types::Cluster]
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class DescribeDefaultParametersRequest
145
+ attr_accessor max_results: ::Integer
146
+ attr_accessor next_token: ::String
147
+ SENSITIVE: []
148
+ end
149
+
150
+ class DescribeDefaultParametersResponse
151
+ attr_accessor next_token: ::String
152
+ attr_accessor parameters: ::Array[Types::Parameter]
153
+ SENSITIVE: []
154
+ end
155
+
156
+ class DescribeEventsRequest
157
+ attr_accessor source_name: ::String
158
+ attr_accessor source_type: ("CLUSTER" | "PARAMETER_GROUP" | "SUBNET_GROUP")
159
+ attr_accessor start_time: ::Time
160
+ attr_accessor end_time: ::Time
161
+ attr_accessor duration: ::Integer
162
+ attr_accessor max_results: ::Integer
163
+ attr_accessor next_token: ::String
164
+ SENSITIVE: []
165
+ end
166
+
167
+ class DescribeEventsResponse
168
+ attr_accessor next_token: ::String
169
+ attr_accessor events: ::Array[Types::Event]
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class DescribeParameterGroupsRequest
174
+ attr_accessor parameter_group_names: ::Array[::String]
175
+ attr_accessor max_results: ::Integer
176
+ attr_accessor next_token: ::String
177
+ SENSITIVE: []
178
+ end
179
+
180
+ class DescribeParameterGroupsResponse
181
+ attr_accessor next_token: ::String
182
+ attr_accessor parameter_groups: ::Array[Types::ParameterGroup]
183
+ SENSITIVE: []
184
+ end
185
+
186
+ class DescribeParametersRequest
187
+ attr_accessor parameter_group_name: ::String
188
+ attr_accessor source: ::String
189
+ attr_accessor max_results: ::Integer
190
+ attr_accessor next_token: ::String
191
+ SENSITIVE: []
192
+ end
193
+
194
+ class DescribeParametersResponse
195
+ attr_accessor next_token: ::String
196
+ attr_accessor parameters: ::Array[Types::Parameter]
197
+ SENSITIVE: []
198
+ end
199
+
200
+ class DescribeSubnetGroupsRequest
201
+ attr_accessor subnet_group_names: ::Array[::String]
202
+ attr_accessor max_results: ::Integer
203
+ attr_accessor next_token: ::String
204
+ SENSITIVE: []
205
+ end
206
+
207
+ class DescribeSubnetGroupsResponse
208
+ attr_accessor next_token: ::String
209
+ attr_accessor subnet_groups: ::Array[Types::SubnetGroup]
210
+ SENSITIVE: []
211
+ end
212
+
213
+ class Endpoint
214
+ attr_accessor address: ::String
215
+ attr_accessor port: ::Integer
216
+ attr_accessor url: ::String
217
+ SENSITIVE: []
218
+ end
219
+
220
+ class Event
221
+ attr_accessor source_name: ::String
222
+ attr_accessor source_type: ("CLUSTER" | "PARAMETER_GROUP" | "SUBNET_GROUP")
223
+ attr_accessor message: ::String
224
+ attr_accessor date: ::Time
225
+ SENSITIVE: []
226
+ end
227
+
228
+ class IncreaseReplicationFactorRequest
229
+ attr_accessor cluster_name: ::String
230
+ attr_accessor new_replication_factor: ::Integer
231
+ attr_accessor availability_zones: ::Array[::String]
232
+ SENSITIVE: []
233
+ end
234
+
235
+ class IncreaseReplicationFactorResponse
236
+ attr_accessor cluster: Types::Cluster
237
+ SENSITIVE: []
238
+ end
239
+
240
+ class InsufficientClusterCapacityFault < Aws::EmptyStructure
241
+ end
242
+
243
+ class InvalidARNFault < Aws::EmptyStructure
244
+ end
245
+
246
+ class InvalidClusterStateFault < Aws::EmptyStructure
247
+ end
248
+
249
+ class InvalidParameterCombinationException
250
+ attr_accessor message: ::String
251
+ SENSITIVE: []
252
+ end
253
+
254
+ class InvalidParameterGroupStateFault < Aws::EmptyStructure
255
+ end
256
+
257
+ class InvalidParameterValueException
258
+ attr_accessor message: ::String
259
+ SENSITIVE: []
260
+ end
261
+
262
+ class InvalidSubnet < Aws::EmptyStructure
263
+ end
264
+
265
+ class InvalidVPCNetworkStateFault < Aws::EmptyStructure
266
+ end
267
+
268
+ class ListTagsRequest
269
+ attr_accessor resource_name: ::String
270
+ attr_accessor next_token: ::String
271
+ SENSITIVE: []
272
+ end
273
+
274
+ class ListTagsResponse
275
+ attr_accessor tags: ::Array[Types::Tag]
276
+ attr_accessor next_token: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class Node
281
+ attr_accessor node_id: ::String
282
+ attr_accessor endpoint: Types::Endpoint
283
+ attr_accessor node_create_time: ::Time
284
+ attr_accessor availability_zone: ::String
285
+ attr_accessor node_status: ::String
286
+ attr_accessor parameter_group_status: ::String
287
+ SENSITIVE: []
288
+ end
289
+
290
+ class NodeNotFoundFault < Aws::EmptyStructure
291
+ end
292
+
293
+ class NodeQuotaForClusterExceededFault < Aws::EmptyStructure
294
+ end
295
+
296
+ class NodeQuotaForCustomerExceededFault < Aws::EmptyStructure
297
+ end
298
+
299
+ class NodeTypeSpecificValue
300
+ attr_accessor node_type: ::String
301
+ attr_accessor value: ::String
302
+ SENSITIVE: []
303
+ end
304
+
305
+ class NotificationConfiguration
306
+ attr_accessor topic_arn: ::String
307
+ attr_accessor topic_status: ::String
308
+ SENSITIVE: []
309
+ end
310
+
311
+ class Parameter
312
+ attr_accessor parameter_name: ::String
313
+ attr_accessor parameter_type: ("DEFAULT" | "NODE_TYPE_SPECIFIC")
314
+ attr_accessor parameter_value: ::String
315
+ attr_accessor node_type_specific_values: ::Array[Types::NodeTypeSpecificValue]
316
+ attr_accessor description: ::String
317
+ attr_accessor source: ::String
318
+ attr_accessor data_type: ::String
319
+ attr_accessor allowed_values: ::String
320
+ attr_accessor is_modifiable: ("TRUE" | "FALSE" | "CONDITIONAL")
321
+ attr_accessor change_type: ("IMMEDIATE" | "REQUIRES_REBOOT")
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class ParameterGroup
326
+ attr_accessor parameter_group_name: ::String
327
+ attr_accessor description: ::String
328
+ SENSITIVE: []
329
+ end
330
+
331
+ class ParameterGroupAlreadyExistsFault < Aws::EmptyStructure
332
+ end
333
+
334
+ class ParameterGroupNotFoundFault < Aws::EmptyStructure
335
+ end
336
+
337
+ class ParameterGroupQuotaExceededFault < Aws::EmptyStructure
338
+ end
339
+
340
+ class ParameterGroupStatus
341
+ attr_accessor parameter_group_name: ::String
342
+ attr_accessor parameter_apply_status: ::String
343
+ attr_accessor node_ids_to_reboot: ::Array[::String]
344
+ SENSITIVE: []
345
+ end
346
+
347
+ class ParameterNameValue
348
+ attr_accessor parameter_name: ::String
349
+ attr_accessor parameter_value: ::String
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class RebootNodeRequest
354
+ attr_accessor cluster_name: ::String
355
+ attr_accessor node_id: ::String
356
+ SENSITIVE: []
357
+ end
358
+
359
+ class RebootNodeResponse
360
+ attr_accessor cluster: Types::Cluster
361
+ SENSITIVE: []
362
+ end
363
+
364
+ class SSEDescription
365
+ attr_accessor status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED")
366
+ SENSITIVE: []
367
+ end
368
+
369
+ class SSESpecification
370
+ attr_accessor enabled: bool
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class SecurityGroupMembership
375
+ attr_accessor security_group_identifier: ::String
376
+ attr_accessor status: ::String
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class ServiceLinkedRoleNotFoundFault < Aws::EmptyStructure
381
+ end
382
+
383
+ class ServiceQuotaExceededException < Aws::EmptyStructure
384
+ end
385
+
386
+ class Subnet
387
+ attr_accessor subnet_identifier: ::String
388
+ attr_accessor subnet_availability_zone: ::String
389
+ SENSITIVE: []
390
+ end
391
+
392
+ class SubnetGroup
393
+ attr_accessor subnet_group_name: ::String
394
+ attr_accessor description: ::String
395
+ attr_accessor vpc_id: ::String
396
+ attr_accessor subnets: ::Array[Types::Subnet]
397
+ SENSITIVE: []
398
+ end
399
+
400
+ class SubnetGroupAlreadyExistsFault < Aws::EmptyStructure
401
+ end
402
+
403
+ class SubnetGroupInUseFault < Aws::EmptyStructure
404
+ end
405
+
406
+ class SubnetGroupNotFoundFault < Aws::EmptyStructure
407
+ end
408
+
409
+ class SubnetGroupQuotaExceededFault < Aws::EmptyStructure
410
+ end
411
+
412
+ class SubnetInUse < Aws::EmptyStructure
413
+ end
414
+
415
+ class SubnetQuotaExceededFault < Aws::EmptyStructure
416
+ end
417
+
418
+ class Tag
419
+ attr_accessor key: ::String
420
+ attr_accessor value: ::String
421
+ SENSITIVE: []
422
+ end
423
+
424
+ class TagNotFoundFault < Aws::EmptyStructure
425
+ end
426
+
427
+ class TagQuotaPerResourceExceeded < Aws::EmptyStructure
428
+ end
429
+
430
+ class TagResourceRequest
431
+ attr_accessor resource_name: ::String
432
+ attr_accessor tags: ::Array[Types::Tag]
433
+ SENSITIVE: []
434
+ end
435
+
436
+ class TagResourceResponse
437
+ attr_accessor tags: ::Array[Types::Tag]
438
+ SENSITIVE: []
439
+ end
440
+
441
+ class UntagResourceRequest
442
+ attr_accessor resource_name: ::String
443
+ attr_accessor tag_keys: ::Array[::String]
444
+ SENSITIVE: []
445
+ end
446
+
447
+ class UntagResourceResponse
448
+ attr_accessor tags: ::Array[Types::Tag]
449
+ SENSITIVE: []
450
+ end
451
+
452
+ class UpdateClusterRequest
453
+ attr_accessor cluster_name: ::String
454
+ attr_accessor description: ::String
455
+ attr_accessor preferred_maintenance_window: ::String
456
+ attr_accessor notification_topic_arn: ::String
457
+ attr_accessor notification_topic_status: ::String
458
+ attr_accessor parameter_group_name: ::String
459
+ attr_accessor security_group_ids: ::Array[::String]
460
+ SENSITIVE: []
461
+ end
462
+
463
+ class UpdateClusterResponse
464
+ attr_accessor cluster: Types::Cluster
465
+ SENSITIVE: []
466
+ end
467
+
468
+ class UpdateParameterGroupRequest
469
+ attr_accessor parameter_group_name: ::String
470
+ attr_accessor parameter_name_values: ::Array[Types::ParameterNameValue]
471
+ SENSITIVE: []
472
+ end
473
+
474
+ class UpdateParameterGroupResponse
475
+ attr_accessor parameter_group: Types::ParameterGroup
476
+ SENSITIVE: []
477
+ end
478
+
479
+ class UpdateSubnetGroupRequest
480
+ attr_accessor subnet_group_name: ::String
481
+ attr_accessor description: ::String
482
+ attr_accessor subnet_ids: ::Array[::String]
483
+ SENSITIVE: []
484
+ end
485
+
486
+ class UpdateSubnetGroupResponse
487
+ attr_accessor subnet_group: Types::SubnetGroup
488
+ SENSITIVE: []
489
+ end
490
+ end
491
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DAX
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dax
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.50.0
4
+ version: 1.52.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.188.0
22
+ version: 3.193.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.188.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-dax/plugins/endpoints.rb
67
67
  - lib/aws-sdk-dax/resource.rb
68
68
  - lib/aws-sdk-dax/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dax
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dax/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - Amazon DAX
94
99
  test_files: []