@aws-sdk/client-databrew 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.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/DataBrew.d.ts +148 -175
- package/dist-types/ts3.4/DataBrewClient.d.ts +23 -57
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchDeleteRecipeVersionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateProfileJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateRecipeCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateRecipeJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateRulesetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteRecipeVersionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteRulesetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeRecipeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeRulesetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeScheduleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListRecipeVersionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListRecipesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListRulesetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PublishRecipeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendProjectSessionActionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartProjectSessionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateProfileJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateRecipeCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateRecipeJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateRulesetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateScheduleCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListRecipesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -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 {
|
|
@@ -72,10 +69,7 @@ import {
|
|
|
72
69
|
DeleteDatasetCommandInput,
|
|
73
70
|
DeleteDatasetCommandOutput,
|
|
74
71
|
} from "./commands/DeleteDatasetCommand";
|
|
75
|
-
import {
|
|
76
|
-
DeleteJobCommandInput,
|
|
77
|
-
DeleteJobCommandOutput,
|
|
78
|
-
} from "./commands/DeleteJobCommand";
|
|
72
|
+
import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
|
|
79
73
|
import {
|
|
80
74
|
DeleteProjectCommandInput,
|
|
81
75
|
DeleteProjectCommandOutput,
|
|
@@ -96,10 +90,7 @@ import {
|
|
|
96
90
|
DescribeDatasetCommandInput,
|
|
97
91
|
DescribeDatasetCommandOutput,
|
|
98
92
|
} from "./commands/DescribeDatasetCommand";
|
|
99
|
-
import {
|
|
100
|
-
DescribeJobCommandInput,
|
|
101
|
-
DescribeJobCommandOutput,
|
|
102
|
-
} from "./commands/DescribeJobCommand";
|
|
93
|
+
import { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand";
|
|
103
94
|
import {
|
|
104
95
|
DescribeJobRunCommandInput,
|
|
105
96
|
DescribeJobRunCommandOutput,
|
|
@@ -124,22 +115,13 @@ import {
|
|
|
124
115
|
ListDatasetsCommandInput,
|
|
125
116
|
ListDatasetsCommandOutput,
|
|
126
117
|
} from "./commands/ListDatasetsCommand";
|
|
127
|
-
import {
|
|
128
|
-
|
|
129
|
-
ListJobRunsCommandOutput,
|
|
130
|
-
} from "./commands/ListJobRunsCommand";
|
|
131
|
-
import {
|
|
132
|
-
ListJobsCommandInput,
|
|
133
|
-
ListJobsCommandOutput,
|
|
134
|
-
} from "./commands/ListJobsCommand";
|
|
118
|
+
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
119
|
+
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
135
120
|
import {
|
|
136
121
|
ListProjectsCommandInput,
|
|
137
122
|
ListProjectsCommandOutput,
|
|
138
123
|
} from "./commands/ListProjectsCommand";
|
|
139
|
-
import {
|
|
140
|
-
ListRecipesCommandInput,
|
|
141
|
-
ListRecipesCommandOutput,
|
|
142
|
-
} from "./commands/ListRecipesCommand";
|
|
124
|
+
import { ListRecipesCommandInput, ListRecipesCommandOutput } from "./commands/ListRecipesCommand";
|
|
143
125
|
import {
|
|
144
126
|
ListRecipeVersionsCommandInput,
|
|
145
127
|
ListRecipeVersionsCommandOutput,
|
|
@@ -164,22 +146,13 @@ import {
|
|
|
164
146
|
SendProjectSessionActionCommandInput,
|
|
165
147
|
SendProjectSessionActionCommandOutput,
|
|
166
148
|
} from "./commands/SendProjectSessionActionCommand";
|
|
167
|
-
import {
|
|
168
|
-
StartJobRunCommandInput,
|
|
169
|
-
StartJobRunCommandOutput,
|
|
170
|
-
} from "./commands/StartJobRunCommand";
|
|
149
|
+
import { StartJobRunCommandInput, StartJobRunCommandOutput } from "./commands/StartJobRunCommand";
|
|
171
150
|
import {
|
|
172
151
|
StartProjectSessionCommandInput,
|
|
173
152
|
StartProjectSessionCommandOutput,
|
|
174
153
|
} from "./commands/StartProjectSessionCommand";
|
|
175
|
-
import {
|
|
176
|
-
|
|
177
|
-
StopJobRunCommandOutput,
|
|
178
|
-
} from "./commands/StopJobRunCommand";
|
|
179
|
-
import {
|
|
180
|
-
TagResourceCommandInput,
|
|
181
|
-
TagResourceCommandOutput,
|
|
182
|
-
} from "./commands/TagResourceCommand";
|
|
154
|
+
import { StopJobRunCommandInput, StopJobRunCommandOutput } from "./commands/StopJobRunCommand";
|
|
155
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
183
156
|
import {
|
|
184
157
|
UntagResourceCommandInput,
|
|
185
158
|
UntagResourceCommandOutput,
|
|
@@ -309,8 +282,7 @@ export type ServiceOutputTypes =
|
|
|
309
282
|
| UpdateRecipeJobCommandOutput
|
|
310
283
|
| UpdateRulesetCommandOutput
|
|
311
284
|
| UpdateScheduleCommandOutput;
|
|
312
|
-
export interface ClientDefaults
|
|
313
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
285
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
314
286
|
requestHandler?: __HttpHandlerUserInput;
|
|
315
287
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
316
288
|
urlParser?: __UrlParser;
|
|
@@ -335,9 +307,7 @@ export interface ClientDefaults
|
|
|
335
307
|
extensions?: RuntimeExtension[];
|
|
336
308
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
337
309
|
}
|
|
338
|
-
export type DataBrewClientConfigType = Partial<
|
|
339
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
340
|
-
> &
|
|
310
|
+
export type DataBrewClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
341
311
|
ClientDefaults &
|
|
342
312
|
UserAgentInputConfig &
|
|
343
313
|
RetryInputConfig &
|
|
@@ -347,19 +317,17 @@ export type DataBrewClientConfigType = Partial<
|
|
|
347
317
|
HttpAuthSchemeInputConfig &
|
|
348
318
|
ClientInputEndpointParameters;
|
|
349
319
|
export interface DataBrewClientConfig extends DataBrewClientConfigType {}
|
|
350
|
-
export type DataBrewClientResolvedConfigType =
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
export interface DataBrewClientResolvedConfig
|
|
362
|
-
extends DataBrewClientResolvedConfigType {}
|
|
320
|
+
export type DataBrewClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
321
|
+
Required<ClientDefaults> &
|
|
322
|
+
RuntimeExtensionsConfig &
|
|
323
|
+
UserAgentResolvedConfig &
|
|
324
|
+
RetryResolvedConfig &
|
|
325
|
+
RegionResolvedConfig &
|
|
326
|
+
HostHeaderResolvedConfig &
|
|
327
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
328
|
+
HttpAuthSchemeResolvedConfig &
|
|
329
|
+
ClientResolvedEndpointParameters;
|
|
330
|
+
export interface DataBrewClientResolvedConfig extends DataBrewClientResolvedConfigType {}
|
|
363
331
|
export declare class DataBrewClient extends __Client<
|
|
364
332
|
__HttpHandlerOptions,
|
|
365
333
|
ServiceInputTypes,
|
|
@@ -367,8 +335,6 @@ export declare class DataBrewClient extends __Client<
|
|
|
367
335
|
DataBrewClientResolvedConfig
|
|
368
336
|
> {
|
|
369
337
|
readonly config: DataBrewClientResolvedConfig;
|
|
370
|
-
constructor(
|
|
371
|
-
...[configuration]: __CheckOptionalClientConfig<DataBrewClientConfig>
|
|
372
|
-
);
|
|
338
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<DataBrewClientConfig>);
|
|
373
339
|
destroy(): void;
|
|
374
340
|
}
|
|
@@ -7,17 +7,10 @@ import { DataBrewHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: DataBrewHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: DataBrewHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): DataBrewHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
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 { DataBrewClientResolvedConfig } from "../DataBrewClient";
|
|
15
|
-
export interface DataBrewHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface DataBrewHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface DataBrewHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface DataBrewHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
DataBrewClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
DataBrewHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultDataBrewHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: DataBrewClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<DataBrewHttpAuthSchemeParameters>;
|
|
31
|
-
export interface DataBrewHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<DataBrewHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface DataBrewHttpAuthSchemeProvider extends HttpAuthSchemeProvider<DataBrewHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultDataBrewHttpAuthSchemeProvider: DataBrewHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: DataBrewHttpAuthSchemeProvider;
|
|
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: DataBrewHttpAuthSchemeProvider;
|
|
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 "./DataBrewClient";
|
|
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 (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
DataBrewClientResolvedConfig,
|
|
@@ -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[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchDeleteRecipeVersionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchDeleteRecipeVersionCommandInput
|
|
8
|
-
extends BatchDeleteRecipeVersionRequest {}
|
|
7
|
+
export interface BatchDeleteRecipeVersionCommandInput extends BatchDeleteRecipeVersionRequest {}
|
|
9
8
|
export interface BatchDeleteRecipeVersionCommandOutput
|
|
10
|
-
extends BatchDeleteRecipeVersionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchDeleteRecipeVersionResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchDeleteRecipeVersionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchDeleteRecipeVersionCommandInput
|
|
12
|
+
input: BatchDeleteRecipeVersionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchDeleteRecipeVersionCommandInput,
|
|
17
15
|
BatchDeleteRecipeVersionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchDeleteRecipeVersionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchDeleteRecipeVersionCommandInput
|
|
21
|
+
input: BatchDeleteRecipeVersionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchDeleteRecipeVersionCommandInput,
|
|
26
24
|
BatchDeleteRecipeVersionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateDatasetRequest,
|
|
4
|
-
CreateDatasetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateDatasetCommandInput extends CreateDatasetRequest {}
|
|
8
|
-
export interface CreateDatasetCommandOutput
|
|
9
|
-
extends CreateDatasetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateDatasetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateDatasetCommandInput
|
|
8
|
+
input: CreateDatasetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateDatasetCommandInput,
|
|
16
11
|
CreateDatasetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateDatasetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateDatasetCommandInput
|
|
17
|
+
input: CreateDatasetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateDatasetCommandInput,
|
|
25
20
|
CreateDatasetCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateProfileJobRequest,
|
|
4
|
-
CreateProfileJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateProfileJobRequest, CreateProfileJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateProfileJobCommandInput extends CreateProfileJobRequest {}
|
|
8
|
-
export interface CreateProfileJobCommandOutput
|
|
9
|
-
extends CreateProfileJobResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateProfileJobCommandOutput extends CreateProfileJobResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateProfileJobCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateProfileJobCommandInput
|
|
8
|
+
input: CreateProfileJobCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateProfileJobCommandInput,
|
|
16
11
|
CreateProfileJobCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateProfileJobCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateProfileJobCommandInput
|
|
17
|
+
input: CreateProfileJobCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateProfileJobCommandInput,
|
|
25
20
|
CreateProfileJobCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateProjectRequest,
|
|
4
|
-
CreateProjectResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateProjectRequest, CreateProjectResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateProjectCommandInput extends CreateProjectRequest {}
|
|
8
|
-
export interface CreateProjectCommandOutput
|
|
9
|
-
extends CreateProjectResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateProjectCommandOutput extends CreateProjectResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateProjectCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateProjectCommandInput
|
|
8
|
+
input: CreateProjectCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateProjectCommandInput,
|
|
16
11
|
CreateProjectCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateProjectCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateProjectCommandInput
|
|
17
|
+
input: CreateProjectCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateProjectCommandInput,
|
|
25
20
|
CreateProjectCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateRecipeRequest, CreateRecipeResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateRecipeCommandInput extends CreateRecipeRequest {}
|
|
5
|
-
export interface CreateRecipeCommandOutput
|
|
6
|
-
extends CreateRecipeResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateRecipeCommandOutput extends CreateRecipeResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreateRecipeCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateRecipeCommandInput
|
|
8
|
+
input: CreateRecipeCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateRecipeCommandInput,
|
|
13
11
|
CreateRecipeCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateRecipeCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateRecipeCommandInput
|
|
17
|
+
input: CreateRecipeCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateRecipeCommandInput,
|
|
22
20
|
CreateRecipeCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateRecipeJobRequest,
|
|
4
|
-
CreateRecipeJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateRecipeJobRequest, CreateRecipeJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateRecipeJobCommandInput extends CreateRecipeJobRequest {}
|
|
8
|
-
export interface CreateRecipeJobCommandOutput
|
|
9
|
-
extends CreateRecipeJobResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateRecipeJobCommandOutput extends CreateRecipeJobResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateRecipeJobCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateRecipeJobCommandInput
|
|
8
|
+
input: CreateRecipeJobCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateRecipeJobCommandInput,
|
|
16
11
|
CreateRecipeJobCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateRecipeJobCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateRecipeJobCommandInput
|
|
17
|
+
input: CreateRecipeJobCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateRecipeJobCommandInput,
|
|
25
20
|
CreateRecipeJobCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateRulesetRequest,
|
|
4
|
-
CreateRulesetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateRulesetRequest, CreateRulesetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateRulesetCommandInput extends CreateRulesetRequest {}
|
|
8
|
-
export interface CreateRulesetCommandOutput
|
|
9
|
-
extends CreateRulesetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateRulesetCommandOutput extends CreateRulesetResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateRulesetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateRulesetCommandInput
|
|
8
|
+
input: CreateRulesetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateRulesetCommandInput,
|
|
16
11
|
CreateRulesetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateRulesetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateRulesetCommandInput
|
|
17
|
+
input: CreateRulesetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateRulesetCommandInput,
|
|
25
20
|
CreateRulesetCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateScheduleRequest,
|
|
4
|
-
CreateScheduleResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateScheduleRequest, CreateScheduleResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateScheduleCommandInput extends CreateScheduleRequest {}
|
|
8
|
-
export interface CreateScheduleCommandOutput
|
|
9
|
-
extends CreateScheduleResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateScheduleCommandOutput extends CreateScheduleResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateScheduleCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateScheduleCommandInput
|
|
8
|
+
input: CreateScheduleCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateScheduleCommandInput,
|
|
16
11
|
CreateScheduleCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateScheduleCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateScheduleCommandInput
|
|
17
|
+
input: CreateScheduleCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateScheduleCommandInput,
|
|
25
20
|
CreateScheduleCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteDatasetRequest,
|
|
4
|
-
DeleteDatasetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {}
|
|
8
|
-
export interface DeleteDatasetCommandOutput
|
|
9
|
-
extends DeleteDatasetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteDatasetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteDatasetCommandInput
|
|
8
|
+
input: DeleteDatasetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteDatasetCommandInput,
|
|
16
11
|
DeleteDatasetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteDatasetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteDatasetCommandInput
|
|
17
|
+
input: DeleteDatasetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteDatasetCommandInput,
|
|
25
20
|
DeleteDatasetCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteJobRequest, DeleteJobResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteJobCommandInput extends DeleteJobRequest {}
|
|
5
|
-
export interface DeleteJobCommandOutput
|
|
6
|
-
extends DeleteJobResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteJobCommandOutput extends DeleteJobResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteJobCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: DeleteJobCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeleteJobCommandInput,
|
|
11
11
|
DeleteJobCommandOutput,
|
|
12
12
|
import("..").DataBrewClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteJobCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
DeleteJobCommandInput,
|
|
18
20
|
DeleteJobCommandOutput,
|
|
19
21
|
import("..").DataBrewClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteProjectRequest,
|
|
4
|
-
DeleteProjectResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteProjectCommandInput extends DeleteProjectRequest {}
|
|
8
|
-
export interface DeleteProjectCommandOutput
|
|
9
|
-
extends DeleteProjectResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteProjectCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteProjectCommandInput
|
|
8
|
+
input: DeleteProjectCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteProjectCommandInput,
|
|
16
11
|
DeleteProjectCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteProjectCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteProjectCommandInput
|
|
17
|
+
input: DeleteProjectCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteProjectCommandInput,
|
|
25
20
|
DeleteProjectCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteRecipeVersionRequest,
|
|
4
|
-
DeleteRecipeVersionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteRecipeVersionRequest, DeleteRecipeVersionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteRecipeVersionCommandInput
|
|
8
|
-
extends DeleteRecipeVersionRequest {}
|
|
4
|
+
export interface DeleteRecipeVersionCommandInput extends DeleteRecipeVersionRequest {}
|
|
9
5
|
export interface DeleteRecipeVersionCommandOutput
|
|
10
|
-
extends DeleteRecipeVersionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteRecipeVersionResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteRecipeVersionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteRecipeVersionCommandInput
|
|
9
|
+
input: DeleteRecipeVersionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteRecipeVersionCommandInput,
|
|
17
12
|
DeleteRecipeVersionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteRecipeVersionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteRecipeVersionCommandInput
|
|
18
|
+
input: DeleteRecipeVersionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteRecipeVersionCommandInput,
|
|
26
21
|
DeleteRecipeVersionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteRulesetRequest,
|
|
4
|
-
DeleteRulesetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteRulesetRequest, DeleteRulesetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteRulesetCommandInput extends DeleteRulesetRequest {}
|
|
8
|
-
export interface DeleteRulesetCommandOutput
|
|
9
|
-
extends DeleteRulesetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteRulesetCommandOutput extends DeleteRulesetResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteRulesetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteRulesetCommandInput
|
|
8
|
+
input: DeleteRulesetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteRulesetCommandInput,
|
|
16
11
|
DeleteRulesetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteRulesetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteRulesetCommandInput
|
|
17
|
+
input: DeleteRulesetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteRulesetCommandInput,
|
|
25
20
|
DeleteRulesetCommandOutput,
|