@aws-sdk/client-rds 3.211.0 → 3.213.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.
|
@@ -9243,6 +9243,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
9243
9243
|
if (input.NetworkType != null) {
|
|
9244
9244
|
entries["NetworkType"] = input.NetworkType;
|
|
9245
9245
|
}
|
|
9246
|
+
if (input.DBSystemId != null) {
|
|
9247
|
+
entries["DBSystemId"] = input.DBSystemId;
|
|
9248
|
+
}
|
|
9246
9249
|
return entries;
|
|
9247
9250
|
};
|
|
9248
9251
|
const serializeAws_queryCreateDBClusterParameterGroupMessage = (input, context) => {
|
|
@@ -13633,6 +13636,9 @@ const deserializeAws_queryClusterPendingModifiedValues = (output, context) => {
|
|
|
13633
13636
|
MasterUserPassword: undefined,
|
|
13634
13637
|
IAMDatabaseAuthenticationEnabled: undefined,
|
|
13635
13638
|
EngineVersion: undefined,
|
|
13639
|
+
BackupRetentionPeriod: undefined,
|
|
13640
|
+
AllocatedStorage: undefined,
|
|
13641
|
+
Iops: undefined,
|
|
13636
13642
|
};
|
|
13637
13643
|
if (output["PendingCloudwatchLogsExports"] !== undefined) {
|
|
13638
13644
|
contents.PendingCloudwatchLogsExports = deserializeAws_queryPendingCloudwatchLogsExports(output["PendingCloudwatchLogsExports"], context);
|
|
@@ -13649,6 +13655,15 @@ const deserializeAws_queryClusterPendingModifiedValues = (output, context) => {
|
|
|
13649
13655
|
if (output["EngineVersion"] !== undefined) {
|
|
13650
13656
|
contents.EngineVersion = (0, smithy_client_1.expectString)(output["EngineVersion"]);
|
|
13651
13657
|
}
|
|
13658
|
+
if (output["BackupRetentionPeriod"] !== undefined) {
|
|
13659
|
+
contents.BackupRetentionPeriod = (0, smithy_client_1.strictParseInt32)(output["BackupRetentionPeriod"]);
|
|
13660
|
+
}
|
|
13661
|
+
if (output["AllocatedStorage"] !== undefined) {
|
|
13662
|
+
contents.AllocatedStorage = (0, smithy_client_1.strictParseInt32)(output["AllocatedStorage"]);
|
|
13663
|
+
}
|
|
13664
|
+
if (output["Iops"] !== undefined) {
|
|
13665
|
+
contents.Iops = (0, smithy_client_1.strictParseInt32)(output["Iops"]);
|
|
13666
|
+
}
|
|
13652
13667
|
return contents;
|
|
13653
13668
|
};
|
|
13654
13669
|
const deserializeAws_queryConnectionPoolConfigurationInfo = (output, context) => {
|
|
@@ -13957,6 +13972,7 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
13957
13972
|
PerformanceInsightsRetentionPeriod: undefined,
|
|
13958
13973
|
ServerlessV2ScalingConfiguration: undefined,
|
|
13959
13974
|
NetworkType: undefined,
|
|
13975
|
+
DBSystemId: undefined,
|
|
13960
13976
|
};
|
|
13961
13977
|
if (output["AllocatedStorage"] !== undefined) {
|
|
13962
13978
|
contents.AllocatedStorage = (0, smithy_client_1.strictParseInt32)(output["AllocatedStorage"]);
|
|
@@ -14201,6 +14217,9 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
14201
14217
|
if (output["NetworkType"] !== undefined) {
|
|
14202
14218
|
contents.NetworkType = (0, smithy_client_1.expectString)(output["NetworkType"]);
|
|
14203
14219
|
}
|
|
14220
|
+
if (output["DBSystemId"] !== undefined) {
|
|
14221
|
+
contents.DBSystemId = (0, smithy_client_1.expectString)(output["DBSystemId"]);
|
|
14222
|
+
}
|
|
14204
14223
|
return contents;
|
|
14205
14224
|
};
|
|
14206
14225
|
const deserializeAws_queryDBClusterAlreadyExistsFault = (output, context) => {
|
|
@@ -14644,6 +14663,7 @@ const deserializeAws_queryDBClusterSnapshot = (output, context) => {
|
|
|
14644
14663
|
SourceDBClusterSnapshotArn: undefined,
|
|
14645
14664
|
IAMDatabaseAuthenticationEnabled: undefined,
|
|
14646
14665
|
TagList: undefined,
|
|
14666
|
+
DBSystemId: undefined,
|
|
14647
14667
|
};
|
|
14648
14668
|
if (output.AvailabilityZones === "") {
|
|
14649
14669
|
contents.AvailabilityZones = [];
|
|
@@ -14718,6 +14738,9 @@ const deserializeAws_queryDBClusterSnapshot = (output, context) => {
|
|
|
14718
14738
|
else if (output["TagList"] !== undefined && output["TagList"]["Tag"] !== undefined) {
|
|
14719
14739
|
contents.TagList = deserializeAws_queryTagList((0, smithy_client_1.getArrayIfSingleItem)(output["TagList"]["Tag"]), context);
|
|
14720
14740
|
}
|
|
14741
|
+
if (output["DBSystemId"] !== undefined) {
|
|
14742
|
+
contents.DBSystemId = (0, smithy_client_1.expectString)(output["DBSystemId"]);
|
|
14743
|
+
}
|
|
14721
14744
|
return contents;
|
|
14722
14745
|
};
|
|
14723
14746
|
const deserializeAws_queryDBClusterSnapshotAlreadyExistsFault = (output, context) => {
|
|
@@ -14830,6 +14853,7 @@ const deserializeAws_queryDBEngineVersion = (output, context) => {
|
|
|
14830
14853
|
CreateTime: undefined,
|
|
14831
14854
|
TagList: undefined,
|
|
14832
14855
|
SupportsBabelfish: undefined,
|
|
14856
|
+
CustomDBEngineVersionManifest: undefined,
|
|
14833
14857
|
};
|
|
14834
14858
|
if (output["Engine"] !== undefined) {
|
|
14835
14859
|
contents.Engine = (0, smithy_client_1.expectString)(output["Engine"]);
|
|
@@ -14936,6 +14960,9 @@ const deserializeAws_queryDBEngineVersion = (output, context) => {
|
|
|
14936
14960
|
if (output["SupportsBabelfish"] !== undefined) {
|
|
14937
14961
|
contents.SupportsBabelfish = (0, smithy_client_1.parseBoolean)(output["SupportsBabelfish"]);
|
|
14938
14962
|
}
|
|
14963
|
+
if (output["CustomDBEngineVersionManifest"] !== undefined) {
|
|
14964
|
+
contents.CustomDBEngineVersionManifest = (0, smithy_client_1.expectString)(output["CustomDBEngineVersionManifest"]);
|
|
14965
|
+
}
|
|
14939
14966
|
return contents;
|
|
14940
14967
|
};
|
|
14941
14968
|
const deserializeAws_queryDBEngineVersionList = (output, context) => {
|
|
@@ -15040,6 +15067,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
15040
15067
|
NetworkType: undefined,
|
|
15041
15068
|
ActivityStreamPolicyStatus: undefined,
|
|
15042
15069
|
StorageThroughput: undefined,
|
|
15070
|
+
DBSystemId: undefined,
|
|
15043
15071
|
};
|
|
15044
15072
|
if (output["DBInstanceIdentifier"] !== undefined) {
|
|
15045
15073
|
contents.DBInstanceIdentifier = (0, smithy_client_1.expectString)(output["DBInstanceIdentifier"]);
|
|
@@ -15320,6 +15348,9 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
15320
15348
|
if (output["StorageThroughput"] !== undefined) {
|
|
15321
15349
|
contents.StorageThroughput = (0, smithy_client_1.strictParseInt32)(output["StorageThroughput"]);
|
|
15322
15350
|
}
|
|
15351
|
+
if (output["DBSystemId"] !== undefined) {
|
|
15352
|
+
contents.DBSystemId = (0, smithy_client_1.expectString)(output["DBSystemId"]);
|
|
15353
|
+
}
|
|
15323
15354
|
return contents;
|
|
15324
15355
|
};
|
|
15325
15356
|
const deserializeAws_queryDBInstanceAlreadyExistsFault = (output, context) => {
|
|
@@ -8961,6 +8961,9 @@ const serializeAws_queryCreateDBClusterMessage = (input, context) => {
|
|
|
8961
8961
|
if (input.NetworkType != null) {
|
|
8962
8962
|
entries["NetworkType"] = input.NetworkType;
|
|
8963
8963
|
}
|
|
8964
|
+
if (input.DBSystemId != null) {
|
|
8965
|
+
entries["DBSystemId"] = input.DBSystemId;
|
|
8966
|
+
}
|
|
8964
8967
|
return entries;
|
|
8965
8968
|
};
|
|
8966
8969
|
const serializeAws_queryCreateDBClusterParameterGroupMessage = (input, context) => {
|
|
@@ -13351,6 +13354,9 @@ const deserializeAws_queryClusterPendingModifiedValues = (output, context) => {
|
|
|
13351
13354
|
MasterUserPassword: undefined,
|
|
13352
13355
|
IAMDatabaseAuthenticationEnabled: undefined,
|
|
13353
13356
|
EngineVersion: undefined,
|
|
13357
|
+
BackupRetentionPeriod: undefined,
|
|
13358
|
+
AllocatedStorage: undefined,
|
|
13359
|
+
Iops: undefined,
|
|
13354
13360
|
};
|
|
13355
13361
|
if (output["PendingCloudwatchLogsExports"] !== undefined) {
|
|
13356
13362
|
contents.PendingCloudwatchLogsExports = deserializeAws_queryPendingCloudwatchLogsExports(output["PendingCloudwatchLogsExports"], context);
|
|
@@ -13367,6 +13373,15 @@ const deserializeAws_queryClusterPendingModifiedValues = (output, context) => {
|
|
|
13367
13373
|
if (output["EngineVersion"] !== undefined) {
|
|
13368
13374
|
contents.EngineVersion = __expectString(output["EngineVersion"]);
|
|
13369
13375
|
}
|
|
13376
|
+
if (output["BackupRetentionPeriod"] !== undefined) {
|
|
13377
|
+
contents.BackupRetentionPeriod = __strictParseInt32(output["BackupRetentionPeriod"]);
|
|
13378
|
+
}
|
|
13379
|
+
if (output["AllocatedStorage"] !== undefined) {
|
|
13380
|
+
contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
|
|
13381
|
+
}
|
|
13382
|
+
if (output["Iops"] !== undefined) {
|
|
13383
|
+
contents.Iops = __strictParseInt32(output["Iops"]);
|
|
13384
|
+
}
|
|
13370
13385
|
return contents;
|
|
13371
13386
|
};
|
|
13372
13387
|
const deserializeAws_queryConnectionPoolConfigurationInfo = (output, context) => {
|
|
@@ -13675,6 +13690,7 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
13675
13690
|
PerformanceInsightsRetentionPeriod: undefined,
|
|
13676
13691
|
ServerlessV2ScalingConfiguration: undefined,
|
|
13677
13692
|
NetworkType: undefined,
|
|
13693
|
+
DBSystemId: undefined,
|
|
13678
13694
|
};
|
|
13679
13695
|
if (output["AllocatedStorage"] !== undefined) {
|
|
13680
13696
|
contents.AllocatedStorage = __strictParseInt32(output["AllocatedStorage"]);
|
|
@@ -13919,6 +13935,9 @@ const deserializeAws_queryDBCluster = (output, context) => {
|
|
|
13919
13935
|
if (output["NetworkType"] !== undefined) {
|
|
13920
13936
|
contents.NetworkType = __expectString(output["NetworkType"]);
|
|
13921
13937
|
}
|
|
13938
|
+
if (output["DBSystemId"] !== undefined) {
|
|
13939
|
+
contents.DBSystemId = __expectString(output["DBSystemId"]);
|
|
13940
|
+
}
|
|
13922
13941
|
return contents;
|
|
13923
13942
|
};
|
|
13924
13943
|
const deserializeAws_queryDBClusterAlreadyExistsFault = (output, context) => {
|
|
@@ -14362,6 +14381,7 @@ const deserializeAws_queryDBClusterSnapshot = (output, context) => {
|
|
|
14362
14381
|
SourceDBClusterSnapshotArn: undefined,
|
|
14363
14382
|
IAMDatabaseAuthenticationEnabled: undefined,
|
|
14364
14383
|
TagList: undefined,
|
|
14384
|
+
DBSystemId: undefined,
|
|
14365
14385
|
};
|
|
14366
14386
|
if (output.AvailabilityZones === "") {
|
|
14367
14387
|
contents.AvailabilityZones = [];
|
|
@@ -14436,6 +14456,9 @@ const deserializeAws_queryDBClusterSnapshot = (output, context) => {
|
|
|
14436
14456
|
else if (output["TagList"] !== undefined && output["TagList"]["Tag"] !== undefined) {
|
|
14437
14457
|
contents.TagList = deserializeAws_queryTagList(__getArrayIfSingleItem(output["TagList"]["Tag"]), context);
|
|
14438
14458
|
}
|
|
14459
|
+
if (output["DBSystemId"] !== undefined) {
|
|
14460
|
+
contents.DBSystemId = __expectString(output["DBSystemId"]);
|
|
14461
|
+
}
|
|
14439
14462
|
return contents;
|
|
14440
14463
|
};
|
|
14441
14464
|
const deserializeAws_queryDBClusterSnapshotAlreadyExistsFault = (output, context) => {
|
|
@@ -14548,6 +14571,7 @@ const deserializeAws_queryDBEngineVersion = (output, context) => {
|
|
|
14548
14571
|
CreateTime: undefined,
|
|
14549
14572
|
TagList: undefined,
|
|
14550
14573
|
SupportsBabelfish: undefined,
|
|
14574
|
+
CustomDBEngineVersionManifest: undefined,
|
|
14551
14575
|
};
|
|
14552
14576
|
if (output["Engine"] !== undefined) {
|
|
14553
14577
|
contents.Engine = __expectString(output["Engine"]);
|
|
@@ -14654,6 +14678,9 @@ const deserializeAws_queryDBEngineVersion = (output, context) => {
|
|
|
14654
14678
|
if (output["SupportsBabelfish"] !== undefined) {
|
|
14655
14679
|
contents.SupportsBabelfish = __parseBoolean(output["SupportsBabelfish"]);
|
|
14656
14680
|
}
|
|
14681
|
+
if (output["CustomDBEngineVersionManifest"] !== undefined) {
|
|
14682
|
+
contents.CustomDBEngineVersionManifest = __expectString(output["CustomDBEngineVersionManifest"]);
|
|
14683
|
+
}
|
|
14657
14684
|
return contents;
|
|
14658
14685
|
};
|
|
14659
14686
|
const deserializeAws_queryDBEngineVersionList = (output, context) => {
|
|
@@ -14758,6 +14785,7 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
14758
14785
|
NetworkType: undefined,
|
|
14759
14786
|
ActivityStreamPolicyStatus: undefined,
|
|
14760
14787
|
StorageThroughput: undefined,
|
|
14788
|
+
DBSystemId: undefined,
|
|
14761
14789
|
};
|
|
14762
14790
|
if (output["DBInstanceIdentifier"] !== undefined) {
|
|
14763
14791
|
contents.DBInstanceIdentifier = __expectString(output["DBInstanceIdentifier"]);
|
|
@@ -15038,6 +15066,9 @@ const deserializeAws_queryDBInstance = (output, context) => {
|
|
|
15038
15066
|
if (output["StorageThroughput"] !== undefined) {
|
|
15039
15067
|
contents.StorageThroughput = __strictParseInt32(output["StorageThroughput"]);
|
|
15040
15068
|
}
|
|
15069
|
+
if (output["DBSystemId"] !== undefined) {
|
|
15070
|
+
contents.DBSystemId = __expectString(output["DBSystemId"]);
|
|
15071
|
+
}
|
|
15041
15072
|
return contents;
|
|
15042
15073
|
};
|
|
15043
15074
|
const deserializeAws_queryDBInstanceAlreadyExistsFault = (output, context) => {
|
|
@@ -1321,6 +1321,10 @@ export interface DBClusterSnapshot {
|
|
|
1321
1321
|
* </p>
|
|
1322
1322
|
*/
|
|
1323
1323
|
TagList?: Tag[];
|
|
1324
|
+
/**
|
|
1325
|
+
* <p>Reserved for future use.</p>
|
|
1326
|
+
*/
|
|
1327
|
+
DBSystemId?: string;
|
|
1324
1328
|
}
|
|
1325
1329
|
export interface CopyDBClusterSnapshotResult {
|
|
1326
1330
|
/**
|
|
@@ -2450,6 +2454,14 @@ export interface DBEngineVersion {
|
|
|
2450
2454
|
* <p>A value that indicates whether the engine version supports Babelfish for Aurora PostgreSQL.</p>
|
|
2451
2455
|
*/
|
|
2452
2456
|
SupportsBabelfish?: boolean;
|
|
2457
|
+
/**
|
|
2458
|
+
* <p>JSON string that lists the installation files and parameters that RDS Custom uses to create a custom engine version (CEV).
|
|
2459
|
+
* RDS Custom applies the patches in the order in which they're listed in the manifest. You can set the Oracle home, Oracle base,
|
|
2460
|
+
* and UNIX/Linux user and group using the installation parameters. For more information,
|
|
2461
|
+
* 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>.
|
|
2462
|
+
* </p>
|
|
2463
|
+
*/
|
|
2464
|
+
CustomDBEngineVersionManifest?: string;
|
|
2453
2465
|
}
|
|
2454
2466
|
/**
|
|
2455
2467
|
* <p>Contains the scaling configuration of an Aurora Serverless v1 DB cluster.</p>
|
|
@@ -3185,6 +3197,10 @@ export interface CreateDBClusterMessage {
|
|
|
3185
3197
|
* <p>Valid for: Aurora DB clusters only</p>
|
|
3186
3198
|
*/
|
|
3187
3199
|
NetworkType?: string;
|
|
3200
|
+
/**
|
|
3201
|
+
* <p>Reserved for future use.</p>
|
|
3202
|
+
*/
|
|
3203
|
+
DBSystemId?: string;
|
|
3188
3204
|
}
|
|
3189
3205
|
/**
|
|
3190
3206
|
* <p>Describes an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB cluster.</p>
|
|
@@ -3324,6 +3340,20 @@ export interface ClusterPendingModifiedValues {
|
|
|
3324
3340
|
* <p>The database engine version.</p>
|
|
3325
3341
|
*/
|
|
3326
3342
|
EngineVersion?: string;
|
|
3343
|
+
/**
|
|
3344
|
+
* <p>The number of days for which automatic DB snapshots are retained.</p>
|
|
3345
|
+
*/
|
|
3346
|
+
BackupRetentionPeriod?: number;
|
|
3347
|
+
/**
|
|
3348
|
+
* <p>The allocated storage size in gibibytes (GiB) for all database engines except Amazon Aurora. For Aurora,
|
|
3349
|
+
* <code>AllocatedStorage</code> always returns 1, because Aurora DB cluster storage size isn't fixed, but
|
|
3350
|
+
* instead automatically adjusts as needed.</p>
|
|
3351
|
+
*/
|
|
3352
|
+
AllocatedStorage?: number;
|
|
3353
|
+
/**
|
|
3354
|
+
* <p>The Provisioned IOPS (I/O operations per second) value. This setting is only for non-Aurora Multi-AZ DB clusters.</p>
|
|
3355
|
+
*/
|
|
3356
|
+
Iops?: number;
|
|
3327
3357
|
}
|
|
3328
3358
|
/**
|
|
3329
3359
|
* <p>Shows the scaling configuration for an Aurora DB cluster in <code>serverless</code> DB engine mode.</p>
|
|
@@ -3797,6 +3827,10 @@ export interface DBCluster {
|
|
|
3797
3827
|
* <p>This setting is only for Aurora DB clusters.</p>
|
|
3798
3828
|
*/
|
|
3799
3829
|
NetworkType?: string;
|
|
3830
|
+
/**
|
|
3831
|
+
* <p>Reserved for future use.</p>
|
|
3832
|
+
*/
|
|
3833
|
+
DBSystemId?: string;
|
|
3800
3834
|
}
|
|
3801
3835
|
export interface CreateDBClusterResult {
|
|
3802
3836
|
/**
|
|
@@ -6211,6 +6245,11 @@ export interface DBInstance {
|
|
|
6211
6245
|
* <p>This setting applies only to the <code>gp3</code> storage type.</p>
|
|
6212
6246
|
*/
|
|
6213
6247
|
StorageThroughput?: number;
|
|
6248
|
+
/**
|
|
6249
|
+
* <p>The Oracle system ID (Oracle SID) for a container database (CDB). The Oracle SID is also
|
|
6250
|
+
* the name of the CDB. This setting is valid for RDS Custom only.</p>
|
|
6251
|
+
*/
|
|
6252
|
+
DBSystemId?: string;
|
|
6214
6253
|
}
|
|
6215
6254
|
export interface CreateDBInstanceResult {
|
|
6216
6255
|
/**
|
|
@@ -386,6 +386,7 @@ export interface DBClusterSnapshot {
|
|
|
386
386
|
SourceDBClusterSnapshotArn?: string;
|
|
387
387
|
IAMDatabaseAuthenticationEnabled?: boolean;
|
|
388
388
|
TagList?: Tag[];
|
|
389
|
+
DBSystemId?: string;
|
|
389
390
|
}
|
|
390
391
|
export interface CopyDBClusterSnapshotResult {
|
|
391
392
|
DBClusterSnapshot?: DBClusterSnapshot;
|
|
@@ -667,6 +668,7 @@ export interface DBEngineVersion {
|
|
|
667
668
|
CreateTime?: Date;
|
|
668
669
|
TagList?: Tag[];
|
|
669
670
|
SupportsBabelfish?: boolean;
|
|
671
|
+
CustomDBEngineVersionManifest?: string;
|
|
670
672
|
}
|
|
671
673
|
export interface ScalingConfiguration {
|
|
672
674
|
MinCapacity?: number;
|
|
@@ -727,6 +729,7 @@ export interface CreateDBClusterMessage {
|
|
|
727
729
|
PerformanceInsightsRetentionPeriod?: number;
|
|
728
730
|
ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
|
|
729
731
|
NetworkType?: string;
|
|
732
|
+
DBSystemId?: string;
|
|
730
733
|
}
|
|
731
734
|
export interface DBClusterRole {
|
|
732
735
|
RoleArn?: string;
|
|
@@ -766,6 +769,9 @@ export interface ClusterPendingModifiedValues {
|
|
|
766
769
|
MasterUserPassword?: string;
|
|
767
770
|
IAMDatabaseAuthenticationEnabled?: boolean;
|
|
768
771
|
EngineVersion?: string;
|
|
772
|
+
BackupRetentionPeriod?: number;
|
|
773
|
+
AllocatedStorage?: number;
|
|
774
|
+
Iops?: number;
|
|
769
775
|
}
|
|
770
776
|
export interface ScalingConfigurationInfo {
|
|
771
777
|
MinCapacity?: number;
|
|
@@ -849,6 +855,7 @@ export interface DBCluster {
|
|
|
849
855
|
PerformanceInsightsRetentionPeriod?: number;
|
|
850
856
|
ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfigurationInfo;
|
|
851
857
|
NetworkType?: string;
|
|
858
|
+
DBSystemId?: string;
|
|
852
859
|
}
|
|
853
860
|
export interface CreateDBClusterResult {
|
|
854
861
|
DBCluster?: DBCluster;
|
|
@@ -1231,6 +1238,7 @@ export interface DBInstance {
|
|
|
1231
1238
|
NetworkType?: string;
|
|
1232
1239
|
ActivityStreamPolicyStatus?: ActivityStreamPolicyStatus | string;
|
|
1233
1240
|
StorageThroughput?: number;
|
|
1241
|
+
DBSystemId?: string;
|
|
1234
1242
|
}
|
|
1235
1243
|
export interface CreateDBInstanceResult {
|
|
1236
1244
|
DBInstance?: DBInstance;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.213.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,40 +19,40 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.213.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.212.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.212.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.212.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.212.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.212.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.212.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.212.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.212.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.212.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.212.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.212.0",
|
|
34
|
+
"@aws-sdk/middleware-sdk-rds": "3.212.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.212.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.212.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.212.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.212.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.212.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.212.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.212.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.212.0",
|
|
43
|
+
"@aws-sdk/types": "3.212.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.212.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.212.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.212.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.212.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.212.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.212.0",
|
|
53
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
54
54
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
55
|
+
"@aws-sdk/util-waiter": "3.212.0",
|
|
56
56
|
"fast-xml-parser": "4.0.11",
|
|
57
57
|
"tslib": "^2.3.1"
|
|
58
58
|
},
|