@aws-sdk/client-redshift 3.41.0 → 3.46.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/CHANGELOG.md +47 -0
- package/dist-cjs/Redshift.js +30 -0
- package/dist-cjs/commands/DescribeHsmConfigurationsCommand.js +2 -1
- package/dist-cjs/commands/DescribeLoggingStatusCommand.js +1 -2
- package/dist-cjs/commands/DescribeReservedNodeExchangeStatusCommand.js +36 -0
- package/dist-cjs/commands/GetReservedNodeExchangeConfigurationOptionsCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +20 -17
- package/dist-cjs/models/models_1.js +56 -3
- package/dist-cjs/pagination/DescribeDataSharesForConsumerPaginator.js +35 -0
- package/dist-cjs/pagination/DescribeDataSharesForProducerPaginator.js +35 -0
- package/dist-cjs/pagination/DescribeDataSharesPaginator.js +35 -0
- package/dist-cjs/pagination/DescribeReservedNodeExchangeStatusPaginator.js +35 -0
- package/dist-cjs/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +6 -1
- package/dist-cjs/protocols/Aws_query.js +508 -4
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/Redshift.js +30 -0
- package/dist-es/commands/DescribeHsmConfigurationsCommand.js +2 -1
- package/dist-es/commands/DescribeLoggingStatusCommand.js +1 -2
- package/dist-es/commands/DescribeReservedNodeExchangeStatusCommand.js +39 -0
- package/dist-es/commands/GetReservedNodeExchangeConfigurationOptionsCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +13 -8
- package/dist-es/models/models_1.js +37 -0
- package/dist-es/pagination/DescribeDataSharesForConsumerPaginator.js +74 -0
- package/dist-es/pagination/DescribeDataSharesForProducerPaginator.js +74 -0
- package/dist-es/pagination/DescribeDataSharesPaginator.js +74 -0
- package/dist-es/pagination/DescribeReservedNodeExchangeStatusPaginator.js +74 -0
- package/dist-es/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.js +74 -0
- package/dist-es/pagination/index.js +6 -1
- package/dist-es/protocols/Aws_query.js +675 -161
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/Redshift.d.ts +18 -1
- package/dist-types/RedshiftClient.d.ts +4 -2
- package/dist-types/commands/AuthorizeDataShareCommand.d.ts +1 -1
- package/dist-types/commands/DescribeHsmConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeLoggingStatusCommand.d.ts +1 -2
- package/dist-types/commands/DescribeReservedNodeExchangeStatusCommand.d.ts +36 -0
- package/dist-types/commands/GetReservedNodeExchangeConfigurationOptionsCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +90 -49
- package/dist-types/models/models_1.d.ts +202 -1
- package/dist-types/pagination/DescribeDataSharesForConsumerPaginator.d.ts +4 -0
- package/dist-types/pagination/DescribeDataSharesForProducerPaginator.d.ts +4 -0
- package/dist-types/pagination/DescribeDataSharesPaginator.d.ts +4 -0
- package/dist-types/pagination/DescribeReservedNodeExchangeStatusPaginator.d.ts +4 -0
- package/dist-types/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +6 -1
- package/dist-types/protocols/Aws_query.d.ts +6 -0
- package/dist-types/ts3.4/Redshift.d.ts +10 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeHsmConfigurationsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeLoggingStatusCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DescribeReservedNodeExchangeStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetReservedNodeExchangeConfigurationOptionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +45 -20
- package/dist-types/ts3.4/models/models_1.d.ts +106 -1
- package/dist-types/ts3.4/pagination/DescribeDataSharesForConsumerPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeDataSharesForProducerPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeDataSharesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeReservedNodeExchangeStatusPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -1
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +6 -0
- package/package.json +37 -44
|
@@ -10,8 +10,11 @@ tslib_1.__exportStar(require("./DescribeClusterSubnetGroupsPaginator"), exports)
|
|
|
10
10
|
tslib_1.__exportStar(require("./DescribeClusterTracksPaginator"), exports);
|
|
11
11
|
tslib_1.__exportStar(require("./DescribeClusterVersionsPaginator"), exports);
|
|
12
12
|
tslib_1.__exportStar(require("./DescribeClustersPaginator"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./
|
|
13
|
+
tslib_1.__exportStar(require("./DescribeDataSharesForConsumerPaginator"), exports);
|
|
14
14
|
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./DescribeDataSharesForProducerPaginator"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./DescribeDataSharesPaginator"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./DescribeDefaultClusterParametersPaginator"), exports);
|
|
15
18
|
tslib_1.__exportStar(require("./DescribeEndpointAccessPaginator"), exports);
|
|
16
19
|
tslib_1.__exportStar(require("./DescribeEndpointAuthorizationPaginator"), exports);
|
|
17
20
|
tslib_1.__exportStar(require("./DescribeEventSubscriptionsPaginator"), exports);
|
|
@@ -20,6 +23,7 @@ tslib_1.__exportStar(require("./DescribeHsmClientCertificatesPaginator"), export
|
|
|
20
23
|
tslib_1.__exportStar(require("./DescribeHsmConfigurationsPaginator"), exports);
|
|
21
24
|
tslib_1.__exportStar(require("./DescribeNodeConfigurationOptionsPaginator"), exports);
|
|
22
25
|
tslib_1.__exportStar(require("./DescribeOrderableClusterOptionsPaginator"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./DescribeReservedNodeExchangeStatusPaginator"), exports);
|
|
23
27
|
tslib_1.__exportStar(require("./DescribeReservedNodeOfferingsPaginator"), exports);
|
|
24
28
|
tslib_1.__exportStar(require("./DescribeReservedNodesPaginator"), exports);
|
|
25
29
|
tslib_1.__exportStar(require("./DescribeScheduledActionsPaginator"), exports);
|
|
@@ -28,4 +32,5 @@ tslib_1.__exportStar(require("./DescribeSnapshotSchedulesPaginator"), exports);
|
|
|
28
32
|
tslib_1.__exportStar(require("./DescribeTableRestoreStatusPaginator"), exports);
|
|
29
33
|
tslib_1.__exportStar(require("./DescribeTagsPaginator"), exports);
|
|
30
34
|
tslib_1.__exportStar(require("./DescribeUsageLimitsPaginator"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./GetReservedNodeExchangeConfigurationOptionsPaginator"), exports);
|
|
31
36
|
tslib_1.__exportStar(require("./GetReservedNodeExchangeOfferingsPaginator"), exports);
|