@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,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 { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListExecutionsCommandInput extends ListExecutionsRequest {
21
20
  */
22
21
  export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListExecutionsCommand_base: {
24
+ new (input: ListExecutionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists the historical executions for the export.</p>
@@ -79,23 +82,5 @@ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __M
79
82
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
80
83
  *
81
84
  */
82
- export declare class ListExecutionsCommand extends $Command<ListExecutionsCommandInput, ListExecutionsCommandOutput, BCMDataExportsClientResolvedConfig> {
83
- readonly input: ListExecutionsCommandInput;
84
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
85
- /**
86
- * @public
87
- */
88
- constructor(input: ListExecutionsCommandInput);
89
- /**
90
- * @internal
91
- */
92
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExecutionsCommandInput, ListExecutionsCommandOutput>;
93
- /**
94
- * @internal
95
- */
96
- private serialize;
97
- /**
98
- * @internal
99
- */
100
- private deserialize;
85
+ export declare class ListExecutionsCommand extends ListExecutionsCommand_base {
101
86
  }
@@ -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 { ListExportsRequest, ListExportsResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListExportsCommandInput extends ListExportsRequest {
21
20
  */
22
21
  export interface ListExportsCommandOutput extends ListExportsResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListExportsCommand_base: {
24
+ new (input: ListExportsCommandInput): import("@smithy/smithy-client").CommandImpl<ListExportsCommandInput, ListExportsCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists all data export definitions.</p>
@@ -76,23 +79,5 @@ export interface ListExportsCommandOutput extends ListExportsResponse, __Metadat
76
79
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
77
80
  *
78
81
  */
79
- export declare class ListExportsCommand extends $Command<ListExportsCommandInput, ListExportsCommandOutput, BCMDataExportsClientResolvedConfig> {
80
- readonly input: ListExportsCommandInput;
81
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
- /**
83
- * @public
84
- */
85
- constructor(input: ListExportsCommandInput);
86
- /**
87
- * @internal
88
- */
89
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExportsCommandInput, ListExportsCommandOutput>;
90
- /**
91
- * @internal
92
- */
93
- private serialize;
94
- /**
95
- * @internal
96
- */
97
- private deserialize;
82
+ export declare class ListExportsCommand extends ListExportsCommand_base {
98
83
  }
@@ -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 { ListTablesRequest, ListTablesResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTablesCommandInput extends ListTablesRequest {
21
20
  */
22
21
  export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListTablesCommand_base: {
24
+ new (input: ListTablesCommandInput): import("@smithy/smithy-client").CommandImpl<ListTablesCommandInput, ListTablesCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists all available tables in data exports.</p>
@@ -79,23 +82,5 @@ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataB
79
82
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
80
83
  *
81
84
  */
82
- export declare class ListTablesCommand extends $Command<ListTablesCommandInput, ListTablesCommandOutput, BCMDataExportsClientResolvedConfig> {
83
- readonly input: ListTablesCommandInput;
84
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
85
- /**
86
- * @public
87
- */
88
- constructor(input: ListTablesCommandInput);
89
- /**
90
- * @internal
91
- */
92
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
93
- /**
94
- * @internal
95
- */
96
- private serialize;
97
- /**
98
- * @internal
99
- */
100
- private deserialize;
85
+ export declare class ListTablesCommand extends ListTablesCommand_base {
101
86
  }
@@ -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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
21
20
  */
22
21
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListTagsForResourceCommand_base: {
24
+ new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>List tags associated with an existing data export.</p>
@@ -73,23 +76,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
73
76
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
74
77
  *
75
78
  */
76
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BCMDataExportsClientResolvedConfig> {
77
- readonly input: ListTagsForResourceCommandInput;
78
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
- /**
80
- * @public
81
- */
82
- constructor(input: ListTagsForResourceCommandInput);
83
- /**
84
- * @internal
85
- */
86
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
87
- /**
88
- * @internal
89
- */
90
- private serialize;
91
- /**
92
- * @internal
93
- */
94
- private deserialize;
79
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
95
80
  }
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
21
20
  */
22
21
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const TagResourceCommand_base: {
24
+ new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Adds tags for an existing data export definition.</p>
@@ -69,23 +72,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
69
72
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
70
73
  *
71
74
  */
72
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, BCMDataExportsClientResolvedConfig> {
73
- readonly input: TagResourceCommandInput;
74
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
75
- /**
76
- * @public
77
- */
78
- constructor(input: TagResourceCommandInput);
79
- /**
80
- * @internal
81
- */
82
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
83
- /**
84
- * @internal
85
- */
86
- private serialize;
87
- /**
88
- * @internal
89
- */
90
- private deserialize;
75
+ export declare class TagResourceCommand extends TagResourceCommand_base {
91
76
  }
@@ -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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
21
20
  */
22
21
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const UntagResourceCommand_base: {
24
+ new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Deletes tags associated with an existing data export definition.</p>
@@ -66,23 +69,5 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
66
69
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
67
70
  *
68
71
  */
69
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, BCMDataExportsClientResolvedConfig> {
70
- readonly input: UntagResourceCommandInput;
71
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
- /**
73
- * @public
74
- */
75
- constructor(input: UntagResourceCommandInput);
76
- /**
77
- * @internal
78
- */
79
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
80
- /**
81
- * @internal
82
- */
83
- private serialize;
84
- /**
85
- * @internal
86
- */
87
- private deserialize;
72
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
88
73
  }
@@ -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 { UpdateExportRequest, UpdateExportResponse } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateExportCommandInput extends UpdateExportRequest {
21
20
  */
22
21
  export interface UpdateExportCommandOutput extends UpdateExportResponse, __MetadataBearer {
23
22
  }
23
+ declare const UpdateExportCommand_base: {
24
+ new (input: UpdateExportCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateExportCommandInput, UpdateExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Updates an existing data export by overwriting all export parameters. All export
@@ -95,23 +98,5 @@ export interface UpdateExportCommandOutput extends UpdateExportResponse, __Metad
95
98
  * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
96
99
  *
97
100
  */
98
- export declare class UpdateExportCommand extends $Command<UpdateExportCommandInput, UpdateExportCommandOutput, BCMDataExportsClientResolvedConfig> {
99
- readonly input: UpdateExportCommandInput;
100
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
101
- /**
102
- * @public
103
- */
104
- constructor(input: UpdateExportCommandInput);
105
- /**
106
- * @internal
107
- */
108
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExportCommandInput, UpdateExportCommandOutput>;
109
- /**
110
- * @internal
111
- */
112
- private serialize;
113
- /**
114
- * @internal
115
- */
116
- private deserialize;
101
+ export declare class UpdateExportCommand extends UpdateExportCommand_base {
117
102
  }
@@ -13,6 +13,20 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
13
13
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
14
14
  defaultSigningName: string;
15
15
  };
16
+ export declare const commonParams: {
17
+ readonly UseFIPS: {
18
+ readonly type: "builtInParams";
19
+ readonly name: "useFipsEndpoint";
20
+ };
21
+ readonly Endpoint: {
22
+ readonly type: "builtInParams";
23
+ readonly name: "endpoint";
24
+ };
25
+ readonly Region: {
26
+ readonly type: "builtInParams";
27
+ readonly name: "region";
28
+ };
29
+ };
16
30
  export interface EndpointParameters extends __EndpointParameters {
17
31
  Region?: string;
18
32
  UseFIPS?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  BCMDataExportsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface CreateExportCommandInput extends CreateExportRequest {}
17
11
  export interface CreateExportCommandOutput
18
12
  extends CreateExportResponse,
19
13
  __MetadataBearer {}
20
- export declare class CreateExportCommand extends $Command<
21
- CreateExportCommandInput,
22
- CreateExportCommandOutput,
23
- BCMDataExportsClientResolvedConfig
24
- > {
25
- readonly input: CreateExportCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: CreateExportCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: BCMDataExportsClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<CreateExportCommandInput, CreateExportCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const CreateExportCommand_base: {
15
+ new (
16
+ input: CreateExportCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CreateExportCommandInput,
19
+ CreateExportCommandOutput,
20
+ BCMDataExportsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class CreateExportCommand extends CreateExportCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  BCMDataExportsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface DeleteExportCommandInput extends DeleteExportRequest {}
17
11
  export interface DeleteExportCommandOutput
18
12
  extends DeleteExportResponse,
19
13
  __MetadataBearer {}
20
- export declare class DeleteExportCommand extends $Command<
21
- DeleteExportCommandInput,
22
- DeleteExportCommandOutput,
23
- BCMDataExportsClientResolvedConfig
24
- > {
25
- readonly input: DeleteExportCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: DeleteExportCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: BCMDataExportsClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<DeleteExportCommandInput, DeleteExportCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const DeleteExportCommand_base: {
15
+ new (
16
+ input: DeleteExportCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteExportCommandInput,
19
+ DeleteExportCommandOutput,
20
+ BCMDataExportsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class DeleteExportCommand extends DeleteExportCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  BCMDataExportsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface GetExecutionCommandInput extends GetExecutionRequest {}
17
11
  export interface GetExecutionCommandOutput
18
12
  extends GetExecutionResponse,
19
13
  __MetadataBearer {}
20
- export declare class GetExecutionCommand extends $Command<
21
- GetExecutionCommandInput,
22
- GetExecutionCommandOutput,
23
- BCMDataExportsClientResolvedConfig
24
- > {
25
- readonly input: GetExecutionCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetExecutionCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: BCMDataExportsClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetExecutionCommandInput, GetExecutionCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetExecutionCommand_base: {
15
+ new (
16
+ input: GetExecutionCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetExecutionCommandInput,
19
+ GetExecutionCommandOutput,
20
+ BCMDataExportsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetExecutionCommand extends GetExecutionCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  BCMDataExportsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface GetExportCommandInput extends GetExportRequest {}
17
11
  export interface GetExportCommandOutput
18
12
  extends GetExportResponse,
19
13
  __MetadataBearer {}
20
- export declare class GetExportCommand extends $Command<
21
- GetExportCommandInput,
22
- GetExportCommandOutput,
23
- BCMDataExportsClientResolvedConfig
24
- > {
25
- readonly input: GetExportCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetExportCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: BCMDataExportsClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetExportCommandInput, GetExportCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetExportCommand_base: {
15
+ new (
16
+ input: GetExportCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetExportCommandInput,
19
+ GetExportCommandOutput,
20
+ BCMDataExportsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetExportCommand extends GetExportCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  BCMDataExportsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface GetTableCommandInput extends GetTableRequest {}
17
11
  export interface GetTableCommandOutput
18
12
  extends GetTableResponse,
19
13
  __MetadataBearer {}
20
- export declare class GetTableCommand extends $Command<
21
- GetTableCommandInput,
22
- GetTableCommandOutput,
23
- BCMDataExportsClientResolvedConfig
24
- > {
25
- readonly input: GetTableCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetTableCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: BCMDataExportsClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetTableCommandInput, GetTableCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetTableCommand_base: {
15
+ new (
16
+ input: GetTableCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetTableCommandInput,
19
+ GetTableCommandOutput,
20
+ BCMDataExportsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetTableCommand extends GetTableCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  BCMDataExportsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -20,19 +14,16 @@ export interface ListExecutionsCommandInput extends ListExecutionsRequest {}
20
14
  export interface ListExecutionsCommandOutput
21
15
  extends ListExecutionsResponse,
22
16
  __MetadataBearer {}
23
- export declare class ListExecutionsCommand extends $Command<
24
- ListExecutionsCommandInput,
25
- ListExecutionsCommandOutput,
26
- BCMDataExportsClientResolvedConfig
27
- > {
28
- readonly input: ListExecutionsCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: ListExecutionsCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: BCMDataExportsClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<ListExecutionsCommandInput, ListExecutionsCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const ListExecutionsCommand_base: {
18
+ new (
19
+ input: ListExecutionsCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ ListExecutionsCommandInput,
22
+ ListExecutionsCommandOutput,
23
+ BCMDataExportsClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class ListExecutionsCommand extends ListExecutionsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  BCMDataExportsClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface ListExportsCommandInput extends ListExportsRequest {}
17
11
  export interface ListExportsCommandOutput
18
12
  extends ListExportsResponse,
19
13
  __MetadataBearer {}
20
- export declare class ListExportsCommand extends $Command<
21
- ListExportsCommandInput,
22
- ListExportsCommandOutput,
23
- BCMDataExportsClientResolvedConfig
24
- > {
25
- readonly input: ListExportsCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: ListExportsCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: BCMDataExportsClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<ListExportsCommandInput, ListExportsCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const ListExportsCommand_base: {
15
+ new (
16
+ input: ListExportsCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListExportsCommandInput,
19
+ ListExportsCommandOutput,
20
+ BCMDataExportsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListExportsCommand extends ListExportsCommand_base {}