aws-sdk-rds 1.167.0 → 1.168.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 +31 -55
- data/lib/aws-sdk-rds/client_api.rb +15 -3
- data/lib/aws-sdk-rds/db_engine_version.rb +13 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/types.rb +42 -0
- 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: e032a077907a1b84f7bbfd6a89aedac33bbe1d4279cb65ed0b9b39602e92e4ac
|
|
4
|
+
data.tar.gz: 8157c7bee18a42901725506f08d431b0569dfa0b2e05387aed7c2cf036360efe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7ccbba1a5e326cf6412f08e4999b0fec2faa7717aee7be186eb1b262a01d78ebdec3e693a69ef83f592fabac38b0b31c876a091a6c9ca5f18b75cabe1f19240
|
|
7
|
+
data.tar.gz: 4b09fbcb8926f9b47267d5ff365c2af4234c866b3a4cb56f229a037efeb5c1524358b892ce3e6c7abc00cc63968b43c4926b011a93f7538969e49f99cf457e54
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.168.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -1918,54 +1918,7 @@ module Aws::RDS
|
|
|
1918
1918
|
req.send_request(options)
|
|
1919
1919
|
end
|
|
1920
1920
|
|
|
1921
|
-
# Creates a custom DB engine version (CEV).
|
|
1922
|
-
# snapshot of a database engine and specific AMI. The supported engines
|
|
1923
|
-
# are the following:
|
|
1924
|
-
#
|
|
1925
|
-
# * Oracle Database 12.1 Enterprise Edition with the January 2021 or
|
|
1926
|
-
# later RU/RUR
|
|
1927
|
-
#
|
|
1928
|
-
# * Oracle Database 19c Enterprise Edition with the January 2021 or
|
|
1929
|
-
# later RU/RUR
|
|
1930
|
-
#
|
|
1931
|
-
# Amazon RDS, which is a fully managed service, supplies the Amazon
|
|
1932
|
-
# Machine Image (AMI) and database software. The Amazon RDS database
|
|
1933
|
-
# software is preinstalled, so you need only select a DB engine and
|
|
1934
|
-
# version, and create your database. With Amazon RDS Custom for Oracle,
|
|
1935
|
-
# you upload your database installation files in Amazon S3.
|
|
1936
|
-
#
|
|
1937
|
-
# When you create a custom engine version, you specify the files in a
|
|
1938
|
-
# JSON document called a CEV manifest. This document describes
|
|
1939
|
-
# installation .zip files stored in Amazon S3. RDS Custom creates your
|
|
1940
|
-
# CEV from the installation files that you provided. This service model
|
|
1941
|
-
# is called Bring Your Own Media (BYOM).
|
|
1942
|
-
#
|
|
1943
|
-
# Creation takes approximately two hours. If creation fails, RDS Custom
|
|
1944
|
-
# issues `RDS-EVENT-0196` with the message `Creation failed for custom
|
|
1945
|
-
# engine version`, and includes details about the failure. For example,
|
|
1946
|
-
# the event prints missing files.
|
|
1947
|
-
#
|
|
1948
|
-
# After you create the CEV, it is available for use. You can create
|
|
1949
|
-
# multiple CEVs, and create multiple RDS Custom instances from any CEV.
|
|
1950
|
-
# You can also change the status of a CEV to make it available or
|
|
1951
|
-
# inactive.
|
|
1952
|
-
#
|
|
1953
|
-
# <note markdown="1"> The MediaImport service that imports files from Amazon S3 to create
|
|
1954
|
-
# CEVs isn't integrated with Amazon Web Services CloudTrail. If you
|
|
1955
|
-
# turn on data logging for Amazon RDS in CloudTrail, calls to the
|
|
1956
|
-
# `CreateCustomDbEngineVersion` event aren't logged. However, you might
|
|
1957
|
-
# see calls from the API gateway that accesses your Amazon S3 bucket.
|
|
1958
|
-
# These calls originate from the MediaImport service for the
|
|
1959
|
-
# `CreateCustomDbEngineVersion` event.
|
|
1960
|
-
#
|
|
1961
|
-
# </note>
|
|
1962
|
-
#
|
|
1963
|
-
# For more information, see [ Creating a CEV][1] in the *Amazon RDS User
|
|
1964
|
-
# Guide*.
|
|
1965
|
-
#
|
|
1966
|
-
#
|
|
1967
|
-
#
|
|
1968
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.create
|
|
1921
|
+
# Creates a custom DB engine version (CEV).
|
|
1969
1922
|
#
|
|
1970
1923
|
# @option params [required, String] :engine
|
|
1971
1924
|
# The database engine to use for your custom engine version (CEV). The
|
|
@@ -1978,7 +1931,7 @@ module Aws::RDS
|
|
|
1978
1931
|
# combination of `Engine` and `EngineVersion` is unique per customer per
|
|
1979
1932
|
# Region.
|
|
1980
1933
|
#
|
|
1981
|
-
# @option params [
|
|
1934
|
+
# @option params [String] :database_installation_files_s3_bucket_name
|
|
1982
1935
|
# The name of an Amazon S3 bucket that contains database installation
|
|
1983
1936
|
# files for your CEV. For example, a valid bucket name is
|
|
1984
1937
|
# `my-custom-installation-files`.
|
|
@@ -1988,7 +1941,11 @@ module Aws::RDS
|
|
|
1988
1941
|
# for your CEV. For example, a valid bucket name is `123456789012/cev1`.
|
|
1989
1942
|
# If this setting isn't specified, no prefix is assumed.
|
|
1990
1943
|
#
|
|
1991
|
-
# @option params [
|
|
1944
|
+
# @option params [String] :image_id
|
|
1945
|
+
# The ID of the AMI. An AMI ID is required to create a CEV for RDS
|
|
1946
|
+
# Custom for SQL Server.
|
|
1947
|
+
#
|
|
1948
|
+
# @option params [String] :kms_key_id
|
|
1992
1949
|
# The Amazon Web Services KMS key identifier for an encrypted CEV. A
|
|
1993
1950
|
# symmetric encryption KMS key is required for RDS Custom, but optional
|
|
1994
1951
|
# for Amazon RDS.
|
|
@@ -2010,7 +1967,7 @@ module Aws::RDS
|
|
|
2010
1967
|
# @option params [String] :description
|
|
2011
1968
|
# An optional description of your CEV.
|
|
2012
1969
|
#
|
|
2013
|
-
# @option params [
|
|
1970
|
+
# @option params [String] :manifest
|
|
2014
1971
|
# The CEV manifest, which is a JSON document that describes the
|
|
2015
1972
|
# installation .zip files stored in Amazon S3. Specify the name/value
|
|
2016
1973
|
# pairs in a file or a quoted string. RDS Custom applies the patches in
|
|
@@ -2062,6 +2019,8 @@ module Aws::RDS
|
|
|
2062
2019
|
# * {Types::DBEngineVersion#db_engine_description #db_engine_description} => String
|
|
2063
2020
|
# * {Types::DBEngineVersion#db_engine_version_description #db_engine_version_description} => String
|
|
2064
2021
|
# * {Types::DBEngineVersion#default_character_set #default_character_set} => Types::CharacterSet
|
|
2022
|
+
# * {Types::DBEngineVersion#image #image} => Types::CustomDBEngineVersionAMI
|
|
2023
|
+
# * {Types::DBEngineVersion#db_engine_media_type #db_engine_media_type} => String
|
|
2065
2024
|
# * {Types::DBEngineVersion#supported_character_sets #supported_character_sets} => Array<Types::CharacterSet>
|
|
2066
2025
|
# * {Types::DBEngineVersion#supported_nchar_character_sets #supported_nchar_character_sets} => Array<Types::CharacterSet>
|
|
2067
2026
|
# * {Types::DBEngineVersion#valid_upgrade_target #valid_upgrade_target} => Array<Types::UpgradeTarget>
|
|
@@ -2089,11 +2048,12 @@ module Aws::RDS
|
|
|
2089
2048
|
# resp = client.create_custom_db_engine_version({
|
|
2090
2049
|
# engine: "CustomEngineName", # required
|
|
2091
2050
|
# engine_version: "CustomEngineVersion", # required
|
|
2092
|
-
# database_installation_files_s3_bucket_name: "BucketName",
|
|
2051
|
+
# database_installation_files_s3_bucket_name: "BucketName",
|
|
2093
2052
|
# database_installation_files_s3_prefix: "String255",
|
|
2094
|
-
#
|
|
2053
|
+
# image_id: "String255",
|
|
2054
|
+
# kms_key_id: "KmsKeyIdOrArn",
|
|
2095
2055
|
# description: "Description",
|
|
2096
|
-
# manifest: "CustomDBEngineVersionManifest",
|
|
2056
|
+
# manifest: "CustomDBEngineVersionManifest",
|
|
2097
2057
|
# tags: [
|
|
2098
2058
|
# {
|
|
2099
2059
|
# key: "String",
|
|
@@ -2111,6 +2071,9 @@ module Aws::RDS
|
|
|
2111
2071
|
# resp.db_engine_version_description #=> String
|
|
2112
2072
|
# resp.default_character_set.character_set_name #=> String
|
|
2113
2073
|
# resp.default_character_set.character_set_description #=> String
|
|
2074
|
+
# resp.image.image_id #=> String
|
|
2075
|
+
# resp.image.status #=> String
|
|
2076
|
+
# resp.db_engine_media_type #=> String
|
|
2114
2077
|
# resp.supported_character_sets #=> Array
|
|
2115
2078
|
# resp.supported_character_sets[0].character_set_name #=> String
|
|
2116
2079
|
# resp.supported_character_sets[0].character_set_description #=> String
|
|
@@ -7027,6 +6990,8 @@ module Aws::RDS
|
|
|
7027
6990
|
# * {Types::DBEngineVersion#db_engine_description #db_engine_description} => String
|
|
7028
6991
|
# * {Types::DBEngineVersion#db_engine_version_description #db_engine_version_description} => String
|
|
7029
6992
|
# * {Types::DBEngineVersion#default_character_set #default_character_set} => Types::CharacterSet
|
|
6993
|
+
# * {Types::DBEngineVersion#image #image} => Types::CustomDBEngineVersionAMI
|
|
6994
|
+
# * {Types::DBEngineVersion#db_engine_media_type #db_engine_media_type} => String
|
|
7030
6995
|
# * {Types::DBEngineVersion#supported_character_sets #supported_character_sets} => Array<Types::CharacterSet>
|
|
7031
6996
|
# * {Types::DBEngineVersion#supported_nchar_character_sets #supported_nchar_character_sets} => Array<Types::CharacterSet>
|
|
7032
6997
|
# * {Types::DBEngineVersion#valid_upgrade_target #valid_upgrade_target} => Array<Types::UpgradeTarget>
|
|
@@ -7065,6 +7030,9 @@ module Aws::RDS
|
|
|
7065
7030
|
# resp.db_engine_version_description #=> String
|
|
7066
7031
|
# resp.default_character_set.character_set_name #=> String
|
|
7067
7032
|
# resp.default_character_set.character_set_description #=> String
|
|
7033
|
+
# resp.image.image_id #=> String
|
|
7034
|
+
# resp.image.status #=> String
|
|
7035
|
+
# resp.db_engine_media_type #=> String
|
|
7068
7036
|
# resp.supported_character_sets #=> Array
|
|
7069
7037
|
# resp.supported_character_sets[0].character_set_name #=> String
|
|
7070
7038
|
# resp.supported_character_sets[0].character_set_description #=> String
|
|
@@ -9733,6 +9701,9 @@ module Aws::RDS
|
|
|
9733
9701
|
# resp.db_engine_versions[0].db_engine_version_description #=> String
|
|
9734
9702
|
# resp.db_engine_versions[0].default_character_set.character_set_name #=> String
|
|
9735
9703
|
# resp.db_engine_versions[0].default_character_set.character_set_description #=> String
|
|
9704
|
+
# resp.db_engine_versions[0].image.image_id #=> String
|
|
9705
|
+
# resp.db_engine_versions[0].image.status #=> String
|
|
9706
|
+
# resp.db_engine_versions[0].db_engine_media_type #=> String
|
|
9736
9707
|
# resp.db_engine_versions[0].supported_character_sets #=> Array
|
|
9737
9708
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_name #=> String
|
|
9738
9709
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_description #=> String
|
|
@@ -13837,6 +13808,8 @@ module Aws::RDS
|
|
|
13837
13808
|
# * {Types::DBEngineVersion#db_engine_description #db_engine_description} => String
|
|
13838
13809
|
# * {Types::DBEngineVersion#db_engine_version_description #db_engine_version_description} => String
|
|
13839
13810
|
# * {Types::DBEngineVersion#default_character_set #default_character_set} => Types::CharacterSet
|
|
13811
|
+
# * {Types::DBEngineVersion#image #image} => Types::CustomDBEngineVersionAMI
|
|
13812
|
+
# * {Types::DBEngineVersion#db_engine_media_type #db_engine_media_type} => String
|
|
13840
13813
|
# * {Types::DBEngineVersion#supported_character_sets #supported_character_sets} => Array<Types::CharacterSet>
|
|
13841
13814
|
# * {Types::DBEngineVersion#supported_nchar_character_sets #supported_nchar_character_sets} => Array<Types::CharacterSet>
|
|
13842
13815
|
# * {Types::DBEngineVersion#valid_upgrade_target #valid_upgrade_target} => Array<Types::UpgradeTarget>
|
|
@@ -13877,6 +13850,9 @@ module Aws::RDS
|
|
|
13877
13850
|
# resp.db_engine_version_description #=> String
|
|
13878
13851
|
# resp.default_character_set.character_set_name #=> String
|
|
13879
13852
|
# resp.default_character_set.character_set_description #=> String
|
|
13853
|
+
# resp.image.image_id #=> String
|
|
13854
|
+
# resp.image.status #=> String
|
|
13855
|
+
# resp.db_engine_media_type #=> String
|
|
13880
13856
|
# resp.supported_character_sets #=> Array
|
|
13881
13857
|
# resp.supported_character_sets[0].character_set_name #=> String
|
|
13882
13858
|
# resp.supported_character_sets[0].character_set_description #=> String
|
|
@@ -24167,7 +24143,7 @@ module Aws::RDS
|
|
|
24167
24143
|
params: params,
|
|
24168
24144
|
config: config)
|
|
24169
24145
|
context[:gem_name] = 'aws-sdk-rds'
|
|
24170
|
-
context[:gem_version] = '1.
|
|
24146
|
+
context[:gem_version] = '1.168.0'
|
|
24171
24147
|
Seahorse::Client::Request.new(handlers, context)
|
|
24172
24148
|
end
|
|
24173
24149
|
|
|
@@ -114,6 +114,7 @@ module Aws::RDS
|
|
|
114
114
|
CreateOptionGroupMessage = Shapes::StructureShape.new(name: 'CreateOptionGroupMessage')
|
|
115
115
|
CreateOptionGroupResult = Shapes::StructureShape.new(name: 'CreateOptionGroupResult')
|
|
116
116
|
CustomAvailabilityZoneNotFoundFault = Shapes::StructureShape.new(name: 'CustomAvailabilityZoneNotFoundFault')
|
|
117
|
+
CustomDBEngineVersionAMI = Shapes::StructureShape.new(name: 'CustomDBEngineVersionAMI')
|
|
117
118
|
CustomDBEngineVersionAlreadyExistsFault = Shapes::StructureShape.new(name: 'CustomDBEngineVersionAlreadyExistsFault')
|
|
118
119
|
CustomDBEngineVersionManifest = Shapes::StringShape.new(name: 'CustomDBEngineVersionManifest')
|
|
119
120
|
CustomDBEngineVersionNotFoundFault = Shapes::StructureShape.new(name: 'CustomDBEngineVersionNotFoundFault')
|
|
@@ -337,6 +338,7 @@ module Aws::RDS
|
|
|
337
338
|
DownloadDBLogFilePortionMessage = Shapes::StructureShape.new(name: 'DownloadDBLogFilePortionMessage')
|
|
338
339
|
EC2SecurityGroup = Shapes::StructureShape.new(name: 'EC2SecurityGroup')
|
|
339
340
|
EC2SecurityGroupList = Shapes::ListShape.new(name: 'EC2SecurityGroupList')
|
|
341
|
+
Ec2ImagePropertiesNotSupportedFault = Shapes::StructureShape.new(name: 'Ec2ImagePropertiesNotSupportedFault')
|
|
340
342
|
Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
|
|
341
343
|
EngineDefaults = Shapes::StructureShape.new(name: 'EngineDefaults')
|
|
342
344
|
EngineFamily = Shapes::StringShape.new(name: 'EngineFamily')
|
|
@@ -869,11 +871,12 @@ module Aws::RDS
|
|
|
869
871
|
|
|
870
872
|
CreateCustomDBEngineVersionMessage.add_member(:engine, Shapes::ShapeRef.new(shape: CustomEngineName, required: true, location_name: "Engine"))
|
|
871
873
|
CreateCustomDBEngineVersionMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: CustomEngineVersion, required: true, location_name: "EngineVersion"))
|
|
872
|
-
CreateCustomDBEngineVersionMessage.add_member(:database_installation_files_s3_bucket_name, Shapes::ShapeRef.new(shape: BucketName,
|
|
874
|
+
CreateCustomDBEngineVersionMessage.add_member(:database_installation_files_s3_bucket_name, Shapes::ShapeRef.new(shape: BucketName, location_name: "DatabaseInstallationFilesS3BucketName"))
|
|
873
875
|
CreateCustomDBEngineVersionMessage.add_member(:database_installation_files_s3_prefix, Shapes::ShapeRef.new(shape: String255, location_name: "DatabaseInstallationFilesS3Prefix"))
|
|
874
|
-
CreateCustomDBEngineVersionMessage.add_member(:
|
|
876
|
+
CreateCustomDBEngineVersionMessage.add_member(:image_id, Shapes::ShapeRef.new(shape: String255, location_name: "ImageId"))
|
|
877
|
+
CreateCustomDBEngineVersionMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyIdOrArn, location_name: "KMSKeyId"))
|
|
875
878
|
CreateCustomDBEngineVersionMessage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
876
|
-
CreateCustomDBEngineVersionMessage.add_member(:manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest,
|
|
879
|
+
CreateCustomDBEngineVersionMessage.add_member(:manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, location_name: "Manifest"))
|
|
877
880
|
CreateCustomDBEngineVersionMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
878
881
|
CreateCustomDBEngineVersionMessage.struct_class = Types::CreateCustomDBEngineVersionMessage
|
|
879
882
|
|
|
@@ -1154,6 +1157,10 @@ module Aws::RDS
|
|
|
1154
1157
|
|
|
1155
1158
|
CustomAvailabilityZoneNotFoundFault.struct_class = Types::CustomAvailabilityZoneNotFoundFault
|
|
1156
1159
|
|
|
1160
|
+
CustomDBEngineVersionAMI.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "ImageId"))
|
|
1161
|
+
CustomDBEngineVersionAMI.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
|
1162
|
+
CustomDBEngineVersionAMI.struct_class = Types::CustomDBEngineVersionAMI
|
|
1163
|
+
|
|
1157
1164
|
CustomDBEngineVersionAlreadyExistsFault.struct_class = Types::CustomDBEngineVersionAlreadyExistsFault
|
|
1158
1165
|
|
|
1159
1166
|
CustomDBEngineVersionNotFoundFault.struct_class = Types::CustomDBEngineVersionNotFoundFault
|
|
@@ -1391,6 +1398,8 @@ module Aws::RDS
|
|
|
1391
1398
|
DBEngineVersion.add_member(:db_engine_description, Shapes::ShapeRef.new(shape: String, location_name: "DBEngineDescription"))
|
|
1392
1399
|
DBEngineVersion.add_member(:db_engine_version_description, Shapes::ShapeRef.new(shape: String, location_name: "DBEngineVersionDescription"))
|
|
1393
1400
|
DBEngineVersion.add_member(:default_character_set, Shapes::ShapeRef.new(shape: CharacterSet, location_name: "DefaultCharacterSet"))
|
|
1401
|
+
DBEngineVersion.add_member(:image, Shapes::ShapeRef.new(shape: CustomDBEngineVersionAMI, location_name: "Image"))
|
|
1402
|
+
DBEngineVersion.add_member(:db_engine_media_type, Shapes::ShapeRef.new(shape: String, location_name: "DBEngineMediaType"))
|
|
1394
1403
|
DBEngineVersion.add_member(:supported_character_sets, Shapes::ShapeRef.new(shape: SupportedCharacterSetsList, location_name: "SupportedCharacterSets"))
|
|
1395
1404
|
DBEngineVersion.add_member(:supported_nchar_character_sets, Shapes::ShapeRef.new(shape: SupportedCharacterSetsList, location_name: "SupportedNcharCharacterSets"))
|
|
1396
1405
|
DBEngineVersion.add_member(:valid_upgrade_target, Shapes::ShapeRef.new(shape: ValidUpgradeTargetList, location_name: "ValidUpgradeTarget"))
|
|
@@ -2249,6 +2258,8 @@ module Aws::RDS
|
|
|
2249
2258
|
|
|
2250
2259
|
EC2SecurityGroupList.member = Shapes::ShapeRef.new(shape: EC2SecurityGroup, location_name: "EC2SecurityGroup")
|
|
2251
2260
|
|
|
2261
|
+
Ec2ImagePropertiesNotSupportedFault.struct_class = Types::Ec2ImagePropertiesNotSupportedFault
|
|
2262
|
+
|
|
2252
2263
|
Endpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "Address"))
|
|
2253
2264
|
Endpoint.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "Port"))
|
|
2254
2265
|
Endpoint.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "HostedZoneId"))
|
|
@@ -3824,6 +3835,7 @@ module Aws::RDS
|
|
|
3824
3835
|
o.output = Shapes::ShapeRef.new(shape: DBEngineVersion)
|
|
3825
3836
|
o.errors << Shapes::ShapeRef.new(shape: CustomDBEngineVersionAlreadyExistsFault)
|
|
3826
3837
|
o.errors << Shapes::ShapeRef.new(shape: CustomDBEngineVersionQuotaExceededFault)
|
|
3838
|
+
o.errors << Shapes::ShapeRef.new(shape: Ec2ImagePropertiesNotSupportedFault)
|
|
3827
3839
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
|
3828
3840
|
end)
|
|
3829
3841
|
|
|
@@ -70,6 +70,19 @@ module Aws::RDS
|
|
|
70
70
|
data[:default_character_set]
|
|
71
71
|
end
|
|
72
72
|
|
|
73
|
+
# The EC2 image
|
|
74
|
+
# @return [Types::CustomDBEngineVersionAMI]
|
|
75
|
+
def image
|
|
76
|
+
data[:image]
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# A value that indicates the source media provider of the AMI based on
|
|
80
|
+
# the usage operation. Applicable for RDS Custom for SQL Server.
|
|
81
|
+
# @return [String]
|
|
82
|
+
def db_engine_media_type
|
|
83
|
+
data[:db_engine_media_type]
|
|
84
|
+
end
|
|
85
|
+
|
|
73
86
|
# A list of the character sets supported by this engine for the
|
|
74
87
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
|
75
88
|
# @return [Array<Types::CharacterSet>]
|
data/lib/aws-sdk-rds/errors.rb
CHANGED
|
@@ -85,6 +85,7 @@ module Aws::RDS
|
|
|
85
85
|
# * {DBSubnetQuotaExceededFault}
|
|
86
86
|
# * {DBUpgradeDependencyFailureFault}
|
|
87
87
|
# * {DomainNotFoundFault}
|
|
88
|
+
# * {Ec2ImagePropertiesNotSupportedFault}
|
|
88
89
|
# * {EventSubscriptionQuotaExceededFault}
|
|
89
90
|
# * {ExportTaskAlreadyExistsFault}
|
|
90
91
|
# * {ExportTaskNotFoundFault}
|
|
@@ -737,6 +738,16 @@ module Aws::RDS
|
|
|
737
738
|
end
|
|
738
739
|
end
|
|
739
740
|
|
|
741
|
+
class Ec2ImagePropertiesNotSupportedFault < ServiceError
|
|
742
|
+
|
|
743
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
744
|
+
# @param [String] message
|
|
745
|
+
# @param [Aws::RDS::Types::Ec2ImagePropertiesNotSupportedFault] data
|
|
746
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
747
|
+
super(context, message, data)
|
|
748
|
+
end
|
|
749
|
+
end
|
|
750
|
+
|
|
740
751
|
class EventSubscriptionQuotaExceededFault < ServiceError
|
|
741
752
|
|
|
742
753
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -1753,6 +1753,11 @@ module Aws::RDS
|
|
|
1753
1753
|
# assumed.
|
|
1754
1754
|
# @return [String]
|
|
1755
1755
|
#
|
|
1756
|
+
# @!attribute [rw] image_id
|
|
1757
|
+
# The ID of the AMI. An AMI ID is required to create a CEV for RDS
|
|
1758
|
+
# Custom for SQL Server.
|
|
1759
|
+
# @return [String]
|
|
1760
|
+
#
|
|
1756
1761
|
# @!attribute [rw] kms_key_id
|
|
1757
1762
|
# The Amazon Web Services KMS key identifier for an encrypted CEV. A
|
|
1758
1763
|
# symmetric encryption KMS key is required for RDS Custom, but
|
|
@@ -1831,6 +1836,7 @@ module Aws::RDS
|
|
|
1831
1836
|
:engine_version,
|
|
1832
1837
|
:database_installation_files_s3_bucket_name,
|
|
1833
1838
|
:database_installation_files_s3_prefix,
|
|
1839
|
+
:image_id,
|
|
1834
1840
|
:kms_key_id,
|
|
1835
1841
|
:description,
|
|
1836
1842
|
:manifest,
|
|
@@ -5669,6 +5675,25 @@ module Aws::RDS
|
|
|
5669
5675
|
#
|
|
5670
5676
|
class CustomAvailabilityZoneNotFoundFault < Aws::EmptyStructure; end
|
|
5671
5677
|
|
|
5678
|
+
# A value that indicates the AMI information.
|
|
5679
|
+
#
|
|
5680
|
+
# @!attribute [rw] image_id
|
|
5681
|
+
# A value that indicates the ID of the AMI.
|
|
5682
|
+
# @return [String]
|
|
5683
|
+
#
|
|
5684
|
+
# @!attribute [rw] status
|
|
5685
|
+
# A value that indicates the status of a custom engine version (CEV).
|
|
5686
|
+
# @return [String]
|
|
5687
|
+
#
|
|
5688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomDBEngineVersionAMI AWS API Documentation
|
|
5689
|
+
#
|
|
5690
|
+
class CustomDBEngineVersionAMI < Struct.new(
|
|
5691
|
+
:image_id,
|
|
5692
|
+
:status)
|
|
5693
|
+
SENSITIVE = []
|
|
5694
|
+
include Aws::Structure
|
|
5695
|
+
end
|
|
5696
|
+
|
|
5672
5697
|
# A CEV with the specified name already exists.
|
|
5673
5698
|
#
|
|
5674
5699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomDBEngineVersionAlreadyExistsFault AWS API Documentation
|
|
@@ -7088,6 +7113,15 @@ module Aws::RDS
|
|
|
7088
7113
|
# isn't specified.
|
|
7089
7114
|
# @return [Types::CharacterSet]
|
|
7090
7115
|
#
|
|
7116
|
+
# @!attribute [rw] image
|
|
7117
|
+
# The EC2 image
|
|
7118
|
+
# @return [Types::CustomDBEngineVersionAMI]
|
|
7119
|
+
#
|
|
7120
|
+
# @!attribute [rw] db_engine_media_type
|
|
7121
|
+
# A value that indicates the source media provider of the AMI based on
|
|
7122
|
+
# the usage operation. Applicable for RDS Custom for SQL Server.
|
|
7123
|
+
# @return [String]
|
|
7124
|
+
#
|
|
7091
7125
|
# @!attribute [rw] supported_character_sets
|
|
7092
7126
|
# A list of the character sets supported by this engine for the
|
|
7093
7127
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
|
@@ -7229,6 +7263,8 @@ module Aws::RDS
|
|
|
7229
7263
|
:db_engine_description,
|
|
7230
7264
|
:db_engine_version_description,
|
|
7231
7265
|
:default_character_set,
|
|
7266
|
+
:image,
|
|
7267
|
+
:db_engine_media_type,
|
|
7232
7268
|
:supported_character_sets,
|
|
7233
7269
|
:supported_nchar_character_sets,
|
|
7234
7270
|
:valid_upgrade_target,
|
|
@@ -12826,6 +12862,12 @@ module Aws::RDS
|
|
|
12826
12862
|
include Aws::Structure
|
|
12827
12863
|
end
|
|
12828
12864
|
|
|
12865
|
+
# The AMI configuration prerequisite has not been met.
|
|
12866
|
+
#
|
|
12867
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Ec2ImagePropertiesNotSupportedFault AWS API Documentation
|
|
12868
|
+
#
|
|
12869
|
+
class Ec2ImagePropertiesNotSupportedFault < Aws::EmptyStructure; end
|
|
12870
|
+
|
|
12829
12871
|
# This data type represents the information you need to connect to an
|
|
12830
12872
|
# Amazon RDS DB instance. This data type is used as a response element
|
|
12831
12873
|
# in the following actions:
|
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.168.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-12-
|
|
11
|
+
date: 2022-12-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|