aws-sdk-rds 1.227.0 → 1.229.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90f761d312e751bbae373225cffbde063b0e1a4e63017b56329b89763254d6ae
4
- data.tar.gz: c68296c6a0b401ae40840250318201544a84f96620f3c6127a6b70e69a7ee083
3
+ metadata.gz: cca2c91d9280e43943637380df4a4f2242bae1dbbbf927349479bc9251f55b2c
4
+ data.tar.gz: 88f05baec7c98b663139e318e1082d03bb9a0f7412b7cce809764a8bec550cbe
5
5
  SHA512:
6
- metadata.gz: d004eab37902a40a153fd79a1978dd69845bbada044db74fb88cceac9c7502de425572bc2b1d4391509e38dcef47f5a03c65c82cea81e7fd63ac77ff4be85921
7
- data.tar.gz: 39429317c90eb46e5b4e62c6a7983ae49ba5c313cf199be4db18024bceec76f8f8c0bd9e7ed85462ea2c0e5a99758df877bdc9c79043128161fa19433a0ca159
6
+ metadata.gz: 154e33ce31df56cfe339c5019f94a1f6700663990ae7c50e8a22937dbdcfbf8a1e110869f30198594e37d2d580f8dae934f3b45e3a0b94f1cee7f6d999a930aa
7
+ data.tar.gz: 2b5df5c222ce5b6b6d92bb47b4b7a684915a46ee1cd77fd3ebf64a51be1a45e10c34bd9450745033e910f135cb6ea761e46053def6d8a49c38fac979b118fedc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.229.0 (2024-04-26)
5
+ ------------------
6
+
7
+ * Feature - SupportsLimitlessDatabase field added to describe-db-engine-versions to indicate whether the DB engine version supports Aurora Limitless Database.
8
+
9
+ 1.228.0 (2024-04-25)
10
+ ------------------
11
+
12
+ * Feature - Updates Amazon RDS documentation for setting local time zones for RDS for Db2 DB instances.
13
+
4
14
  1.227.0 (2024-04-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.227.0
1
+ 1.229.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'
@@ -73,6 +74,7 @@ module Aws::RDS
73
74
  add_plugin(Aws::Plugins::ResponsePaging)
74
75
  add_plugin(Aws::Plugins::StubResponses)
75
76
  add_plugin(Aws::Plugins::IdempotencyToken)
77
+ add_plugin(Aws::Plugins::InvocationId)
76
78
  add_plugin(Aws::Plugins::JsonvalueConverter)
77
79
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
78
80
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -198,10 +200,17 @@ module Aws::RDS
198
200
  # When set to 'true' the request body will not be compressed
199
201
  # for supported operations.
200
202
  #
201
- # @option options [String] :endpoint
202
- # The client endpoint is normally constructed from the `:region`
203
- # option. You should only configure an `:endpoint` when connecting
204
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
203
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
204
+ # Normally you should not configure the `:endpoint` option
205
+ # directly. This is normally constructed from the `:region`
206
+ # option. Configuring `:endpoint` is normally reserved for
207
+ # connecting to test or custom endpoints. The endpoint should
208
+ # be a URI formatted like:
209
+ #
210
+ # 'http://example.com'
211
+ # 'https://example.com'
212
+ # 'http://example.com:123'
213
+ #
205
214
  #
206
215
  # @option options [Integer] :endpoint_cache_max_entries (1000)
207
216
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -339,50 +348,65 @@ module Aws::RDS
339
348
  # @option options [Aws::RDS::EndpointProvider] :endpoint_provider
340
349
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::RDS::EndpointParameters`
341
350
  #
342
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
343
- # requests through. Formatted like 'http://proxy.com:123'.
344
- #
345
- # @option options [Float] :http_open_timeout (15) The number of
346
- # seconds to wait when opening a HTTP session before raising a
347
- # `Timeout::Error`.
348
- #
349
- # @option options [Float] :http_read_timeout (60) The default
350
- # number of seconds to wait for response data. This value can
351
- # safely be set per-request on the session.
352
- #
353
- # @option options [Float] :http_idle_timeout (5) The number of
354
- # seconds a connection is allowed to sit idle before it is
355
- # considered stale. Stale connections are closed and removed
356
- # from the pool before making a request.
357
- #
358
- # @option options [Float] :http_continue_timeout (1) The number of
359
- # seconds to wait for a 100-continue response before sending the
360
- # request body. This option has no effect unless the request has
361
- # "Expect" header set to "100-continue". Defaults to `nil` which
362
- # disables this behaviour. This value can safely be set per
363
- # request on the session.
364
- #
365
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
366
- # in seconds.
351
+ # @option options [Float] :http_continue_timeout (1)
352
+ # The number of seconds to wait for a 100-continue response before sending the
353
+ # request body. This option has no effect unless the request has "Expect"
354
+ # header set to "100-continue". Defaults to `nil` which disables this
355
+ # behaviour. This value can safely be set per request on the session.
356
+ #
357
+ # @option options [Float] :http_idle_timeout (5)
358
+ # The number of seconds a connection is allowed to sit idle before it
359
+ # is considered stale. Stale connections are closed and removed from the
360
+ # pool before making a request.
361
+ #
362
+ # @option options [Float] :http_open_timeout (15)
363
+ # The default number of seconds to wait for response data.
364
+ # This value can safely be set per-request on the session.
365
+ #
366
+ # @option options [URI::HTTP,String] :http_proxy
367
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
368
+ #
369
+ # @option options [Float] :http_read_timeout (60)
370
+ # The default number of seconds to wait for response data.
371
+ # This value can safely be set per-request on the session.
372
+ #
373
+ # @option options [Boolean] :http_wire_trace (false)
374
+ # When `true`, HTTP debug output will be sent to the `:logger`.
375
+ #
376
+ # @option options [Proc] :on_chunk_received
377
+ # When a Proc object is provided, it will be used as callback when each chunk
378
+ # of the response body is received. It provides three arguments: the chunk,
379
+ # the number of bytes received, and the total number of
380
+ # bytes in the response (or nil if the server did not send a `content-length`).
381
+ #
382
+ # @option options [Proc] :on_chunk_sent
383
+ # When a Proc object is provided, it will be used as callback when each chunk
384
+ # of the request body is sent. It provides three arguments: the chunk,
385
+ # the number of bytes read from the body, and the total number of
386
+ # bytes in the body.
387
+ #
388
+ # @option options [Boolean] :raise_response_errors (true)
389
+ # When `true`, response errors are raised.
390
+ #
391
+ # @option options [String] :ssl_ca_bundle
392
+ # Full path to the SSL certificate authority bundle file that should be used when
393
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
394
+ # `:ssl_ca_directory` the the system default will be used if available.
395
+ #
396
+ # @option options [String] :ssl_ca_directory
397
+ # Full path of the directory that contains the unbundled SSL certificate
398
+ # authority files for verifying peer certificates. If you do
399
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
400
+ # default will be used if available.
367
401
  #
368
- # @option options [Boolean] :http_wire_trace (false) When `true`,
369
- # HTTP debug output will be sent to the `:logger`.
402
+ # @option options [String] :ssl_ca_store
403
+ # Sets the X509::Store to verify peer certificate.
370
404
  #
371
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
372
- # SSL peer certificates are verified when establishing a
373
- # connection.
405
+ # @option options [Float] :ssl_timeout
406
+ # Sets the SSL timeout in seconds
374
407
  #
375
- # @option options [String] :ssl_ca_bundle Full path to the SSL
376
- # certificate authority bundle file that should be used when
377
- # verifying peer certificates. If you do not pass
378
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
379
- # will be used if available.
380
- #
381
- # @option options [String] :ssl_ca_directory Full path of the
382
- # directory that contains the unbundled SSL certificate
383
- # authority files for verifying peer certificates. If you do
384
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
385
- # system default will be used if available.
408
+ # @option options [Boolean] :ssl_verify_peer (true)
409
+ # When `true`, SSL peer certificates are verified when establishing a connection.
386
410
  #
387
411
  def initialize(*args)
388
412
  super
@@ -2388,6 +2412,7 @@ module Aws::RDS
2388
2412
  # * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
2389
2413
  # * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
2390
2414
  # * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
2415
+ # * {Types::DBEngineVersion#supports_limitless_database #supports_limitless_database} => Boolean
2391
2416
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
2392
2417
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
2393
2418
  # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
@@ -2443,6 +2468,7 @@ module Aws::RDS
2443
2468
  # resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
2444
2469
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
2445
2470
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
2471
+ # resp.valid_upgrade_target[0].supports_limitless_database #=> Boolean
2446
2472
  # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
2447
2473
  # resp.valid_upgrade_target[0].supports_integrations #=> Boolean
2448
2474
  # resp.supported_timezones #=> Array
@@ -2469,6 +2495,7 @@ module Aws::RDS
2469
2495
  # resp.tag_list[0].value #=> String
2470
2496
  # resp.supports_babelfish #=> Boolean
2471
2497
  # resp.custom_db_engine_version_manifest #=> String
2498
+ # resp.supports_limitless_database #=> Boolean
2472
2499
  # resp.supports_certificate_rotation_without_restart #=> Boolean
2473
2500
  # resp.supported_ca_certificate_identifiers #=> Array
2474
2501
  # resp.supported_ca_certificate_identifiers[0] #=> String
@@ -5081,11 +5108,12 @@ module Aws::RDS
5081
5108
  #
5082
5109
  # @option params [String] :timezone
5083
5110
  # The time zone of the DB instance. The time zone parameter is currently
5084
- # supported only by [Microsoft SQL Server][1].
5111
+ # supported only by [RDS for Db2][1] and [RDS for SQL Server][2].
5085
5112
  #
5086
5113
  #
5087
5114
  #
5088
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
5115
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-time-zone
5116
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
5089
5117
  #
5090
5118
  # @option params [Boolean] :enable_iam_database_authentication
5091
5119
  # Specifies whether to enable mapping of Amazon Web Services Identity
@@ -8567,6 +8595,7 @@ module Aws::RDS
8567
8595
  # * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
8568
8596
  # * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
8569
8597
  # * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
8598
+ # * {Types::DBEngineVersion#supports_limitless_database #supports_limitless_database} => Boolean
8570
8599
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
8571
8600
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
8572
8601
  # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
@@ -8608,6 +8637,7 @@ module Aws::RDS
8608
8637
  # resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
8609
8638
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
8610
8639
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
8640
+ # resp.valid_upgrade_target[0].supports_limitless_database #=> Boolean
8611
8641
  # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
8612
8642
  # resp.valid_upgrade_target[0].supports_integrations #=> Boolean
8613
8643
  # resp.supported_timezones #=> Array
@@ -8634,6 +8664,7 @@ module Aws::RDS
8634
8664
  # resp.tag_list[0].value #=> String
8635
8665
  # resp.supports_babelfish #=> Boolean
8636
8666
  # resp.custom_db_engine_version_manifest #=> String
8667
+ # resp.supports_limitless_database #=> Boolean
8637
8668
  # resp.supports_certificate_rotation_without_restart #=> Boolean
8638
8669
  # resp.supported_ca_certificate_identifiers #=> Array
8639
8670
  # resp.supported_ca_certificate_identifiers[0] #=> String
@@ -12580,6 +12611,7 @@ module Aws::RDS
12580
12611
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_parallel_query #=> Boolean
12581
12612
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_global_databases #=> Boolean
12582
12613
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_babelfish #=> Boolean
12614
+ # resp.db_engine_versions[0].valid_upgrade_target[0].supports_limitless_database #=> Boolean
12583
12615
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
12584
12616
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_integrations #=> Boolean
12585
12617
  # resp.db_engine_versions[0].supported_timezones #=> Array
@@ -12606,6 +12638,7 @@ module Aws::RDS
12606
12638
  # resp.db_engine_versions[0].tag_list[0].value #=> String
12607
12639
  # resp.db_engine_versions[0].supports_babelfish #=> Boolean
12608
12640
  # resp.db_engine_versions[0].custom_db_engine_version_manifest #=> String
12641
+ # resp.db_engine_versions[0].supports_limitless_database #=> Boolean
12609
12642
  # resp.db_engine_versions[0].supports_certificate_rotation_without_restart #=> Boolean
12610
12643
  # resp.db_engine_versions[0].supported_ca_certificate_identifiers #=> Array
12611
12644
  # resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
@@ -18227,6 +18260,7 @@ module Aws::RDS
18227
18260
  # * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
18228
18261
  # * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
18229
18262
  # * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
18263
+ # * {Types::DBEngineVersion#supports_limitless_database #supports_limitless_database} => Boolean
18230
18264
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
18231
18265
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
18232
18266
  # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
@@ -18270,6 +18304,7 @@ module Aws::RDS
18270
18304
  # resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
18271
18305
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
18272
18306
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
18307
+ # resp.valid_upgrade_target[0].supports_limitless_database #=> Boolean
18273
18308
  # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
18274
18309
  # resp.valid_upgrade_target[0].supports_integrations #=> Boolean
18275
18310
  # resp.supported_timezones #=> Array
@@ -18296,6 +18331,7 @@ module Aws::RDS
18296
18331
  # resp.tag_list[0].value #=> String
18297
18332
  # resp.supports_babelfish #=> Boolean
18298
18333
  # resp.custom_db_engine_version_manifest #=> String
18334
+ # resp.supports_limitless_database #=> Boolean
18299
18335
  # resp.supports_certificate_rotation_without_restart #=> Boolean
18300
18336
  # resp.supported_ca_certificate_identifiers #=> Array
18301
18337
  # resp.supported_ca_certificate_identifiers[0] #=> String
@@ -19741,7 +19777,7 @@ module Aws::RDS
19741
19777
  # change is applied during the next maintenance window, unless you
19742
19778
  # enable `ApplyImmediately`.
19743
19779
  #
19744
- # This parameter doesn't apply to RDS Custom DB instances.
19780
+ # This setting doesn't apply to RDS Custom DB instances.
19745
19781
  #
19746
19782
  # Constraints:
19747
19783
  #
@@ -20465,6 +20501,12 @@ module Aws::RDS
20465
20501
  # default, deletion protection isn't enabled. For more information, see
20466
20502
  # [ Deleting a DB Instance][1].
20467
20503
  #
20504
+ # This setting doesn't apply to Amazon Aurora DB instances. You can
20505
+ # enable or disable deletion protection for the DB cluster. For more
20506
+ # information, see `ModifyDBCluster`. DB instances in a DB cluster can
20507
+ # be deleted even when deletion protection is enabled for the DB
20508
+ # cluster.
20509
+ #
20468
20510
  #
20469
20511
  #
20470
20512
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
@@ -30770,7 +30812,7 @@ module Aws::RDS
30770
30812
  params: params,
30771
30813
  config: config)
30772
30814
  context[:gem_name] = 'aws-sdk-rds'
30773
- context[:gem_version] = '1.227.0'
30815
+ context[:gem_version] = '1.229.0'
30774
30816
  Seahorse::Client::Request.new(handlers, context)
30775
30817
  end
30776
30818
 
@@ -1663,6 +1663,7 @@ module Aws::RDS
1663
1663
  DBEngineVersion.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
1664
1664
  DBEngineVersion.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsBabelfish"))
1665
1665
  DBEngineVersion.add_member(:custom_db_engine_version_manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, location_name: "CustomDBEngineVersionManifest"))
1666
+ DBEngineVersion.add_member(:supports_limitless_database, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsLimitlessDatabase"))
1666
1667
  DBEngineVersion.add_member(:supports_certificate_rotation_without_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsCertificateRotationWithoutRestart"))
1667
1668
  DBEngineVersion.add_member(:supported_ca_certificate_identifiers, Shapes::ShapeRef.new(shape: CACertificateIdentifiersList, location_name: "SupportedCACertificateIdentifiers"))
1668
1669
  DBEngineVersion.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
@@ -4248,6 +4249,7 @@ module Aws::RDS
4248
4249
  UpgradeTarget.add_member(:supports_parallel_query, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsParallelQuery"))
4249
4250
  UpgradeTarget.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsGlobalDatabases"))
4250
4251
  UpgradeTarget.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsBabelfish"))
4252
+ UpgradeTarget.add_member(:supports_limitless_database, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLimitlessDatabase"))
4251
4253
  UpgradeTarget.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
4252
4254
  UpgradeTarget.add_member(:supports_integrations, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsIntegrations"))
4253
4255
  UpgradeTarget.struct_class = Types::UpgradeTarget
@@ -4308,6 +4310,7 @@ module Aws::RDS
4308
4310
  "apiVersion" => "2014-10-31",
4309
4311
  "endpointPrefix" => "rds",
4310
4312
  "protocol" => "query",
4313
+ "protocols" => ["query"],
4311
4314
  "serviceAbbreviation" => "Amazon RDS",
4312
4315
  "serviceFullName" => "Amazon Relational Database Service",
4313
4316
  "serviceId" => "RDS",
@@ -254,6 +254,13 @@ module Aws::RDS
254
254
  data[:custom_db_engine_version_manifest]
255
255
  end
256
256
 
257
+ # Indicates whether the DB engine version supports Aurora Limitless
258
+ # Database.
259
+ # @return [Boolean]
260
+ def supports_limitless_database
261
+ data[:supports_limitless_database]
262
+ end
263
+
257
264
  # Indicates whether the engine version supports rotating the server
258
265
  # certificate without rebooting the DB instance.
259
266
  # @return [Boolean]
@@ -434,8 +434,9 @@ module Aws::RDS
434
434
  end
435
435
 
436
436
  # The time zone of the DB instance. In most cases, the `Timezone`
437
- # element is empty. `Timezone` content appears only for Microsoft SQL
438
- # Server DB instances that were created with a time zone specified.
437
+ # element is empty. `Timezone` content appears only for RDS for Db2 and
438
+ # RDS for SQL Server DB instances that were created with a time zone
439
+ # specified.
439
440
  # @return [String]
440
441
  def timezone
441
442
  data[:timezone]
@@ -1876,11 +1877,12 @@ module Aws::RDS
1876
1877
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Aurora.Managing.FaultTolerance
1877
1878
  # @option options [String] :timezone
1878
1879
  # The time zone of the DB instance. The time zone parameter is currently
1879
- # supported only by [Microsoft SQL Server][1].
1880
+ # supported only by [RDS for Db2][1] and [RDS for SQL Server][2].
1880
1881
  #
1881
1882
  #
1882
1883
  #
1883
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
1884
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-time-zone
1885
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
1884
1886
  # @option options [Boolean] :enable_iam_database_authentication
1885
1887
  # Specifies whether to enable mapping of Amazon Web Services Identity
1886
1888
  # and Access Management (IAM) accounts to database accounts. By default,
@@ -3077,7 +3079,7 @@ module Aws::RDS
3077
3079
  # change is applied during the next maintenance window, unless you
3078
3080
  # enable `ApplyImmediately`.
3079
3081
  #
3080
- # This parameter doesn't apply to RDS Custom DB instances.
3082
+ # This setting doesn't apply to RDS Custom DB instances.
3081
3083
  #
3082
3084
  # Constraints:
3083
3085
  #
@@ -3760,6 +3762,12 @@ module Aws::RDS
3760
3762
  # default, deletion protection isn't enabled. For more information, see
3761
3763
  # [ Deleting a DB Instance][1].
3762
3764
  #
3765
+ # This setting doesn't apply to Amazon Aurora DB instances. You can
3766
+ # enable or disable deletion protection for the DB cluster. For more
3767
+ # information, see `ModifyDBCluster`. DB instances in a DB cluster can
3768
+ # be deleted even when deletion protection is enabled for the DB
3769
+ # cluster.
3770
+ #
3763
3771
  #
3764
3772
  #
3765
3773
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
@@ -1964,11 +1964,12 @@ module Aws::RDS
1964
1964
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.AuroraHighAvailability.html#Aurora.Managing.FaultTolerance
1965
1965
  # @option options [String] :timezone
1966
1966
  # The time zone of the DB instance. The time zone parameter is currently
1967
- # supported only by [Microsoft SQL Server][1].
1967
+ # supported only by [RDS for Db2][1] and [RDS for SQL Server][2].
1968
1968
  #
1969
1969
  #
1970
1970
  #
1971
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
1971
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-time-zone
1972
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
1972
1973
  # @option options [Boolean] :enable_iam_database_authentication
1973
1974
  # Specifies whether to enable mapping of Amazon Web Services Identity
1974
1975
  # and Access Management (IAM) accounts to database accounts. By default,
@@ -4186,11 +4186,13 @@ module Aws::RDS
4186
4186
  #
4187
4187
  # @!attribute [rw] timezone
4188
4188
  # The time zone of the DB instance. The time zone parameter is
4189
- # currently supported only by [Microsoft SQL Server][1].
4189
+ # currently supported only by [RDS for Db2][1] and [RDS for SQL
4190
+ # Server][2].
4190
4191
  #
4191
4192
  #
4192
4193
  #
4193
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
4194
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-time-zone
4195
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
4194
4196
  # @return [String]
4195
4197
  #
4196
4198
  # @!attribute [rw] enable_iam_database_authentication
@@ -8244,6 +8246,11 @@ module Aws::RDS
8244
8246
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
8245
8247
  # @return [String]
8246
8248
  #
8249
+ # @!attribute [rw] supports_limitless_database
8250
+ # Indicates whether the DB engine version supports Aurora Limitless
8251
+ # Database.
8252
+ # @return [Boolean]
8253
+ #
8247
8254
  # @!attribute [rw] supports_certificate_rotation_without_restart
8248
8255
  # Indicates whether the engine version supports rotating the server
8249
8256
  # certificate without rebooting the DB instance.
@@ -8309,6 +8316,7 @@ module Aws::RDS
8309
8316
  :tag_list,
8310
8317
  :supports_babelfish,
8311
8318
  :custom_db_engine_version_manifest,
8319
+ :supports_limitless_database,
8312
8320
  :supports_certificate_rotation_without_restart,
8313
8321
  :supported_ca_certificate_identifiers,
8314
8322
  :supports_local_write_forwarding,
@@ -8659,8 +8667,9 @@ module Aws::RDS
8659
8667
  #
8660
8668
  # @!attribute [rw] timezone
8661
8669
  # The time zone of the DB instance. In most cases, the `Timezone`
8662
- # element is empty. `Timezone` content appears only for Microsoft SQL
8663
- # Server DB instances that were created with a time zone specified.
8670
+ # element is empty. `Timezone` content appears only for RDS for Db2
8671
+ # and RDS for SQL Server DB instances that were created with a time
8672
+ # zone specified.
8664
8673
  # @return [String]
8665
8674
  #
8666
8675
  # @!attribute [rw] iam_database_authentication_enabled
@@ -17817,7 +17826,7 @@ module Aws::RDS
17817
17826
  # change is applied during the next maintenance window, unless you
17818
17827
  # enable `ApplyImmediately`.
17819
17828
  #
17820
- # This parameter doesn't apply to RDS Custom DB instances.
17829
+ # This setting doesn't apply to RDS Custom DB instances.
17821
17830
  #
17822
17831
  # Constraints:
17823
17832
  #
@@ -18593,6 +18602,12 @@ module Aws::RDS
18593
18602
  # By default, deletion protection isn't enabled. For more
18594
18603
  # information, see [ Deleting a DB Instance][1].
18595
18604
  #
18605
+ # This setting doesn't apply to Amazon Aurora DB instances. You can
18606
+ # enable or disable deletion protection for the DB cluster. For more
18607
+ # information, see `ModifyDBCluster`. DB instances in a DB cluster can
18608
+ # be deleted even when deletion protection is enabled for the DB
18609
+ # cluster.
18610
+ #
18596
18611
  #
18597
18612
  #
18598
18613
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
@@ -27053,6 +27068,11 @@ module Aws::RDS
27053
27068
  # the target engine version.
27054
27069
  # @return [Boolean]
27055
27070
  #
27071
+ # @!attribute [rw] supports_limitless_database
27072
+ # Indicates whether the DB engine version supports Aurora Limitless
27073
+ # Database.
27074
+ # @return [Boolean]
27075
+ #
27056
27076
  # @!attribute [rw] supports_local_write_forwarding
27057
27077
  # Indicates whether the target engine version supports forwarding
27058
27078
  # write operations from reader DB instances to the writer DB instance
@@ -27079,6 +27099,7 @@ module Aws::RDS
27079
27099
  :supports_parallel_query,
27080
27100
  :supports_global_databases,
27081
27101
  :supports_babelfish,
27102
+ :supports_limitless_database,
27082
27103
  :supports_local_write_forwarding,
27083
27104
  :supports_integrations)
27084
27105
  SENSITIVE = []
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.227.0'
81
+ GEM_VERSION = '1.229.0'
82
82
 
83
83
  end
data/sig/client.rbs CHANGED
@@ -332,6 +332,7 @@ module Aws
332
332
  def tag_list: () -> ::Array[Types::Tag]
333
333
  def supports_babelfish: () -> bool
334
334
  def custom_db_engine_version_manifest: () -> ::String
335
+ def supports_limitless_database: () -> bool
335
336
  def supports_certificate_rotation_without_restart: () -> bool
336
337
  def supported_ca_certificate_identifiers: () -> ::Array[::String]
337
338
  def supports_local_write_forwarding: () -> bool
@@ -946,6 +947,7 @@ module Aws
946
947
  def tag_list: () -> ::Array[Types::Tag]
947
948
  def supports_babelfish: () -> bool
948
949
  def custom_db_engine_version_manifest: () -> ::String
950
+ def supports_limitless_database: () -> bool
949
951
  def supports_certificate_rotation_without_restart: () -> bool
950
952
  def supported_ca_certificate_identifiers: () -> ::Array[::String]
951
953
  def supports_local_write_forwarding: () -> bool
@@ -2206,6 +2208,7 @@ module Aws
2206
2208
  def tag_list: () -> ::Array[Types::Tag]
2207
2209
  def supports_babelfish: () -> bool
2208
2210
  def custom_db_engine_version_manifest: () -> ::String
2211
+ def supports_limitless_database: () -> bool
2209
2212
  def supports_certificate_rotation_without_restart: () -> bool
2210
2213
  def supported_ca_certificate_identifiers: () -> ::Array[::String]
2211
2214
  def supports_local_write_forwarding: () -> bool
@@ -102,6 +102,9 @@ module Aws
102
102
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#custom_db_engine_version_manifest-instance_method
103
103
  def custom_db_engine_version_manifest: () -> ::String
104
104
 
105
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_limitless_database-instance_method
106
+ def supports_limitless_database: () -> bool
107
+
105
108
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_certificate_rotation_without_restart-instance_method
106
109
  def supports_certificate_rotation_without_restart: () -> bool
107
110
 
data/sig/types.rbs CHANGED
@@ -1084,6 +1084,7 @@ module Aws::RDS
1084
1084
  attr_accessor tag_list: ::Array[Types::Tag]
1085
1085
  attr_accessor supports_babelfish: bool
1086
1086
  attr_accessor custom_db_engine_version_manifest: ::String
1087
+ attr_accessor supports_limitless_database: bool
1087
1088
  attr_accessor supports_certificate_rotation_without_restart: bool
1088
1089
  attr_accessor supported_ca_certificate_identifiers: ::Array[::String]
1089
1090
  attr_accessor supports_local_write_forwarding: bool
@@ -4246,6 +4247,7 @@ module Aws::RDS
4246
4247
  attr_accessor supports_parallel_query: bool
4247
4248
  attr_accessor supports_global_databases: bool
4248
4249
  attr_accessor supports_babelfish: bool
4250
+ attr_accessor supports_limitless_database: bool
4249
4251
  attr_accessor supports_local_write_forwarding: bool
4250
4252
  attr_accessor supports_integrations: bool
4251
4253
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.227.0
4
+ version: 1.229.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: 2024-04-23 00:00:00.000000000 Z
11
+ date: 2024-04-26 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.191.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement