@aws-sdk/client-redshift-data 3.490.0 → 3.496.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.
Files changed (30) hide show
  1. package/dist-cjs/RedshiftData.js +1 -31
  2. package/dist-cjs/RedshiftDataClient.js +1 -43
  3. package/dist-cjs/commands/BatchExecuteStatementCommand.js +1 -28
  4. package/dist-cjs/commands/CancelStatementCommand.js +1 -28
  5. package/dist-cjs/commands/DescribeStatementCommand.js +1 -28
  6. package/dist-cjs/commands/DescribeTableCommand.js +1 -28
  7. package/dist-cjs/commands/ExecuteStatementCommand.js +1 -28
  8. package/dist-cjs/commands/GetStatementResultCommand.js +1 -28
  9. package/dist-cjs/commands/ListDatabasesCommand.js +1 -28
  10. package/dist-cjs/commands/ListSchemasCommand.js +1 -28
  11. package/dist-cjs/commands/ListStatementsCommand.js +1 -28
  12. package/dist-cjs/commands/ListTablesCommand.js +1 -28
  13. package/dist-cjs/commands/index.js +1 -13
  14. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  15. package/dist-cjs/extensionConfiguration.js +1 -2
  16. package/dist-cjs/index.js +1321 -11
  17. package/dist-cjs/models/RedshiftDataServiceException.js +1 -12
  18. package/dist-cjs/models/index.js +1 -4
  19. package/dist-cjs/models/models_0.js +1 -140
  20. package/dist-cjs/pagination/DescribeTablePaginator.js +1 -7
  21. package/dist-cjs/pagination/GetStatementResultPaginator.js +1 -7
  22. package/dist-cjs/pagination/Interfaces.js +1 -2
  23. package/dist-cjs/pagination/ListDatabasesPaginator.js +1 -7
  24. package/dist-cjs/pagination/ListSchemasPaginator.js +1 -7
  25. package/dist-cjs/pagination/ListStatementsPaginator.js +1 -7
  26. package/dist-cjs/pagination/ListTablesPaginator.js +1 -7
  27. package/dist-cjs/pagination/index.js +1 -10
  28. package/dist-cjs/protocols/Aws_json1_1.js +1 -774
  29. package/dist-cjs/runtimeExtensions.js +1 -22
  30. package/package.json +40 -40
@@ -1,31 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RedshiftData = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const BatchExecuteStatementCommand_1 = require("./commands/BatchExecuteStatementCommand");
6
- const CancelStatementCommand_1 = require("./commands/CancelStatementCommand");
7
- const DescribeStatementCommand_1 = require("./commands/DescribeStatementCommand");
8
- const DescribeTableCommand_1 = require("./commands/DescribeTableCommand");
9
- const ExecuteStatementCommand_1 = require("./commands/ExecuteStatementCommand");
10
- const GetStatementResultCommand_1 = require("./commands/GetStatementResultCommand");
11
- const ListDatabasesCommand_1 = require("./commands/ListDatabasesCommand");
12
- const ListSchemasCommand_1 = require("./commands/ListSchemasCommand");
13
- const ListStatementsCommand_1 = require("./commands/ListStatementsCommand");
14
- const ListTablesCommand_1 = require("./commands/ListTablesCommand");
15
- const RedshiftDataClient_1 = require("./RedshiftDataClient");
16
- const commands = {
17
- BatchExecuteStatementCommand: BatchExecuteStatementCommand_1.BatchExecuteStatementCommand,
18
- CancelStatementCommand: CancelStatementCommand_1.CancelStatementCommand,
19
- DescribeStatementCommand: DescribeStatementCommand_1.DescribeStatementCommand,
20
- DescribeTableCommand: DescribeTableCommand_1.DescribeTableCommand,
21
- ExecuteStatementCommand: ExecuteStatementCommand_1.ExecuteStatementCommand,
22
- GetStatementResultCommand: GetStatementResultCommand_1.GetStatementResultCommand,
23
- ListDatabasesCommand: ListDatabasesCommand_1.ListDatabasesCommand,
24
- ListSchemasCommand: ListSchemasCommand_1.ListSchemasCommand,
25
- ListStatementsCommand: ListStatementsCommand_1.ListStatementsCommand,
26
- ListTablesCommand: ListTablesCommand_1.ListTablesCommand,
27
- };
28
- class RedshiftData extends RedshiftDataClient_1.RedshiftDataClient {
29
- }
30
- exports.RedshiftData = RedshiftData;
31
- (0, smithy_client_1.createAggregatedClient)(commands, RedshiftData);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RedshiftDataClient = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
8
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
9
- const config_resolver_1 = require("@smithy/config-resolver");
10
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
11
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
12
- const middleware_retry_1 = require("@smithy/middleware-retry");
13
- const smithy_client_1 = require("@smithy/smithy-client");
14
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
15
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
16
- const runtimeConfig_1 = require("./runtimeConfig");
17
- const runtimeExtensions_1 = require("./runtimeExtensions");
18
- class RedshiftDataClient extends smithy_client_1.Client {
19
- constructor(...[configuration]) {
20
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
21
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
22
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
23
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
24
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
25
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
26
- const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
27
- const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
28
- const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
29
- super(_config_8);
30
- this.config = _config_8;
31
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
32
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
33
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
38
- }
39
- destroy() {
40
- super.destroy();
41
- }
42
- }
43
- exports.RedshiftDataClient = RedshiftDataClient;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BatchExecuteStatementCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class BatchExecuteStatementCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "BatchExecuteStatement", {})
22
- .n("RedshiftDataClient", "BatchExecuteStatementCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_BatchExecuteStatementCommand)
25
- .de(Aws_json1_1_1.de_BatchExecuteStatementCommand)
26
- .build() {
27
- }
28
- exports.BatchExecuteStatementCommand = BatchExecuteStatementCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CancelStatementCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class CancelStatementCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "CancelStatement", {})
22
- .n("RedshiftDataClient", "CancelStatementCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_CancelStatementCommand)
25
- .de(Aws_json1_1_1.de_CancelStatementCommand)
26
- .build() {
27
- }
28
- exports.CancelStatementCommand = CancelStatementCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeStatementCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeStatementCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "DescribeStatement", {})
22
- .n("RedshiftDataClient", "DescribeStatementCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeStatementCommand)
25
- .de(Aws_json1_1_1.de_DescribeStatementCommand)
26
- .build() {
27
- }
28
- exports.DescribeStatementCommand = DescribeStatementCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeTableCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeTableCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "DescribeTable", {})
22
- .n("RedshiftDataClient", "DescribeTableCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeTableCommand)
25
- .de(Aws_json1_1_1.de_DescribeTableCommand)
26
- .build() {
27
- }
28
- exports.DescribeTableCommand = DescribeTableCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ExecuteStatementCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ExecuteStatementCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "ExecuteStatement", {})
22
- .n("RedshiftDataClient", "ExecuteStatementCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ExecuteStatementCommand)
25
- .de(Aws_json1_1_1.de_ExecuteStatementCommand)
26
- .build() {
27
- }
28
- exports.ExecuteStatementCommand = ExecuteStatementCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetStatementResultCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetStatementResultCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "GetStatementResult", {})
22
- .n("RedshiftDataClient", "GetStatementResultCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetStatementResultCommand)
25
- .de(Aws_json1_1_1.de_GetStatementResultCommand)
26
- .build() {
27
- }
28
- exports.GetStatementResultCommand = GetStatementResultCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListDatabasesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ListDatabasesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "ListDatabases", {})
22
- .n("RedshiftDataClient", "ListDatabasesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListDatabasesCommand)
25
- .de(Aws_json1_1_1.de_ListDatabasesCommand)
26
- .build() {
27
- }
28
- exports.ListDatabasesCommand = ListDatabasesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSchemasCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ListSchemasCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "ListSchemas", {})
22
- .n("RedshiftDataClient", "ListSchemasCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListSchemasCommand)
25
- .de(Aws_json1_1_1.de_ListSchemasCommand)
26
- .build() {
27
- }
28
- exports.ListSchemasCommand = ListSchemasCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListStatementsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ListStatementsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "ListStatements", {})
22
- .n("RedshiftDataClient", "ListStatementsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListStatementsCommand)
25
- .de(Aws_json1_1_1.de_ListStatementsCommand)
26
- .build() {
27
- }
28
- exports.ListStatementsCommand = ListStatementsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTablesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ListTablesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("RedshiftData", "ListTables", {})
22
- .n("RedshiftDataClient", "ListTablesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListTablesCommand)
25
- .de(Aws_json1_1_1.de_ListTablesCommand)
26
- .build() {
27
- }
28
- exports.ListTablesCommand = ListTablesCommand;
1
+ module.exports = require("../index.js");
@@ -1,13 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./BatchExecuteStatementCommand"), exports);
5
- tslib_1.__exportStar(require("./CancelStatementCommand"), exports);
6
- tslib_1.__exportStar(require("./DescribeStatementCommand"), exports);
7
- tslib_1.__exportStar(require("./DescribeTableCommand"), exports);
8
- tslib_1.__exportStar(require("./ExecuteStatementCommand"), exports);
9
- tslib_1.__exportStar(require("./GetStatementResultCommand"), exports);
10
- tslib_1.__exportStar(require("./ListDatabasesCommand"), exports);
11
- tslib_1.__exportStar(require("./ListSchemasCommand"), exports);
12
- tslib_1.__exportStar(require("./ListStatementsCommand"), exports);
13
- tslib_1.__exportStar(require("./ListTablesCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "redshift-data",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");