@effect-aws/client-rds 1.10.9 → 1.11.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/Errors.d.ts +1 -1
- package/dist/cjs/Errors.d.ts.map +1 -1
- package/dist/cjs/RDSClientInstance.d.ts +3 -1
- package/dist/cjs/RDSClientInstance.d.ts.map +1 -1
- package/dist/cjs/RDSClientInstance.js +6 -4
- package/dist/cjs/RDSClientInstance.js.map +1 -1
- package/dist/cjs/RDSService.d.ts +47 -3
- package/dist/cjs/RDSService.d.ts.map +1 -1
- package/dist/cjs/RDSService.js +53 -9
- package/dist/cjs/RDSService.js.map +1 -1
- package/dist/cjs/RDSServiceConfig.d.ts +2 -1
- package/dist/cjs/RDSServiceConfig.d.ts.map +1 -1
- package/dist/cjs/RDSServiceConfig.js +34 -9
- package/dist/cjs/RDSServiceConfig.js.map +1 -1
- package/dist/dts/Errors.d.ts +1 -1
- package/dist/dts/Errors.d.ts.map +1 -1
- package/dist/dts/RDSClientInstance.d.ts +3 -1
- package/dist/dts/RDSClientInstance.d.ts.map +1 -1
- package/dist/dts/RDSService.d.ts +47 -3
- package/dist/dts/RDSService.d.ts.map +1 -1
- package/dist/dts/RDSServiceConfig.d.ts +2 -1
- package/dist/dts/RDSServiceConfig.d.ts.map +1 -1
- package/dist/esm/RDSClientInstance.js +3 -1
- package/dist/esm/RDSClientInstance.js.map +1 -1
- package/dist/esm/RDSService.js +48 -4
- package/dist/esm/RDSService.js.map +1 -1
- package/dist/esm/RDSServiceConfig.js +4 -2
- package/dist/esm/RDSServiceConfig.js.map +1 -1
- package/package.json +2 -2
- package/src/Errors.ts +1 -1
- package/src/RDSClientInstance.ts +3 -1
- package/src/RDSService.ts +392 -4
- package/src/RDSServiceConfig.ts +4 -2
package/src/RDSService.ts
CHANGED
|
@@ -392,6 +392,47 @@ import {
|
|
|
392
392
|
ModifyTenantDatabaseCommand,
|
|
393
393
|
type ModifyTenantDatabaseCommandInput,
|
|
394
394
|
type ModifyTenantDatabaseCommandOutput,
|
|
395
|
+
paginateDescribeBlueGreenDeployments,
|
|
396
|
+
paginateDescribeCertificates,
|
|
397
|
+
paginateDescribeDBClusterAutomatedBackups,
|
|
398
|
+
paginateDescribeDBClusterBacktracks,
|
|
399
|
+
paginateDescribeDBClusterEndpoints,
|
|
400
|
+
paginateDescribeDBClusterParameterGroups,
|
|
401
|
+
paginateDescribeDBClusterParameters,
|
|
402
|
+
paginateDescribeDBClusters,
|
|
403
|
+
paginateDescribeDBClusterSnapshots,
|
|
404
|
+
paginateDescribeDBEngineVersions,
|
|
405
|
+
paginateDescribeDBInstanceAutomatedBackups,
|
|
406
|
+
paginateDescribeDBInstances,
|
|
407
|
+
paginateDescribeDBLogFiles,
|
|
408
|
+
paginateDescribeDBMajorEngineVersions,
|
|
409
|
+
paginateDescribeDBParameterGroups,
|
|
410
|
+
paginateDescribeDBParameters,
|
|
411
|
+
paginateDescribeDBProxies,
|
|
412
|
+
paginateDescribeDBProxyEndpoints,
|
|
413
|
+
paginateDescribeDBProxyTargetGroups,
|
|
414
|
+
paginateDescribeDBProxyTargets,
|
|
415
|
+
paginateDescribeDBRecommendations,
|
|
416
|
+
paginateDescribeDBSecurityGroups,
|
|
417
|
+
paginateDescribeDBSnapshots,
|
|
418
|
+
paginateDescribeDBSnapshotTenantDatabases,
|
|
419
|
+
paginateDescribeDBSubnetGroups,
|
|
420
|
+
paginateDescribeEngineDefaultClusterParameters,
|
|
421
|
+
paginateDescribeEngineDefaultParameters,
|
|
422
|
+
paginateDescribeEvents,
|
|
423
|
+
paginateDescribeEventSubscriptions,
|
|
424
|
+
paginateDescribeExportTasks,
|
|
425
|
+
paginateDescribeGlobalClusters,
|
|
426
|
+
paginateDescribeIntegrations,
|
|
427
|
+
paginateDescribeOptionGroupOptions,
|
|
428
|
+
paginateDescribeOptionGroups,
|
|
429
|
+
paginateDescribeOrderableDBInstanceOptions,
|
|
430
|
+
paginateDescribePendingMaintenanceActions,
|
|
431
|
+
paginateDescribeReservedDBInstances,
|
|
432
|
+
paginateDescribeReservedDBInstancesOfferings,
|
|
433
|
+
paginateDescribeSourceRegions,
|
|
434
|
+
paginateDescribeTenantDatabases,
|
|
435
|
+
paginateDownloadDBLogFilePortion,
|
|
395
436
|
PromoteReadReplicaCommand,
|
|
396
437
|
type PromoteReadReplicaCommandInput,
|
|
397
438
|
type PromoteReadReplicaCommandOutput,
|
|
@@ -494,10 +535,13 @@ import {
|
|
|
494
535
|
type SwitchoverReadReplicaCommandInput,
|
|
495
536
|
type SwitchoverReadReplicaCommandOutput,
|
|
496
537
|
} from "@aws-sdk/client-rds";
|
|
497
|
-
import
|
|
498
|
-
import
|
|
499
|
-
import type {
|
|
500
|
-
import
|
|
538
|
+
import * as Service from "@effect-aws/commons/Service";
|
|
539
|
+
import type * as ServiceLogger from "@effect-aws/commons/ServiceLogger";
|
|
540
|
+
import type { HttpHandlerOptions } from "@effect-aws/commons/Types";
|
|
541
|
+
import type * as Cause from "effect/Cause";
|
|
542
|
+
import * as Effect from "effect/Effect";
|
|
543
|
+
import * as Layer from "effect/Layer";
|
|
544
|
+
import type * as Stream from "effect/Stream";
|
|
501
545
|
import type {
|
|
502
546
|
AuthorizationAlreadyExistsFaultError,
|
|
503
547
|
AuthorizationNotFoundFaultError,
|
|
@@ -817,6 +861,50 @@ const commands = {
|
|
|
817
861
|
SwitchoverReadReplicaCommand,
|
|
818
862
|
};
|
|
819
863
|
|
|
864
|
+
const paginators = {
|
|
865
|
+
paginateDescribeBlueGreenDeployments,
|
|
866
|
+
paginateDescribeCertificates,
|
|
867
|
+
paginateDescribeDBClusterAutomatedBackups,
|
|
868
|
+
paginateDescribeDBClusterBacktracks,
|
|
869
|
+
paginateDescribeDBClusterEndpoints,
|
|
870
|
+
paginateDescribeDBClusterParameterGroups,
|
|
871
|
+
paginateDescribeDBClusterParameters,
|
|
872
|
+
paginateDescribeDBClusterSnapshots,
|
|
873
|
+
paginateDescribeDBClusters,
|
|
874
|
+
paginateDescribeDBEngineVersions,
|
|
875
|
+
paginateDescribeDBInstanceAutomatedBackups,
|
|
876
|
+
paginateDescribeDBInstances,
|
|
877
|
+
paginateDescribeDBLogFiles,
|
|
878
|
+
paginateDescribeDBMajorEngineVersions,
|
|
879
|
+
paginateDescribeDBParameterGroups,
|
|
880
|
+
paginateDescribeDBParameters,
|
|
881
|
+
paginateDescribeDBProxies,
|
|
882
|
+
paginateDescribeDBProxyEndpoints,
|
|
883
|
+
paginateDescribeDBProxyTargetGroups,
|
|
884
|
+
paginateDescribeDBProxyTargets,
|
|
885
|
+
paginateDescribeDBRecommendations,
|
|
886
|
+
paginateDescribeDBSecurityGroups,
|
|
887
|
+
paginateDescribeDBSnapshotTenantDatabases,
|
|
888
|
+
paginateDescribeDBSnapshots,
|
|
889
|
+
paginateDescribeDBSubnetGroups,
|
|
890
|
+
paginateDescribeEngineDefaultClusterParameters,
|
|
891
|
+
paginateDescribeEngineDefaultParameters,
|
|
892
|
+
paginateDescribeEventSubscriptions,
|
|
893
|
+
paginateDescribeEvents,
|
|
894
|
+
paginateDescribeExportTasks,
|
|
895
|
+
paginateDescribeGlobalClusters,
|
|
896
|
+
paginateDescribeIntegrations,
|
|
897
|
+
paginateDescribeOptionGroupOptions,
|
|
898
|
+
paginateDescribeOptionGroups,
|
|
899
|
+
paginateDescribeOrderableDBInstanceOptions,
|
|
900
|
+
paginateDescribePendingMaintenanceActions,
|
|
901
|
+
paginateDescribeReservedDBInstances,
|
|
902
|
+
paginateDescribeReservedDBInstancesOfferings,
|
|
903
|
+
paginateDescribeSourceRegions,
|
|
904
|
+
paginateDescribeTenantDatabases,
|
|
905
|
+
paginateDownloadDBLogFilePortion,
|
|
906
|
+
};
|
|
907
|
+
|
|
820
908
|
interface RDSService$ {
|
|
821
909
|
readonly _: unique symbol;
|
|
822
910
|
|
|
@@ -1738,6 +1826,14 @@ interface RDSService$ {
|
|
|
1738
1826
|
Cause.TimeoutException | SdkError | BlueGreenDeploymentNotFoundFaultError
|
|
1739
1827
|
>;
|
|
1740
1828
|
|
|
1829
|
+
describeBlueGreenDeploymentsStream(
|
|
1830
|
+
args: DescribeBlueGreenDeploymentsCommandInput,
|
|
1831
|
+
options?: HttpHandlerOptions,
|
|
1832
|
+
): Stream.Stream<
|
|
1833
|
+
DescribeBlueGreenDeploymentsCommandOutput,
|
|
1834
|
+
Cause.TimeoutException | SdkError | BlueGreenDeploymentNotFoundFaultError
|
|
1835
|
+
>;
|
|
1836
|
+
|
|
1741
1837
|
/**
|
|
1742
1838
|
* @see {@link DescribeCertificatesCommand}
|
|
1743
1839
|
*/
|
|
@@ -1749,6 +1845,14 @@ interface RDSService$ {
|
|
|
1749
1845
|
Cause.TimeoutException | SdkError | CertificateNotFoundFaultError
|
|
1750
1846
|
>;
|
|
1751
1847
|
|
|
1848
|
+
describeCertificatesStream(
|
|
1849
|
+
args: DescribeCertificatesCommandInput,
|
|
1850
|
+
options?: HttpHandlerOptions,
|
|
1851
|
+
): Stream.Stream<
|
|
1852
|
+
DescribeCertificatesCommandOutput,
|
|
1853
|
+
Cause.TimeoutException | SdkError | CertificateNotFoundFaultError
|
|
1854
|
+
>;
|
|
1855
|
+
|
|
1752
1856
|
/**
|
|
1753
1857
|
* @see {@link DescribeDBClusterAutomatedBackupsCommand}
|
|
1754
1858
|
*/
|
|
@@ -1760,6 +1864,14 @@ interface RDSService$ {
|
|
|
1760
1864
|
Cause.TimeoutException | SdkError | DBClusterAutomatedBackupNotFoundFaultError
|
|
1761
1865
|
>;
|
|
1762
1866
|
|
|
1867
|
+
describeDBClusterAutomatedBackupsStream(
|
|
1868
|
+
args: DescribeDBClusterAutomatedBackupsCommandInput,
|
|
1869
|
+
options?: HttpHandlerOptions,
|
|
1870
|
+
): Stream.Stream<
|
|
1871
|
+
DescribeDBClusterAutomatedBackupsCommandOutput,
|
|
1872
|
+
Cause.TimeoutException | SdkError | DBClusterAutomatedBackupNotFoundFaultError
|
|
1873
|
+
>;
|
|
1874
|
+
|
|
1763
1875
|
/**
|
|
1764
1876
|
* @see {@link DescribeDBClusterBacktracksCommand}
|
|
1765
1877
|
*/
|
|
@@ -1771,6 +1883,14 @@ interface RDSService$ {
|
|
|
1771
1883
|
Cause.TimeoutException | SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
|
|
1772
1884
|
>;
|
|
1773
1885
|
|
|
1886
|
+
describeDBClusterBacktracksStream(
|
|
1887
|
+
args: DescribeDBClusterBacktracksCommandInput,
|
|
1888
|
+
options?: HttpHandlerOptions,
|
|
1889
|
+
): Stream.Stream<
|
|
1890
|
+
DescribeDBClusterBacktracksCommandOutput,
|
|
1891
|
+
Cause.TimeoutException | SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
|
|
1892
|
+
>;
|
|
1893
|
+
|
|
1774
1894
|
/**
|
|
1775
1895
|
* @see {@link DescribeDBClusterEndpointsCommand}
|
|
1776
1896
|
*/
|
|
@@ -1782,6 +1902,14 @@ interface RDSService$ {
|
|
|
1782
1902
|
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError
|
|
1783
1903
|
>;
|
|
1784
1904
|
|
|
1905
|
+
describeDBClusterEndpointsStream(
|
|
1906
|
+
args: DescribeDBClusterEndpointsCommandInput,
|
|
1907
|
+
options?: HttpHandlerOptions,
|
|
1908
|
+
): Stream.Stream<
|
|
1909
|
+
DescribeDBClusterEndpointsCommandOutput,
|
|
1910
|
+
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError
|
|
1911
|
+
>;
|
|
1912
|
+
|
|
1785
1913
|
/**
|
|
1786
1914
|
* @see {@link DescribeDBClusterParameterGroupsCommand}
|
|
1787
1915
|
*/
|
|
@@ -1793,6 +1921,14 @@ interface RDSService$ {
|
|
|
1793
1921
|
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1794
1922
|
>;
|
|
1795
1923
|
|
|
1924
|
+
describeDBClusterParameterGroupsStream(
|
|
1925
|
+
args: DescribeDBClusterParameterGroupsCommandInput,
|
|
1926
|
+
options?: HttpHandlerOptions,
|
|
1927
|
+
): Stream.Stream<
|
|
1928
|
+
DescribeDBClusterParameterGroupsCommandOutput,
|
|
1929
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1930
|
+
>;
|
|
1931
|
+
|
|
1796
1932
|
/**
|
|
1797
1933
|
* @see {@link DescribeDBClusterParametersCommand}
|
|
1798
1934
|
*/
|
|
@@ -1804,6 +1940,14 @@ interface RDSService$ {
|
|
|
1804
1940
|
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1805
1941
|
>;
|
|
1806
1942
|
|
|
1943
|
+
describeDBClusterParametersStream(
|
|
1944
|
+
args: DescribeDBClusterParametersCommandInput,
|
|
1945
|
+
options?: HttpHandlerOptions,
|
|
1946
|
+
): Stream.Stream<
|
|
1947
|
+
DescribeDBClusterParametersCommandOutput,
|
|
1948
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1949
|
+
>;
|
|
1950
|
+
|
|
1807
1951
|
/**
|
|
1808
1952
|
* @see {@link DescribeDBClusterSnapshotAttributesCommand}
|
|
1809
1953
|
*/
|
|
@@ -1826,6 +1970,14 @@ interface RDSService$ {
|
|
|
1826
1970
|
Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1827
1971
|
>;
|
|
1828
1972
|
|
|
1973
|
+
describeDBClusterSnapshotsStream(
|
|
1974
|
+
args: DescribeDBClusterSnapshotsCommandInput,
|
|
1975
|
+
options?: HttpHandlerOptions,
|
|
1976
|
+
): Stream.Stream<
|
|
1977
|
+
DescribeDBClusterSnapshotsCommandOutput,
|
|
1978
|
+
Cause.TimeoutException | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1979
|
+
>;
|
|
1980
|
+
|
|
1829
1981
|
/**
|
|
1830
1982
|
* @see {@link DescribeDBClustersCommand}
|
|
1831
1983
|
*/
|
|
@@ -1837,6 +1989,11 @@ interface RDSService$ {
|
|
|
1837
1989
|
Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError
|
|
1838
1990
|
>;
|
|
1839
1991
|
|
|
1992
|
+
describeDBClustersStream(
|
|
1993
|
+
args: DescribeDBClustersCommandInput,
|
|
1994
|
+
options?: HttpHandlerOptions,
|
|
1995
|
+
): Stream.Stream<DescribeDBClustersCommandOutput, Cause.TimeoutException | SdkError | DBClusterNotFoundFaultError>;
|
|
1996
|
+
|
|
1840
1997
|
/**
|
|
1841
1998
|
* @see {@link DescribeDBEngineVersionsCommand}
|
|
1842
1999
|
*/
|
|
@@ -1848,6 +2005,11 @@ interface RDSService$ {
|
|
|
1848
2005
|
Cause.TimeoutException | SdkError
|
|
1849
2006
|
>;
|
|
1850
2007
|
|
|
2008
|
+
describeDBEngineVersionsStream(
|
|
2009
|
+
args: DescribeDBEngineVersionsCommandInput,
|
|
2010
|
+
options?: HttpHandlerOptions,
|
|
2011
|
+
): Stream.Stream<DescribeDBEngineVersionsCommandOutput, Cause.TimeoutException | SdkError>;
|
|
2012
|
+
|
|
1851
2013
|
/**
|
|
1852
2014
|
* @see {@link DescribeDBInstanceAutomatedBackupsCommand}
|
|
1853
2015
|
*/
|
|
@@ -1859,6 +2021,14 @@ interface RDSService$ {
|
|
|
1859
2021
|
Cause.TimeoutException | SdkError | DBInstanceAutomatedBackupNotFoundFaultError
|
|
1860
2022
|
>;
|
|
1861
2023
|
|
|
2024
|
+
describeDBInstanceAutomatedBackupsStream(
|
|
2025
|
+
args: DescribeDBInstanceAutomatedBackupsCommandInput,
|
|
2026
|
+
options?: HttpHandlerOptions,
|
|
2027
|
+
): Stream.Stream<
|
|
2028
|
+
DescribeDBInstanceAutomatedBackupsCommandOutput,
|
|
2029
|
+
Cause.TimeoutException | SdkError | DBInstanceAutomatedBackupNotFoundFaultError
|
|
2030
|
+
>;
|
|
2031
|
+
|
|
1862
2032
|
/**
|
|
1863
2033
|
* @see {@link DescribeDBInstancesCommand}
|
|
1864
2034
|
*/
|
|
@@ -1870,6 +2040,11 @@ interface RDSService$ {
|
|
|
1870
2040
|
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError
|
|
1871
2041
|
>;
|
|
1872
2042
|
|
|
2043
|
+
describeDBInstancesStream(
|
|
2044
|
+
args: DescribeDBInstancesCommandInput,
|
|
2045
|
+
options?: HttpHandlerOptions,
|
|
2046
|
+
): Stream.Stream<DescribeDBInstancesCommandOutput, Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError>;
|
|
2047
|
+
|
|
1873
2048
|
/**
|
|
1874
2049
|
* @see {@link DescribeDBLogFilesCommand}
|
|
1875
2050
|
*/
|
|
@@ -1881,6 +2056,14 @@ interface RDSService$ {
|
|
|
1881
2056
|
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
1882
2057
|
>;
|
|
1883
2058
|
|
|
2059
|
+
describeDBLogFilesStream(
|
|
2060
|
+
args: DescribeDBLogFilesCommandInput,
|
|
2061
|
+
options?: HttpHandlerOptions,
|
|
2062
|
+
): Stream.Stream<
|
|
2063
|
+
DescribeDBLogFilesCommandOutput,
|
|
2064
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
2065
|
+
>;
|
|
2066
|
+
|
|
1884
2067
|
/**
|
|
1885
2068
|
* @see {@link DescribeDBMajorEngineVersionsCommand}
|
|
1886
2069
|
*/
|
|
@@ -1892,6 +2075,11 @@ interface RDSService$ {
|
|
|
1892
2075
|
Cause.TimeoutException | SdkError
|
|
1893
2076
|
>;
|
|
1894
2077
|
|
|
2078
|
+
describeDBMajorEngineVersionsStream(
|
|
2079
|
+
args: DescribeDBMajorEngineVersionsCommandInput,
|
|
2080
|
+
options?: HttpHandlerOptions,
|
|
2081
|
+
): Stream.Stream<DescribeDBMajorEngineVersionsCommandOutput, Cause.TimeoutException | SdkError>;
|
|
2082
|
+
|
|
1895
2083
|
/**
|
|
1896
2084
|
* @see {@link DescribeDBParameterGroupsCommand}
|
|
1897
2085
|
*/
|
|
@@ -1903,6 +2091,14 @@ interface RDSService$ {
|
|
|
1903
2091
|
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1904
2092
|
>;
|
|
1905
2093
|
|
|
2094
|
+
describeDBParameterGroupsStream(
|
|
2095
|
+
args: DescribeDBParameterGroupsCommandInput,
|
|
2096
|
+
options?: HttpHandlerOptions,
|
|
2097
|
+
): Stream.Stream<
|
|
2098
|
+
DescribeDBParameterGroupsCommandOutput,
|
|
2099
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
2100
|
+
>;
|
|
2101
|
+
|
|
1906
2102
|
/**
|
|
1907
2103
|
* @see {@link DescribeDBParametersCommand}
|
|
1908
2104
|
*/
|
|
@@ -1914,6 +2110,14 @@ interface RDSService$ {
|
|
|
1914
2110
|
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
1915
2111
|
>;
|
|
1916
2112
|
|
|
2113
|
+
describeDBParametersStream(
|
|
2114
|
+
args: DescribeDBParametersCommandInput,
|
|
2115
|
+
options?: HttpHandlerOptions,
|
|
2116
|
+
): Stream.Stream<
|
|
2117
|
+
DescribeDBParametersCommandOutput,
|
|
2118
|
+
Cause.TimeoutException | SdkError | DBParameterGroupNotFoundFaultError
|
|
2119
|
+
>;
|
|
2120
|
+
|
|
1917
2121
|
/**
|
|
1918
2122
|
* @see {@link DescribeDBProxiesCommand}
|
|
1919
2123
|
*/
|
|
@@ -1925,6 +2129,11 @@ interface RDSService$ {
|
|
|
1925
2129
|
Cause.TimeoutException | SdkError | DBProxyNotFoundFaultError
|
|
1926
2130
|
>;
|
|
1927
2131
|
|
|
2132
|
+
describeDBProxiesStream(
|
|
2133
|
+
args: DescribeDBProxiesCommandInput,
|
|
2134
|
+
options?: HttpHandlerOptions,
|
|
2135
|
+
): Stream.Stream<DescribeDBProxiesCommandOutput, Cause.TimeoutException | SdkError | DBProxyNotFoundFaultError>;
|
|
2136
|
+
|
|
1928
2137
|
/**
|
|
1929
2138
|
* @see {@link DescribeDBProxyEndpointsCommand}
|
|
1930
2139
|
*/
|
|
@@ -1936,6 +2145,14 @@ interface RDSService$ {
|
|
|
1936
2145
|
Cause.TimeoutException | SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
|
|
1937
2146
|
>;
|
|
1938
2147
|
|
|
2148
|
+
describeDBProxyEndpointsStream(
|
|
2149
|
+
args: DescribeDBProxyEndpointsCommandInput,
|
|
2150
|
+
options?: HttpHandlerOptions,
|
|
2151
|
+
): Stream.Stream<
|
|
2152
|
+
DescribeDBProxyEndpointsCommandOutput,
|
|
2153
|
+
Cause.TimeoutException | SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
|
|
2154
|
+
>;
|
|
2155
|
+
|
|
1939
2156
|
/**
|
|
1940
2157
|
* @see {@link DescribeDBProxyTargetGroupsCommand}
|
|
1941
2158
|
*/
|
|
@@ -1951,6 +2168,18 @@ interface RDSService$ {
|
|
|
1951
2168
|
| InvalidDBProxyStateFaultError
|
|
1952
2169
|
>;
|
|
1953
2170
|
|
|
2171
|
+
describeDBProxyTargetGroupsStream(
|
|
2172
|
+
args: DescribeDBProxyTargetGroupsCommandInput,
|
|
2173
|
+
options?: HttpHandlerOptions,
|
|
2174
|
+
): Stream.Stream<
|
|
2175
|
+
DescribeDBProxyTargetGroupsCommandOutput,
|
|
2176
|
+
| Cause.TimeoutException
|
|
2177
|
+
| SdkError
|
|
2178
|
+
| DBProxyNotFoundFaultError
|
|
2179
|
+
| DBProxyTargetGroupNotFoundFaultError
|
|
2180
|
+
| InvalidDBProxyStateFaultError
|
|
2181
|
+
>;
|
|
2182
|
+
|
|
1954
2183
|
/**
|
|
1955
2184
|
* @see {@link DescribeDBProxyTargetsCommand}
|
|
1956
2185
|
*/
|
|
@@ -1967,6 +2196,19 @@ interface RDSService$ {
|
|
|
1967
2196
|
| InvalidDBProxyStateFaultError
|
|
1968
2197
|
>;
|
|
1969
2198
|
|
|
2199
|
+
describeDBProxyTargetsStream(
|
|
2200
|
+
args: DescribeDBProxyTargetsCommandInput,
|
|
2201
|
+
options?: HttpHandlerOptions,
|
|
2202
|
+
): Stream.Stream<
|
|
2203
|
+
DescribeDBProxyTargetsCommandOutput,
|
|
2204
|
+
| Cause.TimeoutException
|
|
2205
|
+
| SdkError
|
|
2206
|
+
| DBProxyNotFoundFaultError
|
|
2207
|
+
| DBProxyTargetGroupNotFoundFaultError
|
|
2208
|
+
| DBProxyTargetNotFoundFaultError
|
|
2209
|
+
| InvalidDBProxyStateFaultError
|
|
2210
|
+
>;
|
|
2211
|
+
|
|
1970
2212
|
/**
|
|
1971
2213
|
* @see {@link DescribeDBRecommendationsCommand}
|
|
1972
2214
|
*/
|
|
@@ -1978,6 +2220,11 @@ interface RDSService$ {
|
|
|
1978
2220
|
Cause.TimeoutException | SdkError
|
|
1979
2221
|
>;
|
|
1980
2222
|
|
|
2223
|
+
describeDBRecommendationsStream(
|
|
2224
|
+
args: DescribeDBRecommendationsCommandInput,
|
|
2225
|
+
options?: HttpHandlerOptions,
|
|
2226
|
+
): Stream.Stream<DescribeDBRecommendationsCommandOutput, Cause.TimeoutException | SdkError>;
|
|
2227
|
+
|
|
1981
2228
|
/**
|
|
1982
2229
|
* @see {@link DescribeDBSecurityGroupsCommand}
|
|
1983
2230
|
*/
|
|
@@ -1989,6 +2236,14 @@ interface RDSService$ {
|
|
|
1989
2236
|
Cause.TimeoutException | SdkError | DBSecurityGroupNotFoundFaultError
|
|
1990
2237
|
>;
|
|
1991
2238
|
|
|
2239
|
+
describeDBSecurityGroupsStream(
|
|
2240
|
+
args: DescribeDBSecurityGroupsCommandInput,
|
|
2241
|
+
options?: HttpHandlerOptions,
|
|
2242
|
+
): Stream.Stream<
|
|
2243
|
+
DescribeDBSecurityGroupsCommandOutput,
|
|
2244
|
+
Cause.TimeoutException | SdkError | DBSecurityGroupNotFoundFaultError
|
|
2245
|
+
>;
|
|
2246
|
+
|
|
1992
2247
|
/**
|
|
1993
2248
|
* @see {@link DescribeDBShardGroupsCommand}
|
|
1994
2249
|
*/
|
|
@@ -2022,6 +2277,14 @@ interface RDSService$ {
|
|
|
2022
2277
|
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
2023
2278
|
>;
|
|
2024
2279
|
|
|
2280
|
+
describeDBSnapshotTenantDatabasesStream(
|
|
2281
|
+
args: DescribeDBSnapshotTenantDatabasesCommandInput,
|
|
2282
|
+
options?: HttpHandlerOptions,
|
|
2283
|
+
): Stream.Stream<
|
|
2284
|
+
DescribeDBSnapshotTenantDatabasesCommandOutput,
|
|
2285
|
+
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
2286
|
+
>;
|
|
2287
|
+
|
|
2025
2288
|
/**
|
|
2026
2289
|
* @see {@link DescribeDBSnapshotsCommand}
|
|
2027
2290
|
*/
|
|
@@ -2033,6 +2296,11 @@ interface RDSService$ {
|
|
|
2033
2296
|
Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError
|
|
2034
2297
|
>;
|
|
2035
2298
|
|
|
2299
|
+
describeDBSnapshotsStream(
|
|
2300
|
+
args: DescribeDBSnapshotsCommandInput,
|
|
2301
|
+
options?: HttpHandlerOptions,
|
|
2302
|
+
): Stream.Stream<DescribeDBSnapshotsCommandOutput, Cause.TimeoutException | SdkError | DBSnapshotNotFoundFaultError>;
|
|
2303
|
+
|
|
2036
2304
|
/**
|
|
2037
2305
|
* @see {@link DescribeDBSubnetGroupsCommand}
|
|
2038
2306
|
*/
|
|
@@ -2044,6 +2312,14 @@ interface RDSService$ {
|
|
|
2044
2312
|
Cause.TimeoutException | SdkError | DBSubnetGroupNotFoundFaultError
|
|
2045
2313
|
>;
|
|
2046
2314
|
|
|
2315
|
+
describeDBSubnetGroupsStream(
|
|
2316
|
+
args: DescribeDBSubnetGroupsCommandInput,
|
|
2317
|
+
options?: HttpHandlerOptions,
|
|
2318
|
+
): Stream.Stream<
|
|
2319
|
+
DescribeDBSubnetGroupsCommandOutput,
|
|
2320
|
+
Cause.TimeoutException | SdkError | DBSubnetGroupNotFoundFaultError
|
|
2321
|
+
>;
|
|
2322
|
+
|
|
2047
2323
|
/**
|
|
2048
2324
|
* @see {@link DescribeEngineDefaultClusterParametersCommand}
|
|
2049
2325
|
*/
|
|
@@ -2055,6 +2331,11 @@ interface RDSService$ {
|
|
|
2055
2331
|
Cause.TimeoutException | SdkError
|
|
2056
2332
|
>;
|
|
2057
2333
|
|
|
2334
|
+
describeEngineDefaultClusterParametersStream(
|
|
2335
|
+
args: DescribeEngineDefaultClusterParametersCommandInput,
|
|
2336
|
+
options?: HttpHandlerOptions,
|
|
2337
|
+
): Stream.Stream<DescribeEngineDefaultClusterParametersCommandOutput, Cause.TimeoutException | SdkError>;
|
|
2338
|
+
|
|
2058
2339
|
/**
|
|
2059
2340
|
* @see {@link DescribeEngineDefaultParametersCommand}
|
|
2060
2341
|
*/
|
|
@@ -2066,6 +2347,11 @@ interface RDSService$ {
|
|
|
2066
2347
|
Cause.TimeoutException | SdkError
|
|
2067
2348
|
>;
|
|
2068
2349
|
|
|
2350
|
+
describeEngineDefaultParametersStream(
|
|
2351
|
+
args: DescribeEngineDefaultParametersCommandInput,
|
|
2352
|
+
options?: HttpHandlerOptions,
|
|
2353
|
+
): Stream.Stream<DescribeEngineDefaultParametersCommandOutput, Cause.TimeoutException | SdkError>;
|
|
2354
|
+
|
|
2069
2355
|
/**
|
|
2070
2356
|
* @see {@link DescribeEventCategoriesCommand}
|
|
2071
2357
|
*/
|
|
@@ -2088,6 +2374,14 @@ interface RDSService$ {
|
|
|
2088
2374
|
Cause.TimeoutException | SdkError | SubscriptionNotFoundFaultError
|
|
2089
2375
|
>;
|
|
2090
2376
|
|
|
2377
|
+
describeEventSubscriptionsStream(
|
|
2378
|
+
args: DescribeEventSubscriptionsCommandInput,
|
|
2379
|
+
options?: HttpHandlerOptions,
|
|
2380
|
+
): Stream.Stream<
|
|
2381
|
+
DescribeEventSubscriptionsCommandOutput,
|
|
2382
|
+
Cause.TimeoutException | SdkError | SubscriptionNotFoundFaultError
|
|
2383
|
+
>;
|
|
2384
|
+
|
|
2091
2385
|
/**
|
|
2092
2386
|
* @see {@link DescribeEventsCommand}
|
|
2093
2387
|
*/
|
|
@@ -2099,6 +2393,11 @@ interface RDSService$ {
|
|
|
2099
2393
|
Cause.TimeoutException | SdkError
|
|
2100
2394
|
>;
|
|
2101
2395
|
|
|
2396
|
+
describeEventsStream(
|
|
2397
|
+
args: DescribeEventsCommandInput,
|
|
2398
|
+
options?: HttpHandlerOptions,
|
|
2399
|
+
): Stream.Stream<DescribeEventsCommandOutput, Cause.TimeoutException | SdkError>;
|
|
2400
|
+
|
|
2102
2401
|
/**
|
|
2103
2402
|
* @see {@link DescribeExportTasksCommand}
|
|
2104
2403
|
*/
|
|
@@ -2110,6 +2409,11 @@ interface RDSService$ {
|
|
|
2110
2409
|
Cause.TimeoutException | SdkError | ExportTaskNotFoundFaultError
|
|
2111
2410
|
>;
|
|
2112
2411
|
|
|
2412
|
+
describeExportTasksStream(
|
|
2413
|
+
args: DescribeExportTasksCommandInput,
|
|
2414
|
+
options?: HttpHandlerOptions,
|
|
2415
|
+
): Stream.Stream<DescribeExportTasksCommandOutput, Cause.TimeoutException | SdkError | ExportTaskNotFoundFaultError>;
|
|
2416
|
+
|
|
2113
2417
|
/**
|
|
2114
2418
|
* @see {@link DescribeGlobalClustersCommand}
|
|
2115
2419
|
*/
|
|
@@ -2121,6 +2425,14 @@ interface RDSService$ {
|
|
|
2121
2425
|
Cause.TimeoutException | SdkError | GlobalClusterNotFoundFaultError
|
|
2122
2426
|
>;
|
|
2123
2427
|
|
|
2428
|
+
describeGlobalClustersStream(
|
|
2429
|
+
args: DescribeGlobalClustersCommandInput,
|
|
2430
|
+
options?: HttpHandlerOptions,
|
|
2431
|
+
): Stream.Stream<
|
|
2432
|
+
DescribeGlobalClustersCommandOutput,
|
|
2433
|
+
Cause.TimeoutException | SdkError | GlobalClusterNotFoundFaultError
|
|
2434
|
+
>;
|
|
2435
|
+
|
|
2124
2436
|
/**
|
|
2125
2437
|
* @see {@link DescribeIntegrationsCommand}
|
|
2126
2438
|
*/
|
|
@@ -2132,6 +2444,14 @@ interface RDSService$ {
|
|
|
2132
2444
|
Cause.TimeoutException | SdkError | IntegrationNotFoundFaultError
|
|
2133
2445
|
>;
|
|
2134
2446
|
|
|
2447
|
+
describeIntegrationsStream(
|
|
2448
|
+
args: DescribeIntegrationsCommandInput,
|
|
2449
|
+
options?: HttpHandlerOptions,
|
|
2450
|
+
): Stream.Stream<
|
|
2451
|
+
DescribeIntegrationsCommandOutput,
|
|
2452
|
+
Cause.TimeoutException | SdkError | IntegrationNotFoundFaultError
|
|
2453
|
+
>;
|
|
2454
|
+
|
|
2135
2455
|
/**
|
|
2136
2456
|
* @see {@link DescribeOptionGroupOptionsCommand}
|
|
2137
2457
|
*/
|
|
@@ -2143,6 +2463,11 @@ interface RDSService$ {
|
|
|
2143
2463
|
Cause.TimeoutException | SdkError
|
|
2144
2464
|
>;
|
|
2145
2465
|
|
|
2466
|
+
describeOptionGroupOptionsStream(
|
|
2467
|
+
args: DescribeOptionGroupOptionsCommandInput,
|
|
2468
|
+
options?: HttpHandlerOptions,
|
|
2469
|
+
): Stream.Stream<DescribeOptionGroupOptionsCommandOutput, Cause.TimeoutException | SdkError>;
|
|
2470
|
+
|
|
2146
2471
|
/**
|
|
2147
2472
|
* @see {@link DescribeOptionGroupsCommand}
|
|
2148
2473
|
*/
|
|
@@ -2154,6 +2479,14 @@ interface RDSService$ {
|
|
|
2154
2479
|
Cause.TimeoutException | SdkError | OptionGroupNotFoundFaultError
|
|
2155
2480
|
>;
|
|
2156
2481
|
|
|
2482
|
+
describeOptionGroupsStream(
|
|
2483
|
+
args: DescribeOptionGroupsCommandInput,
|
|
2484
|
+
options?: HttpHandlerOptions,
|
|
2485
|
+
): Stream.Stream<
|
|
2486
|
+
DescribeOptionGroupsCommandOutput,
|
|
2487
|
+
Cause.TimeoutException | SdkError | OptionGroupNotFoundFaultError
|
|
2488
|
+
>;
|
|
2489
|
+
|
|
2157
2490
|
/**
|
|
2158
2491
|
* @see {@link DescribeOrderableDBInstanceOptionsCommand}
|
|
2159
2492
|
*/
|
|
@@ -2165,6 +2498,11 @@ interface RDSService$ {
|
|
|
2165
2498
|
Cause.TimeoutException | SdkError
|
|
2166
2499
|
>;
|
|
2167
2500
|
|
|
2501
|
+
describeOrderableDBInstanceOptionsStream(
|
|
2502
|
+
args: DescribeOrderableDBInstanceOptionsCommandInput,
|
|
2503
|
+
options?: HttpHandlerOptions,
|
|
2504
|
+
): Stream.Stream<DescribeOrderableDBInstanceOptionsCommandOutput, Cause.TimeoutException | SdkError>;
|
|
2505
|
+
|
|
2168
2506
|
/**
|
|
2169
2507
|
* @see {@link DescribePendingMaintenanceActionsCommand}
|
|
2170
2508
|
*/
|
|
@@ -2176,6 +2514,14 @@ interface RDSService$ {
|
|
|
2176
2514
|
Cause.TimeoutException | SdkError | ResourceNotFoundFaultError
|
|
2177
2515
|
>;
|
|
2178
2516
|
|
|
2517
|
+
describePendingMaintenanceActionsStream(
|
|
2518
|
+
args: DescribePendingMaintenanceActionsCommandInput,
|
|
2519
|
+
options?: HttpHandlerOptions,
|
|
2520
|
+
): Stream.Stream<
|
|
2521
|
+
DescribePendingMaintenanceActionsCommandOutput,
|
|
2522
|
+
Cause.TimeoutException | SdkError | ResourceNotFoundFaultError
|
|
2523
|
+
>;
|
|
2524
|
+
|
|
2179
2525
|
/**
|
|
2180
2526
|
* @see {@link DescribeReservedDBInstancesCommand}
|
|
2181
2527
|
*/
|
|
@@ -2187,6 +2533,14 @@ interface RDSService$ {
|
|
|
2187
2533
|
Cause.TimeoutException | SdkError | ReservedDBInstanceNotFoundFaultError
|
|
2188
2534
|
>;
|
|
2189
2535
|
|
|
2536
|
+
describeReservedDBInstancesStream(
|
|
2537
|
+
args: DescribeReservedDBInstancesCommandInput,
|
|
2538
|
+
options?: HttpHandlerOptions,
|
|
2539
|
+
): Stream.Stream<
|
|
2540
|
+
DescribeReservedDBInstancesCommandOutput,
|
|
2541
|
+
Cause.TimeoutException | SdkError | ReservedDBInstanceNotFoundFaultError
|
|
2542
|
+
>;
|
|
2543
|
+
|
|
2190
2544
|
/**
|
|
2191
2545
|
* @see {@link DescribeReservedDBInstancesOfferingsCommand}
|
|
2192
2546
|
*/
|
|
@@ -2198,6 +2552,14 @@ interface RDSService$ {
|
|
|
2198
2552
|
Cause.TimeoutException | SdkError | ReservedDBInstancesOfferingNotFoundFaultError
|
|
2199
2553
|
>;
|
|
2200
2554
|
|
|
2555
|
+
describeReservedDBInstancesOfferingsStream(
|
|
2556
|
+
args: DescribeReservedDBInstancesOfferingsCommandInput,
|
|
2557
|
+
options?: HttpHandlerOptions,
|
|
2558
|
+
): Stream.Stream<
|
|
2559
|
+
DescribeReservedDBInstancesOfferingsCommandOutput,
|
|
2560
|
+
Cause.TimeoutException | SdkError | ReservedDBInstancesOfferingNotFoundFaultError
|
|
2561
|
+
>;
|
|
2562
|
+
|
|
2201
2563
|
/**
|
|
2202
2564
|
* @see {@link DescribeSourceRegionsCommand}
|
|
2203
2565
|
*/
|
|
@@ -2209,6 +2571,11 @@ interface RDSService$ {
|
|
|
2209
2571
|
Cause.TimeoutException | SdkError
|
|
2210
2572
|
>;
|
|
2211
2573
|
|
|
2574
|
+
describeSourceRegionsStream(
|
|
2575
|
+
args: DescribeSourceRegionsCommandInput,
|
|
2576
|
+
options?: HttpHandlerOptions,
|
|
2577
|
+
): Stream.Stream<DescribeSourceRegionsCommandOutput, Cause.TimeoutException | SdkError>;
|
|
2578
|
+
|
|
2212
2579
|
/**
|
|
2213
2580
|
* @see {@link DescribeTenantDatabasesCommand}
|
|
2214
2581
|
*/
|
|
@@ -2220,6 +2587,14 @@ interface RDSService$ {
|
|
|
2220
2587
|
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError
|
|
2221
2588
|
>;
|
|
2222
2589
|
|
|
2590
|
+
describeTenantDatabasesStream(
|
|
2591
|
+
args: DescribeTenantDatabasesCommandInput,
|
|
2592
|
+
options?: HttpHandlerOptions,
|
|
2593
|
+
): Stream.Stream<
|
|
2594
|
+
DescribeTenantDatabasesCommandOutput,
|
|
2595
|
+
Cause.TimeoutException | SdkError | DBInstanceNotFoundFaultError
|
|
2596
|
+
>;
|
|
2597
|
+
|
|
2223
2598
|
/**
|
|
2224
2599
|
* @see {@link DescribeValidDBInstanceModificationsCommand}
|
|
2225
2600
|
*/
|
|
@@ -2257,6 +2632,18 @@ interface RDSService$ {
|
|
|
2257
2632
|
| DBLogFileNotFoundFaultError
|
|
2258
2633
|
>;
|
|
2259
2634
|
|
|
2635
|
+
downloadDBLogFilePortionStream(
|
|
2636
|
+
args: DownloadDBLogFilePortionCommandInput,
|
|
2637
|
+
options?: HttpHandlerOptions,
|
|
2638
|
+
): Stream.Stream<
|
|
2639
|
+
DownloadDBLogFilePortionCommandOutput,
|
|
2640
|
+
| Cause.TimeoutException
|
|
2641
|
+
| SdkError
|
|
2642
|
+
| DBInstanceNotFoundFaultError
|
|
2643
|
+
| DBInstanceNotReadyFaultError
|
|
2644
|
+
| DBLogFileNotFoundFaultError
|
|
2645
|
+
>;
|
|
2646
|
+
|
|
2260
2647
|
/**
|
|
2261
2648
|
* @see {@link EnableHttpEndpointCommand}
|
|
2262
2649
|
*/
|
|
@@ -3337,6 +3724,7 @@ export const makeRDSService = Effect.gen(function*() {
|
|
|
3337
3724
|
errorTags: AllServiceErrors,
|
|
3338
3725
|
resolveClientConfig: RDSServiceConfig.toRDSClientConfig,
|
|
3339
3726
|
},
|
|
3727
|
+
paginators,
|
|
3340
3728
|
);
|
|
3341
3729
|
});
|
|
3342
3730
|
|
package/src/RDSServiceConfig.ts
CHANGED
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import type { RDSClientConfig } from "@aws-sdk/client-rds";
|
|
5
|
-
import
|
|
6
|
-
import
|
|
5
|
+
import * as ServiceLogger from "@effect-aws/commons/ServiceLogger";
|
|
6
|
+
import * as Effect from "effect/Effect";
|
|
7
|
+
import * as FiberRef from "effect/FiberRef";
|
|
7
8
|
import { dual } from "effect/Function";
|
|
8
9
|
import { globalValue } from "effect/GlobalValue";
|
|
10
|
+
import * as Layer from "effect/Layer";
|
|
9
11
|
import type { RDSService } from "./RDSService.js";
|
|
10
12
|
|
|
11
13
|
/**
|