aws-sdk-rds 1.227.0 → 1.228.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: 90f761d312e751bbae373225cffbde063b0e1a4e63017b56329b89763254d6ae
4
- data.tar.gz: c68296c6a0b401ae40840250318201544a84f96620f3c6127a6b70e69a7ee083
3
+ metadata.gz: 7a1ea6f5ef5a11ab26113c98e8ff94119a74506c6fc71471df1d2c601b273cd2
4
+ data.tar.gz: cdb92fdd52a6c6b70cb73c2379e468b50787aec715f8f44ba8ea3edcba128608
5
5
  SHA512:
6
- metadata.gz: d004eab37902a40a153fd79a1978dd69845bbada044db74fb88cceac9c7502de425572bc2b1d4391509e38dcef47f5a03c65c82cea81e7fd63ac77ff4be85921
7
- data.tar.gz: 39429317c90eb46e5b4e62c6a7983ae49ba5c313cf199be4db18024bceec76f8f8c0bd9e7ed85462ea2c0e5a99758df877bdc9c79043128161fa19433a0ca159
6
+ metadata.gz: f484bd8e059e40fd95217f6479e45093abdc7cf4bfa19c3d9b7daf1e85e5839df096b299d79d5e37653e42da3cc38c1a62226876154546e39af9a99971fd7005
7
+ data.tar.gz: 60e15894dc6d7ce63605028644d2a31000a352cd3538520ad27cd54ee9f3b52cffff43e7490397b56c02dde7c7ad06b2844674d1a4559debfa1e49e06ac37fd6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.228.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Updates Amazon RDS documentation for setting local time zones for RDS for Db2 DB instances.
8
+
4
9
  1.227.0 (2024-04-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.227.0
1
+ 1.228.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
@@ -5081,11 +5105,12 @@ module Aws::RDS
5081
5105
  #
5082
5106
  # @option params [String] :timezone
5083
5107
  # The time zone of the DB instance. The time zone parameter is currently
5084
- # supported only by [Microsoft SQL Server][1].
5108
+ # supported only by [RDS for Db2][1] and [RDS for SQL Server][2].
5085
5109
  #
5086
5110
  #
5087
5111
  #
5088
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
5112
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-time-zone
5113
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
5089
5114
  #
5090
5115
  # @option params [Boolean] :enable_iam_database_authentication
5091
5116
  # Specifies whether to enable mapping of Amazon Web Services Identity
@@ -19741,7 +19766,7 @@ module Aws::RDS
19741
19766
  # change is applied during the next maintenance window, unless you
19742
19767
  # enable `ApplyImmediately`.
19743
19768
  #
19744
- # This parameter doesn't apply to RDS Custom DB instances.
19769
+ # This setting doesn't apply to RDS Custom DB instances.
19745
19770
  #
19746
19771
  # Constraints:
19747
19772
  #
@@ -20465,6 +20490,12 @@ module Aws::RDS
20465
20490
  # default, deletion protection isn't enabled. For more information, see
20466
20491
  # [ Deleting a DB Instance][1].
20467
20492
  #
20493
+ # This setting doesn't apply to Amazon Aurora DB instances. You can
20494
+ # enable or disable deletion protection for the DB cluster. For more
20495
+ # information, see `ModifyDBCluster`. DB instances in a DB cluster can
20496
+ # be deleted even when deletion protection is enabled for the DB
20497
+ # cluster.
20498
+ #
20468
20499
  #
20469
20500
  #
20470
20501
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
@@ -30770,7 +30801,7 @@ module Aws::RDS
30770
30801
  params: params,
30771
30802
  config: config)
30772
30803
  context[:gem_name] = 'aws-sdk-rds'
30773
- context[:gem_version] = '1.227.0'
30804
+ context[:gem_version] = '1.228.0'
30774
30805
  Seahorse::Client::Request.new(handlers, context)
30775
30806
  end
30776
30807
 
@@ -4308,6 +4308,7 @@ module Aws::RDS
4308
4308
  "apiVersion" => "2014-10-31",
4309
4309
  "endpointPrefix" => "rds",
4310
4310
  "protocol" => "query",
4311
+ "protocols" => ["query"],
4311
4312
  "serviceAbbreviation" => "Amazon RDS",
4312
4313
  "serviceFullName" => "Amazon Relational Database Service",
4313
4314
  "serviceId" => "RDS",
@@ -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
@@ -8659,8 +8661,9 @@ module Aws::RDS
8659
8661
  #
8660
8662
  # @!attribute [rw] timezone
8661
8663
  # 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.
8664
+ # element is empty. `Timezone` content appears only for RDS for Db2
8665
+ # and RDS for SQL Server DB instances that were created with a time
8666
+ # zone specified.
8664
8667
  # @return [String]
8665
8668
  #
8666
8669
  # @!attribute [rw] iam_database_authentication_enabled
@@ -17817,7 +17820,7 @@ module Aws::RDS
17817
17820
  # change is applied during the next maintenance window, unless you
17818
17821
  # enable `ApplyImmediately`.
17819
17822
  #
17820
- # This parameter doesn't apply to RDS Custom DB instances.
17823
+ # This setting doesn't apply to RDS Custom DB instances.
17821
17824
  #
17822
17825
  # Constraints:
17823
17826
  #
@@ -18593,6 +18596,12 @@ module Aws::RDS
18593
18596
  # By default, deletion protection isn't enabled. For more
18594
18597
  # information, see [ Deleting a DB Instance][1].
18595
18598
  #
18599
+ # This setting doesn't apply to Amazon Aurora DB instances. You can
18600
+ # enable or disable deletion protection for the DB cluster. For more
18601
+ # information, see `ModifyDBCluster`. DB instances in a DB cluster can
18602
+ # be deleted even when deletion protection is enabled for the DB
18603
+ # cluster.
18604
+ #
18596
18605
  #
18597
18606
  #
18598
18607
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
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.228.0'
82
82
 
83
83
  end
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.228.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-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.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