@effect-aws/client-rds 1.10.2 → 1.10.6
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/RDSService.d.ts +30 -22
- package/dist/cjs/RDSService.d.ts.map +1 -1
- package/dist/cjs/RDSService.js +1 -0
- package/dist/cjs/RDSService.js.map +1 -1
- package/dist/cjs/index.d.ts +5 -0
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/RDSService.d.ts +30 -22
- package/dist/dts/RDSService.d.ts.map +1 -1
- package/dist/dts/index.d.ts +5 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/RDSService.js +2 -1
- package/dist/esm/RDSService.js.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/RDSService.ts +69 -2
- package/src/index.ts +6 -0
package/src/RDSService.ts
CHANGED
|
@@ -212,6 +212,9 @@ import {
|
|
|
212
212
|
DescribeDBLogFilesCommand,
|
|
213
213
|
type DescribeDBLogFilesCommandInput,
|
|
214
214
|
type DescribeDBLogFilesCommandOutput,
|
|
215
|
+
DescribeDBMajorEngineVersionsCommand,
|
|
216
|
+
type DescribeDBMajorEngineVersionsCommandInput,
|
|
217
|
+
type DescribeDBMajorEngineVersionsCommandOutput,
|
|
215
218
|
DescribeDBParameterGroupsCommand,
|
|
216
219
|
type DescribeDBParameterGroupsCommandInput,
|
|
217
220
|
type DescribeDBParameterGroupsCommandOutput,
|
|
@@ -718,6 +721,7 @@ const commands = {
|
|
|
718
721
|
DescribeDBInstanceAutomatedBackupsCommand,
|
|
719
722
|
DescribeDBInstancesCommand,
|
|
720
723
|
DescribeDBLogFilesCommand,
|
|
724
|
+
DescribeDBMajorEngineVersionsCommand,
|
|
721
725
|
DescribeDBParameterGroupsCommand,
|
|
722
726
|
DescribeDBParametersCommand,
|
|
723
727
|
DescribeDBProxiesCommand,
|
|
@@ -871,11 +875,16 @@ interface RDSService$ {
|
|
|
871
875
|
| BlueGreenDeploymentNotFoundFaultError
|
|
872
876
|
| DBClusterNotFoundFaultError
|
|
873
877
|
| DBInstanceNotFoundFaultError
|
|
878
|
+
| DBProxyEndpointNotFoundFaultError
|
|
874
879
|
| DBProxyNotFoundFaultError
|
|
875
880
|
| DBProxyTargetGroupNotFoundFaultError
|
|
881
|
+
| DBShardGroupNotFoundFaultError
|
|
876
882
|
| DBSnapshotNotFoundFaultError
|
|
877
883
|
| DBSnapshotTenantDatabaseNotFoundFaultError
|
|
878
884
|
| IntegrationNotFoundFaultError
|
|
885
|
+
| InvalidDBClusterEndpointStateFaultError
|
|
886
|
+
| InvalidDBClusterStateFaultError
|
|
887
|
+
| InvalidDBInstanceStateFaultError
|
|
879
888
|
| TenantDatabaseNotFoundFaultError
|
|
880
889
|
>;
|
|
881
890
|
|
|
@@ -1034,6 +1043,7 @@ interface RDSService$ {
|
|
|
1034
1043
|
| InvalidDBInstanceStateFaultError
|
|
1035
1044
|
| SourceClusterNotSupportedFaultError
|
|
1036
1045
|
| SourceDatabaseNotSupportedFaultError
|
|
1046
|
+
| StorageQuotaExceededFaultError
|
|
1037
1047
|
>;
|
|
1038
1048
|
|
|
1039
1049
|
/**
|
|
@@ -1048,8 +1058,10 @@ interface RDSService$ {
|
|
|
1048
1058
|
| SdkError
|
|
1049
1059
|
| CreateCustomDBEngineVersionFaultError
|
|
1050
1060
|
| CustomDBEngineVersionAlreadyExistsFaultError
|
|
1061
|
+
| CustomDBEngineVersionNotFoundFaultError
|
|
1051
1062
|
| CustomDBEngineVersionQuotaExceededFaultError
|
|
1052
1063
|
| Ec2ImagePropertiesNotSupportedFaultError
|
|
1064
|
+
| InvalidCustomDBEngineVersionStateFaultError
|
|
1053
1065
|
| KMSKeyNotAccessibleFaultError
|
|
1054
1066
|
>;
|
|
1055
1067
|
|
|
@@ -1082,8 +1094,10 @@ interface RDSService$ {
|
|
|
1082
1094
|
| InvalidSubnetError
|
|
1083
1095
|
| InvalidVPCNetworkStateFaultError
|
|
1084
1096
|
| KMSKeyNotAccessibleFaultError
|
|
1097
|
+
| NetworkTypeNotSupportedError
|
|
1085
1098
|
| OptionGroupNotFoundFaultError
|
|
1086
1099
|
| StorageQuotaExceededFaultError
|
|
1100
|
+
| StorageTypeNotSupportedFaultError
|
|
1087
1101
|
>;
|
|
1088
1102
|
|
|
1089
1103
|
/**
|
|
@@ -1351,6 +1365,8 @@ interface RDSService$ {
|
|
|
1351
1365
|
| GlobalClusterAlreadyExistsFaultError
|
|
1352
1366
|
| GlobalClusterQuotaExceededFaultError
|
|
1353
1367
|
| InvalidDBClusterStateFaultError
|
|
1368
|
+
| InvalidDBShardGroupStateFaultError
|
|
1369
|
+
| ResourceNotFoundFaultError
|
|
1354
1370
|
>;
|
|
1355
1371
|
|
|
1356
1372
|
/**
|
|
@@ -1442,6 +1458,8 @@ interface RDSService$ {
|
|
|
1442
1458
|
| DBClusterSnapshotAlreadyExistsFaultError
|
|
1443
1459
|
| InvalidDBClusterSnapshotStateFaultError
|
|
1444
1460
|
| InvalidDBClusterStateFaultError
|
|
1461
|
+
| InvalidGlobalClusterStateFaultError
|
|
1462
|
+
| KMSKeyNotAccessibleFaultError
|
|
1445
1463
|
| SnapshotQuotaExceededFaultError
|
|
1446
1464
|
>;
|
|
1447
1465
|
|
|
@@ -1511,6 +1529,7 @@ interface RDSService$ {
|
|
|
1511
1529
|
| DBSnapshotAlreadyExistsFaultError
|
|
1512
1530
|
| InvalidDBClusterStateFaultError
|
|
1513
1531
|
| InvalidDBInstanceStateFaultError
|
|
1532
|
+
| KMSKeyNotAccessibleFaultError
|
|
1514
1533
|
| SnapshotQuotaExceededFaultError
|
|
1515
1534
|
>;
|
|
1516
1535
|
|
|
@@ -1672,6 +1691,7 @@ interface RDSService$ {
|
|
|
1672
1691
|
| Cause.TimeoutException
|
|
1673
1692
|
| SdkError
|
|
1674
1693
|
| DBInstanceNotFoundFaultError
|
|
1694
|
+
| DBSnapshotAlreadyExistsFaultError
|
|
1675
1695
|
| InvalidDBInstanceStateFaultError
|
|
1676
1696
|
| TenantDatabaseNotFoundFaultError
|
|
1677
1697
|
>;
|
|
@@ -1857,6 +1877,17 @@ interface RDSService$ {
|
|
|
1857
1877
|
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
1858
1878
|
>;
|
|
1859
1879
|
|
|
1880
|
+
/**
|
|
1881
|
+
* @see {@link DescribeDBMajorEngineVersionsCommand}
|
|
1882
|
+
*/
|
|
1883
|
+
describeDBMajorEngineVersions(
|
|
1884
|
+
args: DescribeDBMajorEngineVersionsCommandInput,
|
|
1885
|
+
options?: HttpHandlerOptions,
|
|
1886
|
+
): Effect.Effect<
|
|
1887
|
+
DescribeDBMajorEngineVersionsCommandOutput,
|
|
1888
|
+
Cause.TimeoutException | SdkError
|
|
1889
|
+
>;
|
|
1890
|
+
|
|
1860
1891
|
/**
|
|
1861
1892
|
* @see {@link DescribeDBParameterGroupsCommand}
|
|
1862
1893
|
*/
|
|
@@ -2277,8 +2308,10 @@ interface RDSService$ {
|
|
|
2277
2308
|
| BlueGreenDeploymentNotFoundFaultError
|
|
2278
2309
|
| DBClusterNotFoundFaultError
|
|
2279
2310
|
| DBInstanceNotFoundFaultError
|
|
2311
|
+
| DBProxyEndpointNotFoundFaultError
|
|
2280
2312
|
| DBProxyNotFoundFaultError
|
|
2281
2313
|
| DBProxyTargetGroupNotFoundFaultError
|
|
2314
|
+
| DBShardGroupNotFoundFaultError
|
|
2282
2315
|
| DBSnapshotNotFoundFaultError
|
|
2283
2316
|
| DBSnapshotTenantDatabaseNotFoundFaultError
|
|
2284
2317
|
| IntegrationNotFoundFaultError
|
|
@@ -2354,17 +2387,22 @@ interface RDSService$ {
|
|
|
2354
2387
|
| DBClusterNotFoundFaultError
|
|
2355
2388
|
| DBClusterParameterGroupNotFoundFaultError
|
|
2356
2389
|
| DBInstanceAlreadyExistsFaultError
|
|
2390
|
+
| DBParameterGroupNotFoundFaultError
|
|
2357
2391
|
| DBSubnetGroupNotFoundFaultError
|
|
2358
2392
|
| DomainNotFoundFaultError
|
|
2359
2393
|
| InvalidDBClusterStateFaultError
|
|
2360
2394
|
| InvalidDBInstanceStateFaultError
|
|
2361
2395
|
| InvalidDBSecurityGroupStateFaultError
|
|
2362
2396
|
| InvalidDBSubnetGroupStateFaultError
|
|
2397
|
+
| InvalidGlobalClusterStateFaultError
|
|
2363
2398
|
| InvalidSubnetError
|
|
2364
2399
|
| InvalidVPCNetworkStateFaultError
|
|
2400
|
+
| KMSKeyNotAccessibleFaultError
|
|
2401
|
+
| NetworkTypeNotSupportedError
|
|
2365
2402
|
| OptionGroupNotFoundFaultError
|
|
2366
2403
|
| StorageQuotaExceededFaultError
|
|
2367
2404
|
| StorageTypeNotAvailableFaultError
|
|
2405
|
+
| StorageTypeNotSupportedFaultError
|
|
2368
2406
|
>;
|
|
2369
2407
|
|
|
2370
2408
|
/**
|
|
@@ -2534,7 +2572,11 @@ interface RDSService$ {
|
|
|
2534
2572
|
options?: HttpHandlerOptions,
|
|
2535
2573
|
): Effect.Effect<
|
|
2536
2574
|
ModifyDBSnapshotCommandOutput,
|
|
2537
|
-
Cause.TimeoutException
|
|
2575
|
+
| Cause.TimeoutException
|
|
2576
|
+
| SdkError
|
|
2577
|
+
| DBSnapshotNotFoundFaultError
|
|
2578
|
+
| InvalidDBSnapshotStateFaultError
|
|
2579
|
+
| KMSKeyNotAccessibleFaultError
|
|
2538
2580
|
>;
|
|
2539
2581
|
|
|
2540
2582
|
/**
|
|
@@ -2565,6 +2607,7 @@ interface RDSService$ {
|
|
|
2565
2607
|
| DBSubnetGroupDoesNotCoverEnoughAZsError
|
|
2566
2608
|
| DBSubnetGroupNotFoundFaultError
|
|
2567
2609
|
| DBSubnetQuotaExceededFaultError
|
|
2610
|
+
| InvalidDBSubnetGroupStateFaultError
|
|
2568
2611
|
| InvalidSubnetError
|
|
2569
2612
|
| SubnetAlreadyInUseError
|
|
2570
2613
|
>;
|
|
@@ -2707,7 +2750,11 @@ interface RDSService$ {
|
|
|
2707
2750
|
options?: HttpHandlerOptions,
|
|
2708
2751
|
): Effect.Effect<
|
|
2709
2752
|
RebootDBInstanceCommandOutput,
|
|
2710
|
-
Cause.TimeoutException
|
|
2753
|
+
| Cause.TimeoutException
|
|
2754
|
+
| SdkError
|
|
2755
|
+
| DBInstanceNotFoundFaultError
|
|
2756
|
+
| InvalidDBInstanceStateFaultError
|
|
2757
|
+
| KMSKeyNotAccessibleFaultError
|
|
2711
2758
|
>;
|
|
2712
2759
|
|
|
2713
2760
|
/**
|
|
@@ -2754,6 +2801,7 @@ interface RDSService$ {
|
|
|
2754
2801
|
| SdkError
|
|
2755
2802
|
| DBClusterNotFoundFaultError
|
|
2756
2803
|
| GlobalClusterNotFoundFaultError
|
|
2804
|
+
| InvalidDBClusterStateFaultError
|
|
2757
2805
|
| InvalidGlobalClusterStateFaultError
|
|
2758
2806
|
>;
|
|
2759
2807
|
|
|
@@ -2811,11 +2859,16 @@ interface RDSService$ {
|
|
|
2811
2859
|
| BlueGreenDeploymentNotFoundFaultError
|
|
2812
2860
|
| DBClusterNotFoundFaultError
|
|
2813
2861
|
| DBInstanceNotFoundFaultError
|
|
2862
|
+
| DBProxyEndpointNotFoundFaultError
|
|
2814
2863
|
| DBProxyNotFoundFaultError
|
|
2815
2864
|
| DBProxyTargetGroupNotFoundFaultError
|
|
2865
|
+
| DBShardGroupNotFoundFaultError
|
|
2816
2866
|
| DBSnapshotNotFoundFaultError
|
|
2817
2867
|
| DBSnapshotTenantDatabaseNotFoundFaultError
|
|
2818
2868
|
| IntegrationNotFoundFaultError
|
|
2869
|
+
| InvalidDBClusterEndpointStateFaultError
|
|
2870
|
+
| InvalidDBClusterStateFaultError
|
|
2871
|
+
| InvalidDBInstanceStateFaultError
|
|
2819
2872
|
| TenantDatabaseNotFoundFaultError
|
|
2820
2873
|
>;
|
|
2821
2874
|
|
|
@@ -2864,6 +2917,7 @@ interface RDSService$ {
|
|
|
2864
2917
|
| InvalidSubnetError
|
|
2865
2918
|
| InvalidVPCNetworkStateFaultError
|
|
2866
2919
|
| KMSKeyNotAccessibleFaultError
|
|
2920
|
+
| NetworkTypeNotSupportedError
|
|
2867
2921
|
| StorageQuotaExceededFaultError
|
|
2868
2922
|
| StorageTypeNotSupportedFaultError
|
|
2869
2923
|
>;
|
|
@@ -2896,8 +2950,10 @@ interface RDSService$ {
|
|
|
2896
2950
|
| InvalidSubnetError
|
|
2897
2951
|
| InvalidVPCNetworkStateFaultError
|
|
2898
2952
|
| KMSKeyNotAccessibleFaultError
|
|
2953
|
+
| NetworkTypeNotSupportedError
|
|
2899
2954
|
| OptionGroupNotFoundFaultError
|
|
2900
2955
|
| StorageQuotaExceededFaultError
|
|
2956
|
+
| StorageTypeNotSupportedFaultError
|
|
2901
2957
|
>;
|
|
2902
2958
|
|
|
2903
2959
|
/**
|
|
@@ -2928,8 +2984,10 @@ interface RDSService$ {
|
|
|
2928
2984
|
| InvalidSubnetError
|
|
2929
2985
|
| InvalidVPCNetworkStateFaultError
|
|
2930
2986
|
| KMSKeyNotAccessibleFaultError
|
|
2987
|
+
| NetworkTypeNotSupportedError
|
|
2931
2988
|
| OptionGroupNotFoundFaultError
|
|
2932
2989
|
| StorageQuotaExceededFaultError
|
|
2990
|
+
| StorageTypeNotSupportedFaultError
|
|
2933
2991
|
>;
|
|
2934
2992
|
|
|
2935
2993
|
/**
|
|
@@ -3082,6 +3140,8 @@ interface RDSService$ {
|
|
|
3082
3140
|
| DBClusterNotFoundFaultError
|
|
3083
3141
|
| InvalidDBClusterStateFaultError
|
|
3084
3142
|
| InvalidDBInstanceStateFaultError
|
|
3143
|
+
| InvalidDBShardGroupStateFaultError
|
|
3144
|
+
| KMSKeyNotAccessibleFaultError
|
|
3085
3145
|
>;
|
|
3086
3146
|
|
|
3087
3147
|
/**
|
|
@@ -3119,6 +3179,7 @@ interface RDSService$ {
|
|
|
3119
3179
|
| SdkError
|
|
3120
3180
|
| DBInstanceAutomatedBackupQuotaExceededFaultError
|
|
3121
3181
|
| DBInstanceNotFoundFaultError
|
|
3182
|
+
| InvalidDBInstanceAutomatedBackupStateFaultError
|
|
3122
3183
|
| InvalidDBInstanceStateFaultError
|
|
3123
3184
|
| KMSKeyNotAccessibleFaultError
|
|
3124
3185
|
| StorageTypeNotSupportedFaultError
|
|
@@ -3176,6 +3237,7 @@ interface RDSService$ {
|
|
|
3176
3237
|
| DBClusterNotFoundFaultError
|
|
3177
3238
|
| InvalidDBClusterStateFaultError
|
|
3178
3239
|
| InvalidDBInstanceStateFaultError
|
|
3240
|
+
| InvalidDBShardGroupStateFaultError
|
|
3179
3241
|
>;
|
|
3180
3242
|
|
|
3181
3243
|
/**
|
|
@@ -3302,4 +3364,9 @@ export declare namespace RDSService {
|
|
|
3302
3364
|
export interface Config extends Omit<RDSClientConfig, "logger"> {
|
|
3303
3365
|
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
3304
3366
|
}
|
|
3367
|
+
|
|
3368
|
+
/**
|
|
3369
|
+
* @since 1.0.0
|
|
3370
|
+
*/
|
|
3371
|
+
export type Type = RDSService$;
|
|
3305
3372
|
}
|
package/src/index.ts
CHANGED