@effect-aws/client-rds 2.0.0-beta.2 → 2.0.0-beta.3
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/dts/Errors.d.ts +1 -1
- package/dist/dts/Errors.d.ts.map +1 -1
- package/dist/dts/RDSService.d.ts +44 -1
- package/dist/dts/RDSService.d.ts.map +1 -1
- package/dist/esm/RDSService.js +46 -3
- package/dist/esm/RDSService.js.map +1 -1
- package/dist/esm/RDSServiceConfig.js +1 -1
- package/dist/esm/RDSServiceConfig.js.map +1 -1
- package/package.json +2 -2
- package/src/Errors.ts +1 -1
- package/src/RDSService.ts +377 -2
- package/src/RDSServiceConfig.ts +1 -1
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,12 +535,14 @@ import {
|
|
|
494
535
|
type SwitchoverReadReplicaCommandInput,
|
|
495
536
|
type SwitchoverReadReplicaCommandOutput,
|
|
496
537
|
} from "@aws-sdk/client-rds";
|
|
497
|
-
import
|
|
498
|
-
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";
|
|
499
541
|
import type * as Cause from "effect/Cause";
|
|
500
542
|
import * as Effect from "effect/Effect";
|
|
501
543
|
import * as Layer from "effect/Layer";
|
|
502
544
|
import * as ServiceMap from "effect/ServiceMap";
|
|
545
|
+
import type * as Stream from "effect/Stream";
|
|
503
546
|
import type {
|
|
504
547
|
AuthorizationAlreadyExistsFaultError,
|
|
505
548
|
AuthorizationNotFoundFaultError,
|
|
@@ -819,6 +862,50 @@ const commands = {
|
|
|
819
862
|
SwitchoverReadReplicaCommand,
|
|
820
863
|
};
|
|
821
864
|
|
|
865
|
+
const paginators = {
|
|
866
|
+
paginateDescribeBlueGreenDeployments,
|
|
867
|
+
paginateDescribeCertificates,
|
|
868
|
+
paginateDescribeDBClusterAutomatedBackups,
|
|
869
|
+
paginateDescribeDBClusterBacktracks,
|
|
870
|
+
paginateDescribeDBClusterEndpoints,
|
|
871
|
+
paginateDescribeDBClusterParameterGroups,
|
|
872
|
+
paginateDescribeDBClusterParameters,
|
|
873
|
+
paginateDescribeDBClusterSnapshots,
|
|
874
|
+
paginateDescribeDBClusters,
|
|
875
|
+
paginateDescribeDBEngineVersions,
|
|
876
|
+
paginateDescribeDBInstanceAutomatedBackups,
|
|
877
|
+
paginateDescribeDBInstances,
|
|
878
|
+
paginateDescribeDBLogFiles,
|
|
879
|
+
paginateDescribeDBMajorEngineVersions,
|
|
880
|
+
paginateDescribeDBParameterGroups,
|
|
881
|
+
paginateDescribeDBParameters,
|
|
882
|
+
paginateDescribeDBProxies,
|
|
883
|
+
paginateDescribeDBProxyEndpoints,
|
|
884
|
+
paginateDescribeDBProxyTargetGroups,
|
|
885
|
+
paginateDescribeDBProxyTargets,
|
|
886
|
+
paginateDescribeDBRecommendations,
|
|
887
|
+
paginateDescribeDBSecurityGroups,
|
|
888
|
+
paginateDescribeDBSnapshotTenantDatabases,
|
|
889
|
+
paginateDescribeDBSnapshots,
|
|
890
|
+
paginateDescribeDBSubnetGroups,
|
|
891
|
+
paginateDescribeEngineDefaultClusterParameters,
|
|
892
|
+
paginateDescribeEngineDefaultParameters,
|
|
893
|
+
paginateDescribeEventSubscriptions,
|
|
894
|
+
paginateDescribeEvents,
|
|
895
|
+
paginateDescribeExportTasks,
|
|
896
|
+
paginateDescribeGlobalClusters,
|
|
897
|
+
paginateDescribeIntegrations,
|
|
898
|
+
paginateDescribeOptionGroupOptions,
|
|
899
|
+
paginateDescribeOptionGroups,
|
|
900
|
+
paginateDescribeOrderableDBInstanceOptions,
|
|
901
|
+
paginateDescribePendingMaintenanceActions,
|
|
902
|
+
paginateDescribeReservedDBInstances,
|
|
903
|
+
paginateDescribeReservedDBInstancesOfferings,
|
|
904
|
+
paginateDescribeSourceRegions,
|
|
905
|
+
paginateDescribeTenantDatabases,
|
|
906
|
+
paginateDownloadDBLogFilePortion,
|
|
907
|
+
};
|
|
908
|
+
|
|
822
909
|
export interface RDSService$ {
|
|
823
910
|
/**
|
|
824
911
|
* @see {@link AddRoleToDBClusterCommand}
|
|
@@ -1725,6 +1812,14 @@ export interface RDSService$ {
|
|
|
1725
1812
|
Cause.TimeoutError | SdkError | BlueGreenDeploymentNotFoundFaultError
|
|
1726
1813
|
>;
|
|
1727
1814
|
|
|
1815
|
+
describeBlueGreenDeploymentsStream(
|
|
1816
|
+
args: DescribeBlueGreenDeploymentsCommandInput,
|
|
1817
|
+
options?: HttpHandlerOptions,
|
|
1818
|
+
): Stream.Stream<
|
|
1819
|
+
DescribeBlueGreenDeploymentsCommandOutput,
|
|
1820
|
+
Cause.TimeoutError | SdkError | BlueGreenDeploymentNotFoundFaultError
|
|
1821
|
+
>;
|
|
1822
|
+
|
|
1728
1823
|
/**
|
|
1729
1824
|
* @see {@link DescribeCertificatesCommand}
|
|
1730
1825
|
*/
|
|
@@ -1736,6 +1831,11 @@ export interface RDSService$ {
|
|
|
1736
1831
|
Cause.TimeoutError | SdkError | CertificateNotFoundFaultError
|
|
1737
1832
|
>;
|
|
1738
1833
|
|
|
1834
|
+
describeCertificatesStream(
|
|
1835
|
+
args: DescribeCertificatesCommandInput,
|
|
1836
|
+
options?: HttpHandlerOptions,
|
|
1837
|
+
): Stream.Stream<DescribeCertificatesCommandOutput, Cause.TimeoutError | SdkError | CertificateNotFoundFaultError>;
|
|
1838
|
+
|
|
1739
1839
|
/**
|
|
1740
1840
|
* @see {@link DescribeDBClusterAutomatedBackupsCommand}
|
|
1741
1841
|
*/
|
|
@@ -1747,6 +1847,14 @@ export interface RDSService$ {
|
|
|
1747
1847
|
Cause.TimeoutError | SdkError | DBClusterAutomatedBackupNotFoundFaultError
|
|
1748
1848
|
>;
|
|
1749
1849
|
|
|
1850
|
+
describeDBClusterAutomatedBackupsStream(
|
|
1851
|
+
args: DescribeDBClusterAutomatedBackupsCommandInput,
|
|
1852
|
+
options?: HttpHandlerOptions,
|
|
1853
|
+
): Stream.Stream<
|
|
1854
|
+
DescribeDBClusterAutomatedBackupsCommandOutput,
|
|
1855
|
+
Cause.TimeoutError | SdkError | DBClusterAutomatedBackupNotFoundFaultError
|
|
1856
|
+
>;
|
|
1857
|
+
|
|
1750
1858
|
/**
|
|
1751
1859
|
* @see {@link DescribeDBClusterBacktracksCommand}
|
|
1752
1860
|
*/
|
|
@@ -1758,6 +1866,14 @@ export interface RDSService$ {
|
|
|
1758
1866
|
Cause.TimeoutError | SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
|
|
1759
1867
|
>;
|
|
1760
1868
|
|
|
1869
|
+
describeDBClusterBacktracksStream(
|
|
1870
|
+
args: DescribeDBClusterBacktracksCommandInput,
|
|
1871
|
+
options?: HttpHandlerOptions,
|
|
1872
|
+
): Stream.Stream<
|
|
1873
|
+
DescribeDBClusterBacktracksCommandOutput,
|
|
1874
|
+
Cause.TimeoutError | SdkError | DBClusterBacktrackNotFoundFaultError | DBClusterNotFoundFaultError
|
|
1875
|
+
>;
|
|
1876
|
+
|
|
1761
1877
|
/**
|
|
1762
1878
|
* @see {@link DescribeDBClusterEndpointsCommand}
|
|
1763
1879
|
*/
|
|
@@ -1769,6 +1885,14 @@ export interface RDSService$ {
|
|
|
1769
1885
|
Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError
|
|
1770
1886
|
>;
|
|
1771
1887
|
|
|
1888
|
+
describeDBClusterEndpointsStream(
|
|
1889
|
+
args: DescribeDBClusterEndpointsCommandInput,
|
|
1890
|
+
options?: HttpHandlerOptions,
|
|
1891
|
+
): Stream.Stream<
|
|
1892
|
+
DescribeDBClusterEndpointsCommandOutput,
|
|
1893
|
+
Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError
|
|
1894
|
+
>;
|
|
1895
|
+
|
|
1772
1896
|
/**
|
|
1773
1897
|
* @see {@link DescribeDBClusterParameterGroupsCommand}
|
|
1774
1898
|
*/
|
|
@@ -1780,6 +1904,14 @@ export interface RDSService$ {
|
|
|
1780
1904
|
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1781
1905
|
>;
|
|
1782
1906
|
|
|
1907
|
+
describeDBClusterParameterGroupsStream(
|
|
1908
|
+
args: DescribeDBClusterParameterGroupsCommandInput,
|
|
1909
|
+
options?: HttpHandlerOptions,
|
|
1910
|
+
): Stream.Stream<
|
|
1911
|
+
DescribeDBClusterParameterGroupsCommandOutput,
|
|
1912
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1913
|
+
>;
|
|
1914
|
+
|
|
1783
1915
|
/**
|
|
1784
1916
|
* @see {@link DescribeDBClusterParametersCommand}
|
|
1785
1917
|
*/
|
|
@@ -1791,6 +1923,14 @@ export interface RDSService$ {
|
|
|
1791
1923
|
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1792
1924
|
>;
|
|
1793
1925
|
|
|
1926
|
+
describeDBClusterParametersStream(
|
|
1927
|
+
args: DescribeDBClusterParametersCommandInput,
|
|
1928
|
+
options?: HttpHandlerOptions,
|
|
1929
|
+
): Stream.Stream<
|
|
1930
|
+
DescribeDBClusterParametersCommandOutput,
|
|
1931
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1932
|
+
>;
|
|
1933
|
+
|
|
1794
1934
|
/**
|
|
1795
1935
|
* @see {@link DescribeDBClusterSnapshotAttributesCommand}
|
|
1796
1936
|
*/
|
|
@@ -1813,6 +1953,14 @@ export interface RDSService$ {
|
|
|
1813
1953
|
Cause.TimeoutError | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1814
1954
|
>;
|
|
1815
1955
|
|
|
1956
|
+
describeDBClusterSnapshotsStream(
|
|
1957
|
+
args: DescribeDBClusterSnapshotsCommandInput,
|
|
1958
|
+
options?: HttpHandlerOptions,
|
|
1959
|
+
): Stream.Stream<
|
|
1960
|
+
DescribeDBClusterSnapshotsCommandOutput,
|
|
1961
|
+
Cause.TimeoutError | SdkError | DBClusterSnapshotNotFoundFaultError
|
|
1962
|
+
>;
|
|
1963
|
+
|
|
1816
1964
|
/**
|
|
1817
1965
|
* @see {@link DescribeDBClustersCommand}
|
|
1818
1966
|
*/
|
|
@@ -1824,6 +1972,11 @@ export interface RDSService$ {
|
|
|
1824
1972
|
Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError
|
|
1825
1973
|
>;
|
|
1826
1974
|
|
|
1975
|
+
describeDBClustersStream(
|
|
1976
|
+
args: DescribeDBClustersCommandInput,
|
|
1977
|
+
options?: HttpHandlerOptions,
|
|
1978
|
+
): Stream.Stream<DescribeDBClustersCommandOutput, Cause.TimeoutError | SdkError | DBClusterNotFoundFaultError>;
|
|
1979
|
+
|
|
1827
1980
|
/**
|
|
1828
1981
|
* @see {@link DescribeDBEngineVersionsCommand}
|
|
1829
1982
|
*/
|
|
@@ -1835,6 +1988,11 @@ export interface RDSService$ {
|
|
|
1835
1988
|
Cause.TimeoutError | SdkError
|
|
1836
1989
|
>;
|
|
1837
1990
|
|
|
1991
|
+
describeDBEngineVersionsStream(
|
|
1992
|
+
args: DescribeDBEngineVersionsCommandInput,
|
|
1993
|
+
options?: HttpHandlerOptions,
|
|
1994
|
+
): Stream.Stream<DescribeDBEngineVersionsCommandOutput, Cause.TimeoutError | SdkError>;
|
|
1995
|
+
|
|
1838
1996
|
/**
|
|
1839
1997
|
* @see {@link DescribeDBInstanceAutomatedBackupsCommand}
|
|
1840
1998
|
*/
|
|
@@ -1846,6 +2004,14 @@ export interface RDSService$ {
|
|
|
1846
2004
|
Cause.TimeoutError | SdkError | DBInstanceAutomatedBackupNotFoundFaultError
|
|
1847
2005
|
>;
|
|
1848
2006
|
|
|
2007
|
+
describeDBInstanceAutomatedBackupsStream(
|
|
2008
|
+
args: DescribeDBInstanceAutomatedBackupsCommandInput,
|
|
2009
|
+
options?: HttpHandlerOptions,
|
|
2010
|
+
): Stream.Stream<
|
|
2011
|
+
DescribeDBInstanceAutomatedBackupsCommandOutput,
|
|
2012
|
+
Cause.TimeoutError | SdkError | DBInstanceAutomatedBackupNotFoundFaultError
|
|
2013
|
+
>;
|
|
2014
|
+
|
|
1849
2015
|
/**
|
|
1850
2016
|
* @see {@link DescribeDBInstancesCommand}
|
|
1851
2017
|
*/
|
|
@@ -1857,6 +2023,11 @@ export interface RDSService$ {
|
|
|
1857
2023
|
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError
|
|
1858
2024
|
>;
|
|
1859
2025
|
|
|
2026
|
+
describeDBInstancesStream(
|
|
2027
|
+
args: DescribeDBInstancesCommandInput,
|
|
2028
|
+
options?: HttpHandlerOptions,
|
|
2029
|
+
): Stream.Stream<DescribeDBInstancesCommandOutput, Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError>;
|
|
2030
|
+
|
|
1860
2031
|
/**
|
|
1861
2032
|
* @see {@link DescribeDBLogFilesCommand}
|
|
1862
2033
|
*/
|
|
@@ -1868,6 +2039,14 @@ export interface RDSService$ {
|
|
|
1868
2039
|
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
1869
2040
|
>;
|
|
1870
2041
|
|
|
2042
|
+
describeDBLogFilesStream(
|
|
2043
|
+
args: DescribeDBLogFilesCommandInput,
|
|
2044
|
+
options?: HttpHandlerOptions,
|
|
2045
|
+
): Stream.Stream<
|
|
2046
|
+
DescribeDBLogFilesCommandOutput,
|
|
2047
|
+
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError | DBInstanceNotReadyFaultError
|
|
2048
|
+
>;
|
|
2049
|
+
|
|
1871
2050
|
/**
|
|
1872
2051
|
* @see {@link DescribeDBMajorEngineVersionsCommand}
|
|
1873
2052
|
*/
|
|
@@ -1879,6 +2058,11 @@ export interface RDSService$ {
|
|
|
1879
2058
|
Cause.TimeoutError | SdkError
|
|
1880
2059
|
>;
|
|
1881
2060
|
|
|
2061
|
+
describeDBMajorEngineVersionsStream(
|
|
2062
|
+
args: DescribeDBMajorEngineVersionsCommandInput,
|
|
2063
|
+
options?: HttpHandlerOptions,
|
|
2064
|
+
): Stream.Stream<DescribeDBMajorEngineVersionsCommandOutput, Cause.TimeoutError | SdkError>;
|
|
2065
|
+
|
|
1882
2066
|
/**
|
|
1883
2067
|
* @see {@link DescribeDBParameterGroupsCommand}
|
|
1884
2068
|
*/
|
|
@@ -1890,6 +2074,14 @@ export interface RDSService$ {
|
|
|
1890
2074
|
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1891
2075
|
>;
|
|
1892
2076
|
|
|
2077
|
+
describeDBParameterGroupsStream(
|
|
2078
|
+
args: DescribeDBParameterGroupsCommandInput,
|
|
2079
|
+
options?: HttpHandlerOptions,
|
|
2080
|
+
): Stream.Stream<
|
|
2081
|
+
DescribeDBParameterGroupsCommandOutput,
|
|
2082
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
2083
|
+
>;
|
|
2084
|
+
|
|
1893
2085
|
/**
|
|
1894
2086
|
* @see {@link DescribeDBParametersCommand}
|
|
1895
2087
|
*/
|
|
@@ -1901,6 +2093,14 @@ export interface RDSService$ {
|
|
|
1901
2093
|
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
1902
2094
|
>;
|
|
1903
2095
|
|
|
2096
|
+
describeDBParametersStream(
|
|
2097
|
+
args: DescribeDBParametersCommandInput,
|
|
2098
|
+
options?: HttpHandlerOptions,
|
|
2099
|
+
): Stream.Stream<
|
|
2100
|
+
DescribeDBParametersCommandOutput,
|
|
2101
|
+
Cause.TimeoutError | SdkError | DBParameterGroupNotFoundFaultError
|
|
2102
|
+
>;
|
|
2103
|
+
|
|
1904
2104
|
/**
|
|
1905
2105
|
* @see {@link DescribeDBProxiesCommand}
|
|
1906
2106
|
*/
|
|
@@ -1912,6 +2112,11 @@ export interface RDSService$ {
|
|
|
1912
2112
|
Cause.TimeoutError | SdkError | DBProxyNotFoundFaultError
|
|
1913
2113
|
>;
|
|
1914
2114
|
|
|
2115
|
+
describeDBProxiesStream(
|
|
2116
|
+
args: DescribeDBProxiesCommandInput,
|
|
2117
|
+
options?: HttpHandlerOptions,
|
|
2118
|
+
): Stream.Stream<DescribeDBProxiesCommandOutput, Cause.TimeoutError | SdkError | DBProxyNotFoundFaultError>;
|
|
2119
|
+
|
|
1915
2120
|
/**
|
|
1916
2121
|
* @see {@link DescribeDBProxyEndpointsCommand}
|
|
1917
2122
|
*/
|
|
@@ -1923,6 +2128,14 @@ export interface RDSService$ {
|
|
|
1923
2128
|
Cause.TimeoutError | SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
|
|
1924
2129
|
>;
|
|
1925
2130
|
|
|
2131
|
+
describeDBProxyEndpointsStream(
|
|
2132
|
+
args: DescribeDBProxyEndpointsCommandInput,
|
|
2133
|
+
options?: HttpHandlerOptions,
|
|
2134
|
+
): Stream.Stream<
|
|
2135
|
+
DescribeDBProxyEndpointsCommandOutput,
|
|
2136
|
+
Cause.TimeoutError | SdkError | DBProxyEndpointNotFoundFaultError | DBProxyNotFoundFaultError
|
|
2137
|
+
>;
|
|
2138
|
+
|
|
1926
2139
|
/**
|
|
1927
2140
|
* @see {@link DescribeDBProxyTargetGroupsCommand}
|
|
1928
2141
|
*/
|
|
@@ -1938,6 +2151,18 @@ export interface RDSService$ {
|
|
|
1938
2151
|
| InvalidDBProxyStateFaultError
|
|
1939
2152
|
>;
|
|
1940
2153
|
|
|
2154
|
+
describeDBProxyTargetGroupsStream(
|
|
2155
|
+
args: DescribeDBProxyTargetGroupsCommandInput,
|
|
2156
|
+
options?: HttpHandlerOptions,
|
|
2157
|
+
): Stream.Stream<
|
|
2158
|
+
DescribeDBProxyTargetGroupsCommandOutput,
|
|
2159
|
+
| Cause.TimeoutError
|
|
2160
|
+
| SdkError
|
|
2161
|
+
| DBProxyNotFoundFaultError
|
|
2162
|
+
| DBProxyTargetGroupNotFoundFaultError
|
|
2163
|
+
| InvalidDBProxyStateFaultError
|
|
2164
|
+
>;
|
|
2165
|
+
|
|
1941
2166
|
/**
|
|
1942
2167
|
* @see {@link DescribeDBProxyTargetsCommand}
|
|
1943
2168
|
*/
|
|
@@ -1954,6 +2179,19 @@ export interface RDSService$ {
|
|
|
1954
2179
|
| InvalidDBProxyStateFaultError
|
|
1955
2180
|
>;
|
|
1956
2181
|
|
|
2182
|
+
describeDBProxyTargetsStream(
|
|
2183
|
+
args: DescribeDBProxyTargetsCommandInput,
|
|
2184
|
+
options?: HttpHandlerOptions,
|
|
2185
|
+
): Stream.Stream<
|
|
2186
|
+
DescribeDBProxyTargetsCommandOutput,
|
|
2187
|
+
| Cause.TimeoutError
|
|
2188
|
+
| SdkError
|
|
2189
|
+
| DBProxyNotFoundFaultError
|
|
2190
|
+
| DBProxyTargetGroupNotFoundFaultError
|
|
2191
|
+
| DBProxyTargetNotFoundFaultError
|
|
2192
|
+
| InvalidDBProxyStateFaultError
|
|
2193
|
+
>;
|
|
2194
|
+
|
|
1957
2195
|
/**
|
|
1958
2196
|
* @see {@link DescribeDBRecommendationsCommand}
|
|
1959
2197
|
*/
|
|
@@ -1965,6 +2203,11 @@ export interface RDSService$ {
|
|
|
1965
2203
|
Cause.TimeoutError | SdkError
|
|
1966
2204
|
>;
|
|
1967
2205
|
|
|
2206
|
+
describeDBRecommendationsStream(
|
|
2207
|
+
args: DescribeDBRecommendationsCommandInput,
|
|
2208
|
+
options?: HttpHandlerOptions,
|
|
2209
|
+
): Stream.Stream<DescribeDBRecommendationsCommandOutput, Cause.TimeoutError | SdkError>;
|
|
2210
|
+
|
|
1968
2211
|
/**
|
|
1969
2212
|
* @see {@link DescribeDBSecurityGroupsCommand}
|
|
1970
2213
|
*/
|
|
@@ -1976,6 +2219,14 @@ export interface RDSService$ {
|
|
|
1976
2219
|
Cause.TimeoutError | SdkError | DBSecurityGroupNotFoundFaultError
|
|
1977
2220
|
>;
|
|
1978
2221
|
|
|
2222
|
+
describeDBSecurityGroupsStream(
|
|
2223
|
+
args: DescribeDBSecurityGroupsCommandInput,
|
|
2224
|
+
options?: HttpHandlerOptions,
|
|
2225
|
+
): Stream.Stream<
|
|
2226
|
+
DescribeDBSecurityGroupsCommandOutput,
|
|
2227
|
+
Cause.TimeoutError | SdkError | DBSecurityGroupNotFoundFaultError
|
|
2228
|
+
>;
|
|
2229
|
+
|
|
1979
2230
|
/**
|
|
1980
2231
|
* @see {@link DescribeDBShardGroupsCommand}
|
|
1981
2232
|
*/
|
|
@@ -2009,6 +2260,14 @@ export interface RDSService$ {
|
|
|
2009
2260
|
Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError
|
|
2010
2261
|
>;
|
|
2011
2262
|
|
|
2263
|
+
describeDBSnapshotTenantDatabasesStream(
|
|
2264
|
+
args: DescribeDBSnapshotTenantDatabasesCommandInput,
|
|
2265
|
+
options?: HttpHandlerOptions,
|
|
2266
|
+
): Stream.Stream<
|
|
2267
|
+
DescribeDBSnapshotTenantDatabasesCommandOutput,
|
|
2268
|
+
Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError
|
|
2269
|
+
>;
|
|
2270
|
+
|
|
2012
2271
|
/**
|
|
2013
2272
|
* @see {@link DescribeDBSnapshotsCommand}
|
|
2014
2273
|
*/
|
|
@@ -2020,6 +2279,11 @@ export interface RDSService$ {
|
|
|
2020
2279
|
Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError
|
|
2021
2280
|
>;
|
|
2022
2281
|
|
|
2282
|
+
describeDBSnapshotsStream(
|
|
2283
|
+
args: DescribeDBSnapshotsCommandInput,
|
|
2284
|
+
options?: HttpHandlerOptions,
|
|
2285
|
+
): Stream.Stream<DescribeDBSnapshotsCommandOutput, Cause.TimeoutError | SdkError | DBSnapshotNotFoundFaultError>;
|
|
2286
|
+
|
|
2023
2287
|
/**
|
|
2024
2288
|
* @see {@link DescribeDBSubnetGroupsCommand}
|
|
2025
2289
|
*/
|
|
@@ -2031,6 +2295,14 @@ export interface RDSService$ {
|
|
|
2031
2295
|
Cause.TimeoutError | SdkError | DBSubnetGroupNotFoundFaultError
|
|
2032
2296
|
>;
|
|
2033
2297
|
|
|
2298
|
+
describeDBSubnetGroupsStream(
|
|
2299
|
+
args: DescribeDBSubnetGroupsCommandInput,
|
|
2300
|
+
options?: HttpHandlerOptions,
|
|
2301
|
+
): Stream.Stream<
|
|
2302
|
+
DescribeDBSubnetGroupsCommandOutput,
|
|
2303
|
+
Cause.TimeoutError | SdkError | DBSubnetGroupNotFoundFaultError
|
|
2304
|
+
>;
|
|
2305
|
+
|
|
2034
2306
|
/**
|
|
2035
2307
|
* @see {@link DescribeEngineDefaultClusterParametersCommand}
|
|
2036
2308
|
*/
|
|
@@ -2042,6 +2314,11 @@ export interface RDSService$ {
|
|
|
2042
2314
|
Cause.TimeoutError | SdkError
|
|
2043
2315
|
>;
|
|
2044
2316
|
|
|
2317
|
+
describeEngineDefaultClusterParametersStream(
|
|
2318
|
+
args: DescribeEngineDefaultClusterParametersCommandInput,
|
|
2319
|
+
options?: HttpHandlerOptions,
|
|
2320
|
+
): Stream.Stream<DescribeEngineDefaultClusterParametersCommandOutput, Cause.TimeoutError | SdkError>;
|
|
2321
|
+
|
|
2045
2322
|
/**
|
|
2046
2323
|
* @see {@link DescribeEngineDefaultParametersCommand}
|
|
2047
2324
|
*/
|
|
@@ -2053,6 +2330,11 @@ export interface RDSService$ {
|
|
|
2053
2330
|
Cause.TimeoutError | SdkError
|
|
2054
2331
|
>;
|
|
2055
2332
|
|
|
2333
|
+
describeEngineDefaultParametersStream(
|
|
2334
|
+
args: DescribeEngineDefaultParametersCommandInput,
|
|
2335
|
+
options?: HttpHandlerOptions,
|
|
2336
|
+
): Stream.Stream<DescribeEngineDefaultParametersCommandOutput, Cause.TimeoutError | SdkError>;
|
|
2337
|
+
|
|
2056
2338
|
/**
|
|
2057
2339
|
* @see {@link DescribeEventCategoriesCommand}
|
|
2058
2340
|
*/
|
|
@@ -2075,6 +2357,14 @@ export interface RDSService$ {
|
|
|
2075
2357
|
Cause.TimeoutError | SdkError | SubscriptionNotFoundFaultError
|
|
2076
2358
|
>;
|
|
2077
2359
|
|
|
2360
|
+
describeEventSubscriptionsStream(
|
|
2361
|
+
args: DescribeEventSubscriptionsCommandInput,
|
|
2362
|
+
options?: HttpHandlerOptions,
|
|
2363
|
+
): Stream.Stream<
|
|
2364
|
+
DescribeEventSubscriptionsCommandOutput,
|
|
2365
|
+
Cause.TimeoutError | SdkError | SubscriptionNotFoundFaultError
|
|
2366
|
+
>;
|
|
2367
|
+
|
|
2078
2368
|
/**
|
|
2079
2369
|
* @see {@link DescribeEventsCommand}
|
|
2080
2370
|
*/
|
|
@@ -2086,6 +2376,11 @@ export interface RDSService$ {
|
|
|
2086
2376
|
Cause.TimeoutError | SdkError
|
|
2087
2377
|
>;
|
|
2088
2378
|
|
|
2379
|
+
describeEventsStream(
|
|
2380
|
+
args: DescribeEventsCommandInput,
|
|
2381
|
+
options?: HttpHandlerOptions,
|
|
2382
|
+
): Stream.Stream<DescribeEventsCommandOutput, Cause.TimeoutError | SdkError>;
|
|
2383
|
+
|
|
2089
2384
|
/**
|
|
2090
2385
|
* @see {@link DescribeExportTasksCommand}
|
|
2091
2386
|
*/
|
|
@@ -2097,6 +2392,11 @@ export interface RDSService$ {
|
|
|
2097
2392
|
Cause.TimeoutError | SdkError | ExportTaskNotFoundFaultError
|
|
2098
2393
|
>;
|
|
2099
2394
|
|
|
2395
|
+
describeExportTasksStream(
|
|
2396
|
+
args: DescribeExportTasksCommandInput,
|
|
2397
|
+
options?: HttpHandlerOptions,
|
|
2398
|
+
): Stream.Stream<DescribeExportTasksCommandOutput, Cause.TimeoutError | SdkError | ExportTaskNotFoundFaultError>;
|
|
2399
|
+
|
|
2100
2400
|
/**
|
|
2101
2401
|
* @see {@link DescribeGlobalClustersCommand}
|
|
2102
2402
|
*/
|
|
@@ -2108,6 +2408,14 @@ export interface RDSService$ {
|
|
|
2108
2408
|
Cause.TimeoutError | SdkError | GlobalClusterNotFoundFaultError
|
|
2109
2409
|
>;
|
|
2110
2410
|
|
|
2411
|
+
describeGlobalClustersStream(
|
|
2412
|
+
args: DescribeGlobalClustersCommandInput,
|
|
2413
|
+
options?: HttpHandlerOptions,
|
|
2414
|
+
): Stream.Stream<
|
|
2415
|
+
DescribeGlobalClustersCommandOutput,
|
|
2416
|
+
Cause.TimeoutError | SdkError | GlobalClusterNotFoundFaultError
|
|
2417
|
+
>;
|
|
2418
|
+
|
|
2111
2419
|
/**
|
|
2112
2420
|
* @see {@link DescribeIntegrationsCommand}
|
|
2113
2421
|
*/
|
|
@@ -2119,6 +2427,11 @@ export interface RDSService$ {
|
|
|
2119
2427
|
Cause.TimeoutError | SdkError | IntegrationNotFoundFaultError
|
|
2120
2428
|
>;
|
|
2121
2429
|
|
|
2430
|
+
describeIntegrationsStream(
|
|
2431
|
+
args: DescribeIntegrationsCommandInput,
|
|
2432
|
+
options?: HttpHandlerOptions,
|
|
2433
|
+
): Stream.Stream<DescribeIntegrationsCommandOutput, Cause.TimeoutError | SdkError | IntegrationNotFoundFaultError>;
|
|
2434
|
+
|
|
2122
2435
|
/**
|
|
2123
2436
|
* @see {@link DescribeOptionGroupOptionsCommand}
|
|
2124
2437
|
*/
|
|
@@ -2130,6 +2443,11 @@ export interface RDSService$ {
|
|
|
2130
2443
|
Cause.TimeoutError | SdkError
|
|
2131
2444
|
>;
|
|
2132
2445
|
|
|
2446
|
+
describeOptionGroupOptionsStream(
|
|
2447
|
+
args: DescribeOptionGroupOptionsCommandInput,
|
|
2448
|
+
options?: HttpHandlerOptions,
|
|
2449
|
+
): Stream.Stream<DescribeOptionGroupOptionsCommandOutput, Cause.TimeoutError | SdkError>;
|
|
2450
|
+
|
|
2133
2451
|
/**
|
|
2134
2452
|
* @see {@link DescribeOptionGroupsCommand}
|
|
2135
2453
|
*/
|
|
@@ -2141,6 +2459,11 @@ export interface RDSService$ {
|
|
|
2141
2459
|
Cause.TimeoutError | SdkError | OptionGroupNotFoundFaultError
|
|
2142
2460
|
>;
|
|
2143
2461
|
|
|
2462
|
+
describeOptionGroupsStream(
|
|
2463
|
+
args: DescribeOptionGroupsCommandInput,
|
|
2464
|
+
options?: HttpHandlerOptions,
|
|
2465
|
+
): Stream.Stream<DescribeOptionGroupsCommandOutput, Cause.TimeoutError | SdkError | OptionGroupNotFoundFaultError>;
|
|
2466
|
+
|
|
2144
2467
|
/**
|
|
2145
2468
|
* @see {@link DescribeOrderableDBInstanceOptionsCommand}
|
|
2146
2469
|
*/
|
|
@@ -2152,6 +2475,11 @@ export interface RDSService$ {
|
|
|
2152
2475
|
Cause.TimeoutError | SdkError
|
|
2153
2476
|
>;
|
|
2154
2477
|
|
|
2478
|
+
describeOrderableDBInstanceOptionsStream(
|
|
2479
|
+
args: DescribeOrderableDBInstanceOptionsCommandInput,
|
|
2480
|
+
options?: HttpHandlerOptions,
|
|
2481
|
+
): Stream.Stream<DescribeOrderableDBInstanceOptionsCommandOutput, Cause.TimeoutError | SdkError>;
|
|
2482
|
+
|
|
2155
2483
|
/**
|
|
2156
2484
|
* @see {@link DescribePendingMaintenanceActionsCommand}
|
|
2157
2485
|
*/
|
|
@@ -2163,6 +2491,14 @@ export interface RDSService$ {
|
|
|
2163
2491
|
Cause.TimeoutError | SdkError | ResourceNotFoundFaultError
|
|
2164
2492
|
>;
|
|
2165
2493
|
|
|
2494
|
+
describePendingMaintenanceActionsStream(
|
|
2495
|
+
args: DescribePendingMaintenanceActionsCommandInput,
|
|
2496
|
+
options?: HttpHandlerOptions,
|
|
2497
|
+
): Stream.Stream<
|
|
2498
|
+
DescribePendingMaintenanceActionsCommandOutput,
|
|
2499
|
+
Cause.TimeoutError | SdkError | ResourceNotFoundFaultError
|
|
2500
|
+
>;
|
|
2501
|
+
|
|
2166
2502
|
/**
|
|
2167
2503
|
* @see {@link DescribeReservedDBInstancesCommand}
|
|
2168
2504
|
*/
|
|
@@ -2174,6 +2510,14 @@ export interface RDSService$ {
|
|
|
2174
2510
|
Cause.TimeoutError | SdkError | ReservedDBInstanceNotFoundFaultError
|
|
2175
2511
|
>;
|
|
2176
2512
|
|
|
2513
|
+
describeReservedDBInstancesStream(
|
|
2514
|
+
args: DescribeReservedDBInstancesCommandInput,
|
|
2515
|
+
options?: HttpHandlerOptions,
|
|
2516
|
+
): Stream.Stream<
|
|
2517
|
+
DescribeReservedDBInstancesCommandOutput,
|
|
2518
|
+
Cause.TimeoutError | SdkError | ReservedDBInstanceNotFoundFaultError
|
|
2519
|
+
>;
|
|
2520
|
+
|
|
2177
2521
|
/**
|
|
2178
2522
|
* @see {@link DescribeReservedDBInstancesOfferingsCommand}
|
|
2179
2523
|
*/
|
|
@@ -2185,6 +2529,14 @@ export interface RDSService$ {
|
|
|
2185
2529
|
Cause.TimeoutError | SdkError | ReservedDBInstancesOfferingNotFoundFaultError
|
|
2186
2530
|
>;
|
|
2187
2531
|
|
|
2532
|
+
describeReservedDBInstancesOfferingsStream(
|
|
2533
|
+
args: DescribeReservedDBInstancesOfferingsCommandInput,
|
|
2534
|
+
options?: HttpHandlerOptions,
|
|
2535
|
+
): Stream.Stream<
|
|
2536
|
+
DescribeReservedDBInstancesOfferingsCommandOutput,
|
|
2537
|
+
Cause.TimeoutError | SdkError | ReservedDBInstancesOfferingNotFoundFaultError
|
|
2538
|
+
>;
|
|
2539
|
+
|
|
2188
2540
|
/**
|
|
2189
2541
|
* @see {@link DescribeSourceRegionsCommand}
|
|
2190
2542
|
*/
|
|
@@ -2196,6 +2548,11 @@ export interface RDSService$ {
|
|
|
2196
2548
|
Cause.TimeoutError | SdkError
|
|
2197
2549
|
>;
|
|
2198
2550
|
|
|
2551
|
+
describeSourceRegionsStream(
|
|
2552
|
+
args: DescribeSourceRegionsCommandInput,
|
|
2553
|
+
options?: HttpHandlerOptions,
|
|
2554
|
+
): Stream.Stream<DescribeSourceRegionsCommandOutput, Cause.TimeoutError | SdkError>;
|
|
2555
|
+
|
|
2199
2556
|
/**
|
|
2200
2557
|
* @see {@link DescribeTenantDatabasesCommand}
|
|
2201
2558
|
*/
|
|
@@ -2207,6 +2564,11 @@ export interface RDSService$ {
|
|
|
2207
2564
|
Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError
|
|
2208
2565
|
>;
|
|
2209
2566
|
|
|
2567
|
+
describeTenantDatabasesStream(
|
|
2568
|
+
args: DescribeTenantDatabasesCommandInput,
|
|
2569
|
+
options?: HttpHandlerOptions,
|
|
2570
|
+
): Stream.Stream<DescribeTenantDatabasesCommandOutput, Cause.TimeoutError | SdkError | DBInstanceNotFoundFaultError>;
|
|
2571
|
+
|
|
2210
2572
|
/**
|
|
2211
2573
|
* @see {@link DescribeValidDBInstanceModificationsCommand}
|
|
2212
2574
|
*/
|
|
@@ -2244,6 +2606,18 @@ export interface RDSService$ {
|
|
|
2244
2606
|
| DBLogFileNotFoundFaultError
|
|
2245
2607
|
>;
|
|
2246
2608
|
|
|
2609
|
+
downloadDBLogFilePortionStream(
|
|
2610
|
+
args: DownloadDBLogFilePortionCommandInput,
|
|
2611
|
+
options?: HttpHandlerOptions,
|
|
2612
|
+
): Stream.Stream<
|
|
2613
|
+
DownloadDBLogFilePortionCommandOutput,
|
|
2614
|
+
| Cause.TimeoutError
|
|
2615
|
+
| SdkError
|
|
2616
|
+
| DBInstanceNotFoundFaultError
|
|
2617
|
+
| DBInstanceNotReadyFaultError
|
|
2618
|
+
| DBLogFileNotFoundFaultError
|
|
2619
|
+
>;
|
|
2620
|
+
|
|
2247
2621
|
/**
|
|
2248
2622
|
* @see {@link EnableHttpEndpointCommand}
|
|
2249
2623
|
*/
|
|
@@ -3321,6 +3695,7 @@ export const makeRDSService = Effect.gen(function*() {
|
|
|
3321
3695
|
errorTags: AllServiceErrors,
|
|
3322
3696
|
resolveClientConfig: RDSServiceConfig.toRDSClientConfig,
|
|
3323
3697
|
},
|
|
3698
|
+
paginators,
|
|
3324
3699
|
);
|
|
3325
3700
|
});
|
|
3326
3701
|
|
package/src/RDSServiceConfig.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import type { RDSClientConfig } from "@aws-sdk/client-rds";
|
|
5
|
-
import
|
|
5
|
+
import * as ServiceLogger from "@effect-aws/commons/ServiceLogger";
|
|
6
6
|
import * as Effect from "effect/Effect";
|
|
7
7
|
import { dual } from "effect/Function";
|
|
8
8
|
import * as Layer from "effect/Layer";
|