@aws-sdk/client-bcm-data-exports 3.478.0 → 3.481.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 (53) hide show
  1. package/dist-cjs/commands/CreateExportCommand.js +18 -40
  2. package/dist-cjs/commands/DeleteExportCommand.js +18 -40
  3. package/dist-cjs/commands/GetExecutionCommand.js +18 -40
  4. package/dist-cjs/commands/GetExportCommand.js +18 -40
  5. package/dist-cjs/commands/GetTableCommand.js +18 -40
  6. package/dist-cjs/commands/ListExecutionsCommand.js +18 -40
  7. package/dist-cjs/commands/ListExportsCommand.js +18 -40
  8. package/dist-cjs/commands/ListTablesCommand.js +18 -40
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -40
  10. package/dist-cjs/commands/TagResourceCommand.js +18 -40
  11. package/dist-cjs/commands/UntagResourceCommand.js +18 -40
  12. package/dist-cjs/commands/UpdateExportCommand.js +18 -40
  13. package/dist-cjs/endpoint/EndpointParameters.js +6 -1
  14. package/dist-es/commands/CreateExportCommand.js +18 -40
  15. package/dist-es/commands/DeleteExportCommand.js +18 -40
  16. package/dist-es/commands/GetExecutionCommand.js +18 -40
  17. package/dist-es/commands/GetExportCommand.js +18 -40
  18. package/dist-es/commands/GetTableCommand.js +18 -40
  19. package/dist-es/commands/ListExecutionsCommand.js +18 -40
  20. package/dist-es/commands/ListExportsCommand.js +18 -40
  21. package/dist-es/commands/ListTablesCommand.js +18 -40
  22. package/dist-es/commands/ListTagsForResourceCommand.js +18 -40
  23. package/dist-es/commands/TagResourceCommand.js +18 -40
  24. package/dist-es/commands/UntagResourceCommand.js +18 -40
  25. package/dist-es/commands/UpdateExportCommand.js +18 -40
  26. package/dist-es/endpoint/EndpointParameters.js +5 -0
  27. package/dist-types/commands/CreateExportCommand.d.ts +6 -21
  28. package/dist-types/commands/DeleteExportCommand.d.ts +6 -21
  29. package/dist-types/commands/GetExecutionCommand.d.ts +6 -21
  30. package/dist-types/commands/GetExportCommand.d.ts +6 -21
  31. package/dist-types/commands/GetTableCommand.d.ts +6 -21
  32. package/dist-types/commands/ListExecutionsCommand.d.ts +6 -21
  33. package/dist-types/commands/ListExportsCommand.d.ts +6 -21
  34. package/dist-types/commands/ListTablesCommand.d.ts +6 -21
  35. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
  36. package/dist-types/commands/TagResourceCommand.d.ts +6 -21
  37. package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
  38. package/dist-types/commands/UpdateExportCommand.d.ts +6 -21
  39. package/dist-types/endpoint/EndpointParameters.d.ts +14 -0
  40. package/dist-types/ts3.4/commands/CreateExportCommand.d.ts +14 -23
  41. package/dist-types/ts3.4/commands/DeleteExportCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/GetExecutionCommand.d.ts +14 -23
  43. package/dist-types/ts3.4/commands/GetExportCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +14 -23
  45. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +14 -23
  46. package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +14 -23
  47. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +14 -23
  48. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
  49. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
  50. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
  51. package/dist-types/ts3.4/commands/UpdateExportCommand.d.ts +14 -23
  52. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -0
  53. package/package.json +9 -9
@@ -1,46 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_ListExportsCommand, se_ListExportsCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class ListExportsCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- };
14
- }
15
- constructor(input) {
16
- super();
17
- this.input = input;
18
- }
19
- resolveMiddleware(clientStack, configuration, options) {
20
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
- this.middlewareStack.use(getEndpointPlugin(configuration, ListExportsCommand.getEndpointParameterInstructions()));
22
- const stack = clientStack.concat(this.middlewareStack);
23
- const { logger } = configuration;
24
- const clientName = "BCMDataExportsClient";
25
- const commandName = "ListExportsCommand";
26
- const handlerExecutionContext = {
27
- logger,
28
- clientName,
29
- commandName,
30
- inputFilterSensitiveLog: (_) => _,
31
- outputFilterSensitiveLog: (_) => _,
32
- [SMITHY_CONTEXT_KEY]: {
33
- service: "AWSBillingAndCostManagementDataExports",
34
- operation: "ListExports",
35
- },
36
- };
37
- const { requestHandler } = configuration;
38
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
39
- }
40
- serialize(input, context) {
41
- return se_ListExportsCommand(input, context);
42
- }
43
- deserialize(output, context) {
44
- return de_ListExportsCommand(output, context);
45
- }
7
+ export class ListExportsCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("AWSBillingAndCostManagementDataExports", "ListExports", {})
19
+ .n("BCMDataExportsClient", "ListExportsCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_ListExportsCommand)
22
+ .de(de_ListExportsCommand)
23
+ .build() {
46
24
  }
@@ -1,46 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_ListTablesCommand, se_ListTablesCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class ListTablesCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- };
14
- }
15
- constructor(input) {
16
- super();
17
- this.input = input;
18
- }
19
- resolveMiddleware(clientStack, configuration, options) {
20
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
- this.middlewareStack.use(getEndpointPlugin(configuration, ListTablesCommand.getEndpointParameterInstructions()));
22
- const stack = clientStack.concat(this.middlewareStack);
23
- const { logger } = configuration;
24
- const clientName = "BCMDataExportsClient";
25
- const commandName = "ListTablesCommand";
26
- const handlerExecutionContext = {
27
- logger,
28
- clientName,
29
- commandName,
30
- inputFilterSensitiveLog: (_) => _,
31
- outputFilterSensitiveLog: (_) => _,
32
- [SMITHY_CONTEXT_KEY]: {
33
- service: "AWSBillingAndCostManagementDataExports",
34
- operation: "ListTables",
35
- },
36
- };
37
- const { requestHandler } = configuration;
38
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
39
- }
40
- serialize(input, context) {
41
- return se_ListTablesCommand(input, context);
42
- }
43
- deserialize(output, context) {
44
- return de_ListTablesCommand(output, context);
45
- }
7
+ export class ListTablesCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("AWSBillingAndCostManagementDataExports", "ListTables", {})
19
+ .n("BCMDataExportsClient", "ListTablesCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_ListTablesCommand)
22
+ .de(de_ListTablesCommand)
23
+ .build() {
46
24
  }
@@ -1,46 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class ListTagsForResourceCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- };
14
- }
15
- constructor(input) {
16
- super();
17
- this.input = input;
18
- }
19
- resolveMiddleware(clientStack, configuration, options) {
20
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
- this.middlewareStack.use(getEndpointPlugin(configuration, ListTagsForResourceCommand.getEndpointParameterInstructions()));
22
- const stack = clientStack.concat(this.middlewareStack);
23
- const { logger } = configuration;
24
- const clientName = "BCMDataExportsClient";
25
- const commandName = "ListTagsForResourceCommand";
26
- const handlerExecutionContext = {
27
- logger,
28
- clientName,
29
- commandName,
30
- inputFilterSensitiveLog: (_) => _,
31
- outputFilterSensitiveLog: (_) => _,
32
- [SMITHY_CONTEXT_KEY]: {
33
- service: "AWSBillingAndCostManagementDataExports",
34
- operation: "ListTagsForResource",
35
- },
36
- };
37
- const { requestHandler } = configuration;
38
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
39
- }
40
- serialize(input, context) {
41
- return se_ListTagsForResourceCommand(input, context);
42
- }
43
- deserialize(output, context) {
44
- return de_ListTagsForResourceCommand(output, context);
45
- }
7
+ export class ListTagsForResourceCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("AWSBillingAndCostManagementDataExports", "ListTagsForResource", {})
19
+ .n("BCMDataExportsClient", "ListTagsForResourceCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_ListTagsForResourceCommand)
22
+ .de(de_ListTagsForResourceCommand)
23
+ .build() {
46
24
  }
@@ -1,46 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class TagResourceCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- };
14
- }
15
- constructor(input) {
16
- super();
17
- this.input = input;
18
- }
19
- resolveMiddleware(clientStack, configuration, options) {
20
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
- this.middlewareStack.use(getEndpointPlugin(configuration, TagResourceCommand.getEndpointParameterInstructions()));
22
- const stack = clientStack.concat(this.middlewareStack);
23
- const { logger } = configuration;
24
- const clientName = "BCMDataExportsClient";
25
- const commandName = "TagResourceCommand";
26
- const handlerExecutionContext = {
27
- logger,
28
- clientName,
29
- commandName,
30
- inputFilterSensitiveLog: (_) => _,
31
- outputFilterSensitiveLog: (_) => _,
32
- [SMITHY_CONTEXT_KEY]: {
33
- service: "AWSBillingAndCostManagementDataExports",
34
- operation: "TagResource",
35
- },
36
- };
37
- const { requestHandler } = configuration;
38
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
39
- }
40
- serialize(input, context) {
41
- return se_TagResourceCommand(input, context);
42
- }
43
- deserialize(output, context) {
44
- return de_TagResourceCommand(output, context);
45
- }
7
+ export class TagResourceCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("AWSBillingAndCostManagementDataExports", "TagResource", {})
19
+ .n("BCMDataExportsClient", "TagResourceCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_TagResourceCommand)
22
+ .de(de_TagResourceCommand)
23
+ .build() {
46
24
  }
@@ -1,46 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class UntagResourceCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- };
14
- }
15
- constructor(input) {
16
- super();
17
- this.input = input;
18
- }
19
- resolveMiddleware(clientStack, configuration, options) {
20
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
- this.middlewareStack.use(getEndpointPlugin(configuration, UntagResourceCommand.getEndpointParameterInstructions()));
22
- const stack = clientStack.concat(this.middlewareStack);
23
- const { logger } = configuration;
24
- const clientName = "BCMDataExportsClient";
25
- const commandName = "UntagResourceCommand";
26
- const handlerExecutionContext = {
27
- logger,
28
- clientName,
29
- commandName,
30
- inputFilterSensitiveLog: (_) => _,
31
- outputFilterSensitiveLog: (_) => _,
32
- [SMITHY_CONTEXT_KEY]: {
33
- service: "AWSBillingAndCostManagementDataExports",
34
- operation: "UntagResource",
35
- },
36
- };
37
- const { requestHandler } = configuration;
38
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
39
- }
40
- serialize(input, context) {
41
- return se_UntagResourceCommand(input, context);
42
- }
43
- deserialize(output, context) {
44
- return de_UntagResourceCommand(output, context);
45
- }
7
+ export class UntagResourceCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("AWSBillingAndCostManagementDataExports", "UntagResource", {})
19
+ .n("BCMDataExportsClient", "UntagResourceCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UntagResourceCommand)
22
+ .de(de_UntagResourceCommand)
23
+ .build() {
46
24
  }
@@ -1,46 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_UpdateExportCommand, se_UpdateExportCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
- export class UpdateExportCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- };
14
- }
15
- constructor(input) {
16
- super();
17
- this.input = input;
18
- }
19
- resolveMiddleware(clientStack, configuration, options) {
20
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
21
- this.middlewareStack.use(getEndpointPlugin(configuration, UpdateExportCommand.getEndpointParameterInstructions()));
22
- const stack = clientStack.concat(this.middlewareStack);
23
- const { logger } = configuration;
24
- const clientName = "BCMDataExportsClient";
25
- const commandName = "UpdateExportCommand";
26
- const handlerExecutionContext = {
27
- logger,
28
- clientName,
29
- commandName,
30
- inputFilterSensitiveLog: (_) => _,
31
- outputFilterSensitiveLog: (_) => _,
32
- [SMITHY_CONTEXT_KEY]: {
33
- service: "AWSBillingAndCostManagementDataExports",
34
- operation: "UpdateExport",
35
- },
36
- };
37
- const { requestHandler } = configuration;
38
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
39
- }
40
- serialize(input, context) {
41
- return se_UpdateExportCommand(input, context);
42
- }
43
- deserialize(output, context) {
44
- return de_UpdateExportCommand(output, context);
45
- }
7
+ export class UpdateExportCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("AWSBillingAndCostManagementDataExports", "UpdateExport", {})
19
+ .n("BCMDataExportsClient", "UpdateExportCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UpdateExportCommand)
22
+ .de(de_UpdateExportCommand)
23
+ .build() {
46
24
  }
@@ -5,3 +5,8 @@ export const resolveClientEndpointParameters = (options) => {
5
5
  defaultSigningName: "bcm-data-exports",
6
6
  };
7
7
  };
8
+ export const commonParams = {
9
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
10
+ Endpoint: { type: "builtInParams", name: "endpoint" },
11
+ Region: { type: "builtInParams", name: "region" },
12
+ };
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
4
  import { CreateExportRequest, CreateExportResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CreateExportCommandInput extends CreateExportRequest {
21
20
  */
22
21
  export interface CreateExportCommandOutput extends CreateExportResponse, __MetadataBearer {
23
22
  }
23
+ declare const CreateExportCommand_base: {
24
+ new (input: CreateExportCommandInput): import("@smithy/smithy-client").CommandImpl<CreateExportCommandInput, CreateExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Creates a data export and specifies the data query, the delivery preference, and any
@@ -116,23 +119,5 @@ export interface CreateExportCommandOutput extends CreateExportResponse, __Metad
116
119
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
117
120
  *
118
121
  */
119
- export declare class CreateExportCommand extends $Command<CreateExportCommandInput, CreateExportCommandOutput, BCMDataExportsClientResolvedConfig> {
120
- readonly input: CreateExportCommandInput;
121
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
122
- /**
123
- * @public
124
- */
125
- constructor(input: CreateExportCommandInput);
126
- /**
127
- * @internal
128
- */
129
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateExportCommandInput, CreateExportCommandOutput>;
130
- /**
131
- * @internal
132
- */
133
- private serialize;
134
- /**
135
- * @internal
136
- */
137
- private deserialize;
122
+ export declare class CreateExportCommand extends CreateExportCommand_base {
138
123
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
4
  import { DeleteExportRequest, DeleteExportResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DeleteExportCommandInput extends DeleteExportRequest {
21
20
  */
22
21
  export interface DeleteExportCommandOutput extends DeleteExportResponse, __MetadataBearer {
23
22
  }
23
+ declare const DeleteExportCommand_base: {
24
+ new (input: DeleteExportCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteExportCommandInput, DeleteExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Deletes an existing data export.</p>
@@ -65,23 +68,5 @@ export interface DeleteExportCommandOutput extends DeleteExportResponse, __Metad
65
68
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
66
69
  *
67
70
  */
68
- export declare class DeleteExportCommand extends $Command<DeleteExportCommandInput, DeleteExportCommandOutput, BCMDataExportsClientResolvedConfig> {
69
- readonly input: DeleteExportCommandInput;
70
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
- /**
72
- * @public
73
- */
74
- constructor(input: DeleteExportCommandInput);
75
- /**
76
- * @internal
77
- */
78
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteExportCommandInput, DeleteExportCommandOutput>;
79
- /**
80
- * @internal
81
- */
82
- private serialize;
83
- /**
84
- * @internal
85
- */
86
- private deserialize;
71
+ export declare class DeleteExportCommand extends DeleteExportCommand_base {
87
72
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
4
  import { GetExecutionRequest, GetExecutionResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetExecutionCommandInput extends GetExecutionRequest {
21
20
  */
22
21
  export interface GetExecutionCommandOutput extends GetExecutionResponse, __MetadataBearer {
23
22
  }
23
+ declare const GetExecutionCommand_base: {
24
+ new (input: GetExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<GetExecutionCommandInput, GetExecutionCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Exports data based on the source data update.</p>
@@ -102,23 +105,5 @@ export interface GetExecutionCommandOutput extends GetExecutionResponse, __Metad
102
105
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
103
106
  *
104
107
  */
105
- export declare class GetExecutionCommand extends $Command<GetExecutionCommandInput, GetExecutionCommandOutput, BCMDataExportsClientResolvedConfig> {
106
- readonly input: GetExecutionCommandInput;
107
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
108
- /**
109
- * @public
110
- */
111
- constructor(input: GetExecutionCommandInput);
112
- /**
113
- * @internal
114
- */
115
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExecutionCommandInput, GetExecutionCommandOutput>;
116
- /**
117
- * @internal
118
- */
119
- private serialize;
120
- /**
121
- * @internal
122
- */
123
- private deserialize;
108
+ export declare class GetExecutionCommand extends GetExecutionCommand_base {
124
109
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
4
  import { GetExportRequest, GetExportResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetExportCommandInput extends GetExportRequest {
21
20
  */
22
21
  export interface GetExportCommandOutput extends GetExportResponse, __MetadataBearer {
23
22
  }
23
+ declare const GetExportCommand_base: {
24
+ new (input: GetExportCommandInput): import("@smithy/smithy-client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Views the definition of an existing data export.</p>
@@ -100,23 +103,5 @@ export interface GetExportCommandOutput extends GetExportResponse, __MetadataBea
100
103
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
101
104
  *
102
105
  */
103
- export declare class GetExportCommand extends $Command<GetExportCommandInput, GetExportCommandOutput, BCMDataExportsClientResolvedConfig> {
104
- readonly input: GetExportCommandInput;
105
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
106
- /**
107
- * @public
108
- */
109
- constructor(input: GetExportCommandInput);
110
- /**
111
- * @internal
112
- */
113
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExportCommandInput, GetExportCommandOutput>;
114
- /**
115
- * @internal
116
- */
117
- private serialize;
118
- /**
119
- * @internal
120
- */
121
- private deserialize;
106
+ export declare class GetExportCommand extends GetExportCommand_base {
122
107
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
4
  import { GetTableRequest, GetTableResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetTableCommandInput extends GetTableRequest {
21
20
  */
22
21
  export interface GetTableCommandOutput extends GetTableResponse, __MetadataBearer {
23
22
  }
23
+ declare const GetTableCommand_base: {
24
+ new (input: GetTableCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns the metadata for the specified table and table properties. This includes the list
@@ -77,23 +80,5 @@ export interface GetTableCommandOutput extends GetTableResponse, __MetadataBeare
77
80
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
78
81
  *
79
82
  */
80
- export declare class GetTableCommand extends $Command<GetTableCommandInput, GetTableCommandOutput, BCMDataExportsClientResolvedConfig> {
81
- readonly input: GetTableCommandInput;
82
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
83
- /**
84
- * @public
85
- */
86
- constructor(input: GetTableCommandInput);
87
- /**
88
- * @internal
89
- */
90
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTableCommandInput, GetTableCommandOutput>;
91
- /**
92
- * @internal
93
- */
94
- private serialize;
95
- /**
96
- * @internal
97
- */
98
- private deserialize;
83
+ export declare class GetTableCommand extends GetTableCommand_base {
99
84
  }