Skip to content

Commit dcebb69

Browse files
author
awstools
committed
feat(client-rds): SupportsLimitlessDatabase field added to describe-db-engine-versions to indicate whether the DB engine version supports Aurora Limitless Database.
1 parent 28b5215 commit dcebb69

File tree

7 files changed

+39
-0
lines changed

7 files changed

+39
-0
lines changed

clients/client-rds/src/commands/CreateCustomDBEngineVersionCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ export interface CreateCustomDBEngineVersionCommandOutput extends DBEngineVersio
9494
* // SupportsParallelQuery: true || false,
9595
* // SupportsGlobalDatabases: true || false,
9696
* // SupportsBabelfish: true || false,
97+
* // SupportsLimitlessDatabase: true || false,
9798
* // SupportsLocalWriteForwarding: true || false,
9899
* // SupportsIntegrations: true || false,
99100
* // },
@@ -131,6 +132,7 @@ export interface CreateCustomDBEngineVersionCommandOutput extends DBEngineVersio
131132
* // ],
132133
* // SupportsBabelfish: true || false,
133134
* // CustomDBEngineVersionManifest: "STRING_VALUE",
135+
* // SupportsLimitlessDatabase: true || false,
134136
* // SupportsCertificateRotationWithoutRestart: true || false,
135137
* // SupportedCACertificateIdentifiers: [ // CACertificateIdentifiersList
136138
* // "STRING_VALUE",

clients/client-rds/src/commands/DeleteCustomDBEngineVersionCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export interface DeleteCustomDBEngineVersionCommandOutput extends DBEngineVersio
100100
* // SupportsParallelQuery: true || false,
101101
* // SupportsGlobalDatabases: true || false,
102102
* // SupportsBabelfish: true || false,
103+
* // SupportsLimitlessDatabase: true || false,
103104
* // SupportsLocalWriteForwarding: true || false,
104105
* // SupportsIntegrations: true || false,
105106
* // },
@@ -137,6 +138,7 @@ export interface DeleteCustomDBEngineVersionCommandOutput extends DBEngineVersio
137138
* // ],
138139
* // SupportsBabelfish: true || false,
139140
* // CustomDBEngineVersionManifest: "STRING_VALUE",
141+
* // SupportsLimitlessDatabase: true || false,
140142
* // SupportsCertificateRotationWithoutRestart: true || false,
141143
* // SupportedCACertificateIdentifiers: [ // CACertificateIdentifiersList
142144
* // "STRING_VALUE",

clients/client-rds/src/commands/DescribeDBEngineVersionsCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMe
9898
* // SupportsParallelQuery: true || false,
9999
* // SupportsGlobalDatabases: true || false,
100100
* // SupportsBabelfish: true || false,
101+
* // SupportsLimitlessDatabase: true || false,
101102
* // SupportsLocalWriteForwarding: true || false,
102103
* // SupportsIntegrations: true || false,
103104
* // },
@@ -135,6 +136,7 @@ export interface DescribeDBEngineVersionsCommandOutput extends DBEngineVersionMe
135136
* // ],
136137
* // SupportsBabelfish: true || false,
137138
* // CustomDBEngineVersionManifest: "STRING_VALUE",
139+
* // SupportsLimitlessDatabase: true || false,
138140
* // SupportsCertificateRotationWithoutRestart: true || false,
139141
* // SupportedCACertificateIdentifiers: [ // CACertificateIdentifiersList
140142
* // "STRING_VALUE",

clients/client-rds/src/commands/ModifyCustomDBEngineVersionCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ export interface ModifyCustomDBEngineVersionCommandOutput extends DBEngineVersio
9393
* // SupportsParallelQuery: true || false,
9494
* // SupportsGlobalDatabases: true || false,
9595
* // SupportsBabelfish: true || false,
96+
* // SupportsLimitlessDatabase: true || false,
9697
* // SupportsLocalWriteForwarding: true || false,
9798
* // SupportsIntegrations: true || false,
9899
* // },
@@ -130,6 +131,7 @@ export interface ModifyCustomDBEngineVersionCommandOutput extends DBEngineVersio
130131
* // ],
131132
* // SupportsBabelfish: true || false,
132133
* // CustomDBEngineVersionManifest: "STRING_VALUE",
134+
* // SupportsLimitlessDatabase: true || false,
133135
* // SupportsCertificateRotationWithoutRestart: true || false,
134136
* // SupportedCACertificateIdentifiers: [ // CACertificateIdentifiersList
135137
* // "STRING_VALUE",

clients/client-rds/src/models/models_0.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3933,6 +3933,12 @@ export interface UpgradeTarget {
39333933
*/
39343934
SupportsBabelfish?: boolean;
39353935

3936+
/**
3937+
* <p>Indicates whether the DB engine version supports Aurora Limitless Database.</p>
3938+
* @public
3939+
*/
3940+
SupportsLimitlessDatabase?: boolean;
3941+
39363942
/**
39373943
* <p>Indicates whether the target engine version supports forwarding write operations from reader DB instances
39383944
* to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances.</p>
@@ -4151,6 +4157,12 @@ export interface DBEngineVersion {
41514157
*/
41524158
CustomDBEngineVersionManifest?: string;
41534159

4160+
/**
4161+
* <p>Indicates whether the DB engine version supports Aurora Limitless Database.</p>
4162+
* @public
4163+
*/
4164+
SupportsLimitlessDatabase?: boolean;
4165+
41544166
/**
41554167
* <p>Indicates whether the engine version supports rotating the server certificate without
41564168
* rebooting the DB instance.</p>

clients/client-rds/src/protocols/Aws_query.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18325,6 +18325,9 @@ const de_DBEngineVersion = (output: any, context: __SerdeContext): DBEngineVersi
1832518325
if (output[_CDBEVM] != null) {
1832618326
contents[_CDBEVM] = __expectString(output[_CDBEVM]);
1832718327
}
18328+
if (output[_SLD] != null) {
18329+
contents[_SLD] = __parseBoolean(output[_SLD]);
18330+
}
1832818331
if (output[_SCRWR] != null) {
1832918332
contents[_SCRWR] = __parseBoolean(output[_SCRWR]);
1833018333
}
@@ -24673,6 +24676,9 @@ const de_UpgradeTarget = (output: any, context: __SerdeContext): UpgradeTarget =
2467324676
if (output[_SB] != null) {
2467424677
contents[_SB] = __parseBoolean(output[_SB]);
2467524678
}
24679+
if (output[_SLD] != null) {
24680+
contents[_SLD] = __parseBoolean(output[_SLD]);
24681+
}
2467624682
if (output[_SLWF] != null) {
2467724683
contents[_SLWF] = __parseBoolean(output[_SLWF]);
2467824684
}
@@ -25643,6 +25649,7 @@ const _SIub = "SubnetIdentifier";
2564325649
const _SIup = "SupportsIntegrations";
2564425650
const _SIupp = "SupportsIops";
2564525651
const _SKA = "SupportsKerberosAuthentication";
25652+
const _SLD = "SupportsLimitlessDatabase";
2564625653
const _SLETCL = "SupportsLogExportsToCloudwatchLogs";
2564725654
const _SLWF = "SupportsLocalWriteForwarding";
2564825655
const _SM = "StaticMembers";

codegen/sdk-codegen/aws-models/rds.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8815,6 +8815,12 @@
88158815
"smithy.api#documentation": "<p>JSON string that lists the installation files and parameters that RDS Custom uses to create a custom engine version (CEV). \n RDS Custom applies the patches in the order in which they're listed in the manifest. You can set the Oracle home, Oracle base, \n and UNIX/Linux user and group using the installation parameters. For more information, \n see <a href=\"https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields\">JSON fields in the CEV manifest</a> in the <i>Amazon RDS User Guide</i>.\n </p>"
88168816
}
88178817
},
8818+
"SupportsLimitlessDatabase": {
8819+
"target": "com.amazonaws.rds#Boolean",
8820+
"traits": {
8821+
"smithy.api#documentation": "<p>Indicates whether the DB engine version supports Aurora Limitless Database.</p>"
8822+
}
8823+
},
88188824
"SupportsCertificateRotationWithoutRestart": {
88198825
"target": "com.amazonaws.rds#BooleanOptional",
88208826
"traits": {
@@ -30989,6 +30995,12 @@
3098930995
"smithy.api#documentation": "<p>Indicates whether you can use Babelfish for Aurora PostgreSQL with the target engine version.</p>"
3099030996
}
3099130997
},
30998+
"SupportsLimitlessDatabase": {
30999+
"target": "com.amazonaws.rds#BooleanOptional",
31000+
"traits": {
31001+
"smithy.api#documentation": "<p>Indicates whether the DB engine version supports Aurora Limitless Database.</p>"
31002+
}
31003+
},
3099231004
"SupportsLocalWriteForwarding": {
3099331005
"target": "com.amazonaws.rds#BooleanOptional",
3099431006
"traits": {

0 commit comments

Comments
 (0)