aws-sdk-rds 1.201.0 → 1.202.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +9 -3
- data/lib/aws-sdk-rds/types.rb +8 -2
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10f7ab814d6f8fbce4383061f8725bc1a0ebc5b91595bc2521ca80887cdc70f5
|
|
4
|
+
data.tar.gz: 14f22881c7e9eebfb8aa41e777fdc93083b135534e6eb45df6a7bda157b3143e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3f254df666c95193982088033b5de23973e7f33c31332092f1235604a99386c9627dd962ec3e62866dc660cd0b80bb5445ec4e152ea61b618544667378ca1f0
|
|
7
|
+
data.tar.gz: 3a0bbbad8486c86a707f429251971a41b43c23bcb1b0d4ec2ebb3abc4b8c0b46157a98cbe35e2ca5e39d7c0fb0f873c772c390a8dc8d1ee123ddc3015045ba54
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.202.0 (2023-11-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This Amazon RDS release adds support for patching the OS of an RDS Custom for Oracle DB instance. You can now upgrade the database or operating system using the modify-db-instance command.
|
|
8
|
+
|
|
4
9
|
1.201.0 (2023-11-07)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.202.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -2317,10 +2317,16 @@ module Aws::RDS
|
|
|
2317
2317
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
|
2318
2318
|
#
|
|
2319
2319
|
# @option params [String] :source_custom_db_engine_version_identifier
|
|
2320
|
-
#
|
|
2320
|
+
# The ARN of a CEV to use as a source for creating a new CEV. You can
|
|
2321
|
+
# specify a different Amazon Machine Imagine (AMI) by using either
|
|
2322
|
+
# `Source` or `UseAwsProvidedLatestImage`. You can't specify a
|
|
2323
|
+
# different JSON manifest when you specify
|
|
2324
|
+
# `SourceCustomDbEngineVersionIdentifier`.
|
|
2321
2325
|
#
|
|
2322
2326
|
# @option params [Boolean] :use_aws_provided_latest_image
|
|
2323
|
-
#
|
|
2327
|
+
# Specifies whether to use the latest service-provided Amazon Machine
|
|
2328
|
+
# Image (AMI) for the CEV. If you specify `UseAwsProvidedLatestImage`,
|
|
2329
|
+
# you can't also specify `ImageId`.
|
|
2324
2330
|
#
|
|
2325
2331
|
# @return [Types::DBEngineVersion] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2326
2332
|
#
|
|
@@ -29353,7 +29359,7 @@ module Aws::RDS
|
|
|
29353
29359
|
params: params,
|
|
29354
29360
|
config: config)
|
|
29355
29361
|
context[:gem_name] = 'aws-sdk-rds'
|
|
29356
|
-
context[:gem_version] = '1.
|
|
29362
|
+
context[:gem_version] = '1.202.0'
|
|
29357
29363
|
Seahorse::Client::Request.new(handlers, context)
|
|
29358
29364
|
end
|
|
29359
29365
|
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -1933,11 +1933,17 @@ module Aws::RDS
|
|
|
1933
1933
|
# @return [Array<Types::Tag>]
|
|
1934
1934
|
#
|
|
1935
1935
|
# @!attribute [rw] source_custom_db_engine_version_identifier
|
|
1936
|
-
#
|
|
1936
|
+
# The ARN of a CEV to use as a source for creating a new CEV. You can
|
|
1937
|
+
# specify a different Amazon Machine Imagine (AMI) by using either
|
|
1938
|
+
# `Source` or `UseAwsProvidedLatestImage`. You can't specify a
|
|
1939
|
+
# different JSON manifest when you specify
|
|
1940
|
+
# `SourceCustomDbEngineVersionIdentifier`.
|
|
1937
1941
|
# @return [String]
|
|
1938
1942
|
#
|
|
1939
1943
|
# @!attribute [rw] use_aws_provided_latest_image
|
|
1940
|
-
#
|
|
1944
|
+
# Specifies whether to use the latest service-provided Amazon Machine
|
|
1945
|
+
# Image (AMI) for the CEV. If you specify `UseAwsProvidedLatestImage`,
|
|
1946
|
+
# you can't also specify `ImageId`.
|
|
1941
1947
|
# @return [Boolean]
|
|
1942
1948
|
#
|
|
1943
1949
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersionMessage AWS API Documentation
|
data/lib/aws-sdk-rds.rb
CHANGED
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.
|
|
4
|
+
version: 1.202.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: 2023-11-
|
|
11
|
+
date: 2023-11-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|