@aws-sdk/client-bcm-data-exports 3.1087.0 → 3.1088.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 (33) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/BCMDataExports.d.ts +45 -65
  3. package/dist-types/ts3.4/BCMDataExportsClient.d.ts +11 -36
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/CreateExportCommand.d.ts +3 -5
  8. package/dist-types/ts3.4/commands/DeleteExportCommand.d.ts +3 -5
  9. package/dist-types/ts3.4/commands/GetExecutionCommand.d.ts +3 -5
  10. package/dist-types/ts3.4/commands/GetExportCommand.d.ts +7 -5
  11. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +7 -5
  12. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +4 -9
  13. package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +2 -4
  14. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +2 -4
  15. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  16. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  17. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/UpdateExportCommand.d.ts +3 -5
  19. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  20. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  21. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  22. package/dist-types/ts3.4/models/enums.d.ts +5 -10
  23. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  24. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  25. package/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +1 -4
  26. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +1 -4
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  31. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  32. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  33. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -67,7 +67,7 @@ const commonParams = {
67
67
  Region: { type: "builtInParams", name: "region" },
68
68
  };
69
69
 
70
- var version = "3.1086.0";
70
+ var version = "3.1087.0";
71
71
  var packageInfo = {
72
72
  version: version};
73
73
 
@@ -16,34 +16,19 @@ import {
16
16
  GetExecutionCommandInput,
17
17
  GetExecutionCommandOutput,
18
18
  } from "./commands/GetExecutionCommand";
19
- import {
20
- GetExportCommandInput,
21
- GetExportCommandOutput,
22
- } from "./commands/GetExportCommand";
23
- import {
24
- GetTableCommandInput,
25
- GetTableCommandOutput,
26
- } from "./commands/GetTableCommand";
19
+ import { GetExportCommandInput, GetExportCommandOutput } from "./commands/GetExportCommand";
20
+ import { GetTableCommandInput, GetTableCommandOutput } from "./commands/GetTableCommand";
27
21
  import {
28
22
  ListExecutionsCommandInput,
29
23
  ListExecutionsCommandOutput,
30
24
  } from "./commands/ListExecutionsCommand";
31
- import {
32
- ListExportsCommandInput,
33
- ListExportsCommandOutput,
34
- } from "./commands/ListExportsCommand";
35
- import {
36
- ListTablesCommandInput,
37
- ListTablesCommandOutput,
38
- } from "./commands/ListTablesCommand";
25
+ import { ListExportsCommandInput, ListExportsCommandOutput } from "./commands/ListExportsCommand";
26
+ import { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
39
27
  import {
40
28
  ListTagsForResourceCommandInput,
41
29
  ListTagsForResourceCommandOutput,
42
30
  } from "./commands/ListTagsForResourceCommand";
43
- import {
44
- TagResourceCommandInput,
45
- TagResourceCommandOutput,
46
- } from "./commands/TagResourceCommand";
31
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
47
32
  import {
48
33
  UntagResourceCommandInput,
49
34
  UntagResourceCommandOutput,
@@ -55,184 +40,179 @@ import {
55
40
  export interface BCMDataExports {
56
41
  createExport(
57
42
  args: CreateExportCommandInput,
58
- options?: __HttpHandlerOptions
43
+ options?: __HttpHandlerOptions,
59
44
  ): Promise<CreateExportCommandOutput>;
60
45
  createExport(
61
46
  args: CreateExportCommandInput,
62
- cb: (err: any, data?: CreateExportCommandOutput) => void
47
+ cb: (err: any, data?: CreateExportCommandOutput) => void,
63
48
  ): void;
64
49
  createExport(
65
50
  args: CreateExportCommandInput,
66
51
  options: __HttpHandlerOptions,
67
- cb: (err: any, data?: CreateExportCommandOutput) => void
52
+ cb: (err: any, data?: CreateExportCommandOutput) => void,
68
53
  ): void;
69
54
  deleteExport(
70
55
  args: DeleteExportCommandInput,
71
- options?: __HttpHandlerOptions
56
+ options?: __HttpHandlerOptions,
72
57
  ): Promise<DeleteExportCommandOutput>;
73
58
  deleteExport(
74
59
  args: DeleteExportCommandInput,
75
- cb: (err: any, data?: DeleteExportCommandOutput) => void
60
+ cb: (err: any, data?: DeleteExportCommandOutput) => void,
76
61
  ): void;
77
62
  deleteExport(
78
63
  args: DeleteExportCommandInput,
79
64
  options: __HttpHandlerOptions,
80
- cb: (err: any, data?: DeleteExportCommandOutput) => void
65
+ cb: (err: any, data?: DeleteExportCommandOutput) => void,
81
66
  ): void;
82
67
  getExecution(
83
68
  args: GetExecutionCommandInput,
84
- options?: __HttpHandlerOptions
69
+ options?: __HttpHandlerOptions,
85
70
  ): Promise<GetExecutionCommandOutput>;
86
71
  getExecution(
87
72
  args: GetExecutionCommandInput,
88
- cb: (err: any, data?: GetExecutionCommandOutput) => void
73
+ cb: (err: any, data?: GetExecutionCommandOutput) => void,
89
74
  ): void;
90
75
  getExecution(
91
76
  args: GetExecutionCommandInput,
92
77
  options: __HttpHandlerOptions,
93
- cb: (err: any, data?: GetExecutionCommandOutput) => void
78
+ cb: (err: any, data?: GetExecutionCommandOutput) => void,
94
79
  ): void;
95
80
  getExport(
96
81
  args: GetExportCommandInput,
97
- options?: __HttpHandlerOptions
82
+ options?: __HttpHandlerOptions,
98
83
  ): Promise<GetExportCommandOutput>;
99
84
  getExport(
100
85
  args: GetExportCommandInput,
101
- cb: (err: any, data?: GetExportCommandOutput) => void
86
+ cb: (err: any, data?: GetExportCommandOutput) => void,
102
87
  ): void;
103
88
  getExport(
104
89
  args: GetExportCommandInput,
105
90
  options: __HttpHandlerOptions,
106
- cb: (err: any, data?: GetExportCommandOutput) => void
91
+ cb: (err: any, data?: GetExportCommandOutput) => void,
107
92
  ): void;
108
93
  getTable(
109
94
  args: GetTableCommandInput,
110
- options?: __HttpHandlerOptions
95
+ options?: __HttpHandlerOptions,
111
96
  ): Promise<GetTableCommandOutput>;
112
- getTable(
113
- args: GetTableCommandInput,
114
- cb: (err: any, data?: GetTableCommandOutput) => void
115
- ): void;
97
+ getTable(args: GetTableCommandInput, cb: (err: any, data?: GetTableCommandOutput) => void): void;
116
98
  getTable(
117
99
  args: GetTableCommandInput,
118
100
  options: __HttpHandlerOptions,
119
- cb: (err: any, data?: GetTableCommandOutput) => void
101
+ cb: (err: any, data?: GetTableCommandOutput) => void,
120
102
  ): void;
121
103
  listExecutions(
122
104
  args: ListExecutionsCommandInput,
123
- options?: __HttpHandlerOptions
105
+ options?: __HttpHandlerOptions,
124
106
  ): Promise<ListExecutionsCommandOutput>;
125
107
  listExecutions(
126
108
  args: ListExecutionsCommandInput,
127
- cb: (err: any, data?: ListExecutionsCommandOutput) => void
109
+ cb: (err: any, data?: ListExecutionsCommandOutput) => void,
128
110
  ): void;
129
111
  listExecutions(
130
112
  args: ListExecutionsCommandInput,
131
113
  options: __HttpHandlerOptions,
132
- cb: (err: any, data?: ListExecutionsCommandOutput) => void
114
+ cb: (err: any, data?: ListExecutionsCommandOutput) => void,
133
115
  ): void;
134
116
  listExports(): Promise<ListExportsCommandOutput>;
135
117
  listExports(
136
118
  args: ListExportsCommandInput,
137
- options?: __HttpHandlerOptions
119
+ options?: __HttpHandlerOptions,
138
120
  ): Promise<ListExportsCommandOutput>;
139
121
  listExports(
140
122
  args: ListExportsCommandInput,
141
- cb: (err: any, data?: ListExportsCommandOutput) => void
123
+ cb: (err: any, data?: ListExportsCommandOutput) => void,
142
124
  ): void;
143
125
  listExports(
144
126
  args: ListExportsCommandInput,
145
127
  options: __HttpHandlerOptions,
146
- cb: (err: any, data?: ListExportsCommandOutput) => void
128
+ cb: (err: any, data?: ListExportsCommandOutput) => void,
147
129
  ): void;
148
130
  listTables(): Promise<ListTablesCommandOutput>;
149
131
  listTables(
150
132
  args: ListTablesCommandInput,
151
- options?: __HttpHandlerOptions
133
+ options?: __HttpHandlerOptions,
152
134
  ): Promise<ListTablesCommandOutput>;
153
135
  listTables(
154
136
  args: ListTablesCommandInput,
155
- cb: (err: any, data?: ListTablesCommandOutput) => void
137
+ cb: (err: any, data?: ListTablesCommandOutput) => void,
156
138
  ): void;
157
139
  listTables(
158
140
  args: ListTablesCommandInput,
159
141
  options: __HttpHandlerOptions,
160
- cb: (err: any, data?: ListTablesCommandOutput) => void
142
+ cb: (err: any, data?: ListTablesCommandOutput) => void,
161
143
  ): void;
162
144
  listTagsForResource(
163
145
  args: ListTagsForResourceCommandInput,
164
- options?: __HttpHandlerOptions
146
+ options?: __HttpHandlerOptions,
165
147
  ): Promise<ListTagsForResourceCommandOutput>;
166
148
  listTagsForResource(
167
149
  args: ListTagsForResourceCommandInput,
168
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
150
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
169
151
  ): void;
170
152
  listTagsForResource(
171
153
  args: ListTagsForResourceCommandInput,
172
154
  options: __HttpHandlerOptions,
173
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
155
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
174
156
  ): void;
175
157
  tagResource(
176
158
  args: TagResourceCommandInput,
177
- options?: __HttpHandlerOptions
159
+ options?: __HttpHandlerOptions,
178
160
  ): Promise<TagResourceCommandOutput>;
179
161
  tagResource(
180
162
  args: TagResourceCommandInput,
181
- cb: (err: any, data?: TagResourceCommandOutput) => void
163
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
182
164
  ): void;
183
165
  tagResource(
184
166
  args: TagResourceCommandInput,
185
167
  options: __HttpHandlerOptions,
186
- cb: (err: any, data?: TagResourceCommandOutput) => void
168
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
187
169
  ): void;
188
170
  untagResource(
189
171
  args: UntagResourceCommandInput,
190
- options?: __HttpHandlerOptions
172
+ options?: __HttpHandlerOptions,
191
173
  ): Promise<UntagResourceCommandOutput>;
192
174
  untagResource(
193
175
  args: UntagResourceCommandInput,
194
- cb: (err: any, data?: UntagResourceCommandOutput) => void
176
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
195
177
  ): void;
196
178
  untagResource(
197
179
  args: UntagResourceCommandInput,
198
180
  options: __HttpHandlerOptions,
199
- cb: (err: any, data?: UntagResourceCommandOutput) => void
181
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
200
182
  ): void;
201
183
  updateExport(
202
184
  args: UpdateExportCommandInput,
203
- options?: __HttpHandlerOptions
185
+ options?: __HttpHandlerOptions,
204
186
  ): Promise<UpdateExportCommandOutput>;
205
187
  updateExport(
206
188
  args: UpdateExportCommandInput,
207
- cb: (err: any, data?: UpdateExportCommandOutput) => void
189
+ cb: (err: any, data?: UpdateExportCommandOutput) => void,
208
190
  ): void;
209
191
  updateExport(
210
192
  args: UpdateExportCommandInput,
211
193
  options: __HttpHandlerOptions,
212
- cb: (err: any, data?: UpdateExportCommandOutput) => void
194
+ cb: (err: any, data?: UpdateExportCommandOutput) => void,
213
195
  ): void;
214
196
  paginateListExecutions(
215
197
  args: ListExecutionsCommandInput,
216
198
  paginationConfig?: Pick<
217
199
  PaginationConfiguration,
218
200
  Exclude<keyof PaginationConfiguration, "client">
219
- >
201
+ >,
220
202
  ): Paginator<ListExecutionsCommandOutput>;
221
203
  paginateListExports(
222
204
  args?: ListExportsCommandInput,
223
205
  paginationConfig?: Pick<
224
206
  PaginationConfiguration,
225
207
  Exclude<keyof PaginationConfiguration, "client">
226
- >
208
+ >,
227
209
  ): Paginator<ListExportsCommandOutput>;
228
210
  paginateListTables(
229
211
  args?: ListTablesCommandInput,
230
212
  paginationConfig?: Pick<
231
213
  PaginationConfiguration,
232
214
  Exclude<keyof PaginationConfiguration, "client">
233
- >
215
+ >,
234
216
  ): Paginator<ListTablesCommandOutput>;
235
217
  }
236
- export declare class BCMDataExports
237
- extends BCMDataExportsClient
238
- implements BCMDataExports {}
218
+ export declare class BCMDataExports extends BCMDataExportsClient implements BCMDataExports {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -48,34 +45,19 @@ import {
48
45
  GetExecutionCommandInput,
49
46
  GetExecutionCommandOutput,
50
47
  } from "./commands/GetExecutionCommand";
51
- import {
52
- GetExportCommandInput,
53
- GetExportCommandOutput,
54
- } from "./commands/GetExportCommand";
55
- import {
56
- GetTableCommandInput,
57
- GetTableCommandOutput,
58
- } from "./commands/GetTableCommand";
48
+ import { GetExportCommandInput, GetExportCommandOutput } from "./commands/GetExportCommand";
49
+ import { GetTableCommandInput, GetTableCommandOutput } from "./commands/GetTableCommand";
59
50
  import {
60
51
  ListExecutionsCommandInput,
61
52
  ListExecutionsCommandOutput,
62
53
  } from "./commands/ListExecutionsCommand";
63
- import {
64
- ListExportsCommandInput,
65
- ListExportsCommandOutput,
66
- } from "./commands/ListExportsCommand";
67
- import {
68
- ListTablesCommandInput,
69
- ListTablesCommandOutput,
70
- } from "./commands/ListTablesCommand";
54
+ import { ListExportsCommandInput, ListExportsCommandOutput } from "./commands/ListExportsCommand";
55
+ import { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
71
56
  import {
72
57
  ListTagsForResourceCommandInput,
73
58
  ListTagsForResourceCommandOutput,
74
59
  } from "./commands/ListTagsForResourceCommand";
75
- import {
76
- TagResourceCommandInput,
77
- TagResourceCommandOutput,
78
- } from "./commands/TagResourceCommand";
60
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
79
61
  import {
80
62
  UntagResourceCommandInput,
81
63
  UntagResourceCommandOutput,
@@ -117,8 +99,7 @@ export type ServiceOutputTypes =
117
99
  | TagResourceCommandOutput
118
100
  | UntagResourceCommandOutput
119
101
  | UpdateExportCommandOutput;
120
- export interface ClientDefaults
121
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
102
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
122
103
  requestHandler?: __HttpHandlerUserInput;
123
104
  sha256?: __ChecksumConstructor | __HashConstructor;
124
105
  urlParser?: __UrlParser;
@@ -143,9 +124,7 @@ export interface ClientDefaults
143
124
  extensions?: RuntimeExtension[];
144
125
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
145
126
  }
146
- export type BCMDataExportsClientConfigType = Partial<
147
- __SmithyConfiguration<__HttpHandlerOptions>
148
- > &
127
+ export type BCMDataExportsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
149
128
  ClientDefaults &
150
129
  UserAgentInputConfig &
151
130
  RetryInputConfig &
@@ -154,8 +133,7 @@ export type BCMDataExportsClientConfigType = Partial<
154
133
  EndpointInputConfig<EndpointParameters> &
155
134
  HttpAuthSchemeInputConfig &
156
135
  ClientInputEndpointParameters;
157
- export interface BCMDataExportsClientConfig
158
- extends BCMDataExportsClientConfigType {}
136
+ export interface BCMDataExportsClientConfig extends BCMDataExportsClientConfigType {}
159
137
  export type BCMDataExportsClientResolvedConfigType =
160
138
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
161
139
  Required<ClientDefaults> &
@@ -167,8 +145,7 @@ export type BCMDataExportsClientResolvedConfigType =
167
145
  EndpointResolvedConfig<EndpointParameters> &
168
146
  HttpAuthSchemeResolvedConfig &
169
147
  ClientResolvedEndpointParameters;
170
- export interface BCMDataExportsClientResolvedConfig
171
- extends BCMDataExportsClientResolvedConfigType {}
148
+ export interface BCMDataExportsClientResolvedConfig extends BCMDataExportsClientResolvedConfigType {}
172
149
  export declare class BCMDataExportsClient extends __Client<
173
150
  __HttpHandlerOptions,
174
151
  ServiceInputTypes,
@@ -176,8 +153,6 @@ export declare class BCMDataExportsClient extends __Client<
176
153
  BCMDataExportsClientResolvedConfig
177
154
  > {
178
155
  readonly config: BCMDataExportsClientResolvedConfig;
179
- constructor(
180
- ...[configuration]: __CheckOptionalClientConfig<BCMDataExportsClientConfig>
181
- );
156
+ constructor(...[configuration]: __CheckOptionalClientConfig<BCMDataExportsClientConfig>);
182
157
  destroy(): void;
183
158
  }
@@ -7,17 +7,10 @@ import { BCMDataExportsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: BCMDataExportsHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: BCMDataExportsHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): BCMDataExportsHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { BCMDataExportsClientResolvedConfig } from "../BCMDataExportsClient";
15
- export interface BCMDataExportsHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface BCMDataExportsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface BCMDataExportsHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- BCMDataExportsClientResolvedConfig,
22
- HandlerExecutionContext,
23
- BCMDataExportsHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface BCMDataExportsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ BCMDataExportsClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ BCMDataExportsHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultBCMDataExportsHttpAuthSchemeParametersProvider: (
27
25
  config: BCMDataExportsClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<BCMDataExportsHttpAuthSchemeParameters>;
31
- export interface BCMDataExportsHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<BCMDataExportsHttpAuthSchemeParameters> {}
29
+ export interface BCMDataExportsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<BCMDataExportsHttpAuthSchemeParameters> {}
33
30
  export declare const defaultBCMDataExportsHttpAuthSchemeProvider: BCMDataExportsHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: BCMDataExportsHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: BCMDataExportsHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./BCMDataExportsClient";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
8
  added: EndpointParameterInstructions,
12
9
  plugins: (
13
10
  CommandCtor: any,
14
11
  clientStack: any,
15
12
  config: any,
16
- options: any
13
+ options: any,
17
14
  ) => import("@smithy/types").Pluggable<any, any>[],
18
15
  op: string,
19
16
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
17
+ smithyContext?: Record<string, unknown>,
21
18
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  BCMDataExportsClientResolvedConfig,
@@ -38,9 +37,4 @@ export declare const command: <
38
37
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
38
  };
40
39
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { CreateExportRequest, CreateExportResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface CreateExportCommandInput extends CreateExportRequest {}
5
- export interface CreateExportCommandOutput
6
- extends CreateExportResponse,
7
- __MetadataBearer {}
5
+ export interface CreateExportCommandOutput extends CreateExportResponse, __MetadataBearer {}
8
6
  declare const CreateExportCommand_base: {
9
7
  new (
10
- input: CreateExportCommandInput
8
+ input: CreateExportCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  CreateExportCommandInput,
13
11
  CreateExportCommandOutput,
@@ -16,7 +14,7 @@ declare const CreateExportCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: CreateExportCommandInput
17
+ input: CreateExportCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  CreateExportCommandInput,
22
20
  CreateExportCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { DeleteExportRequest, DeleteExportResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface DeleteExportCommandInput extends DeleteExportRequest {}
5
- export interface DeleteExportCommandOutput
6
- extends DeleteExportResponse,
7
- __MetadataBearer {}
5
+ export interface DeleteExportCommandOutput extends DeleteExportResponse, __MetadataBearer {}
8
6
  declare const DeleteExportCommand_base: {
9
7
  new (
10
- input: DeleteExportCommandInput
8
+ input: DeleteExportCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  DeleteExportCommandInput,
13
11
  DeleteExportCommandOutput,
@@ -16,7 +14,7 @@ declare const DeleteExportCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: DeleteExportCommandInput
17
+ input: DeleteExportCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  DeleteExportCommandInput,
22
20
  DeleteExportCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetExecutionRequest, GetExecutionResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetExecutionCommandInput extends GetExecutionRequest {}
5
- export interface GetExecutionCommandOutput
6
- extends GetExecutionResponse,
7
- __MetadataBearer {}
5
+ export interface GetExecutionCommandOutput extends GetExecutionResponse, __MetadataBearer {}
8
6
  declare const GetExecutionCommand_base: {
9
7
  new (
10
- input: GetExecutionCommandInput
8
+ input: GetExecutionCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  GetExecutionCommandInput,
13
11
  GetExecutionCommandOutput,
@@ -16,7 +14,7 @@ declare const GetExecutionCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: GetExecutionCommandInput
17
+ input: GetExecutionCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  GetExecutionCommandInput,
22
20
  GetExecutionCommandOutput,
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetExportRequest, GetExportResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetExportCommandInput extends GetExportRequest {}
5
- export interface GetExportCommandOutput
6
- extends GetExportResponse,
7
- __MetadataBearer {}
5
+ export interface GetExportCommandOutput extends GetExportResponse, __MetadataBearer {}
8
6
  declare const GetExportCommand_base: {
9
- new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: GetExportCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
10
  GetExportCommandInput,
11
11
  GetExportCommandOutput,
12
12
  import("..").BCMDataExportsClientResolvedConfig,
13
13
  import("..").ServiceInputTypes,
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
- new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<
16
+ new (
17
+ input: GetExportCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
17
19
  GetExportCommandInput,
18
20
  GetExportCommandOutput,
19
21
  import("..").BCMDataExportsClientResolvedConfig,
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetTableRequest, GetTableResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetTableCommandInput extends GetTableRequest {}
5
- export interface GetTableCommandOutput
6
- extends GetTableResponse,
7
- __MetadataBearer {}
5
+ export interface GetTableCommandOutput extends GetTableResponse, __MetadataBearer {}
8
6
  declare const GetTableCommand_base: {
9
- new (input: GetTableCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: GetTableCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
10
  GetTableCommandInput,
11
11
  GetTableCommandOutput,
12
12
  import("..").BCMDataExportsClientResolvedConfig,
13
13
  import("..").ServiceInputTypes,
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
- new (input: GetTableCommandInput): import("@smithy/core/client").CommandImpl<
16
+ new (
17
+ input: GetTableCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
17
19
  GetTableCommandInput,
18
20
  GetTableCommandOutput,
19
21
  import("..").BCMDataExportsClientResolvedConfig,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListExecutionsRequest,
4
- ListExecutionsResponse,
5
- } from "../models/models_0";
2
+ import { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface ListExecutionsCommandInput extends ListExecutionsRequest {}
8
- export interface ListExecutionsCommandOutput
9
- extends ListExecutionsResponse,
10
- __MetadataBearer {}
5
+ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __MetadataBearer {}
11
6
  declare const ListExecutionsCommand_base: {
12
7
  new (
13
- input: ListExecutionsCommandInput
8
+ input: ListExecutionsCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  ListExecutionsCommandInput,
16
11
  ListExecutionsCommandOutput,
@@ -19,7 +14,7 @@ declare const ListExecutionsCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: ListExecutionsCommandInput
17
+ input: ListExecutionsCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  ListExecutionsCommandInput,
25
20
  ListExecutionsCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { ListExportsRequest, ListExportsResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface ListExportsCommandInput extends ListExportsRequest {}
5
- export interface ListExportsCommandOutput
6
- extends ListExportsResponse,
7
- __MetadataBearer {}
5
+ export interface ListExportsCommandOutput extends ListExportsResponse, __MetadataBearer {}
8
6
  declare const ListExportsCommand_base: {
9
7
  new (
10
- input: ListExportsCommandInput
8
+ input: ListExportsCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  ListExportsCommandInput,
13
11
  ListExportsCommandOutput,