aws-sdk-rds 1.314.0 → 1.316.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +78 -21
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -8
- data/lib/aws-sdk-rds/db_instance.rb +20 -11
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +4 -1
- data/lib/aws-sdk-rds/option_group.rb +2 -0
- data/lib/aws-sdk-rds/resource.rb +14 -1
- data/lib/aws-sdk-rds/types.rb +95 -31
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 901393f1bdfbdc184117d4674c25efc41683db3df0e7f4c2f0ea396e4acdd30f
|
|
4
|
+
data.tar.gz: 248be2ae61ce43220a39f395803f96c468ba8e73d9a68a6bf3bb72d63c2a9417
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 379ebc5e1dae606332a795903c8630466744f6339094e4fd8fbae16668422bf1271a391fa06696eb126b2230560b98828e0df4e34ead6cbead3af86ad9683f06
|
|
7
|
+
data.tar.gz: f05562bf000a77d37c219e99bdec0993b486bfc635ef2aa69f9563cc0c6bae2b283c489276e9fa1024b1f87952a78697f6403471c1fdd7f4d1632c62278a8eb1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.316.0 (2026-06-15)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding support for RDS SQL Server BYOM and DB2 Community Edition
|
|
8
|
+
|
|
9
|
+
1.315.0 (2026-06-03)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
13
|
+
|
|
4
14
|
1.314.0 (2026-05-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.316.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -2447,11 +2447,17 @@ module Aws::RDS
|
|
|
2447
2447
|
#
|
|
2448
2448
|
# * `custom-sqlserver-se`
|
|
2449
2449
|
#
|
|
2450
|
-
# * `
|
|
2450
|
+
# * `custom-sqlserver-web`
|
|
2451
2451
|
#
|
|
2452
2452
|
# * `custom-sqlserver-dev`
|
|
2453
2453
|
#
|
|
2454
|
-
# RDS for SQL Server supports
|
|
2454
|
+
# RDS for SQL Server supports the following values:
|
|
2455
|
+
#
|
|
2456
|
+
# * `sqlserver-ee` (Bring Your Own Media)
|
|
2457
|
+
#
|
|
2458
|
+
# * `sqlserver-se` (Bring Your Own Media)
|
|
2459
|
+
#
|
|
2460
|
+
# * `sqlserver-dev-ee`
|
|
2455
2461
|
#
|
|
2456
2462
|
# @option params [required, String] :engine_version
|
|
2457
2463
|
# The name of your custom engine version (CEV).
|
|
@@ -2460,10 +2466,15 @@ module Aws::RDS
|
|
|
2460
2466
|
# `19.*customized_string*`. For example, a valid CEV name is
|
|
2461
2467
|
# `19.my_cev1`.
|
|
2462
2468
|
#
|
|
2463
|
-
# For RDS for SQL Server and RDS
|
|
2464
|
-
#
|
|
2469
|
+
# For RDS Custom for SQL Server and RDS for SQL Server
|
|
2470
|
+
# `sqlserver-dev-ee`, the name format is
|
|
2471
|
+
# `*major_engine_version*.*minor_engine_version*.*customized_string*`.
|
|
2465
2472
|
# For example, a valid CEV name is `16.00.4215.2.my_cev1`.
|
|
2466
2473
|
#
|
|
2474
|
+
# For RDS for SQL Server Bring Your Own Media (`sqlserver-ee`,
|
|
2475
|
+
# `sqlserver-se`), specify the RDS engine version that you want to use.
|
|
2476
|
+
# For example, `16.00.4175.1.v1`.
|
|
2477
|
+
#
|
|
2467
2478
|
# The CEV name is unique per customer per Amazon Web Services Regions.
|
|
2468
2479
|
#
|
|
2469
2480
|
# @option params [String] :database_installation_files_s3_bucket_name
|
|
@@ -2480,6 +2491,10 @@ module Aws::RDS
|
|
|
2480
2491
|
# The database installation files (ISO and EXE) uploaded to Amazon S3
|
|
2481
2492
|
# for your database engine version to import to Amazon RDS.
|
|
2482
2493
|
#
|
|
2494
|
+
# For RDS for SQL Server Bring Your Own Media (`sqlserver-ee`,
|
|
2495
|
+
# `sqlserver-se`), provide the SQL Server RTM ISO file once per major
|
|
2496
|
+
# version and edition combination. Minor versions reuse the same file.
|
|
2497
|
+
#
|
|
2483
2498
|
# @option params [String] :image_id
|
|
2484
2499
|
# The ID of the Amazon Machine Image (AMI). For RDS Custom for SQL
|
|
2485
2500
|
# Server, an AMI ID is required to create a CEV. For RDS Custom for
|
|
@@ -4914,6 +4929,8 @@ module Aws::RDS
|
|
|
4914
4929
|
#
|
|
4915
4930
|
# * `db2-ae`
|
|
4916
4931
|
#
|
|
4932
|
+
# * `db2-ce`
|
|
4933
|
+
#
|
|
4917
4934
|
# * `db2-se`
|
|
4918
4935
|
#
|
|
4919
4936
|
# * `mariadb`
|
|
@@ -5269,7 +5286,8 @@ module Aws::RDS
|
|
|
5269
5286
|
#
|
|
5270
5287
|
# * RDS for MariaDB - `general-public-license`
|
|
5271
5288
|
#
|
|
5272
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
5289
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
5290
|
+
# bring-your-own-media`
|
|
5273
5291
|
#
|
|
5274
5292
|
# * RDS for MySQL - `general-public-license`
|
|
5275
5293
|
#
|
|
@@ -6921,10 +6939,11 @@ module Aws::RDS
|
|
|
6921
6939
|
#
|
|
6922
6940
|
# Db2
|
|
6923
6941
|
#
|
|
6924
|
-
# : Standby DB replicas are included in Db2 Advanced Edition (AE)
|
|
6925
|
-
# Db2 Standard Edition (SE). The main use
|
|
6926
|
-
# cross-Region disaster recovery. Because
|
|
6927
|
-
# connections, a standby replica can't serve
|
|
6942
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE), Db2
|
|
6943
|
+
# Community Edition (CE), and Db2 Standard Edition (SE). The main use
|
|
6944
|
+
# case for standby replicas is cross-Region disaster recovery. Because
|
|
6945
|
+
# it doesn't accept user connections, a standby replica can't serve
|
|
6946
|
+
# a read-only workload.
|
|
6928
6947
|
#
|
|
6929
6948
|
# You can create a combination of standby and read-only DB replicas
|
|
6930
6949
|
# for the same primary DB instance. For more information, see [Working
|
|
@@ -7477,6 +7496,8 @@ module Aws::RDS
|
|
|
7477
7496
|
#
|
|
7478
7497
|
# * `db2-ae`
|
|
7479
7498
|
#
|
|
7499
|
+
# * `db2-ce`
|
|
7500
|
+
#
|
|
7480
7501
|
# * `db2-se`
|
|
7481
7502
|
#
|
|
7482
7503
|
# * `mysql`
|
|
@@ -8948,6 +8969,8 @@ module Aws::RDS
|
|
|
8948
8969
|
#
|
|
8949
8970
|
# * `db2-ae`
|
|
8950
8971
|
#
|
|
8972
|
+
# * `db2-ce`
|
|
8973
|
+
#
|
|
8951
8974
|
# * `db2-se`
|
|
8952
8975
|
#
|
|
8953
8976
|
# * `mariadb`
|
|
@@ -9480,11 +9503,17 @@ module Aws::RDS
|
|
|
9480
9503
|
#
|
|
9481
9504
|
# * `custom-sqlserver-se`
|
|
9482
9505
|
#
|
|
9483
|
-
# * `
|
|
9506
|
+
# * `custom-sqlserver-web`
|
|
9484
9507
|
#
|
|
9485
9508
|
# * `custom-sqlserver-dev`
|
|
9486
9509
|
#
|
|
9487
|
-
# RDS for SQL Server supports
|
|
9510
|
+
# RDS for SQL Server supports the following values:
|
|
9511
|
+
#
|
|
9512
|
+
# * `sqlserver-ee` (Bring Your Own Media)
|
|
9513
|
+
#
|
|
9514
|
+
# * `sqlserver-se` (Bring Your Own Media)
|
|
9515
|
+
#
|
|
9516
|
+
# * `sqlserver-dev-ee`
|
|
9488
9517
|
#
|
|
9489
9518
|
# @option params [required, String] :engine_version
|
|
9490
9519
|
# The custom engine version (CEV) for your DB instance. This option is
|
|
@@ -13504,6 +13533,8 @@ module Aws::RDS
|
|
|
13504
13533
|
#
|
|
13505
13534
|
# * `db2-ae`
|
|
13506
13535
|
#
|
|
13536
|
+
# * `db2-ce`
|
|
13537
|
+
#
|
|
13507
13538
|
# * `db2-se`
|
|
13508
13539
|
#
|
|
13509
13540
|
# * `mariadb`
|
|
@@ -13528,6 +13559,8 @@ module Aws::RDS
|
|
|
13528
13559
|
#
|
|
13529
13560
|
# * `sqlserver-web`
|
|
13530
13561
|
#
|
|
13562
|
+
# * `sqlserver-dev-ee`
|
|
13563
|
+
#
|
|
13531
13564
|
# @option params [String] :engine_version
|
|
13532
13565
|
# A specific database engine version to return details for.
|
|
13533
13566
|
#
|
|
@@ -14406,6 +14439,8 @@ module Aws::RDS
|
|
|
14406
14439
|
#
|
|
14407
14440
|
# * `db2-ae`
|
|
14408
14441
|
#
|
|
14442
|
+
# * `db2-ce`
|
|
14443
|
+
#
|
|
14409
14444
|
# * `db2-se`
|
|
14410
14445
|
#
|
|
14411
14446
|
# * `mariadb`
|
|
@@ -16159,6 +16194,8 @@ module Aws::RDS
|
|
|
16159
16194
|
#
|
|
16160
16195
|
# * `db2-ae`
|
|
16161
16196
|
#
|
|
16197
|
+
# * `db2-ce`
|
|
16198
|
+
#
|
|
16162
16199
|
# * `db2-se`
|
|
16163
16200
|
#
|
|
16164
16201
|
# * `mariadb10.2`
|
|
@@ -17155,6 +17192,8 @@ module Aws::RDS
|
|
|
17155
17192
|
#
|
|
17156
17193
|
# * `db2-ae`
|
|
17157
17194
|
#
|
|
17195
|
+
# * `db2-ce`
|
|
17196
|
+
#
|
|
17158
17197
|
# * `db2-se`
|
|
17159
17198
|
#
|
|
17160
17199
|
# * `mariadb`
|
|
@@ -17353,6 +17392,8 @@ module Aws::RDS
|
|
|
17353
17392
|
#
|
|
17354
17393
|
# * `db2-ae`
|
|
17355
17394
|
#
|
|
17395
|
+
# * `db2-ce`
|
|
17396
|
+
#
|
|
17356
17397
|
# * `db2-se`
|
|
17357
17398
|
#
|
|
17358
17399
|
# * `mariadb`
|
|
@@ -17499,6 +17540,8 @@ module Aws::RDS
|
|
|
17499
17540
|
#
|
|
17500
17541
|
# * `db2-ae`
|
|
17501
17542
|
#
|
|
17543
|
+
# * `db2-ce`
|
|
17544
|
+
#
|
|
17502
17545
|
# * `db2-se`
|
|
17503
17546
|
#
|
|
17504
17547
|
# * `mariadb`
|
|
@@ -19704,11 +19747,17 @@ module Aws::RDS
|
|
|
19704
19747
|
#
|
|
19705
19748
|
# * `custom-sqlserver-se`
|
|
19706
19749
|
#
|
|
19707
|
-
# * `
|
|
19750
|
+
# * `custom-sqlserver-web`
|
|
19708
19751
|
#
|
|
19709
19752
|
# * `custom-sqlserver-dev`
|
|
19710
19753
|
#
|
|
19711
|
-
# RDS for SQL Server supports
|
|
19754
|
+
# RDS for SQL Server supports the following values:
|
|
19755
|
+
#
|
|
19756
|
+
# * `sqlserver-ee` (Bring Your Own Media)
|
|
19757
|
+
#
|
|
19758
|
+
# * `sqlserver-se` (Bring Your Own Media)
|
|
19759
|
+
#
|
|
19760
|
+
# * `sqlserver-dev-ee`
|
|
19712
19761
|
#
|
|
19713
19762
|
# @option params [required, String] :engine_version
|
|
19714
19763
|
# The custom engine version (CEV) that you want to modify. This option
|
|
@@ -21667,7 +21716,8 @@ module Aws::RDS
|
|
|
21667
21716
|
#
|
|
21668
21717
|
# * RDS for MariaDB - `general-public-license`
|
|
21669
21718
|
#
|
|
21670
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
21719
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
21720
|
+
# bring-your-own-media`
|
|
21671
21721
|
#
|
|
21672
21722
|
# * RDS for MySQL - `general-public-license`
|
|
21673
21723
|
#
|
|
@@ -22188,10 +22238,11 @@ module Aws::RDS
|
|
|
22188
22238
|
#
|
|
22189
22239
|
# Db2
|
|
22190
22240
|
#
|
|
22191
|
-
# : Standby DB replicas are included in Db2 Advanced Edition (AE)
|
|
22192
|
-
# Db2 Standard Edition (SE). The main use
|
|
22193
|
-
# cross-Region disaster recovery. Because
|
|
22194
|
-
# connections, a standby replica can't serve
|
|
22241
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE), Db2
|
|
22242
|
+
# Community Edition (CE), and Db2 Standard Edition (SE). The main use
|
|
22243
|
+
# case for standby replicas is cross-Region disaster recovery. Because
|
|
22244
|
+
# it doesn't accept user connections, a standby replica can't serve
|
|
22245
|
+
# a read-only workload.
|
|
22195
22246
|
#
|
|
22196
22247
|
# You can create a combination of standby and read-only DB replicas
|
|
22197
22248
|
# for the same primary DB instance. For more information, see [Working
|
|
@@ -29064,7 +29115,8 @@ module Aws::RDS
|
|
|
29064
29115
|
#
|
|
29065
29116
|
# * RDS for MariaDB - `general-public-license`
|
|
29066
29117
|
#
|
|
29067
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
29118
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
29119
|
+
# bring-your-own-media`
|
|
29068
29120
|
#
|
|
29069
29121
|
# * RDS for MySQL - `general-public-license`
|
|
29070
29122
|
#
|
|
@@ -29100,6 +29152,8 @@ module Aws::RDS
|
|
|
29100
29152
|
#
|
|
29101
29153
|
# * `db2-ae`
|
|
29102
29154
|
#
|
|
29155
|
+
# * `db2-ce`
|
|
29156
|
+
#
|
|
29103
29157
|
# * `db2-se`
|
|
29104
29158
|
#
|
|
29105
29159
|
# * `mariadb`
|
|
@@ -30996,7 +31050,8 @@ module Aws::RDS
|
|
|
30996
31050
|
#
|
|
30997
31051
|
# * RDS for MariaDB - `general-public-license`
|
|
30998
31052
|
#
|
|
30999
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
31053
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
31054
|
+
# bring-your-own-media`
|
|
31000
31055
|
#
|
|
31001
31056
|
# * RDS for MySQL - `general-public-license`
|
|
31002
31057
|
#
|
|
@@ -31032,6 +31087,8 @@ module Aws::RDS
|
|
|
31032
31087
|
#
|
|
31033
31088
|
# * `db2-ae`
|
|
31034
31089
|
#
|
|
31090
|
+
# * `db2-ce`
|
|
31091
|
+
#
|
|
31035
31092
|
# * `db2-se`
|
|
31036
31093
|
#
|
|
31037
31094
|
# * `mariadb`
|
|
@@ -34130,7 +34187,7 @@ module Aws::RDS
|
|
|
34130
34187
|
tracer: tracer
|
|
34131
34188
|
)
|
|
34132
34189
|
context[:gem_name] = 'aws-sdk-rds'
|
|
34133
|
-
context[:gem_version] = '1.
|
|
34190
|
+
context[:gem_version] = '1.316.0'
|
|
34134
34191
|
Seahorse::Client::Request.new(handlers, context)
|
|
34135
34192
|
end
|
|
34136
34193
|
|
|
@@ -64,9 +64,11 @@ module Aws::RDS
|
|
|
64
64
|
data[:database_installation_files_s3_prefix]
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
-
# The database installation files (ISO and EXE) uploaded to
|
|
68
|
-
#
|
|
69
|
-
# `sqlserver-
|
|
67
|
+
# The database installation files (ISO and EXE) that were uploaded to
|
|
68
|
+
# Amazon S3 and used to import the database engine version to Amazon
|
|
69
|
+
# RDS. Returned for RDS for SQL Server engine versions (`sqlserver-ee`,
|
|
70
|
+
# `sqlserver-se`, and `sqlserver-dev-ee`) created from customer-supplied
|
|
71
|
+
# installation media.
|
|
70
72
|
# @return [Array<String>]
|
|
71
73
|
def database_installation_files
|
|
72
74
|
data[:database_installation_files]
|
|
@@ -120,9 +122,10 @@ module Aws::RDS
|
|
|
120
122
|
data[:default_character_set]
|
|
121
123
|
end
|
|
122
124
|
|
|
123
|
-
# The reason that the custom engine version creation
|
|
124
|
-
# `
|
|
125
|
-
#
|
|
125
|
+
# The reason that the custom engine version creation failed with an
|
|
126
|
+
# `incompatible-installation-media` status. Applicable to RDS for SQL
|
|
127
|
+
# Server engine versions (`sqlserver-ee`, `sqlserver-se`, and
|
|
128
|
+
# `sqlserver-dev-ee`).
|
|
126
129
|
# @return [String]
|
|
127
130
|
def failure_reason
|
|
128
131
|
data[:failure_reason]
|
|
@@ -134,8 +137,13 @@ module Aws::RDS
|
|
|
134
137
|
data[:image]
|
|
135
138
|
end
|
|
136
139
|
|
|
137
|
-
#
|
|
138
|
-
#
|
|
140
|
+
# The source of the installation media for this engine version. A value
|
|
141
|
+
# of `Customer Provided` indicates that the engine version was created
|
|
142
|
+
# from customer-supplied installation media using
|
|
143
|
+
# `CreateCustomDBEngineVersion`. Applicable to RDS Custom for SQL Server
|
|
144
|
+
# and to RDS for SQL Server engine versions (`sqlserver-ee` and
|
|
145
|
+
# `sqlserver-se` with the `bring-your-own-media` license model, and
|
|
146
|
+
# `sqlserver-dev-ee`).
|
|
139
147
|
# @return [String]
|
|
140
148
|
def db_engine_media_type
|
|
141
149
|
data[:db_engine_media_type]
|
|
@@ -1388,6 +1388,8 @@ module Aws::RDS
|
|
|
1388
1388
|
#
|
|
1389
1389
|
# * `db2-ae`
|
|
1390
1390
|
#
|
|
1391
|
+
# * `db2-ce`
|
|
1392
|
+
#
|
|
1391
1393
|
# * `db2-se`
|
|
1392
1394
|
#
|
|
1393
1395
|
# * `mariadb`
|
|
@@ -1728,7 +1730,8 @@ module Aws::RDS
|
|
|
1728
1730
|
#
|
|
1729
1731
|
# * RDS for MariaDB - `general-public-license`
|
|
1730
1732
|
#
|
|
1731
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
1733
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
1734
|
+
# bring-your-own-media`
|
|
1732
1735
|
#
|
|
1733
1736
|
# * RDS for MySQL - `general-public-license`
|
|
1734
1737
|
#
|
|
@@ -2919,10 +2922,11 @@ module Aws::RDS
|
|
|
2919
2922
|
#
|
|
2920
2923
|
# Db2
|
|
2921
2924
|
#
|
|
2922
|
-
# : Standby DB replicas are included in Db2 Advanced Edition (AE)
|
|
2923
|
-
# Db2 Standard Edition (SE). The main use
|
|
2924
|
-
# cross-Region disaster recovery. Because
|
|
2925
|
-
# connections, a standby replica can't serve
|
|
2925
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE), Db2
|
|
2926
|
+
# Community Edition (CE), and Db2 Standard Edition (SE). The main use
|
|
2927
|
+
# case for standby replicas is cross-Region disaster recovery. Because
|
|
2928
|
+
# it doesn't accept user connections, a standby replica can't serve
|
|
2929
|
+
# a read-only workload.
|
|
2926
2930
|
#
|
|
2927
2931
|
# You can create a combination of standby and read-only DB replicas
|
|
2928
2932
|
# for the same primary DB instance. For more information, see [Working
|
|
@@ -3699,7 +3703,8 @@ module Aws::RDS
|
|
|
3699
3703
|
#
|
|
3700
3704
|
# * RDS for MariaDB - `general-public-license`
|
|
3701
3705
|
#
|
|
3702
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
3706
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
3707
|
+
# bring-your-own-media`
|
|
3703
3708
|
#
|
|
3704
3709
|
# * RDS for MySQL - `general-public-license`
|
|
3705
3710
|
#
|
|
@@ -4187,10 +4192,11 @@ module Aws::RDS
|
|
|
4187
4192
|
#
|
|
4188
4193
|
# Db2
|
|
4189
4194
|
#
|
|
4190
|
-
# : Standby DB replicas are included in Db2 Advanced Edition (AE)
|
|
4191
|
-
# Db2 Standard Edition (SE). The main use
|
|
4192
|
-
# cross-Region disaster recovery. Because
|
|
4193
|
-
# connections, a standby replica can't serve
|
|
4195
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE), Db2
|
|
4196
|
+
# Community Edition (CE), and Db2 Standard Edition (SE). The main use
|
|
4197
|
+
# case for standby replicas is cross-Region disaster recovery. Because
|
|
4198
|
+
# it doesn't accept user connections, a standby replica can't serve
|
|
4199
|
+
# a read-only workload.
|
|
4194
4200
|
#
|
|
4195
4201
|
# You can create a combination of standby and read-only DB replicas
|
|
4196
4202
|
# for the same primary DB instance. For more information, see [Working
|
|
@@ -4770,7 +4776,8 @@ module Aws::RDS
|
|
|
4770
4776
|
#
|
|
4771
4777
|
# * RDS for MariaDB - `general-public-license`
|
|
4772
4778
|
#
|
|
4773
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
4779
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
4780
|
+
# bring-your-own-media`
|
|
4774
4781
|
#
|
|
4775
4782
|
# * RDS for MySQL - `general-public-license`
|
|
4776
4783
|
#
|
|
@@ -4804,6 +4811,8 @@ module Aws::RDS
|
|
|
4804
4811
|
#
|
|
4805
4812
|
# * `db2-ae`
|
|
4806
4813
|
#
|
|
4814
|
+
# * `db2-ce`
|
|
4815
|
+
#
|
|
4807
4816
|
# * `db2-se`
|
|
4808
4817
|
#
|
|
4809
4818
|
# * `mariadb`
|
|
@@ -915,7 +915,8 @@ module Aws::RDS
|
|
|
915
915
|
#
|
|
916
916
|
# * RDS for MariaDB - `general-public-license`
|
|
917
917
|
#
|
|
918
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
918
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
919
|
+
# bring-your-own-media`
|
|
919
920
|
#
|
|
920
921
|
# * RDS for MySQL - `general-public-license`
|
|
921
922
|
#
|
|
@@ -949,6 +950,8 @@ module Aws::RDS
|
|
|
949
950
|
#
|
|
950
951
|
# * `db2-ae`
|
|
951
952
|
#
|
|
953
|
+
# * `db2-ce`
|
|
954
|
+
#
|
|
952
955
|
# * `db2-se`
|
|
953
956
|
#
|
|
954
957
|
# * `mariadb`
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -1533,6 +1533,8 @@ module Aws::RDS
|
|
|
1533
1533
|
#
|
|
1534
1534
|
# * `db2-ae`
|
|
1535
1535
|
#
|
|
1536
|
+
# * `db2-ce`
|
|
1537
|
+
#
|
|
1536
1538
|
# * `db2-se`
|
|
1537
1539
|
#
|
|
1538
1540
|
# * `mariadb`
|
|
@@ -1873,7 +1875,8 @@ module Aws::RDS
|
|
|
1873
1875
|
#
|
|
1874
1876
|
# * RDS for MariaDB - `general-public-license`
|
|
1875
1877
|
#
|
|
1876
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
1878
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
1879
|
+
# bring-your-own-media`
|
|
1877
1880
|
#
|
|
1878
1881
|
# * RDS for MySQL - `general-public-license`
|
|
1879
1882
|
#
|
|
@@ -2570,6 +2573,8 @@ module Aws::RDS
|
|
|
2570
2573
|
#
|
|
2571
2574
|
# * `db2-ae`
|
|
2572
2575
|
#
|
|
2576
|
+
# * `db2-ce`
|
|
2577
|
+
#
|
|
2573
2578
|
# * `db2-se`
|
|
2574
2579
|
#
|
|
2575
2580
|
# * `mysql`
|
|
@@ -2845,6 +2850,8 @@ module Aws::RDS
|
|
|
2845
2850
|
#
|
|
2846
2851
|
# * `db2-ae`
|
|
2847
2852
|
#
|
|
2853
|
+
# * `db2-ce`
|
|
2854
|
+
#
|
|
2848
2855
|
# * `db2-se`
|
|
2849
2856
|
#
|
|
2850
2857
|
# * `mariadb`
|
|
@@ -3157,6 +3164,8 @@ module Aws::RDS
|
|
|
3157
3164
|
#
|
|
3158
3165
|
# * `db2-ae`
|
|
3159
3166
|
#
|
|
3167
|
+
# * `db2-ce`
|
|
3168
|
+
#
|
|
3160
3169
|
# * `db2-se`
|
|
3161
3170
|
#
|
|
3162
3171
|
# * `mariadb`
|
|
@@ -3180,6 +3189,8 @@ module Aws::RDS
|
|
|
3180
3189
|
# * `sqlserver-ex`
|
|
3181
3190
|
#
|
|
3182
3191
|
# * `sqlserver-web`
|
|
3192
|
+
#
|
|
3193
|
+
# * `sqlserver-dev-ee`
|
|
3183
3194
|
# @option options [String] :engine_version
|
|
3184
3195
|
# A specific database engine version to return details for.
|
|
3185
3196
|
#
|
|
@@ -3876,6 +3887,8 @@ module Aws::RDS
|
|
|
3876
3887
|
#
|
|
3877
3888
|
# * `db2-ae`
|
|
3878
3889
|
#
|
|
3890
|
+
# * `db2-ce`
|
|
3891
|
+
#
|
|
3879
3892
|
# * `db2-se`
|
|
3880
3893
|
#
|
|
3881
3894
|
# * `mariadb`
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -2207,11 +2207,17 @@ module Aws::RDS
|
|
|
2207
2207
|
#
|
|
2208
2208
|
# * `custom-sqlserver-se`
|
|
2209
2209
|
#
|
|
2210
|
-
# * `
|
|
2210
|
+
# * `custom-sqlserver-web`
|
|
2211
2211
|
#
|
|
2212
2212
|
# * `custom-sqlserver-dev`
|
|
2213
2213
|
#
|
|
2214
|
-
# RDS for SQL Server supports
|
|
2214
|
+
# RDS for SQL Server supports the following values:
|
|
2215
|
+
#
|
|
2216
|
+
# * `sqlserver-ee` (Bring Your Own Media)
|
|
2217
|
+
#
|
|
2218
|
+
# * `sqlserver-se` (Bring Your Own Media)
|
|
2219
|
+
#
|
|
2220
|
+
# * `sqlserver-dev-ee`
|
|
2215
2221
|
# @return [String]
|
|
2216
2222
|
#
|
|
2217
2223
|
# @!attribute [rw] engine_version
|
|
@@ -2221,10 +2227,14 @@ module Aws::RDS
|
|
|
2221
2227
|
# `19.*customized_string*`. For example, a valid CEV name is
|
|
2222
2228
|
# `19.my_cev1`.
|
|
2223
2229
|
#
|
|
2224
|
-
# For RDS for SQL Server and RDS
|
|
2225
|
-
# format is
|
|
2226
|
-
#
|
|
2227
|
-
# example, a valid CEV name is `16.00.4215.2.my_cev1`.
|
|
2230
|
+
# For RDS Custom for SQL Server and RDS for SQL Server
|
|
2231
|
+
# `sqlserver-dev-ee`, the name format is
|
|
2232
|
+
# `*major_engine_version*.*minor_engine_version*.*customized_string*`.
|
|
2233
|
+
# For example, a valid CEV name is `16.00.4215.2.my_cev1`.
|
|
2234
|
+
#
|
|
2235
|
+
# For RDS for SQL Server Bring Your Own Media (`sqlserver-ee`,
|
|
2236
|
+
# `sqlserver-se`), specify the RDS engine version that you want to
|
|
2237
|
+
# use. For example, `16.00.4175.1.v1`.
|
|
2228
2238
|
#
|
|
2229
2239
|
# The CEV name is unique per customer per Amazon Web Services Regions.
|
|
2230
2240
|
# @return [String]
|
|
@@ -2245,6 +2255,10 @@ module Aws::RDS
|
|
|
2245
2255
|
# @!attribute [rw] database_installation_files
|
|
2246
2256
|
# The database installation files (ISO and EXE) uploaded to Amazon S3
|
|
2247
2257
|
# for your database engine version to import to Amazon RDS.
|
|
2258
|
+
#
|
|
2259
|
+
# For RDS for SQL Server Bring Your Own Media (`sqlserver-ee`,
|
|
2260
|
+
# `sqlserver-se`), provide the SQL Server RTM ISO file once per major
|
|
2261
|
+
# version and edition combination. Minor versions reuse the same file.
|
|
2248
2262
|
# @return [Array<String>]
|
|
2249
2263
|
#
|
|
2250
2264
|
# @!attribute [rw] image_id
|
|
@@ -4010,6 +4024,8 @@ module Aws::RDS
|
|
|
4010
4024
|
#
|
|
4011
4025
|
# * `db2-ae`
|
|
4012
4026
|
#
|
|
4027
|
+
# * `db2-ce`
|
|
4028
|
+
#
|
|
4013
4029
|
# * `db2-se`
|
|
4014
4030
|
#
|
|
4015
4031
|
# * `mariadb`
|
|
@@ -4382,7 +4398,8 @@ module Aws::RDS
|
|
|
4382
4398
|
#
|
|
4383
4399
|
# * RDS for MariaDB - `general-public-license`
|
|
4384
4400
|
#
|
|
4385
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
4401
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
4402
|
+
# bring-your-own-media`
|
|
4386
4403
|
#
|
|
4387
4404
|
# * RDS for MySQL - `general-public-license`
|
|
4388
4405
|
#
|
|
@@ -5784,10 +5801,11 @@ module Aws::RDS
|
|
|
5784
5801
|
#
|
|
5785
5802
|
# Db2
|
|
5786
5803
|
#
|
|
5787
|
-
# : Standby DB replicas are included in Db2 Advanced Edition (AE)
|
|
5788
|
-
# Db2 Standard Edition (SE). The main
|
|
5789
|
-
# is cross-Region disaster recovery.
|
|
5790
|
-
#
|
|
5804
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE), Db2
|
|
5805
|
+
# Community Edition (CE), and Db2 Standard Edition (SE). The main
|
|
5806
|
+
# use case for standby replicas is cross-Region disaster recovery.
|
|
5807
|
+
# Because it doesn't accept user connections, a standby replica
|
|
5808
|
+
# can't serve a read-only workload.
|
|
5791
5809
|
#
|
|
5792
5810
|
# You can create a combination of standby and read-only DB replicas
|
|
5793
5811
|
# for the same primary DB instance. For more information, see
|
|
@@ -6140,6 +6158,8 @@ module Aws::RDS
|
|
|
6140
6158
|
#
|
|
6141
6159
|
# * `db2-ae`
|
|
6142
6160
|
#
|
|
6161
|
+
# * `db2-ce`
|
|
6162
|
+
#
|
|
6143
6163
|
# * `db2-se`
|
|
6144
6164
|
#
|
|
6145
6165
|
# * `mysql`
|
|
@@ -7077,6 +7097,8 @@ module Aws::RDS
|
|
|
7077
7097
|
#
|
|
7078
7098
|
# * `db2-ae`
|
|
7079
7099
|
#
|
|
7100
|
+
# * `db2-ce`
|
|
7101
|
+
#
|
|
7080
7102
|
# * `db2-se`
|
|
7081
7103
|
#
|
|
7082
7104
|
# * `mariadb`
|
|
@@ -9175,9 +9197,11 @@ module Aws::RDS
|
|
|
9175
9197
|
# @return [String]
|
|
9176
9198
|
#
|
|
9177
9199
|
# @!attribute [rw] database_installation_files
|
|
9178
|
-
# The database installation files (ISO and EXE) uploaded to
|
|
9179
|
-
#
|
|
9180
|
-
# for
|
|
9200
|
+
# The database installation files (ISO and EXE) that were uploaded to
|
|
9201
|
+
# Amazon S3 and used to import the database engine version to Amazon
|
|
9202
|
+
# RDS. Returned for RDS for SQL Server engine versions
|
|
9203
|
+
# (`sqlserver-ee`, `sqlserver-se`, and `sqlserver-dev-ee`) created
|
|
9204
|
+
# from customer-supplied installation media.
|
|
9181
9205
|
# @return [Array<String>]
|
|
9182
9206
|
#
|
|
9183
9207
|
# @!attribute [rw] custom_db_engine_version_manifest
|
|
@@ -9217,9 +9241,10 @@ module Aws::RDS
|
|
|
9217
9241
|
# @return [Types::CharacterSet]
|
|
9218
9242
|
#
|
|
9219
9243
|
# @!attribute [rw] failure_reason
|
|
9220
|
-
# The reason that the custom engine version creation
|
|
9221
|
-
# `
|
|
9222
|
-
#
|
|
9244
|
+
# The reason that the custom engine version creation failed with an
|
|
9245
|
+
# `incompatible-installation-media` status. Applicable to RDS for SQL
|
|
9246
|
+
# Server engine versions (`sqlserver-ee`, `sqlserver-se`, and
|
|
9247
|
+
# `sqlserver-dev-ee`).
|
|
9223
9248
|
# @return [String]
|
|
9224
9249
|
#
|
|
9225
9250
|
# @!attribute [rw] image
|
|
@@ -9227,8 +9252,13 @@ module Aws::RDS
|
|
|
9227
9252
|
# @return [Types::CustomDBEngineVersionAMI]
|
|
9228
9253
|
#
|
|
9229
9254
|
# @!attribute [rw] db_engine_media_type
|
|
9230
|
-
#
|
|
9231
|
-
#
|
|
9255
|
+
# The source of the installation media for this engine version. A
|
|
9256
|
+
# value of `Customer Provided` indicates that the engine version was
|
|
9257
|
+
# created from customer-supplied installation media using
|
|
9258
|
+
# `CreateCustomDBEngineVersion`. Applicable to RDS Custom for SQL
|
|
9259
|
+
# Server and to RDS for SQL Server engine versions (`sqlserver-ee` and
|
|
9260
|
+
# `sqlserver-se` with the `bring-your-own-media` license model, and
|
|
9261
|
+
# `sqlserver-dev-ee`).
|
|
9232
9262
|
# @return [String]
|
|
9233
9263
|
#
|
|
9234
9264
|
# @!attribute [rw] kms_key_id
|
|
@@ -12397,11 +12427,17 @@ module Aws::RDS
|
|
|
12397
12427
|
#
|
|
12398
12428
|
# * `custom-sqlserver-se`
|
|
12399
12429
|
#
|
|
12400
|
-
# * `
|
|
12430
|
+
# * `custom-sqlserver-web`
|
|
12401
12431
|
#
|
|
12402
12432
|
# * `custom-sqlserver-dev`
|
|
12403
12433
|
#
|
|
12404
|
-
# RDS for SQL Server supports
|
|
12434
|
+
# RDS for SQL Server supports the following values:
|
|
12435
|
+
#
|
|
12436
|
+
# * `sqlserver-ee` (Bring Your Own Media)
|
|
12437
|
+
#
|
|
12438
|
+
# * `sqlserver-se` (Bring Your Own Media)
|
|
12439
|
+
#
|
|
12440
|
+
# * `sqlserver-dev-ee`
|
|
12405
12441
|
# @return [String]
|
|
12406
12442
|
#
|
|
12407
12443
|
# @!attribute [rw] engine_version
|
|
@@ -13779,6 +13815,8 @@ module Aws::RDS
|
|
|
13779
13815
|
#
|
|
13780
13816
|
# * `db2-ae`
|
|
13781
13817
|
#
|
|
13818
|
+
# * `db2-ce`
|
|
13819
|
+
#
|
|
13782
13820
|
# * `db2-se`
|
|
13783
13821
|
#
|
|
13784
13822
|
# * `mariadb`
|
|
@@ -13802,6 +13840,8 @@ module Aws::RDS
|
|
|
13802
13840
|
# * `sqlserver-ex`
|
|
13803
13841
|
#
|
|
13804
13842
|
# * `sqlserver-web`
|
|
13843
|
+
#
|
|
13844
|
+
# * `sqlserver-dev-ee`
|
|
13805
13845
|
# @return [String]
|
|
13806
13846
|
#
|
|
13807
13847
|
# @!attribute [rw] engine_version
|
|
@@ -14187,6 +14227,8 @@ module Aws::RDS
|
|
|
14187
14227
|
#
|
|
14188
14228
|
# * `db2-ae`
|
|
14189
14229
|
#
|
|
14230
|
+
# * `db2-ce`
|
|
14231
|
+
#
|
|
14190
14232
|
# * `db2-se`
|
|
14191
14233
|
#
|
|
14192
14234
|
# * `mariadb`
|
|
@@ -15223,6 +15265,8 @@ module Aws::RDS
|
|
|
15223
15265
|
#
|
|
15224
15266
|
# * `db2-ae`
|
|
15225
15267
|
#
|
|
15268
|
+
# * `db2-ce`
|
|
15269
|
+
#
|
|
15226
15270
|
# * `db2-se`
|
|
15227
15271
|
#
|
|
15228
15272
|
# * `mariadb10.2`
|
|
@@ -15713,6 +15757,8 @@ module Aws::RDS
|
|
|
15713
15757
|
#
|
|
15714
15758
|
# * `db2-ae`
|
|
15715
15759
|
#
|
|
15760
|
+
# * `db2-ce`
|
|
15761
|
+
#
|
|
15716
15762
|
# * `db2-se`
|
|
15717
15763
|
#
|
|
15718
15764
|
# * `mariadb`
|
|
@@ -15811,6 +15857,8 @@ module Aws::RDS
|
|
|
15811
15857
|
#
|
|
15812
15858
|
# * `db2-ae`
|
|
15813
15859
|
#
|
|
15860
|
+
# * `db2-ce`
|
|
15861
|
+
#
|
|
15814
15862
|
# * `db2-se`
|
|
15815
15863
|
#
|
|
15816
15864
|
# * `mariadb`
|
|
@@ -15874,6 +15922,8 @@ module Aws::RDS
|
|
|
15874
15922
|
#
|
|
15875
15923
|
# * `db2-ae`
|
|
15876
15924
|
#
|
|
15925
|
+
# * `db2-ce`
|
|
15926
|
+
#
|
|
15877
15927
|
# * `db2-se`
|
|
15878
15928
|
#
|
|
15879
15929
|
# * `mariadb`
|
|
@@ -18403,11 +18453,17 @@ module Aws::RDS
|
|
|
18403
18453
|
#
|
|
18404
18454
|
# * `custom-sqlserver-se`
|
|
18405
18455
|
#
|
|
18406
|
-
# * `
|
|
18456
|
+
# * `custom-sqlserver-web`
|
|
18407
18457
|
#
|
|
18408
18458
|
# * `custom-sqlserver-dev`
|
|
18409
18459
|
#
|
|
18410
|
-
# RDS for SQL Server supports
|
|
18460
|
+
# RDS for SQL Server supports the following values:
|
|
18461
|
+
#
|
|
18462
|
+
# * `sqlserver-ee` (Bring Your Own Media)
|
|
18463
|
+
#
|
|
18464
|
+
# * `sqlserver-se` (Bring Your Own Media)
|
|
18465
|
+
#
|
|
18466
|
+
# * `sqlserver-dev-ee`
|
|
18411
18467
|
# @return [String]
|
|
18412
18468
|
#
|
|
18413
18469
|
# @!attribute [rw] engine_version
|
|
@@ -19898,7 +19954,8 @@ module Aws::RDS
|
|
|
19898
19954
|
#
|
|
19899
19955
|
# * RDS for MariaDB - `general-public-license`
|
|
19900
19956
|
#
|
|
19901
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
19957
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
19958
|
+
# bring-your-own-media`
|
|
19902
19959
|
#
|
|
19903
19960
|
# * RDS for MySQL - `general-public-license`
|
|
19904
19961
|
#
|
|
@@ -20460,10 +20517,11 @@ module Aws::RDS
|
|
|
20460
20517
|
#
|
|
20461
20518
|
# Db2
|
|
20462
20519
|
#
|
|
20463
|
-
# : Standby DB replicas are included in Db2 Advanced Edition (AE)
|
|
20464
|
-
# Db2 Standard Edition (SE). The main
|
|
20465
|
-
# is cross-Region disaster recovery.
|
|
20466
|
-
#
|
|
20520
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE), Db2
|
|
20521
|
+
# Community Edition (CE), and Db2 Standard Edition (SE). The main
|
|
20522
|
+
# use case for standby replicas is cross-Region disaster recovery.
|
|
20523
|
+
# Because it doesn't accept user connections, a standby replica
|
|
20524
|
+
# can't serve a read-only workload.
|
|
20467
20525
|
#
|
|
20468
20526
|
# You can create a combination of standby and read-only DB replicas
|
|
20469
20527
|
# for the same primary DB instance. For more information, see
|
|
@@ -22777,7 +22835,7 @@ module Aws::RDS
|
|
|
22777
22835
|
# The license model for the DB instance.
|
|
22778
22836
|
#
|
|
22779
22837
|
# Valid values: `license-included` \| `bring-your-own-license` \|
|
|
22780
|
-
# `general-public-license`
|
|
22838
|
+
# `general-public-license` \| `bring-your-own-media`
|
|
22781
22839
|
# @return [String]
|
|
22782
22840
|
#
|
|
22783
22841
|
# @!attribute [rw] iops
|
|
@@ -26277,7 +26335,8 @@ module Aws::RDS
|
|
|
26277
26335
|
#
|
|
26278
26336
|
# * RDS for MariaDB - `general-public-license`
|
|
26279
26337
|
#
|
|
26280
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
26338
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
26339
|
+
# bring-your-own-media`
|
|
26281
26340
|
#
|
|
26282
26341
|
# * RDS for MySQL - `general-public-license`
|
|
26283
26342
|
#
|
|
@@ -26315,6 +26374,8 @@ module Aws::RDS
|
|
|
26315
26374
|
#
|
|
26316
26375
|
# * `db2-ae`
|
|
26317
26376
|
#
|
|
26377
|
+
# * `db2-ce`
|
|
26378
|
+
#
|
|
26318
26379
|
# * `db2-se`
|
|
26319
26380
|
#
|
|
26320
26381
|
# * `mariadb`
|
|
@@ -27856,7 +27917,8 @@ module Aws::RDS
|
|
|
27856
27917
|
#
|
|
27857
27918
|
# * RDS for MariaDB - `general-public-license`
|
|
27858
27919
|
#
|
|
27859
|
-
# * RDS for Microsoft SQL Server - `license-included
|
|
27920
|
+
# * RDS for Microsoft SQL Server - `license-included |
|
|
27921
|
+
# bring-your-own-media`
|
|
27860
27922
|
#
|
|
27861
27923
|
# * RDS for MySQL - `general-public-license`
|
|
27862
27924
|
#
|
|
@@ -27894,6 +27956,8 @@ module Aws::RDS
|
|
|
27894
27956
|
#
|
|
27895
27957
|
# * `db2-ae`
|
|
27896
27958
|
#
|
|
27959
|
+
# * `db2-ce`
|
|
27960
|
+
#
|
|
27897
27961
|
# * `db2-se`
|
|
27898
27962
|
#
|
|
27899
27963
|
# * `mariadb`
|
data/lib/aws-sdk-rds.rb
CHANGED
|
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
|
82
82
|
|
|
83
|
-
GEM_VERSION = '1.
|
|
83
|
+
GEM_VERSION = '1.316.0'
|
|
84
84
|
|
|
85
85
|
end
|
|
86
86
|
|