@aws-sdk/client-redshift 3.699.0 → 3.705.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/README.md +16 -0
- package/dist-cjs/index.js +249 -27
- package/dist-es/Redshift.js +4 -0
- package/dist-es/commands/DeregisterNamespaceCommand.js +22 -0
- package/dist-es/commands/RegisterNamespaceCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_query.js +191 -28
- package/dist-types/Redshift.d.ts +14 -0
- package/dist-types/RedshiftClient.d.ts +4 -2
- package/dist-types/commands/AssociateDataShareConsumerCommand.d.ts +1 -0
- package/dist-types/commands/AuthorizeDataShareCommand.d.ts +1 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +22 -0
- package/dist-types/commands/DeauthorizeDataShareCommand.d.ts +1 -0
- package/dist-types/commands/DeregisterNamespaceCommand.d.ts +93 -0
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeAuthenticationProfilesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterDbRevisionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterParameterGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDataSharesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDataSharesForConsumerCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDataSharesForProducerCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateDataShareConsumerCommand.d.ts +1 -0
- package/dist-types/commands/ModifyClusterCommand.d.ts +22 -0
- package/dist-types/commands/ModifyClusterSubnetGroupCommand.d.ts +22 -0
- package/dist-types/commands/RegisterNamespaceCommand.d.ts +92 -0
- package/dist-types/commands/RejectDataShareCommand.d.ts +1 -0
- package/dist-types/commands/RestoreFromClusterSnapshotCommand.d.ts +22 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +64 -79
- package/dist-types/models/models_1.d.ts +171 -1
- package/dist-types/protocols/Aws_query.d.ts +18 -0
- package/dist-types/ts3.4/Redshift.d.ts +34 -0
- package/dist-types/ts3.4/RedshiftClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/DeregisterNamespaceCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DescribeAccountAttributesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeAuthenticationProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeClusterDbRevisionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterParameterGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RegisterNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +40 -18
- package/dist-types/ts3.4/models/models_1.d.ts +39 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +24 -0
- package/package.json +1 -1
|
@@ -203,6 +203,10 @@ import {
|
|
|
203
203
|
DeleteUsageLimitCommandInput,
|
|
204
204
|
DeleteUsageLimitCommandOutput,
|
|
205
205
|
} from "../commands/DeleteUsageLimitCommand";
|
|
206
|
+
import {
|
|
207
|
+
DeregisterNamespaceCommandInput,
|
|
208
|
+
DeregisterNamespaceCommandOutput,
|
|
209
|
+
} from "../commands/DeregisterNamespaceCommand";
|
|
206
210
|
import {
|
|
207
211
|
DescribeAccountAttributesCommandInput,
|
|
208
212
|
DescribeAccountAttributesCommandOutput,
|
|
@@ -507,6 +511,10 @@ import {
|
|
|
507
511
|
RebootClusterCommandInput,
|
|
508
512
|
RebootClusterCommandOutput,
|
|
509
513
|
} from "../commands/RebootClusterCommand";
|
|
514
|
+
import {
|
|
515
|
+
RegisterNamespaceCommandInput,
|
|
516
|
+
RegisterNamespaceCommandOutput,
|
|
517
|
+
} from "../commands/RegisterNamespaceCommand";
|
|
510
518
|
import {
|
|
511
519
|
RejectDataShareCommandInput,
|
|
512
520
|
RejectDataShareCommandOutput,
|
|
@@ -751,6 +759,10 @@ export declare const se_DeleteUsageLimitCommand: (
|
|
|
751
759
|
input: DeleteUsageLimitCommandInput,
|
|
752
760
|
context: __SerdeContext
|
|
753
761
|
) => Promise<__HttpRequest>;
|
|
762
|
+
export declare const se_DeregisterNamespaceCommand: (
|
|
763
|
+
input: DeregisterNamespaceCommandInput,
|
|
764
|
+
context: __SerdeContext
|
|
765
|
+
) => Promise<__HttpRequest>;
|
|
754
766
|
export declare const se_DescribeAccountAttributesCommand: (
|
|
755
767
|
input: DescribeAccountAttributesCommandInput,
|
|
756
768
|
context: __SerdeContext
|
|
@@ -1055,6 +1067,10 @@ export declare const se_RebootClusterCommand: (
|
|
|
1055
1067
|
input: RebootClusterCommandInput,
|
|
1056
1068
|
context: __SerdeContext
|
|
1057
1069
|
) => Promise<__HttpRequest>;
|
|
1070
|
+
export declare const se_RegisterNamespaceCommand: (
|
|
1071
|
+
input: RegisterNamespaceCommandInput,
|
|
1072
|
+
context: __SerdeContext
|
|
1073
|
+
) => Promise<__HttpRequest>;
|
|
1058
1074
|
export declare const se_RejectDataShareCommand: (
|
|
1059
1075
|
input: RejectDataShareCommandInput,
|
|
1060
1076
|
context: __SerdeContext
|
|
@@ -1299,6 +1315,10 @@ export declare const de_DeleteUsageLimitCommand: (
|
|
|
1299
1315
|
output: __HttpResponse,
|
|
1300
1316
|
context: __SerdeContext
|
|
1301
1317
|
) => Promise<DeleteUsageLimitCommandOutput>;
|
|
1318
|
+
export declare const de_DeregisterNamespaceCommand: (
|
|
1319
|
+
output: __HttpResponse,
|
|
1320
|
+
context: __SerdeContext
|
|
1321
|
+
) => Promise<DeregisterNamespaceCommandOutput>;
|
|
1302
1322
|
export declare const de_DescribeAccountAttributesCommand: (
|
|
1303
1323
|
output: __HttpResponse,
|
|
1304
1324
|
context: __SerdeContext
|
|
@@ -1603,6 +1623,10 @@ export declare const de_RebootClusterCommand: (
|
|
|
1603
1623
|
output: __HttpResponse,
|
|
1604
1624
|
context: __SerdeContext
|
|
1605
1625
|
) => Promise<RebootClusterCommandOutput>;
|
|
1626
|
+
export declare const de_RegisterNamespaceCommand: (
|
|
1627
|
+
output: __HttpResponse,
|
|
1628
|
+
context: __SerdeContext
|
|
1629
|
+
) => Promise<RegisterNamespaceCommandOutput>;
|
|
1606
1630
|
export declare const de_RejectDataShareCommand: (
|
|
1607
1631
|
output: __HttpResponse,
|
|
1608
1632
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Redshift Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.705.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-redshift",
|