@aws-sdk/client-rds 3.496.0 → 3.497.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 +209 -205
- package/dist-es/models/models_0.js +12 -12
- package/dist-es/protocols/Aws_query.js +3 -0
- package/dist-types/commands/CreateDBClusterCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +13 -13
- package/dist-types/ts3.4/models/models_0.d.ts +10 -10
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -1530,6 +1530,23 @@ var _GlobalClusterNotFoundFault = class _GlobalClusterNotFoundFault extends RDSS
|
|
|
1530
1530
|
};
|
|
1531
1531
|
__name(_GlobalClusterNotFoundFault, "GlobalClusterNotFoundFault");
|
|
1532
1532
|
var GlobalClusterNotFoundFault = _GlobalClusterNotFoundFault;
|
|
1533
|
+
var _InsufficientDBInstanceCapacityFault = class _InsufficientDBInstanceCapacityFault extends RDSServiceException {
|
|
1534
|
+
/**
|
|
1535
|
+
* @internal
|
|
1536
|
+
*/
|
|
1537
|
+
constructor(opts) {
|
|
1538
|
+
super({
|
|
1539
|
+
name: "InsufficientDBInstanceCapacityFault",
|
|
1540
|
+
$fault: "client",
|
|
1541
|
+
...opts
|
|
1542
|
+
});
|
|
1543
|
+
this.name = "InsufficientDBInstanceCapacityFault";
|
|
1544
|
+
this.$fault = "client";
|
|
1545
|
+
Object.setPrototypeOf(this, _InsufficientDBInstanceCapacityFault.prototype);
|
|
1546
|
+
}
|
|
1547
|
+
};
|
|
1548
|
+
__name(_InsufficientDBInstanceCapacityFault, "InsufficientDBInstanceCapacityFault");
|
|
1549
|
+
var InsufficientDBInstanceCapacityFault = _InsufficientDBInstanceCapacityFault;
|
|
1533
1550
|
var _InsufficientStorageClusterCapacityFault = class _InsufficientStorageClusterCapacityFault extends RDSServiceException {
|
|
1534
1551
|
/**
|
|
1535
1552
|
* @internal
|
|
@@ -1755,23 +1772,6 @@ var _DBInstanceAlreadyExistsFault = class _DBInstanceAlreadyExistsFault extends
|
|
|
1755
1772
|
};
|
|
1756
1773
|
__name(_DBInstanceAlreadyExistsFault, "DBInstanceAlreadyExistsFault");
|
|
1757
1774
|
var DBInstanceAlreadyExistsFault = _DBInstanceAlreadyExistsFault;
|
|
1758
|
-
var _InsufficientDBInstanceCapacityFault = class _InsufficientDBInstanceCapacityFault extends RDSServiceException {
|
|
1759
|
-
/**
|
|
1760
|
-
* @internal
|
|
1761
|
-
*/
|
|
1762
|
-
constructor(opts) {
|
|
1763
|
-
super({
|
|
1764
|
-
name: "InsufficientDBInstanceCapacityFault",
|
|
1765
|
-
$fault: "client",
|
|
1766
|
-
...opts
|
|
1767
|
-
});
|
|
1768
|
-
this.name = "InsufficientDBInstanceCapacityFault";
|
|
1769
|
-
this.$fault = "client";
|
|
1770
|
-
Object.setPrototypeOf(this, _InsufficientDBInstanceCapacityFault.prototype);
|
|
1771
|
-
}
|
|
1772
|
-
};
|
|
1773
|
-
__name(_InsufficientDBInstanceCapacityFault, "InsufficientDBInstanceCapacityFault");
|
|
1774
|
-
var InsufficientDBInstanceCapacityFault = _InsufficientDBInstanceCapacityFault;
|
|
1775
1775
|
var _NetworkTypeNotSupported = class _NetworkTypeNotSupported extends RDSServiceException {
|
|
1776
1776
|
/**
|
|
1777
1777
|
* @internal
|
|
@@ -5377,6 +5377,9 @@ var de_CreateDBClusterCommandError = /* @__PURE__ */ __name(async (output, conte
|
|
|
5377
5377
|
case "GlobalClusterNotFoundFault":
|
|
5378
5378
|
case "com.amazonaws.rds#GlobalClusterNotFoundFault":
|
|
5379
5379
|
throw await de_GlobalClusterNotFoundFaultRes(parsedOutput, context);
|
|
5380
|
+
case "InsufficientDBInstanceCapacity":
|
|
5381
|
+
case "com.amazonaws.rds#InsufficientDBInstanceCapacityFault":
|
|
5382
|
+
throw await de_InsufficientDBInstanceCapacityFaultRes(parsedOutput, context);
|
|
5380
5383
|
case "InsufficientStorageClusterCapacity":
|
|
5381
5384
|
case "com.amazonaws.rds#InsufficientStorageClusterCapacityFault":
|
|
5382
5385
|
throw await de_InsufficientStorageClusterCapacityFaultRes(parsedOutput, context);
|
|
@@ -28660,29 +28663,19 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
28660
28663
|
// Annotate the CommonJS export names for ESM import in node:
|
|
28661
28664
|
|
|
28662
28665
|
0 && (module.exports = {
|
|
28663
|
-
|
|
28664
|
-
|
|
28665
|
-
|
|
28666
|
+
RDSServiceException,
|
|
28667
|
+
__Client,
|
|
28668
|
+
RDSClient,
|
|
28669
|
+
RDS,
|
|
28670
|
+
$Command,
|
|
28666
28671
|
AddRoleToDBClusterCommand,
|
|
28667
28672
|
AddRoleToDBInstanceCommand,
|
|
28668
28673
|
AddSourceIdentifierToSubscriptionCommand,
|
|
28669
28674
|
AddTagsToResourceCommand,
|
|
28670
|
-
ApplyMethod,
|
|
28671
28675
|
ApplyPendingMaintenanceActionCommand,
|
|
28672
|
-
AuditPolicyState,
|
|
28673
|
-
AuthScheme,
|
|
28674
|
-
AuthorizationAlreadyExistsFault,
|
|
28675
|
-
AuthorizationNotFoundFault,
|
|
28676
|
-
AuthorizationQuotaExceededFault,
|
|
28677
28676
|
AuthorizeDBSecurityGroupIngressCommand,
|
|
28678
|
-
AutomationMode,
|
|
28679
28677
|
BacktrackDBClusterCommand,
|
|
28680
|
-
BackupPolicyNotFoundFault,
|
|
28681
|
-
BlueGreenDeploymentAlreadyExistsFault,
|
|
28682
|
-
BlueGreenDeploymentNotFoundFault,
|
|
28683
28678
|
CancelExportTaskCommand,
|
|
28684
|
-
CertificateNotFoundFault,
|
|
28685
|
-
ClientPasswordAuthType,
|
|
28686
28679
|
CopyDBClusterParameterGroupCommand,
|
|
28687
28680
|
CopyDBClusterSnapshotCommand,
|
|
28688
28681
|
CopyDBParameterGroupCommand,
|
|
@@ -28690,7 +28683,6 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
28690
28683
|
CopyOptionGroupCommand,
|
|
28691
28684
|
CreateBlueGreenDeploymentCommand,
|
|
28692
28685
|
CreateCustomDBEngineVersionCommand,
|
|
28693
|
-
CreateCustomDBEngineVersionFault,
|
|
28694
28686
|
CreateDBClusterCommand,
|
|
28695
28687
|
CreateDBClusterEndpointCommand,
|
|
28696
28688
|
CreateDBClusterParameterGroupCommand,
|
|
@@ -28708,65 +28700,6 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
28708
28700
|
CreateIntegrationCommand,
|
|
28709
28701
|
CreateOptionGroupCommand,
|
|
28710
28702
|
CreateTenantDatabaseCommand,
|
|
28711
|
-
CreateTenantDatabaseMessageFilterSensitiveLog,
|
|
28712
|
-
CreateTenantDatabaseResultFilterSensitiveLog,
|
|
28713
|
-
CustomAvailabilityZoneNotFoundFault,
|
|
28714
|
-
CustomDBEngineVersionAlreadyExistsFault,
|
|
28715
|
-
CustomDBEngineVersionNotFoundFault,
|
|
28716
|
-
CustomDBEngineVersionQuotaExceededFault,
|
|
28717
|
-
CustomEngineVersionStatus,
|
|
28718
|
-
DBClusterAlreadyExistsFault,
|
|
28719
|
-
DBClusterAutomatedBackupNotFoundFault,
|
|
28720
|
-
DBClusterAutomatedBackupQuotaExceededFault,
|
|
28721
|
-
DBClusterBacktrackNotFoundFault,
|
|
28722
|
-
DBClusterEndpointAlreadyExistsFault,
|
|
28723
|
-
DBClusterEndpointNotFoundFault,
|
|
28724
|
-
DBClusterEndpointQuotaExceededFault,
|
|
28725
|
-
DBClusterNotFoundFault,
|
|
28726
|
-
DBClusterParameterGroupNotFoundFault,
|
|
28727
|
-
DBClusterQuotaExceededFault,
|
|
28728
|
-
DBClusterRoleAlreadyExistsFault,
|
|
28729
|
-
DBClusterRoleNotFoundFault,
|
|
28730
|
-
DBClusterRoleQuotaExceededFault,
|
|
28731
|
-
DBClusterSnapshotAlreadyExistsFault,
|
|
28732
|
-
DBClusterSnapshotNotFoundFault,
|
|
28733
|
-
DBInstanceAlreadyExistsFault,
|
|
28734
|
-
DBInstanceAutomatedBackupNotFoundFault,
|
|
28735
|
-
DBInstanceAutomatedBackupQuotaExceededFault,
|
|
28736
|
-
DBInstanceNotFoundFault,
|
|
28737
|
-
DBInstanceRoleAlreadyExistsFault,
|
|
28738
|
-
DBInstanceRoleNotFoundFault,
|
|
28739
|
-
DBInstanceRoleQuotaExceededFault,
|
|
28740
|
-
DBLogFileNotFoundFault,
|
|
28741
|
-
DBParameterGroupAlreadyExistsFault,
|
|
28742
|
-
DBParameterGroupNotFoundFault,
|
|
28743
|
-
DBParameterGroupQuotaExceededFault,
|
|
28744
|
-
DBProxyAlreadyExistsFault,
|
|
28745
|
-
DBProxyEndpointAlreadyExistsFault,
|
|
28746
|
-
DBProxyEndpointNotFoundFault,
|
|
28747
|
-
DBProxyEndpointQuotaExceededFault,
|
|
28748
|
-
DBProxyEndpointStatus,
|
|
28749
|
-
DBProxyEndpointTargetRole,
|
|
28750
|
-
DBProxyNotFoundFault,
|
|
28751
|
-
DBProxyQuotaExceededFault,
|
|
28752
|
-
DBProxyStatus,
|
|
28753
|
-
DBProxyTargetAlreadyRegisteredFault,
|
|
28754
|
-
DBProxyTargetGroupNotFoundFault,
|
|
28755
|
-
DBProxyTargetNotFoundFault,
|
|
28756
|
-
DBSecurityGroupAlreadyExistsFault,
|
|
28757
|
-
DBSecurityGroupNotFoundFault,
|
|
28758
|
-
DBSecurityGroupNotSupportedFault,
|
|
28759
|
-
DBSecurityGroupQuotaExceededFault,
|
|
28760
|
-
DBSnapshotAlreadyExistsFault,
|
|
28761
|
-
DBSnapshotNotFoundFault,
|
|
28762
|
-
DBSnapshotTenantDatabaseNotFoundFault,
|
|
28763
|
-
DBSubnetGroupAlreadyExistsFault,
|
|
28764
|
-
DBSubnetGroupDoesNotCoverEnoughAZs,
|
|
28765
|
-
DBSubnetGroupNotAllowedFault,
|
|
28766
|
-
DBSubnetGroupNotFoundFault,
|
|
28767
|
-
DBSubnetGroupQuotaExceededFault,
|
|
28768
|
-
DBSubnetQuotaExceededFault,
|
|
28769
|
-
DBUpgradeDependencyFailureFault,
|
|
28770
28703
|
DeleteBlueGreenDeploymentCommand,
|
|
28771
28704
|
DeleteCustomDBEngineVersionCommand,
|
|
28772
28705
|
DeleteDBClusterAutomatedBackupCommand,
|
|
@@ -28787,7 +28720,6 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
28787
28720
|
DeleteIntegrationCommand,
|
|
28788
28721
|
DeleteOptionGroupCommand,
|
|
28789
28722
|
DeleteTenantDatabaseCommand,
|
|
28790
|
-
DeleteTenantDatabaseResultFilterSensitiveLog,
|
|
28791
28723
|
DeregisterDBProxyTargetsCommand,
|
|
28792
28724
|
DescribeAccountAttributesCommand,
|
|
28793
28725
|
DescribeBlueGreenDeploymentsCommand,
|
|
@@ -28834,67 +28766,11 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
28834
28766
|
DescribeTenantDatabasesCommand,
|
|
28835
28767
|
DescribeValidDBInstanceModificationsCommand,
|
|
28836
28768
|
DisableHttpEndpointCommand,
|
|
28837
|
-
DomainNotFoundFault,
|
|
28838
28769
|
DownloadDBLogFilePortionCommand,
|
|
28839
|
-
Ec2ImagePropertiesNotSupportedFault,
|
|
28840
28770
|
EnableHttpEndpointCommand,
|
|
28841
|
-
EngineFamily,
|
|
28842
|
-
EventSubscriptionQuotaExceededFault,
|
|
28843
|
-
ExportSourceType,
|
|
28844
|
-
ExportTaskAlreadyExistsFault,
|
|
28845
|
-
ExportTaskNotFoundFault,
|
|
28846
28771
|
FailoverDBClusterCommand,
|
|
28847
28772
|
FailoverGlobalClusterCommand,
|
|
28848
|
-
FailoverStatus,
|
|
28849
|
-
GlobalClusterAlreadyExistsFault,
|
|
28850
|
-
GlobalClusterMemberSynchronizationStatus,
|
|
28851
|
-
GlobalClusterNotFoundFault,
|
|
28852
|
-
GlobalClusterQuotaExceededFault,
|
|
28853
|
-
IAMAuthMode,
|
|
28854
|
-
IamRoleMissingPermissionsFault,
|
|
28855
|
-
IamRoleNotFoundFault,
|
|
28856
|
-
InstanceQuotaExceededFault,
|
|
28857
|
-
InsufficientAvailableIPsInSubnetFault,
|
|
28858
|
-
InsufficientDBClusterCapacityFault,
|
|
28859
|
-
InsufficientDBInstanceCapacityFault,
|
|
28860
|
-
InsufficientStorageClusterCapacityFault,
|
|
28861
|
-
IntegrationAlreadyExistsFault,
|
|
28862
|
-
IntegrationConflictOperationFault,
|
|
28863
|
-
IntegrationNotFoundFault,
|
|
28864
|
-
IntegrationQuotaExceededFault,
|
|
28865
|
-
IntegrationStatus,
|
|
28866
|
-
InvalidBlueGreenDeploymentStateFault,
|
|
28867
|
-
InvalidCustomDBEngineVersionStateFault,
|
|
28868
|
-
InvalidDBClusterAutomatedBackupStateFault,
|
|
28869
|
-
InvalidDBClusterCapacityFault,
|
|
28870
|
-
InvalidDBClusterEndpointStateFault,
|
|
28871
|
-
InvalidDBClusterSnapshotStateFault,
|
|
28872
|
-
InvalidDBClusterStateFault,
|
|
28873
|
-
InvalidDBInstanceAutomatedBackupStateFault,
|
|
28874
|
-
InvalidDBInstanceStateFault,
|
|
28875
|
-
InvalidDBParameterGroupStateFault,
|
|
28876
|
-
InvalidDBProxyEndpointStateFault,
|
|
28877
|
-
InvalidDBProxyStateFault,
|
|
28878
|
-
InvalidDBSecurityGroupStateFault,
|
|
28879
|
-
InvalidDBSnapshotStateFault,
|
|
28880
|
-
InvalidDBSubnetGroupFault,
|
|
28881
|
-
InvalidDBSubnetGroupStateFault,
|
|
28882
|
-
InvalidDBSubnetStateFault,
|
|
28883
|
-
InvalidEventSubscriptionStateFault,
|
|
28884
|
-
InvalidExportOnlyFault,
|
|
28885
|
-
InvalidExportSourceStateFault,
|
|
28886
|
-
InvalidExportTaskStateFault,
|
|
28887
|
-
InvalidGlobalClusterStateFault,
|
|
28888
|
-
InvalidIntegrationStateFault,
|
|
28889
|
-
InvalidOptionGroupStateFault,
|
|
28890
|
-
InvalidResourceStateFault,
|
|
28891
|
-
InvalidRestoreFault,
|
|
28892
|
-
InvalidS3BucketFault,
|
|
28893
|
-
InvalidSubnet,
|
|
28894
|
-
InvalidVPCNetworkStateFault,
|
|
28895
|
-
KMSKeyNotAccessibleFault,
|
|
28896
28773
|
ListTagsForResourceCommand,
|
|
28897
|
-
LocalWriteForwardingStatus,
|
|
28898
28774
|
ModifyActivityStreamCommand,
|
|
28899
28775
|
ModifyCertificatesCommand,
|
|
28900
28776
|
ModifyCurrentDBClusterCapacityCommand,
|
|
@@ -28916,20 +28792,9 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
28916
28792
|
ModifyGlobalClusterCommand,
|
|
28917
28793
|
ModifyOptionGroupCommand,
|
|
28918
28794
|
ModifyTenantDatabaseCommand,
|
|
28919
|
-
ModifyTenantDatabaseMessageFilterSensitiveLog,
|
|
28920
|
-
ModifyTenantDatabaseResultFilterSensitiveLog,
|
|
28921
|
-
NetworkTypeNotSupported,
|
|
28922
|
-
OptionGroupAlreadyExistsFault,
|
|
28923
|
-
OptionGroupNotFoundFault,
|
|
28924
|
-
OptionGroupQuotaExceededFault,
|
|
28925
|
-
PointInTimeRestoreNotEnabledFault,
|
|
28926
28795
|
PromoteReadReplicaCommand,
|
|
28927
28796
|
PromoteReadReplicaDBClusterCommand,
|
|
28928
|
-
ProvisionedIopsNotAvailableInAZFault,
|
|
28929
28797
|
PurchaseReservedDBInstancesOfferingCommand,
|
|
28930
|
-
RDS,
|
|
28931
|
-
RDSClient,
|
|
28932
|
-
RDSServiceException,
|
|
28933
28798
|
RebootDBClusterCommand,
|
|
28934
28799
|
RebootDBInstanceCommand,
|
|
28935
28800
|
RegisterDBProxyTargetsCommand,
|
|
@@ -28938,14 +28803,8 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
28938
28803
|
RemoveRoleFromDBInstanceCommand,
|
|
28939
28804
|
RemoveSourceIdentifierFromSubscriptionCommand,
|
|
28940
28805
|
RemoveTagsFromResourceCommand,
|
|
28941
|
-
ReplicaMode,
|
|
28942
|
-
ReservedDBInstanceAlreadyExistsFault,
|
|
28943
|
-
ReservedDBInstanceNotFoundFault,
|
|
28944
|
-
ReservedDBInstanceQuotaExceededFault,
|
|
28945
|
-
ReservedDBInstancesOfferingNotFoundFault,
|
|
28946
28806
|
ResetDBClusterParameterGroupCommand,
|
|
28947
28807
|
ResetDBParameterGroupCommand,
|
|
28948
|
-
ResourceNotFoundFault,
|
|
28949
28808
|
RestoreDBClusterFromS3Command,
|
|
28950
28809
|
RestoreDBClusterFromSnapshotCommand,
|
|
28951
28810
|
RestoreDBClusterToPointInTimeCommand,
|
|
@@ -28953,15 +28812,6 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
28953
28812
|
RestoreDBInstanceFromS3Command,
|
|
28954
28813
|
RestoreDBInstanceToPointInTimeCommand,
|
|
28955
28814
|
RevokeDBSecurityGroupIngressCommand,
|
|
28956
|
-
SNSInvalidTopicFault,
|
|
28957
|
-
SNSNoAuthorizationFault,
|
|
28958
|
-
SNSTopicArnNotFoundFault,
|
|
28959
|
-
SharedSnapshotQuotaExceededFault,
|
|
28960
|
-
SnapshotQuotaExceededFault,
|
|
28961
|
-
SourceClusterNotSupportedFault,
|
|
28962
|
-
SourceDatabaseNotSupportedFault,
|
|
28963
|
-
SourceNotFoundFault,
|
|
28964
|
-
SourceType,
|
|
28965
28815
|
StartActivityStreamCommand,
|
|
28966
28816
|
StartDBClusterCommand,
|
|
28967
28817
|
StartDBInstanceAutomatedBackupsReplicationCommand,
|
|
@@ -28971,28 +28821,9 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
28971
28821
|
StopDBClusterCommand,
|
|
28972
28822
|
StopDBInstanceAutomatedBackupsReplicationCommand,
|
|
28973
28823
|
StopDBInstanceCommand,
|
|
28974
|
-
StorageQuotaExceededFault,
|
|
28975
|
-
StorageTypeNotAvailableFault,
|
|
28976
|
-
StorageTypeNotSupportedFault,
|
|
28977
|
-
SubnetAlreadyInUse,
|
|
28978
|
-
SubscriptionAlreadyExistFault,
|
|
28979
|
-
SubscriptionCategoryNotFoundFault,
|
|
28980
|
-
SubscriptionNotFoundFault,
|
|
28981
28824
|
SwitchoverBlueGreenDeploymentCommand,
|
|
28982
28825
|
SwitchoverGlobalClusterCommand,
|
|
28983
28826
|
SwitchoverReadReplicaCommand,
|
|
28984
|
-
TargetHealthReason,
|
|
28985
|
-
TargetRole,
|
|
28986
|
-
TargetState,
|
|
28987
|
-
TargetType,
|
|
28988
|
-
TenantDatabaseAlreadyExistsFault,
|
|
28989
|
-
TenantDatabaseFilterSensitiveLog,
|
|
28990
|
-
TenantDatabaseNotFoundFault,
|
|
28991
|
-
TenantDatabasePendingModifiedValuesFilterSensitiveLog,
|
|
28992
|
-
TenantDatabaseQuotaExceededFault,
|
|
28993
|
-
TenantDatabasesMessageFilterSensitiveLog,
|
|
28994
|
-
WriteForwardingStatus,
|
|
28995
|
-
__Client,
|
|
28996
28827
|
paginateDescribeBlueGreenDeployments,
|
|
28997
28828
|
paginateDescribeCertificates,
|
|
28998
28829
|
paginateDescribeDBClusterAutomatedBackups,
|
|
@@ -29027,30 +28858,203 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
29027
28858
|
paginateDescribeOptionGroups,
|
|
29028
28859
|
paginateDescribeOrderableDBInstanceOptions,
|
|
29029
28860
|
paginateDescribePendingMaintenanceActions,
|
|
29030
|
-
paginateDescribeReservedDBInstances,
|
|
29031
28861
|
paginateDescribeReservedDBInstancesOfferings,
|
|
28862
|
+
paginateDescribeReservedDBInstances,
|
|
29032
28863
|
paginateDescribeSourceRegions,
|
|
29033
28864
|
paginateDescribeTenantDatabases,
|
|
29034
28865
|
paginateDownloadDBLogFilePortion,
|
|
29035
28866
|
waitForDBClusterAvailable,
|
|
29036
|
-
waitForDBClusterDeleted,
|
|
29037
|
-
waitForDBClusterSnapshotAvailable,
|
|
29038
|
-
waitForDBClusterSnapshotDeleted,
|
|
29039
|
-
waitForDBInstanceAvailable,
|
|
29040
|
-
waitForDBInstanceDeleted,
|
|
29041
|
-
waitForDBSnapshotAvailable,
|
|
29042
|
-
waitForDBSnapshotDeleted,
|
|
29043
|
-
waitForTenantDatabaseAvailable,
|
|
29044
|
-
waitForTenantDatabaseDeleted,
|
|
29045
28867
|
waitUntilDBClusterAvailable,
|
|
28868
|
+
waitForDBClusterDeleted,
|
|
29046
28869
|
waitUntilDBClusterDeleted,
|
|
28870
|
+
waitForDBClusterSnapshotAvailable,
|
|
29047
28871
|
waitUntilDBClusterSnapshotAvailable,
|
|
28872
|
+
waitForDBClusterSnapshotDeleted,
|
|
29048
28873
|
waitUntilDBClusterSnapshotDeleted,
|
|
28874
|
+
waitForDBInstanceAvailable,
|
|
29049
28875
|
waitUntilDBInstanceAvailable,
|
|
28876
|
+
waitForDBInstanceDeleted,
|
|
29050
28877
|
waitUntilDBInstanceDeleted,
|
|
28878
|
+
waitForDBSnapshotAvailable,
|
|
29051
28879
|
waitUntilDBSnapshotAvailable,
|
|
28880
|
+
waitForDBSnapshotDeleted,
|
|
29052
28881
|
waitUntilDBSnapshotDeleted,
|
|
28882
|
+
waitForTenantDatabaseAvailable,
|
|
29053
28883
|
waitUntilTenantDatabaseAvailable,
|
|
29054
|
-
|
|
28884
|
+
waitForTenantDatabaseDeleted,
|
|
28885
|
+
waitUntilTenantDatabaseDeleted,
|
|
28886
|
+
ActivityStreamMode,
|
|
28887
|
+
ActivityStreamPolicyStatus,
|
|
28888
|
+
ActivityStreamStatus,
|
|
28889
|
+
DBClusterNotFoundFault,
|
|
28890
|
+
DBClusterRoleAlreadyExistsFault,
|
|
28891
|
+
DBClusterRoleQuotaExceededFault,
|
|
28892
|
+
InvalidDBClusterStateFault,
|
|
28893
|
+
DBInstanceNotFoundFault,
|
|
28894
|
+
DBInstanceRoleAlreadyExistsFault,
|
|
28895
|
+
DBInstanceRoleQuotaExceededFault,
|
|
28896
|
+
InvalidDBInstanceStateFault,
|
|
28897
|
+
SourceNotFoundFault,
|
|
28898
|
+
SubscriptionNotFoundFault,
|
|
28899
|
+
BlueGreenDeploymentNotFoundFault,
|
|
28900
|
+
DBProxyNotFoundFault,
|
|
28901
|
+
DBProxyTargetGroupNotFoundFault,
|
|
28902
|
+
DBSnapshotNotFoundFault,
|
|
28903
|
+
DBSnapshotTenantDatabaseNotFoundFault,
|
|
28904
|
+
IntegrationNotFoundFault,
|
|
28905
|
+
TenantDatabaseNotFoundFault,
|
|
28906
|
+
ResourceNotFoundFault,
|
|
28907
|
+
AuthorizationAlreadyExistsFault,
|
|
28908
|
+
AuthorizationQuotaExceededFault,
|
|
28909
|
+
DBSecurityGroupNotFoundFault,
|
|
28910
|
+
InvalidDBSecurityGroupStateFault,
|
|
28911
|
+
ExportSourceType,
|
|
28912
|
+
ExportTaskNotFoundFault,
|
|
28913
|
+
InvalidExportTaskStateFault,
|
|
28914
|
+
DBParameterGroupAlreadyExistsFault,
|
|
28915
|
+
DBParameterGroupNotFoundFault,
|
|
28916
|
+
DBParameterGroupQuotaExceededFault,
|
|
28917
|
+
DBClusterSnapshotAlreadyExistsFault,
|
|
28918
|
+
DBClusterSnapshotNotFoundFault,
|
|
28919
|
+
InvalidDBClusterSnapshotStateFault,
|
|
28920
|
+
KMSKeyNotAccessibleFault,
|
|
28921
|
+
SnapshotQuotaExceededFault,
|
|
28922
|
+
CustomAvailabilityZoneNotFoundFault,
|
|
28923
|
+
DBSnapshotAlreadyExistsFault,
|
|
28924
|
+
InvalidDBSnapshotStateFault,
|
|
28925
|
+
OptionGroupAlreadyExistsFault,
|
|
28926
|
+
OptionGroupNotFoundFault,
|
|
28927
|
+
OptionGroupQuotaExceededFault,
|
|
28928
|
+
BlueGreenDeploymentAlreadyExistsFault,
|
|
28929
|
+
DBClusterParameterGroupNotFoundFault,
|
|
28930
|
+
DBClusterQuotaExceededFault,
|
|
28931
|
+
InstanceQuotaExceededFault,
|
|
28932
|
+
SourceClusterNotSupportedFault,
|
|
28933
|
+
SourceDatabaseNotSupportedFault,
|
|
28934
|
+
CreateCustomDBEngineVersionFault,
|
|
28935
|
+
CustomDBEngineVersionAlreadyExistsFault,
|
|
28936
|
+
CustomDBEngineVersionQuotaExceededFault,
|
|
28937
|
+
Ec2ImagePropertiesNotSupportedFault,
|
|
28938
|
+
ReplicaMode,
|
|
28939
|
+
WriteForwardingStatus,
|
|
28940
|
+
LocalWriteForwardingStatus,
|
|
28941
|
+
DBClusterAlreadyExistsFault,
|
|
28942
|
+
DBSubnetGroupDoesNotCoverEnoughAZs,
|
|
28943
|
+
DBSubnetGroupNotFoundFault,
|
|
28944
|
+
DomainNotFoundFault,
|
|
28945
|
+
GlobalClusterNotFoundFault,
|
|
28946
|
+
InsufficientDBInstanceCapacityFault,
|
|
28947
|
+
InsufficientStorageClusterCapacityFault,
|
|
28948
|
+
InvalidDBSubnetGroupFault,
|
|
28949
|
+
InvalidDBSubnetGroupStateFault,
|
|
28950
|
+
InvalidGlobalClusterStateFault,
|
|
28951
|
+
InvalidSubnet,
|
|
28952
|
+
InvalidVPCNetworkStateFault,
|
|
28953
|
+
StorageQuotaExceededFault,
|
|
28954
|
+
DBClusterEndpointAlreadyExistsFault,
|
|
28955
|
+
DBClusterEndpointQuotaExceededFault,
|
|
28956
|
+
AuthorizationNotFoundFault,
|
|
28957
|
+
BackupPolicyNotFoundFault,
|
|
28958
|
+
CertificateNotFoundFault,
|
|
28959
|
+
AutomationMode,
|
|
28960
|
+
DBInstanceAlreadyExistsFault,
|
|
28961
|
+
NetworkTypeNotSupported,
|
|
28962
|
+
ProvisionedIopsNotAvailableInAZFault,
|
|
28963
|
+
StorageTypeNotSupportedFault,
|
|
28964
|
+
TenantDatabaseQuotaExceededFault,
|
|
28965
|
+
DBSubnetGroupNotAllowedFault,
|
|
28966
|
+
AuthScheme,
|
|
28967
|
+
ClientPasswordAuthType,
|
|
28968
|
+
IAMAuthMode,
|
|
28969
|
+
EngineFamily,
|
|
28970
|
+
DBProxyStatus,
|
|
28971
|
+
DBProxyAlreadyExistsFault,
|
|
28972
|
+
DBProxyQuotaExceededFault,
|
|
28973
|
+
DBProxyEndpointTargetRole,
|
|
28974
|
+
DBProxyEndpointStatus,
|
|
28975
|
+
DBProxyEndpointAlreadyExistsFault,
|
|
28976
|
+
DBProxyEndpointQuotaExceededFault,
|
|
28977
|
+
InvalidDBProxyStateFault,
|
|
28978
|
+
DBSecurityGroupAlreadyExistsFault,
|
|
28979
|
+
DBSecurityGroupNotSupportedFault,
|
|
28980
|
+
DBSecurityGroupQuotaExceededFault,
|
|
28981
|
+
DBSubnetGroupAlreadyExistsFault,
|
|
28982
|
+
DBSubnetGroupQuotaExceededFault,
|
|
28983
|
+
DBSubnetQuotaExceededFault,
|
|
28984
|
+
EventSubscriptionQuotaExceededFault,
|
|
28985
|
+
SNSInvalidTopicFault,
|
|
28986
|
+
SNSNoAuthorizationFault,
|
|
28987
|
+
SNSTopicArnNotFoundFault,
|
|
28988
|
+
SubscriptionAlreadyExistFault,
|
|
28989
|
+
SubscriptionCategoryNotFoundFault,
|
|
28990
|
+
FailoverStatus,
|
|
28991
|
+
GlobalClusterMemberSynchronizationStatus,
|
|
28992
|
+
GlobalClusterAlreadyExistsFault,
|
|
28993
|
+
GlobalClusterQuotaExceededFault,
|
|
28994
|
+
IntegrationStatus,
|
|
28995
|
+
IntegrationAlreadyExistsFault,
|
|
28996
|
+
IntegrationConflictOperationFault,
|
|
28997
|
+
IntegrationQuotaExceededFault,
|
|
28998
|
+
TenantDatabaseAlreadyExistsFault,
|
|
28999
|
+
InvalidBlueGreenDeploymentStateFault,
|
|
29000
|
+
CustomDBEngineVersionNotFoundFault,
|
|
29001
|
+
InvalidCustomDBEngineVersionStateFault,
|
|
29002
|
+
DBClusterAutomatedBackupQuotaExceededFault,
|
|
29003
|
+
DBClusterAutomatedBackupNotFoundFault,
|
|
29004
|
+
InvalidDBClusterAutomatedBackupStateFault,
|
|
29005
|
+
DBClusterEndpointNotFoundFault,
|
|
29006
|
+
InvalidDBClusterEndpointStateFault,
|
|
29007
|
+
InvalidDBParameterGroupStateFault,
|
|
29008
|
+
DBInstanceAutomatedBackupQuotaExceededFault,
|
|
29009
|
+
DBInstanceAutomatedBackupNotFoundFault,
|
|
29010
|
+
InvalidDBInstanceAutomatedBackupStateFault,
|
|
29011
|
+
DBProxyEndpointNotFoundFault,
|
|
29012
|
+
InvalidDBProxyEndpointStateFault,
|
|
29013
|
+
InvalidDBSubnetStateFault,
|
|
29014
|
+
InvalidEventSubscriptionStateFault,
|
|
29015
|
+
InvalidIntegrationStateFault,
|
|
29016
|
+
InvalidOptionGroupStateFault,
|
|
29017
|
+
DBProxyTargetNotFoundFault,
|
|
29018
|
+
CreateTenantDatabaseMessageFilterSensitiveLog,
|
|
29019
|
+
TenantDatabasePendingModifiedValuesFilterSensitiveLog,
|
|
29020
|
+
TenantDatabaseFilterSensitiveLog,
|
|
29021
|
+
CreateTenantDatabaseResultFilterSensitiveLog,
|
|
29022
|
+
DeleteTenantDatabaseResultFilterSensitiveLog,
|
|
29023
|
+
DBClusterBacktrackNotFoundFault,
|
|
29024
|
+
ApplyMethod,
|
|
29025
|
+
TargetRole,
|
|
29026
|
+
TargetHealthReason,
|
|
29027
|
+
TargetState,
|
|
29028
|
+
TargetType,
|
|
29029
|
+
SourceType,
|
|
29030
|
+
ReservedDBInstanceNotFoundFault,
|
|
29031
|
+
ReservedDBInstancesOfferingNotFoundFault,
|
|
29032
|
+
InvalidResourceStateFault,
|
|
29033
|
+
DBLogFileNotFoundFault,
|
|
29034
|
+
AuditPolicyState,
|
|
29035
|
+
InvalidDBClusterCapacityFault,
|
|
29036
|
+
CustomEngineVersionStatus,
|
|
29037
|
+
StorageTypeNotAvailableFault,
|
|
29038
|
+
SharedSnapshotQuotaExceededFault,
|
|
29039
|
+
DBUpgradeDependencyFailureFault,
|
|
29040
|
+
SubnetAlreadyInUse,
|
|
29041
|
+
ReservedDBInstanceAlreadyExistsFault,
|
|
29042
|
+
ReservedDBInstanceQuotaExceededFault,
|
|
29043
|
+
DBProxyTargetAlreadyRegisteredFault,
|
|
29044
|
+
InsufficientAvailableIPsInSubnetFault,
|
|
29045
|
+
DBClusterRoleNotFoundFault,
|
|
29046
|
+
DBInstanceRoleNotFoundFault,
|
|
29047
|
+
InvalidS3BucketFault,
|
|
29048
|
+
InsufficientDBClusterCapacityFault,
|
|
29049
|
+
InvalidRestoreFault,
|
|
29050
|
+
PointInTimeRestoreNotEnabledFault,
|
|
29051
|
+
ExportTaskAlreadyExistsFault,
|
|
29052
|
+
IamRoleMissingPermissionsFault,
|
|
29053
|
+
IamRoleNotFoundFault,
|
|
29054
|
+
InvalidExportOnlyFault,
|
|
29055
|
+
InvalidExportSourceStateFault,
|
|
29056
|
+
TenantDatabasesMessageFilterSensitiveLog,
|
|
29057
|
+
ModifyTenantDatabaseMessageFilterSensitiveLog,
|
|
29058
|
+
ModifyTenantDatabaseResultFilterSensitiveLog
|
|
29055
29059
|
});
|
|
29056
29060
|
|
|
@@ -674,6 +674,18 @@ export class GlobalClusterNotFoundFault extends __BaseException {
|
|
|
674
674
|
Object.setPrototypeOf(this, GlobalClusterNotFoundFault.prototype);
|
|
675
675
|
}
|
|
676
676
|
}
|
|
677
|
+
export class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
678
|
+
constructor(opts) {
|
|
679
|
+
super({
|
|
680
|
+
name: "InsufficientDBInstanceCapacityFault",
|
|
681
|
+
$fault: "client",
|
|
682
|
+
...opts,
|
|
683
|
+
});
|
|
684
|
+
this.name = "InsufficientDBInstanceCapacityFault";
|
|
685
|
+
this.$fault = "client";
|
|
686
|
+
Object.setPrototypeOf(this, InsufficientDBInstanceCapacityFault.prototype);
|
|
687
|
+
}
|
|
688
|
+
}
|
|
677
689
|
export class InsufficientStorageClusterCapacityFault extends __BaseException {
|
|
678
690
|
constructor(opts) {
|
|
679
691
|
super({
|
|
@@ -834,18 +846,6 @@ export class DBInstanceAlreadyExistsFault extends __BaseException {
|
|
|
834
846
|
Object.setPrototypeOf(this, DBInstanceAlreadyExistsFault.prototype);
|
|
835
847
|
}
|
|
836
848
|
}
|
|
837
|
-
export class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
838
|
-
constructor(opts) {
|
|
839
|
-
super({
|
|
840
|
-
name: "InsufficientDBInstanceCapacityFault",
|
|
841
|
-
$fault: "client",
|
|
842
|
-
...opts,
|
|
843
|
-
});
|
|
844
|
-
this.name = "InsufficientDBInstanceCapacityFault";
|
|
845
|
-
this.$fault = "client";
|
|
846
|
-
Object.setPrototypeOf(this, InsufficientDBInstanceCapacityFault.prototype);
|
|
847
|
-
}
|
|
848
|
-
}
|
|
849
849
|
export class NetworkTypeNotSupported extends __BaseException {
|
|
850
850
|
constructor(opts) {
|
|
851
851
|
super({
|
|
@@ -2238,6 +2238,9 @@ const de_CreateDBClusterCommandError = async (output, context) => {
|
|
|
2238
2238
|
case "GlobalClusterNotFoundFault":
|
|
2239
2239
|
case "com.amazonaws.rds#GlobalClusterNotFoundFault":
|
|
2240
2240
|
throw await de_GlobalClusterNotFoundFaultRes(parsedOutput, context);
|
|
2241
|
+
case "InsufficientDBInstanceCapacity":
|
|
2242
|
+
case "com.amazonaws.rds#InsufficientDBInstanceCapacityFault":
|
|
2243
|
+
throw await de_InsufficientDBInstanceCapacityFaultRes(parsedOutput, context);
|
|
2241
2244
|
case "InsufficientStorageClusterCapacity":
|
|
2242
2245
|
case "com.amazonaws.rds#InsufficientStorageClusterCapacityFault":
|
|
2243
2246
|
throw await de_InsufficientStorageClusterCapacityFaultRes(parsedOutput, context);
|
|
@@ -344,6 +344,10 @@ declare const CreateDBClusterCommand_base: {
|
|
|
344
344
|
* @throws {@link GlobalClusterNotFoundFault} (client fault)
|
|
345
345
|
* <p>The <code>GlobalClusterIdentifier</code> doesn't refer to an existing global database cluster.</p>
|
|
346
346
|
*
|
|
347
|
+
* @throws {@link InsufficientDBInstanceCapacityFault} (client fault)
|
|
348
|
+
* <p>The specified DB instance class isn't available in the specified Availability
|
|
349
|
+
* Zone.</p>
|
|
350
|
+
*
|
|
347
351
|
* @throws {@link InsufficientStorageClusterCapacityFault} (client fault)
|
|
348
352
|
* <p>There is insufficient storage available for the current action. You might be able to
|
|
349
353
|
* resolve this error by updating your subnet group to use different Availability Zones
|
|
@@ -5315,6 +5315,19 @@ export declare class GlobalClusterNotFoundFault extends __BaseException {
|
|
|
5315
5315
|
*/
|
|
5316
5316
|
constructor(opts: __ExceptionOptionType<GlobalClusterNotFoundFault, __BaseException>);
|
|
5317
5317
|
}
|
|
5318
|
+
/**
|
|
5319
|
+
* @public
|
|
5320
|
+
* <p>The specified DB instance class isn't available in the specified Availability
|
|
5321
|
+
* Zone.</p>
|
|
5322
|
+
*/
|
|
5323
|
+
export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
5324
|
+
readonly name: "InsufficientDBInstanceCapacityFault";
|
|
5325
|
+
readonly $fault: "client";
|
|
5326
|
+
/**
|
|
5327
|
+
* @internal
|
|
5328
|
+
*/
|
|
5329
|
+
constructor(opts: __ExceptionOptionType<InsufficientDBInstanceCapacityFault, __BaseException>);
|
|
5330
|
+
}
|
|
5318
5331
|
/**
|
|
5319
5332
|
* @public
|
|
5320
5333
|
* <p>There is insufficient storage available for the current action. You might be able to
|
|
@@ -8162,19 +8175,6 @@ export declare class DBInstanceAlreadyExistsFault extends __BaseException {
|
|
|
8162
8175
|
*/
|
|
8163
8176
|
constructor(opts: __ExceptionOptionType<DBInstanceAlreadyExistsFault, __BaseException>);
|
|
8164
8177
|
}
|
|
8165
|
-
/**
|
|
8166
|
-
* @public
|
|
8167
|
-
* <p>The specified DB instance class isn't available in the specified Availability
|
|
8168
|
-
* Zone.</p>
|
|
8169
|
-
*/
|
|
8170
|
-
export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
8171
|
-
readonly name: "InsufficientDBInstanceCapacityFault";
|
|
8172
|
-
readonly $fault: "client";
|
|
8173
|
-
/**
|
|
8174
|
-
* @internal
|
|
8175
|
-
*/
|
|
8176
|
-
constructor(opts: __ExceptionOptionType<InsufficientDBInstanceCapacityFault, __BaseException>);
|
|
8177
|
-
}
|
|
8178
8178
|
/**
|
|
8179
8179
|
* @public
|
|
8180
8180
|
* <p>The network type is invalid for the DB instance. Valid nework type values are <code>IPV4</code> and <code>DUAL</code>.</p>
|
|
@@ -1117,6 +1117,16 @@ export declare class GlobalClusterNotFoundFault extends __BaseException {
|
|
|
1117
1117
|
opts: __ExceptionOptionType<GlobalClusterNotFoundFault, __BaseException>
|
|
1118
1118
|
);
|
|
1119
1119
|
}
|
|
1120
|
+
export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
1121
|
+
readonly name: "InsufficientDBInstanceCapacityFault";
|
|
1122
|
+
readonly $fault: "client";
|
|
1123
|
+
constructor(
|
|
1124
|
+
opts: __ExceptionOptionType<
|
|
1125
|
+
InsufficientDBInstanceCapacityFault,
|
|
1126
|
+
__BaseException
|
|
1127
|
+
>
|
|
1128
|
+
);
|
|
1129
|
+
}
|
|
1120
1130
|
export declare class InsufficientStorageClusterCapacityFault extends __BaseException {
|
|
1121
1131
|
readonly name: "InsufficientStorageClusterCapacityFault";
|
|
1122
1132
|
readonly $fault: "client";
|
|
@@ -1488,16 +1498,6 @@ export declare class DBInstanceAlreadyExistsFault extends __BaseException {
|
|
|
1488
1498
|
opts: __ExceptionOptionType<DBInstanceAlreadyExistsFault, __BaseException>
|
|
1489
1499
|
);
|
|
1490
1500
|
}
|
|
1491
|
-
export declare class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
1492
|
-
readonly name: "InsufficientDBInstanceCapacityFault";
|
|
1493
|
-
readonly $fault: "client";
|
|
1494
|
-
constructor(
|
|
1495
|
-
opts: __ExceptionOptionType<
|
|
1496
|
-
InsufficientDBInstanceCapacityFault,
|
|
1497
|
-
__BaseException
|
|
1498
|
-
>
|
|
1499
|
-
);
|
|
1500
|
-
}
|
|
1501
1501
|
export declare class NetworkTypeNotSupported extends __BaseException {
|
|
1502
1502
|
readonly name: "NetworkTypeNotSupported";
|
|
1503
1503
|
readonly $fault: "client";
|
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.497.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-rds",
|