@aws-sdk/client-rds 3.939.0 → 3.943.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.
- package/dist-cjs/index.js +197 -60
- package/dist-es/schemas/schemas_0.js +197 -60
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +7 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +32 -0
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +32 -0
- package/dist-types/commands/CreateDBSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDBInstanceAutomatedBackupCommand.d.ts +10 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +22 -0
- package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +22 -0
- package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeOrderableDBInstanceOptionsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeValidDBInstanceModificationsCommand.d.ts +42 -2
- package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +4 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +33 -0
- package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/PromoteReadReplicaCommand.d.ts +22 -0
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +22 -0
- package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +32 -0
- package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +32 -0
- package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +32 -0
- package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +10 -0
- package/dist-types/commands/StartDBInstanceCommand.d.ts +22 -0
- package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +10 -0
- package/dist-types/commands/StopDBInstanceCommand.d.ts +22 -0
- package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +297 -64
- package/dist-types/models/models_1.d.ts +204 -2
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/commands/DescribeValidDBInstanceModificationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +45 -12
- package/dist-types/ts3.4/models/models_1.d.ts +35 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +5 -5
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AuditPolicyState, AutomationMode, CustomEngineVersionStatus, DatabaseInsightsMode, DefaultAuthScheme, MasterUserAuthenticationType, ReplicaMode } from "./enums";
|
|
2
|
-
import { AvailableProcessorFeature, BlueGreenDeployment, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBRecommendation, DBSecurityGroup, DBSnapshot, DBSnapshotAttributesResult, DBSubnetGroup,
|
|
2
|
+
import { AdditionalStorageVolume, AvailableProcessorFeature, BlueGreenDeployment, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBRecommendation, DBSecurityGroup, DBSnapshot, DBSnapshotAttributesResult, DBSubnetGroup, EventSubscription, Filter, GlobalCluster, OptionGroup, OptionSetting, Parameter, ProcessorFeature, RdsCustomClusterConfiguration, ReservedDBInstance, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, TenantDatabase, UserAuthConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p></p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DescribeValidDBInstanceModificationsMessage {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The customer identifier or the ARN of your DB instance.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
DBInstanceIdentifier: string | undefined;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* <p>A range of double values.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export interface DoubleRange {
|
|
19
|
+
/**
|
|
20
|
+
* <p>The minimum value in the range.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
From?: number | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The maximum value in the range.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
To?: number | undefined;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* <p>A range of integer values.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export interface Range {
|
|
35
|
+
/**
|
|
36
|
+
* <p>The minimum value in the range.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
From?: number | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* <p>The maximum value in the range.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
To?: number | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>The step value for the range.
|
|
47
|
+
* For example, if you have a range of 5,000 to 10,000,
|
|
48
|
+
* with a step value of 1,000,
|
|
49
|
+
* the valid values start at 5,000 and step up by 1,000.
|
|
50
|
+
* Even though 7,500 is within the range,
|
|
51
|
+
* it isn't a valid value for the range.
|
|
52
|
+
* The valid values are 5,000, 6,000, 7,000, 8,000...</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
Step?: number | undefined;
|
|
56
|
+
}
|
|
3
57
|
/**
|
|
4
58
|
* <p>Information about valid modifications that you can make to your DB instance.
|
|
5
59
|
* Contains the result of a successful call to the
|
|
@@ -50,6 +104,38 @@ export interface ValidStorageOptions {
|
|
|
50
104
|
*/
|
|
51
105
|
SupportsStorageAutoscaling?: boolean | undefined;
|
|
52
106
|
}
|
|
107
|
+
/**
|
|
108
|
+
* <p>Contains the valid options for an additional storage volume.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export interface ValidVolumeOptions {
|
|
112
|
+
/**
|
|
113
|
+
* <p>The name of the additional storage volume.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
VolumeName?: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>The valid storage options for the additional storage volume.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
Storage?: ValidStorageOptions[] | undefined;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* <p>Contains the valid options for additional storage volumes for a DB instance. </p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
export interface ValidAdditionalStorageOptions {
|
|
128
|
+
/**
|
|
129
|
+
* <p>Indicates whether the DB instance supports additional storage volumes.</p>
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
SupportsAdditionalStorageVolumes?: boolean | undefined;
|
|
133
|
+
/**
|
|
134
|
+
* <p>The valid additional storage volume options for the DB instance.</p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
Volumes?: ValidVolumeOptions[] | undefined;
|
|
138
|
+
}
|
|
53
139
|
/**
|
|
54
140
|
* <p>Information about valid modifications that you can make to your DB instance.
|
|
55
141
|
* Contains the result of a successful call to the
|
|
@@ -74,6 +160,11 @@ export interface ValidDBInstanceModificationsMessage {
|
|
|
74
160
|
* @public
|
|
75
161
|
*/
|
|
76
162
|
SupportsDedicatedLogVolume?: boolean | undefined;
|
|
163
|
+
/**
|
|
164
|
+
* <p>The valid additional storage options for the DB instance.</p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
AdditionalStorage?: ValidAdditionalStorageOptions | undefined;
|
|
77
168
|
}
|
|
78
169
|
/**
|
|
79
170
|
* @public
|
|
@@ -526,7 +617,8 @@ export interface ModifyCurrentDBClusterCapacityMessage {
|
|
|
526
617
|
*/
|
|
527
618
|
export interface ModifyCustomDBEngineVersionMessage {
|
|
528
619
|
/**
|
|
529
|
-
* <p>The database engine
|
|
620
|
+
* <p>The database engine.</p>
|
|
621
|
+
* <p>RDS Custom for Oracle supports the following values:</p>
|
|
530
622
|
* <ul>
|
|
531
623
|
* <li>
|
|
532
624
|
* <p>
|
|
@@ -549,6 +641,30 @@ export interface ModifyCustomDBEngineVersionMessage {
|
|
|
549
641
|
* </p>
|
|
550
642
|
* </li>
|
|
551
643
|
* </ul>
|
|
644
|
+
* <p>RDS Custom for SQL Server supports the following values:</p>
|
|
645
|
+
* <ul>
|
|
646
|
+
* <li>
|
|
647
|
+
* <p>
|
|
648
|
+
* <code>custom-sqlserver-ee</code>
|
|
649
|
+
* </p>
|
|
650
|
+
* </li>
|
|
651
|
+
* <li>
|
|
652
|
+
* <p>
|
|
653
|
+
* <code>custom-sqlserver-se</code>
|
|
654
|
+
* </p>
|
|
655
|
+
* </li>
|
|
656
|
+
* <li>
|
|
657
|
+
* <p>
|
|
658
|
+
* <code>ccustom-sqlserver-web</code>
|
|
659
|
+
* </p>
|
|
660
|
+
* </li>
|
|
661
|
+
* <li>
|
|
662
|
+
* <p>
|
|
663
|
+
* <code>custom-sqlserver-dev</code>
|
|
664
|
+
* </p>
|
|
665
|
+
* </li>
|
|
666
|
+
* </ul>
|
|
667
|
+
* <p>RDS for SQL Server supports only <code>sqlserver-dev-ee</code>.</p>
|
|
552
668
|
* @public
|
|
553
669
|
*/
|
|
554
670
|
Engine: string | undefined;
|
|
@@ -1461,6 +1577,60 @@ export interface ModifyDBClusterSnapshotAttributeResult {
|
|
|
1461
1577
|
*/
|
|
1462
1578
|
DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult | undefined;
|
|
1463
1579
|
}
|
|
1580
|
+
/**
|
|
1581
|
+
* <p>Contains details about the modification of an additional storage volume.</p>
|
|
1582
|
+
* @public
|
|
1583
|
+
*/
|
|
1584
|
+
export interface ModifyAdditionalStorageVolume {
|
|
1585
|
+
/**
|
|
1586
|
+
* <p>The name of the additional storage volume that you want to modify.</p>
|
|
1587
|
+
* <p>Valid Values: <code>RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4</code>
|
|
1588
|
+
* </p>
|
|
1589
|
+
* @public
|
|
1590
|
+
*/
|
|
1591
|
+
VolumeName: string | undefined;
|
|
1592
|
+
/**
|
|
1593
|
+
* <p>The amount of storage allocated for the additional storage volume, in gibibytes (GiB).
|
|
1594
|
+
* The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).</p>
|
|
1595
|
+
* @public
|
|
1596
|
+
*/
|
|
1597
|
+
AllocatedStorage?: number | undefined;
|
|
1598
|
+
/**
|
|
1599
|
+
* <p>The number of I/O operations per second (IOPS) provisioned for the additional storage
|
|
1600
|
+
* volume. This setting is only supported for Provisioned IOPS SSD (<code>io1</code> and
|
|
1601
|
+
* <code>io2</code>) storage types.</p>
|
|
1602
|
+
* @public
|
|
1603
|
+
*/
|
|
1604
|
+
IOPS?: number | undefined;
|
|
1605
|
+
/**
|
|
1606
|
+
* <p>The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of
|
|
1607
|
+
* the additional storage volume. You must provide a value greater than or equal to
|
|
1608
|
+
* <code>AllocatedStorage</code>.</p>
|
|
1609
|
+
* @public
|
|
1610
|
+
*/
|
|
1611
|
+
MaxAllocatedStorage?: number | undefined;
|
|
1612
|
+
/**
|
|
1613
|
+
* <p>The storage throughput value for the additional storage volume, in mebibytes per
|
|
1614
|
+
* second (MiBps). This setting applies only to the General Purpose SSD (<code>gp3</code>)
|
|
1615
|
+
* storage type.</p>
|
|
1616
|
+
* @public
|
|
1617
|
+
*/
|
|
1618
|
+
StorageThroughput?: number | undefined;
|
|
1619
|
+
/**
|
|
1620
|
+
* <p>The new storage type for the additional storage volume.</p>
|
|
1621
|
+
* <p>Valid Values: <code>GP3 | IO2</code>
|
|
1622
|
+
* </p>
|
|
1623
|
+
* @public
|
|
1624
|
+
*/
|
|
1625
|
+
StorageType?: string | undefined;
|
|
1626
|
+
/**
|
|
1627
|
+
* <p>Indicates whether to delete the additional storage volume. The value
|
|
1628
|
+
* <code>true</code> schedules the volume for deletion. You can delete an
|
|
1629
|
+
* additional storage volume only when it doesn't contain database files or other data.</p>
|
|
1630
|
+
* @public
|
|
1631
|
+
*/
|
|
1632
|
+
SetForDelete?: boolean | undefined;
|
|
1633
|
+
}
|
|
1464
1634
|
/**
|
|
1465
1635
|
* <p></p>
|
|
1466
1636
|
* @public
|
|
@@ -2564,6 +2734,13 @@ export interface ModifyDBInstanceMessage {
|
|
|
2564
2734
|
* @public
|
|
2565
2735
|
*/
|
|
2566
2736
|
MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
|
|
2737
|
+
/**
|
|
2738
|
+
* <p>A list of additional storage volumes to modify or delete for the DB instance. You can
|
|
2739
|
+
* create up to 3 additional storage volumes. Additional storage volumes are supported for
|
|
2740
|
+
* RDS for Oracle and RDS for SQL Server DB instances only.</p>
|
|
2741
|
+
* @public
|
|
2742
|
+
*/
|
|
2743
|
+
AdditionalStorageVolumes?: ModifyAdditionalStorageVolume[] | undefined;
|
|
2567
2744
|
}
|
|
2568
2745
|
/**
|
|
2569
2746
|
* @public
|
|
@@ -6052,6 +6229,14 @@ export interface RestoreDBInstanceFromDBSnapshotMessage {
|
|
|
6052
6229
|
* @public
|
|
6053
6230
|
*/
|
|
6054
6231
|
MasterUserSecretKmsKeyId?: string | undefined;
|
|
6232
|
+
/**
|
|
6233
|
+
* <p>A list of additional storage volumes to create for the DB instance. You can create up
|
|
6234
|
+
* to three additional storage volumes using the names <code>rdsdbdata2</code>,
|
|
6235
|
+
* <code>rdsdbdata3</code>, and <code>rdsdbdata4</code>. Additional storage volumes are
|
|
6236
|
+
* supported for RDS for Oracle and RDS for SQL Server DB instances only.</p>
|
|
6237
|
+
* @public
|
|
6238
|
+
*/
|
|
6239
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
6055
6240
|
}
|
|
6056
6241
|
/**
|
|
6057
6242
|
* @public
|
|
@@ -6640,6 +6825,15 @@ export interface RestoreDBInstanceFromS3Message {
|
|
|
6640
6825
|
* @public
|
|
6641
6826
|
*/
|
|
6642
6827
|
EngineLifecycleSupport?: string | undefined;
|
|
6828
|
+
/**
|
|
6829
|
+
* <p>A list of additional storage volumes to modify or delete for the DB instance. You can
|
|
6830
|
+
* modify or delete up to three additional storage volumes using the names
|
|
6831
|
+
* <code>rdsdbdata2</code>, <code>rdsdbdata3</code>, and <code>rdsdbdata4</code>.
|
|
6832
|
+
* Additional storage volumes are supported for RDS for Oracle and RDS for SQL Server DB
|
|
6833
|
+
* instances only.</p>
|
|
6834
|
+
* @public
|
|
6835
|
+
*/
|
|
6836
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
6643
6837
|
}
|
|
6644
6838
|
/**
|
|
6645
6839
|
* @public
|
|
@@ -7334,6 +7528,14 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
7334
7528
|
* @public
|
|
7335
7529
|
*/
|
|
7336
7530
|
MasterUserSecretKmsKeyId?: string | undefined;
|
|
7531
|
+
/**
|
|
7532
|
+
* <p>A list of additional storage volumes to restore to the DB instance. You can restore up
|
|
7533
|
+
* to three additional storage volumes using the names <code>rdsdbdata2</code>,
|
|
7534
|
+
* <code>rdsdbdata3</code>, and <code>rdsdbdata4</code>. Additional storage volumes are
|
|
7535
|
+
* supported for RDS for Oracle and RDS for SQL Server DB instances only.</p>
|
|
7536
|
+
* @public
|
|
7537
|
+
*/
|
|
7538
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
7337
7539
|
}
|
|
7338
7540
|
/**
|
|
7339
7541
|
* @public
|
|
@@ -3,6 +3,8 @@ export declare var PotentiallySensitiveOptionSettingValue: StaticSimpleSchema;
|
|
|
3
3
|
export declare var SensitiveString: StaticSimpleSchema;
|
|
4
4
|
export declare var AccountAttributesMessage: StaticStructureSchema;
|
|
5
5
|
export declare var AccountQuota: StaticStructureSchema;
|
|
6
|
+
export declare var AdditionalStorageVolume: StaticStructureSchema;
|
|
7
|
+
export declare var AdditionalStorageVolumeOutput: StaticStructureSchema;
|
|
6
8
|
export declare var AddRoleToDBClusterMessage: StaticStructureSchema;
|
|
7
9
|
export declare var AddRoleToDBInstanceMessage: StaticStructureSchema;
|
|
8
10
|
export declare var AddSourceIdentifierToSubscriptionMessage: StaticStructureSchema;
|
|
@@ -16,6 +18,7 @@ export declare var AuthorizationQuotaExceededFault: StaticErrorSchema;
|
|
|
16
18
|
export declare var AuthorizeDBSecurityGroupIngressMessage: StaticStructureSchema;
|
|
17
19
|
export declare var AuthorizeDBSecurityGroupIngressResult: StaticStructureSchema;
|
|
18
20
|
export declare var AvailabilityZone: StaticStructureSchema;
|
|
21
|
+
export declare var AvailableAdditionalStorageVolumesOption: StaticStructureSchema;
|
|
19
22
|
export declare var AvailableProcessorFeature: StaticStructureSchema;
|
|
20
23
|
export declare var BacktrackDBClusterMessage: StaticStructureSchema;
|
|
21
24
|
export declare var BackupPolicyNotFoundFault: StaticErrorSchema;
|
|
@@ -382,6 +385,7 @@ export declare var MetricReference: StaticStructureSchema;
|
|
|
382
385
|
export declare var MinimumEngineVersionPerAllowedValue: StaticStructureSchema;
|
|
383
386
|
export declare var ModifyActivityStreamRequest: StaticStructureSchema;
|
|
384
387
|
export declare var ModifyActivityStreamResponse: StaticStructureSchema;
|
|
388
|
+
export declare var ModifyAdditionalStorageVolume: StaticStructureSchema;
|
|
385
389
|
export declare var ModifyCertificatesMessage: StaticStructureSchema;
|
|
386
390
|
export declare var ModifyCertificatesResult: StaticStructureSchema;
|
|
387
391
|
export declare var ModifyCurrentDBClusterCapacityMessage: StaticStructureSchema;
|
|
@@ -563,17 +567,22 @@ export declare var UnsupportedDBEngineVersionFault: StaticErrorSchema;
|
|
|
563
567
|
export declare var UpgradeTarget: StaticStructureSchema;
|
|
564
568
|
export declare var UserAuthConfig: StaticStructureSchema;
|
|
565
569
|
export declare var UserAuthConfigInfo: StaticStructureSchema;
|
|
570
|
+
export declare var ValidAdditionalStorageOptions: StaticStructureSchema;
|
|
566
571
|
export declare var ValidDBInstanceModificationsMessage: StaticStructureSchema;
|
|
567
572
|
export declare var ValidStorageOptions: StaticStructureSchema;
|
|
573
|
+
export declare var ValidVolumeOptions: StaticStructureSchema;
|
|
568
574
|
export declare var VpcEncryptionControlViolationException: StaticErrorSchema;
|
|
569
575
|
export declare var VpcSecurityGroupMembership: StaticStructureSchema;
|
|
570
576
|
export declare var __Unit: "unit";
|
|
571
577
|
export declare var RDSServiceException: StaticErrorSchema;
|
|
572
578
|
export declare var AccountQuotaList: StaticListSchema;
|
|
573
579
|
export declare var ActivityStreamModeList: number;
|
|
580
|
+
export declare var AdditionalStorageVolumesList: StaticListSchema;
|
|
581
|
+
export declare var AdditionalStorageVolumesOutputList: StaticListSchema;
|
|
574
582
|
export declare var AttributeValueList: StaticListSchema;
|
|
575
583
|
export declare var AvailabilityZoneList: StaticListSchema;
|
|
576
584
|
export declare var AvailabilityZones: StaticListSchema;
|
|
585
|
+
export declare var AvailableAdditionalStorageVolumesOptionList: StaticListSchema;
|
|
577
586
|
export declare var AvailableProcessorFeatureList: StaticListSchema;
|
|
578
587
|
export declare var BlueGreenDeploymentList: StaticListSchema;
|
|
579
588
|
export declare var BlueGreenDeploymentTaskList: StaticListSchema;
|
|
@@ -635,6 +644,7 @@ export declare var LogTypeList: number;
|
|
|
635
644
|
export declare var MetricList: StaticListSchema;
|
|
636
645
|
export declare var MetricReferenceList: StaticListSchema;
|
|
637
646
|
export declare var MinimumEngineVersionPerAllowedValueList: StaticListSchema;
|
|
647
|
+
export declare var ModifyAdditionalStorageVolumesList: StaticListSchema;
|
|
638
648
|
export declare var OptionConfigurationList: StaticListSchema;
|
|
639
649
|
export declare var OptionGroupMembershipList: StaticListSchema;
|
|
640
650
|
export declare var OptionGroupOptionSettingsList: StaticListSchema;
|
|
@@ -680,6 +690,7 @@ export declare var UserAuthConfigInfoList: StaticListSchema;
|
|
|
680
690
|
export declare var UserAuthConfigList: StaticListSchema;
|
|
681
691
|
export declare var ValidStorageOptionsList: StaticListSchema;
|
|
682
692
|
export declare var ValidUpgradeTargetList: StaticListSchema;
|
|
693
|
+
export declare var ValidVolumeOptionsList: StaticListSchema;
|
|
683
694
|
export declare var VpcSecurityGroupIdList: StaticListSchema;
|
|
684
695
|
export declare var VpcSecurityGroupMembershipList: StaticListSchema;
|
|
685
696
|
export declare var EncryptionContextMap: number;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
DescribeValidDBInstanceModificationsMessage,
|
|
5
|
+
DescribeValidDBInstanceModificationsResult,
|
|
6
|
+
} from "../models/models_1";
|
|
5
7
|
import {
|
|
6
8
|
RDSClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -41,6 +41,23 @@ export interface AccountQuota {
|
|
|
41
41
|
export interface AccountAttributesMessage {
|
|
42
42
|
AccountQuotas?: AccountQuota[] | undefined;
|
|
43
43
|
}
|
|
44
|
+
export interface AdditionalStorageVolume {
|
|
45
|
+
VolumeName: string | undefined;
|
|
46
|
+
AllocatedStorage?: number | undefined;
|
|
47
|
+
IOPS?: number | undefined;
|
|
48
|
+
MaxAllocatedStorage?: number | undefined;
|
|
49
|
+
StorageThroughput?: number | undefined;
|
|
50
|
+
StorageType?: string | undefined;
|
|
51
|
+
}
|
|
52
|
+
export interface AdditionalStorageVolumeOutput {
|
|
53
|
+
VolumeName?: string | undefined;
|
|
54
|
+
StorageVolumeStatus?: string | undefined;
|
|
55
|
+
AllocatedStorage?: number | undefined;
|
|
56
|
+
IOPS?: number | undefined;
|
|
57
|
+
MaxAllocatedStorage?: number | undefined;
|
|
58
|
+
StorageThroughput?: number | undefined;
|
|
59
|
+
StorageType?: string | undefined;
|
|
60
|
+
}
|
|
44
61
|
export interface AddRoleToDBClusterMessage {
|
|
45
62
|
DBClusterIdentifier: string | undefined;
|
|
46
63
|
RoleArn: string | undefined;
|
|
@@ -288,6 +305,7 @@ export interface DBSnapshot {
|
|
|
288
305
|
MultiTenant?: boolean | undefined;
|
|
289
306
|
DedicatedLogVolume?: boolean | undefined;
|
|
290
307
|
SnapshotAvailabilityZone?: string | undefined;
|
|
308
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
291
309
|
}
|
|
292
310
|
export interface CopyDBSnapshotResult {
|
|
293
311
|
DBSnapshot?: DBSnapshot | undefined;
|
|
@@ -395,6 +413,7 @@ export interface CreateCustomDBEngineVersionMessage {
|
|
|
395
413
|
Description?: string | undefined;
|
|
396
414
|
Manifest?: string | undefined;
|
|
397
415
|
Tags?: Tag[] | undefined;
|
|
416
|
+
DatabaseInstallationFiles?: string[] | undefined;
|
|
398
417
|
}
|
|
399
418
|
export interface CharacterSet {
|
|
400
419
|
CharacterSetName?: string | undefined;
|
|
@@ -461,6 +480,8 @@ export interface DBEngineVersion {
|
|
|
461
480
|
SupportsLocalWriteForwarding?: boolean | undefined;
|
|
462
481
|
SupportsIntegrations?: boolean | undefined;
|
|
463
482
|
ServerlessV2FeaturesSupport?: ServerlessV2FeaturesSupport | undefined;
|
|
483
|
+
DatabaseInstallationFiles?: string[] | undefined;
|
|
484
|
+
FailureReason?: string | undefined;
|
|
464
485
|
}
|
|
465
486
|
export interface RdsCustomClusterConfiguration {
|
|
466
487
|
InterconnectSubnetId?: string | undefined;
|
|
@@ -809,6 +830,7 @@ export interface CreateDBInstanceMessage {
|
|
|
809
830
|
DedicatedLogVolume?: boolean | undefined;
|
|
810
831
|
EngineLifecycleSupport?: string | undefined;
|
|
811
832
|
MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
|
|
833
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
812
834
|
}
|
|
813
835
|
export interface DBInstanceRole {
|
|
814
836
|
RoleArn?: string | undefined;
|
|
@@ -875,6 +897,7 @@ export interface PendingModifiedValues {
|
|
|
875
897
|
IAMDatabaseAuthenticationEnabled?: boolean | undefined;
|
|
876
898
|
DedicatedLogVolume?: boolean | undefined;
|
|
877
899
|
Engine?: string | undefined;
|
|
900
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
878
901
|
}
|
|
879
902
|
export interface DBInstanceStatusInfo {
|
|
880
903
|
StatusType?: string | undefined;
|
|
@@ -973,6 +996,8 @@ export interface DBInstance {
|
|
|
973
996
|
DedicatedLogVolume?: boolean | undefined;
|
|
974
997
|
IsStorageConfigUpgradeAvailable?: boolean | undefined;
|
|
975
998
|
EngineLifecycleSupport?: string | undefined;
|
|
999
|
+
AdditionalStorageVolumes?: AdditionalStorageVolumeOutput[] | undefined;
|
|
1000
|
+
StorageVolumeStatus?: string | undefined;
|
|
976
1001
|
}
|
|
977
1002
|
export interface CreateDBInstanceResult {
|
|
978
1003
|
DBInstance?: DBInstance | undefined;
|
|
@@ -1025,6 +1050,7 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
1025
1050
|
DedicatedLogVolume?: boolean | undefined;
|
|
1026
1051
|
UpgradeStorageConfig?: boolean | undefined;
|
|
1027
1052
|
CACertificateIdentifier?: string | undefined;
|
|
1053
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
1028
1054
|
}
|
|
1029
1055
|
export interface CreateDBInstanceReadReplicaResult {
|
|
1030
1056
|
DBInstance?: DBInstance | undefined;
|
|
@@ -1408,6 +1434,7 @@ export interface DBInstanceAutomatedBackup {
|
|
|
1408
1434
|
MultiTenant?: boolean | undefined;
|
|
1409
1435
|
AwsBackupRecoveryPointArn?: string | undefined;
|
|
1410
1436
|
DedicatedLogVolume?: boolean | undefined;
|
|
1437
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
1411
1438
|
}
|
|
1412
1439
|
export interface DeleteDBInstanceAutomatedBackupResult {
|
|
1413
1440
|
DBInstanceAutomatedBackup?: DBInstanceAutomatedBackup | undefined;
|
|
@@ -2146,6 +2173,20 @@ export interface DescribeOrderableDBInstanceOptionsMessage {
|
|
|
2146
2173
|
MaxRecords?: number | undefined;
|
|
2147
2174
|
Marker?: string | undefined;
|
|
2148
2175
|
}
|
|
2176
|
+
export interface AvailableAdditionalStorageVolumesOption {
|
|
2177
|
+
SupportsStorageAutoscaling?: boolean | undefined;
|
|
2178
|
+
SupportsStorageThroughput?: boolean | undefined;
|
|
2179
|
+
SupportsIops?: boolean | undefined;
|
|
2180
|
+
StorageType?: string | undefined;
|
|
2181
|
+
MinStorageSize?: number | undefined;
|
|
2182
|
+
MaxStorageSize?: number | undefined;
|
|
2183
|
+
MinIops?: number | undefined;
|
|
2184
|
+
MaxIops?: number | undefined;
|
|
2185
|
+
MinIopsPerGib?: number | undefined;
|
|
2186
|
+
MaxIopsPerGib?: number | undefined;
|
|
2187
|
+
MinStorageThroughput?: number | undefined;
|
|
2188
|
+
MaxStorageThroughput?: number | undefined;
|
|
2189
|
+
}
|
|
2149
2190
|
export interface AvailableProcessorFeature {
|
|
2150
2191
|
Name?: string | undefined;
|
|
2151
2192
|
DefaultValue?: string | undefined;
|
|
@@ -2189,6 +2230,10 @@ export interface OrderableDBInstanceOption {
|
|
|
2189
2230
|
SupportsClusters?: boolean | undefined;
|
|
2190
2231
|
SupportsDedicatedLogVolume?: boolean | undefined;
|
|
2191
2232
|
SupportsHttpEndpoint?: boolean | undefined;
|
|
2233
|
+
SupportsAdditionalStorageVolumes?: boolean | undefined;
|
|
2234
|
+
AvailableAdditionalStorageVolumesOptions?:
|
|
2235
|
+
| AvailableAdditionalStorageVolumesOption[]
|
|
2236
|
+
| undefined;
|
|
2192
2237
|
}
|
|
2193
2238
|
export interface OrderableDBInstanceOptionsMessage {
|
|
2194
2239
|
OrderableDBInstanceOptions?: OrderableDBInstanceOption[] | undefined;
|
|
@@ -2297,15 +2342,3 @@ export interface TenantDatabasesMessage {
|
|
|
2297
2342
|
Marker?: string | undefined;
|
|
2298
2343
|
TenantDatabases?: TenantDatabase[] | undefined;
|
|
2299
2344
|
}
|
|
2300
|
-
export interface DescribeValidDBInstanceModificationsMessage {
|
|
2301
|
-
DBInstanceIdentifier: string | undefined;
|
|
2302
|
-
}
|
|
2303
|
-
export interface DoubleRange {
|
|
2304
|
-
From?: number | undefined;
|
|
2305
|
-
To?: number | undefined;
|
|
2306
|
-
}
|
|
2307
|
-
export interface Range {
|
|
2308
|
-
From?: number | undefined;
|
|
2309
|
-
To?: number | undefined;
|
|
2310
|
-
Step?: number | undefined;
|
|
2311
|
-
}
|
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
ReplicaMode,
|
|
12
12
|
} from "./enums";
|
|
13
13
|
import {
|
|
14
|
+
AdditionalStorageVolume,
|
|
14
15
|
AvailableProcessorFeature,
|
|
15
16
|
BlueGreenDeployment,
|
|
16
17
|
Certificate,
|
|
@@ -27,7 +28,6 @@ import {
|
|
|
27
28
|
DBSnapshot,
|
|
28
29
|
DBSnapshotAttributesResult,
|
|
29
30
|
DBSubnetGroup,
|
|
30
|
-
DoubleRange,
|
|
31
31
|
EventSubscription,
|
|
32
32
|
Filter,
|
|
33
33
|
GlobalCluster,
|
|
@@ -35,7 +35,6 @@ import {
|
|
|
35
35
|
OptionSetting,
|
|
36
36
|
Parameter,
|
|
37
37
|
ProcessorFeature,
|
|
38
|
-
Range,
|
|
39
38
|
RdsCustomClusterConfiguration,
|
|
40
39
|
ReservedDBInstance,
|
|
41
40
|
ScalingConfiguration,
|
|
@@ -44,6 +43,18 @@ import {
|
|
|
44
43
|
TenantDatabase,
|
|
45
44
|
UserAuthConfig,
|
|
46
45
|
} from "./models_0";
|
|
46
|
+
export interface DescribeValidDBInstanceModificationsMessage {
|
|
47
|
+
DBInstanceIdentifier: string | undefined;
|
|
48
|
+
}
|
|
49
|
+
export interface DoubleRange {
|
|
50
|
+
From?: number | undefined;
|
|
51
|
+
To?: number | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface Range {
|
|
54
|
+
From?: number | undefined;
|
|
55
|
+
To?: number | undefined;
|
|
56
|
+
Step?: number | undefined;
|
|
57
|
+
}
|
|
47
58
|
export interface ValidStorageOptions {
|
|
48
59
|
StorageType?: string | undefined;
|
|
49
60
|
StorageSize?: Range[] | undefined;
|
|
@@ -53,10 +64,19 @@ export interface ValidStorageOptions {
|
|
|
53
64
|
StorageThroughputToIopsRatio?: DoubleRange[] | undefined;
|
|
54
65
|
SupportsStorageAutoscaling?: boolean | undefined;
|
|
55
66
|
}
|
|
67
|
+
export interface ValidVolumeOptions {
|
|
68
|
+
VolumeName?: string | undefined;
|
|
69
|
+
Storage?: ValidStorageOptions[] | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface ValidAdditionalStorageOptions {
|
|
72
|
+
SupportsAdditionalStorageVolumes?: boolean | undefined;
|
|
73
|
+
Volumes?: ValidVolumeOptions[] | undefined;
|
|
74
|
+
}
|
|
56
75
|
export interface ValidDBInstanceModificationsMessage {
|
|
57
76
|
Storage?: ValidStorageOptions[] | undefined;
|
|
58
77
|
ValidProcessorFeatures?: AvailableProcessorFeature[] | undefined;
|
|
59
78
|
SupportsDedicatedLogVolume?: boolean | undefined;
|
|
79
|
+
AdditionalStorage?: ValidAdditionalStorageOptions | undefined;
|
|
60
80
|
}
|
|
61
81
|
export interface DescribeValidDBInstanceModificationsResult {
|
|
62
82
|
ValidDBInstanceModificationsMessage?:
|
|
@@ -233,6 +253,15 @@ export interface ModifyDBClusterSnapshotAttributeResult {
|
|
|
233
253
|
| DBClusterSnapshotAttributesResult
|
|
234
254
|
| undefined;
|
|
235
255
|
}
|
|
256
|
+
export interface ModifyAdditionalStorageVolume {
|
|
257
|
+
VolumeName: string | undefined;
|
|
258
|
+
AllocatedStorage?: number | undefined;
|
|
259
|
+
IOPS?: number | undefined;
|
|
260
|
+
MaxAllocatedStorage?: number | undefined;
|
|
261
|
+
StorageThroughput?: number | undefined;
|
|
262
|
+
StorageType?: string | undefined;
|
|
263
|
+
SetForDelete?: boolean | undefined;
|
|
264
|
+
}
|
|
236
265
|
export interface ModifyDBInstanceMessage {
|
|
237
266
|
DBInstanceIdentifier: string | undefined;
|
|
238
267
|
AllocatedStorage?: number | undefined;
|
|
@@ -298,6 +327,7 @@ export interface ModifyDBInstanceMessage {
|
|
|
298
327
|
DedicatedLogVolume?: boolean | undefined;
|
|
299
328
|
Engine?: string | undefined;
|
|
300
329
|
MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
|
|
330
|
+
AdditionalStorageVolumes?: ModifyAdditionalStorageVolume[] | undefined;
|
|
301
331
|
}
|
|
302
332
|
export interface ModifyDBInstanceResult {
|
|
303
333
|
DBInstance?: DBInstance | undefined;
|
|
@@ -705,6 +735,7 @@ export interface RestoreDBInstanceFromDBSnapshotMessage {
|
|
|
705
735
|
EngineLifecycleSupport?: string | undefined;
|
|
706
736
|
ManageMasterUserPassword?: boolean | undefined;
|
|
707
737
|
MasterUserSecretKmsKeyId?: string | undefined;
|
|
738
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
708
739
|
}
|
|
709
740
|
export interface RestoreDBInstanceFromDBSnapshotResult {
|
|
710
741
|
DBInstance?: DBInstance | undefined;
|
|
@@ -762,6 +793,7 @@ export interface RestoreDBInstanceFromS3Message {
|
|
|
762
793
|
DedicatedLogVolume?: boolean | undefined;
|
|
763
794
|
CACertificateIdentifier?: string | undefined;
|
|
764
795
|
EngineLifecycleSupport?: string | undefined;
|
|
796
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
765
797
|
}
|
|
766
798
|
export interface RestoreDBInstanceFromS3Result {
|
|
767
799
|
DBInstance?: DBInstance | undefined;
|
|
@@ -815,6 +847,7 @@ export interface RestoreDBInstanceToPointInTimeMessage {
|
|
|
815
847
|
EngineLifecycleSupport?: string | undefined;
|
|
816
848
|
ManageMasterUserPassword?: boolean | undefined;
|
|
817
849
|
MasterUserSecretKmsKeyId?: string | undefined;
|
|
850
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
818
851
|
}
|
|
819
852
|
export interface RestoreDBInstanceToPointInTimeResult {
|
|
820
853
|
DBInstance?: DBInstance | undefined;
|
|
@@ -9,6 +9,8 @@ export declare var PotentiallySensitiveOptionSettingValue: StaticSimpleSchema;
|
|
|
9
9
|
export declare var SensitiveString: StaticSimpleSchema;
|
|
10
10
|
export declare var AccountAttributesMessage: StaticStructureSchema;
|
|
11
11
|
export declare var AccountQuota: StaticStructureSchema;
|
|
12
|
+
export declare var AdditionalStorageVolume: StaticStructureSchema;
|
|
13
|
+
export declare var AdditionalStorageVolumeOutput: StaticStructureSchema;
|
|
12
14
|
export declare var AddRoleToDBClusterMessage: StaticStructureSchema;
|
|
13
15
|
export declare var AddRoleToDBInstanceMessage: StaticStructureSchema;
|
|
14
16
|
export declare var AddSourceIdentifierToSubscriptionMessage: StaticStructureSchema;
|
|
@@ -22,6 +24,7 @@ export declare var AuthorizationQuotaExceededFault: StaticErrorSchema;
|
|
|
22
24
|
export declare var AuthorizeDBSecurityGroupIngressMessage: StaticStructureSchema;
|
|
23
25
|
export declare var AuthorizeDBSecurityGroupIngressResult: StaticStructureSchema;
|
|
24
26
|
export declare var AvailabilityZone: StaticStructureSchema;
|
|
27
|
+
export declare var AvailableAdditionalStorageVolumesOption: StaticStructureSchema;
|
|
25
28
|
export declare var AvailableProcessorFeature: StaticStructureSchema;
|
|
26
29
|
export declare var BacktrackDBClusterMessage: StaticStructureSchema;
|
|
27
30
|
export declare var BackupPolicyNotFoundFault: StaticErrorSchema;
|
|
@@ -388,6 +391,7 @@ export declare var MetricReference: StaticStructureSchema;
|
|
|
388
391
|
export declare var MinimumEngineVersionPerAllowedValue: StaticStructureSchema;
|
|
389
392
|
export declare var ModifyActivityStreamRequest: StaticStructureSchema;
|
|
390
393
|
export declare var ModifyActivityStreamResponse: StaticStructureSchema;
|
|
394
|
+
export declare var ModifyAdditionalStorageVolume: StaticStructureSchema;
|
|
391
395
|
export declare var ModifyCertificatesMessage: StaticStructureSchema;
|
|
392
396
|
export declare var ModifyCertificatesResult: StaticStructureSchema;
|
|
393
397
|
export declare var ModifyCurrentDBClusterCapacityMessage: StaticStructureSchema;
|
|
@@ -569,17 +573,22 @@ export declare var UnsupportedDBEngineVersionFault: StaticErrorSchema;
|
|
|
569
573
|
export declare var UpgradeTarget: StaticStructureSchema;
|
|
570
574
|
export declare var UserAuthConfig: StaticStructureSchema;
|
|
571
575
|
export declare var UserAuthConfigInfo: StaticStructureSchema;
|
|
576
|
+
export declare var ValidAdditionalStorageOptions: StaticStructureSchema;
|
|
572
577
|
export declare var ValidDBInstanceModificationsMessage: StaticStructureSchema;
|
|
573
578
|
export declare var ValidStorageOptions: StaticStructureSchema;
|
|
579
|
+
export declare var ValidVolumeOptions: StaticStructureSchema;
|
|
574
580
|
export declare var VpcEncryptionControlViolationException: StaticErrorSchema;
|
|
575
581
|
export declare var VpcSecurityGroupMembership: StaticStructureSchema;
|
|
576
582
|
export declare var __Unit: "unit";
|
|
577
583
|
export declare var RDSServiceException: StaticErrorSchema;
|
|
578
584
|
export declare var AccountQuotaList: StaticListSchema;
|
|
579
585
|
export declare var ActivityStreamModeList: number;
|
|
586
|
+
export declare var AdditionalStorageVolumesList: StaticListSchema;
|
|
587
|
+
export declare var AdditionalStorageVolumesOutputList: StaticListSchema;
|
|
580
588
|
export declare var AttributeValueList: StaticListSchema;
|
|
581
589
|
export declare var AvailabilityZoneList: StaticListSchema;
|
|
582
590
|
export declare var AvailabilityZones: StaticListSchema;
|
|
591
|
+
export declare var AvailableAdditionalStorageVolumesOptionList: StaticListSchema;
|
|
583
592
|
export declare var AvailableProcessorFeatureList: StaticListSchema;
|
|
584
593
|
export declare var BlueGreenDeploymentList: StaticListSchema;
|
|
585
594
|
export declare var BlueGreenDeploymentTaskList: StaticListSchema;
|
|
@@ -641,6 +650,7 @@ export declare var LogTypeList: number;
|
|
|
641
650
|
export declare var MetricList: StaticListSchema;
|
|
642
651
|
export declare var MetricReferenceList: StaticListSchema;
|
|
643
652
|
export declare var MinimumEngineVersionPerAllowedValueList: StaticListSchema;
|
|
653
|
+
export declare var ModifyAdditionalStorageVolumesList: StaticListSchema;
|
|
644
654
|
export declare var OptionConfigurationList: StaticListSchema;
|
|
645
655
|
export declare var OptionGroupMembershipList: StaticListSchema;
|
|
646
656
|
export declare var OptionGroupOptionSettingsList: StaticListSchema;
|
|
@@ -686,6 +696,7 @@ export declare var UserAuthConfigInfoList: StaticListSchema;
|
|
|
686
696
|
export declare var UserAuthConfigList: StaticListSchema;
|
|
687
697
|
export declare var ValidStorageOptionsList: StaticListSchema;
|
|
688
698
|
export declare var ValidUpgradeTargetList: StaticListSchema;
|
|
699
|
+
export declare var ValidVolumeOptionsList: StaticListSchema;
|
|
689
700
|
export declare var VpcSecurityGroupIdList: StaticListSchema;
|
|
690
701
|
export declare var VpcSecurityGroupMembershipList: StaticListSchema;
|
|
691
702
|
export declare var EncryptionContextMap: number;
|