aws-sdk-dax 1.40.0 → 1.42.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: 5048238bcd4e37db3991020ca656e083e95f23bbbedbde8bacd0f830c71aa5b5
4
- data.tar.gz: ea8a04dbadf09c277fd1f29dee0742f8db4ae4f16458861c9acb090c9826cf91
3
+ metadata.gz: ac36398ba477234905c78ec26bb2aec32389c244bfed4bb4daee461ea7061947
4
+ data.tar.gz: b9962565a47a015d7779f36b6a1385380b5a777b200af9182b284fc1f36a999c
5
5
  SHA512:
6
- metadata.gz: be4d8b253e7422f28527a4b9f4ebb248a1228cde3e1996781d5d1e0d1878374947eff434fb91a4dfba838ec2c93e5b760b471f5768ad76b081a0208247c7b373
7
- data.tar.gz: 7dfc798ca39a9a6c8aae828911ce9f371f016c1860a8f1a547b90c50cc897a282cbad0da245b12d16b107e1d4799272138493f87e29c12df8c1849fc8df33b3a
6
+ metadata.gz: 8c7c0a5716b4c07a97d6455e6fdd17878d3fc998eceb620df5f3289a27834d92b33fac38333e66f8456cea30e929987a1b83e285a1e51a30b6170dfebfbfb592
7
+ data.tar.gz: 9a93c4e8c121269ef8c7e0af48c307fdaf1219d74082354ab8ebab643c40d81363fa3decdad22fcf03e8e5e15c904059090730140835a1df076966157bea18d9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.41.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.40.0 (2022-10-25)
5
17
  ------------------
6
18
 
@@ -243,4 +255,4 @@ Unreleased Changes
243
255
  1.0.0.rc1 (2017-06-26)
244
256
  ------------------
245
257
 
246
- * Feature - Initial release of `aws-sdk-dax`.
258
+ * Feature - Initial release of `aws-sdk-dax`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.42.0
@@ -275,6 +275,11 @@ module Aws::DAX
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -1706,7 +1711,7 @@ module Aws::DAX
1706
1711
  params: params,
1707
1712
  config: config)
1708
1713
  context[:gem_name] = 'aws-sdk-dax'
1709
- context[:gem_version] = '1.40.0'
1714
+ context[:gem_version] = '1.42.0'
1710
1715
  Seahorse::Client::Request.new(handlers, context)
1711
1716
  end
1712
1717
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::DAX
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://dax-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://dax-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://dax.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://dax.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2RheC1maXBzLntSZWdpb259LntQYXJ0aXRp
77
- b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
78
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
79
- b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
80
- ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
81
- ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
82
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
83
- cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
84
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
85
- QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
86
- b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
87
- dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
88
- IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9kYXgtZmlwcy57UmVn
89
- aW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
90
- Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJj
91
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRo
92
- aXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJl
93
- cnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
94
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBl
95
- IjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
96
- YW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3Yi
97
- Olt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFj
98
- ayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
99
- W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZGF4LntSZWdpb259LntQ
100
- YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
101
- ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
102
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBi
103
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2si
104
- LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50
105
- Ijp7InVybCI6Imh0dHBzOi8vZGF4LntSZWdpb259LntQYXJ0aXRpb25SZXN1
106
- bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
107
- InR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -146,33 +146,6 @@ module Aws::DAX
146
146
  #
147
147
  class ClusterQuotaForCustomerExceededFault < Aws::EmptyStructure; end
148
148
 
149
- # @note When making an API call, you may pass CreateClusterRequest
150
- # data as a hash:
151
- #
152
- # {
153
- # cluster_name: "String", # required
154
- # node_type: "String", # required
155
- # description: "String",
156
- # replication_factor: 1, # required
157
- # availability_zones: ["String"],
158
- # subnet_group_name: "String",
159
- # security_group_ids: ["String"],
160
- # preferred_maintenance_window: "String",
161
- # notification_topic_arn: "String",
162
- # iam_role_arn: "String", # required
163
- # parameter_group_name: "String",
164
- # tags: [
165
- # {
166
- # key: "String",
167
- # value: "String",
168
- # },
169
- # ],
170
- # sse_specification: {
171
- # enabled: false, # required
172
- # },
173
- # cluster_endpoint_encryption_type: "NONE", # accepts NONE, TLS
174
- # }
175
- #
176
149
  # @!attribute [rw] cluster_name
177
150
  # The cluster identifier. This parameter is stored as a lowercase
178
151
  # string.
@@ -334,14 +307,6 @@ module Aws::DAX
334
307
  include Aws::Structure
335
308
  end
336
309
 
337
- # @note When making an API call, you may pass CreateParameterGroupRequest
338
- # data as a hash:
339
- #
340
- # {
341
- # parameter_group_name: "String", # required
342
- # description: "String",
343
- # }
344
- #
345
310
  # @!attribute [rw] parameter_group_name
346
311
  # The name of the parameter group to apply to all of the clusters in
347
312
  # this replication group.
@@ -372,15 +337,6 @@ module Aws::DAX
372
337
  include Aws::Structure
373
338
  end
374
339
 
375
- # @note When making an API call, you may pass CreateSubnetGroupRequest
376
- # data as a hash:
377
- #
378
- # {
379
- # subnet_group_name: "String", # required
380
- # description: "String",
381
- # subnet_ids: ["String"], # required
382
- # }
383
- #
384
340
  # @!attribute [rw] subnet_group_name
385
341
  # A name for the subnet group. This value is stored as a lowercase
386
342
  # string.
@@ -416,16 +372,6 @@ module Aws::DAX
416
372
  include Aws::Structure
417
373
  end
418
374
 
419
- # @note When making an API call, you may pass DecreaseReplicationFactorRequest
420
- # data as a hash:
421
- #
422
- # {
423
- # cluster_name: "String", # required
424
- # new_replication_factor: 1, # required
425
- # availability_zones: ["String"],
426
- # node_ids_to_remove: ["String"],
427
- # }
428
- #
429
375
  # @!attribute [rw] cluster_name
430
376
  # The name of the DAX cluster from which you want to remove nodes.
431
377
  # @return [String]
@@ -466,13 +412,6 @@ module Aws::DAX
466
412
  include Aws::Structure
467
413
  end
468
414
 
469
- # @note When making an API call, you may pass DeleteClusterRequest
470
- # data as a hash:
471
- #
472
- # {
473
- # cluster_name: "String", # required
474
- # }
475
- #
476
415
  # @!attribute [rw] cluster_name
477
416
  # The name of the cluster to be deleted.
478
417
  # @return [String]
@@ -497,13 +436,6 @@ module Aws::DAX
497
436
  include Aws::Structure
498
437
  end
499
438
 
500
- # @note When making an API call, you may pass DeleteParameterGroupRequest
501
- # data as a hash:
502
- #
503
- # {
504
- # parameter_group_name: "String", # required
505
- # }
506
- #
507
439
  # @!attribute [rw] parameter_group_name
508
440
  # The name of the parameter group to delete.
509
441
  # @return [String]
@@ -529,13 +461,6 @@ module Aws::DAX
529
461
  include Aws::Structure
530
462
  end
531
463
 
532
- # @note When making an API call, you may pass DeleteSubnetGroupRequest
533
- # data as a hash:
534
- #
535
- # {
536
- # subnet_group_name: "String", # required
537
- # }
538
- #
539
464
  # @!attribute [rw] subnet_group_name
540
465
  # The name of the subnet group to delete.
541
466
  # @return [String]
@@ -561,15 +486,6 @@ module Aws::DAX
561
486
  include Aws::Structure
562
487
  end
563
488
 
564
- # @note When making an API call, you may pass DescribeClustersRequest
565
- # data as a hash:
566
- #
567
- # {
568
- # cluster_names: ["String"],
569
- # max_results: 1,
570
- # next_token: "String",
571
- # }
572
- #
573
489
  # @!attribute [rw] cluster_names
574
490
  # The names of the DAX clusters being described.
575
491
  # @return [Array<String>]
@@ -618,14 +534,6 @@ module Aws::DAX
618
534
  include Aws::Structure
619
535
  end
620
536
 
621
- # @note When making an API call, you may pass DescribeDefaultParametersRequest
622
- # data as a hash:
623
- #
624
- # {
625
- # max_results: 1,
626
- # next_token: "String",
627
- # }
628
- #
629
537
  # @!attribute [rw] max_results
630
538
  # The maximum number of results to include in the response. If more
631
539
  # results exist than the specified `MaxResults` value, a token is
@@ -669,19 +577,6 @@ module Aws::DAX
669
577
  include Aws::Structure
670
578
  end
671
579
 
672
- # @note When making an API call, you may pass DescribeEventsRequest
673
- # data as a hash:
674
- #
675
- # {
676
- # source_name: "String",
677
- # source_type: "CLUSTER", # accepts CLUSTER, PARAMETER_GROUP, SUBNET_GROUP
678
- # start_time: Time.now,
679
- # end_time: Time.now,
680
- # duration: 1,
681
- # max_results: 1,
682
- # next_token: "String",
683
- # }
684
- #
685
580
  # @!attribute [rw] source_name
686
581
  # The identifier of the event source for which events will be
687
582
  # returned. If not specified, then all sources are included in the
@@ -754,15 +649,6 @@ module Aws::DAX
754
649
  include Aws::Structure
755
650
  end
756
651
 
757
- # @note When making an API call, you may pass DescribeParameterGroupsRequest
758
- # data as a hash:
759
- #
760
- # {
761
- # parameter_group_names: ["String"],
762
- # max_results: 1,
763
- # next_token: "String",
764
- # }
765
- #
766
652
  # @!attribute [rw] parameter_group_names
767
653
  # The names of the parameter groups.
768
654
  # @return [Array<String>]
@@ -811,16 +697,6 @@ module Aws::DAX
811
697
  include Aws::Structure
812
698
  end
813
699
 
814
- # @note When making an API call, you may pass DescribeParametersRequest
815
- # data as a hash:
816
- #
817
- # {
818
- # parameter_group_name: "String", # required
819
- # source: "String",
820
- # max_results: 1,
821
- # next_token: "String",
822
- # }
823
- #
824
700
  # @!attribute [rw] parameter_group_name
825
701
  # The name of the parameter group.
826
702
  # @return [String]
@@ -875,15 +751,6 @@ module Aws::DAX
875
751
  include Aws::Structure
876
752
  end
877
753
 
878
- # @note When making an API call, you may pass DescribeSubnetGroupsRequest
879
- # data as a hash:
880
- #
881
- # {
882
- # subnet_group_names: ["String"],
883
- # max_results: 1,
884
- # next_token: "String",
885
- # }
886
- #
887
754
  # @!attribute [rw] subnet_group_names
888
755
  # The name of the subnet group.
889
756
  # @return [Array<String>]
@@ -993,15 +860,6 @@ module Aws::DAX
993
860
  include Aws::Structure
994
861
  end
995
862
 
996
- # @note When making an API call, you may pass IncreaseReplicationFactorRequest
997
- # data as a hash:
998
- #
999
- # {
1000
- # cluster_name: "String", # required
1001
- # new_replication_factor: 1, # required
1002
- # availability_zones: ["String"],
1003
- # }
1004
- #
1005
863
  # @!attribute [rw] cluster_name
1006
864
  # The name of the DAX cluster that will receive additional nodes.
1007
865
  # @return [String]
@@ -1102,14 +960,6 @@ module Aws::DAX
1102
960
  #
1103
961
  class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
1104
962
 
1105
- # @note When making an API call, you may pass ListTagsRequest
1106
- # data as a hash:
1107
- #
1108
- # {
1109
- # resource_name: "String", # required
1110
- # next_token: "String",
1111
- # }
1112
- #
1113
963
  # @!attribute [rw] resource_name
1114
964
  # The name of the DAX resource to which the tags belong.
1115
965
  # @return [String]
@@ -1285,7 +1135,7 @@ module Aws::DAX
1285
1135
  # @return [String]
1286
1136
  #
1287
1137
  # @!attribute [rw] data_type
1288
- # The data type of the parameter. For example, `integer`\:
1138
+ # The data type of the parameter. For example, `integer`:
1289
1139
  # @return [String]
1290
1140
  #
1291
1141
  # @!attribute [rw] allowed_values
@@ -1383,14 +1233,6 @@ module Aws::DAX
1383
1233
 
1384
1234
  # An individual DAX parameter.
1385
1235
  #
1386
- # @note When making an API call, you may pass ParameterNameValue
1387
- # data as a hash:
1388
- #
1389
- # {
1390
- # parameter_name: "String",
1391
- # parameter_value: "String",
1392
- # }
1393
- #
1394
1236
  # @!attribute [rw] parameter_name
1395
1237
  # The name of the parameter.
1396
1238
  # @return [String]
@@ -1408,14 +1250,6 @@ module Aws::DAX
1408
1250
  include Aws::Structure
1409
1251
  end
1410
1252
 
1411
- # @note When making an API call, you may pass RebootNodeRequest
1412
- # data as a hash:
1413
- #
1414
- # {
1415
- # cluster_name: "String", # required
1416
- # node_id: "String", # required
1417
- # }
1418
- #
1419
1253
  # @!attribute [rw] cluster_name
1420
1254
  # The name of the DAX cluster containing the node to be rebooted.
1421
1255
  # @return [String]
@@ -1470,13 +1304,6 @@ module Aws::DAX
1470
1304
 
1471
1305
  # Represents the settings used to enable server-side encryption.
1472
1306
  #
1473
- # @note When making an API call, you may pass SSESpecification
1474
- # data as a hash:
1475
- #
1476
- # {
1477
- # enabled: false, # required
1478
- # }
1479
- #
1480
1307
  # @!attribute [rw] enabled
1481
1308
  # Indicates whether server-side encryption is enabled (true) or
1482
1309
  # disabled (false) on the cluster.
@@ -1628,14 +1455,6 @@ module Aws::DAX
1628
1455
  #
1629
1456
  # You cannot backdate the application of a tag.
1630
1457
  #
1631
- # @note When making an API call, you may pass Tag
1632
- # data as a hash:
1633
- #
1634
- # {
1635
- # key: "String",
1636
- # value: "String",
1637
- # }
1638
- #
1639
1458
  # @!attribute [rw] key
1640
1459
  # The key for the tag. Tag keys are case sensitive. Every DAX cluster
1641
1460
  # can only have one tag with the same key. If you try to add an
@@ -1668,19 +1487,6 @@ module Aws::DAX
1668
1487
  #
1669
1488
  class TagQuotaPerResourceExceeded < Aws::EmptyStructure; end
1670
1489
 
1671
- # @note When making an API call, you may pass TagResourceRequest
1672
- # data as a hash:
1673
- #
1674
- # {
1675
- # resource_name: "String", # required
1676
- # tags: [ # required
1677
- # {
1678
- # key: "String",
1679
- # value: "String",
1680
- # },
1681
- # ],
1682
- # }
1683
- #
1684
1490
  # @!attribute [rw] resource_name
1685
1491
  # The name of the DAX resource to which tags should be added.
1686
1492
  # @return [String]
@@ -1710,14 +1516,6 @@ module Aws::DAX
1710
1516
  include Aws::Structure
1711
1517
  end
1712
1518
 
1713
- # @note When making an API call, you may pass UntagResourceRequest
1714
- # data as a hash:
1715
- #
1716
- # {
1717
- # resource_name: "String", # required
1718
- # tag_keys: ["String"], # required
1719
- # }
1720
- #
1721
1519
  # @!attribute [rw] resource_name
1722
1520
  # The name of the DAX resource from which the tags should be removed.
1723
1521
  # @return [String]
@@ -1748,19 +1546,6 @@ module Aws::DAX
1748
1546
  include Aws::Structure
1749
1547
  end
1750
1548
 
1751
- # @note When making an API call, you may pass UpdateClusterRequest
1752
- # data as a hash:
1753
- #
1754
- # {
1755
- # cluster_name: "String", # required
1756
- # description: "String",
1757
- # preferred_maintenance_window: "String",
1758
- # notification_topic_arn: "String",
1759
- # notification_topic_status: "String",
1760
- # parameter_group_name: "String",
1761
- # security_group_ids: ["String"],
1762
- # }
1763
- #
1764
1549
  # @!attribute [rw] cluster_name
1765
1550
  # The name of the DAX cluster to be modified.
1766
1551
  # @return [String]
@@ -1822,19 +1607,6 @@ module Aws::DAX
1822
1607
  include Aws::Structure
1823
1608
  end
1824
1609
 
1825
- # @note When making an API call, you may pass UpdateParameterGroupRequest
1826
- # data as a hash:
1827
- #
1828
- # {
1829
- # parameter_group_name: "String", # required
1830
- # parameter_name_values: [ # required
1831
- # {
1832
- # parameter_name: "String",
1833
- # parameter_value: "String",
1834
- # },
1835
- # ],
1836
- # }
1837
- #
1838
1610
  # @!attribute [rw] parameter_group_name
1839
1611
  # The name of the parameter group.
1840
1612
  # @return [String]
@@ -1875,15 +1647,6 @@ module Aws::DAX
1875
1647
  include Aws::Structure
1876
1648
  end
1877
1649
 
1878
- # @note When making an API call, you may pass UpdateSubnetGroupRequest
1879
- # data as a hash:
1880
- #
1881
- # {
1882
- # subnet_group_name: "String", # required
1883
- # description: "String",
1884
- # subnet_ids: ["String"],
1885
- # }
1886
- #
1887
1650
  # @!attribute [rw] subnet_group_name
1888
1651
  # The name of the subnet group.
1889
1652
  # @return [String]
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.40.0'
55
+ GEM_VERSION = '1.42.0'
56
56
 
57
57
  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.40.0
4
+ version: 1.42.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement