@aws-sdk/client-databrew 3.312.0 → 3.316.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/DataBrew.js +48 -616
- package/dist-cjs/protocols/Aws_restJson1.js +706 -1872
- package/dist-es/DataBrew.js +48 -616
- package/dist-es/protocols/Aws_restJson1.js +647 -1813
- package/dist-types/DataBrew.d.ts +55 -144
- package/dist-types/ts3.4/DataBrew.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/DataBrew.d.ts
CHANGED
|
@@ -44,367 +44,278 @@ import { UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput } from "./com
|
|
|
44
44
|
import { UpdateRulesetCommandInput, UpdateRulesetCommandOutput } from "./commands/UpdateRulesetCommand";
|
|
45
45
|
import { UpdateScheduleCommandInput, UpdateScheduleCommandOutput } from "./commands/UpdateScheduleCommand";
|
|
46
46
|
import { DataBrewClient } from "./DataBrewClient";
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
* simplifies data preparation tasks, targeting data issues that are hard to spot and
|
|
51
|
-
* time-consuming to fix. DataBrew empowers users of all technical levels to visualize the
|
|
52
|
-
* data and perform one-click data transformations, with no coding required.</p>
|
|
53
|
-
*/
|
|
54
|
-
export declare class DataBrew extends DataBrewClient {
|
|
55
|
-
/**
|
|
56
|
-
* @public
|
|
57
|
-
* <p>Deletes one or more versions of a recipe at a time.</p>
|
|
58
|
-
* <p>The entire request will be rejected if:</p>
|
|
59
|
-
* <ul>
|
|
60
|
-
* <li>
|
|
61
|
-
* <p>The recipe does not exist.</p>
|
|
62
|
-
* </li>
|
|
63
|
-
* <li>
|
|
64
|
-
* <p>There is an invalid version identifier in the list of versions.</p>
|
|
65
|
-
* </li>
|
|
66
|
-
* <li>
|
|
67
|
-
* <p>The version list is empty.</p>
|
|
68
|
-
* </li>
|
|
69
|
-
* <li>
|
|
70
|
-
* <p>The version list size exceeds 50.</p>
|
|
71
|
-
* </li>
|
|
72
|
-
* <li>
|
|
73
|
-
* <p>The version list contains duplicate entries.</p>
|
|
74
|
-
* </li>
|
|
75
|
-
* </ul>
|
|
76
|
-
* <p>The request will complete successfully, but with partial failures, if:</p>
|
|
77
|
-
* <ul>
|
|
78
|
-
* <li>
|
|
79
|
-
* <p>A version does not exist.</p>
|
|
80
|
-
* </li>
|
|
81
|
-
* <li>
|
|
82
|
-
* <p>A version is being used by a job.</p>
|
|
83
|
-
* </li>
|
|
84
|
-
* <li>
|
|
85
|
-
* <p>You specify <code>LATEST_WORKING</code>, but it's being used by a
|
|
86
|
-
* project.</p>
|
|
87
|
-
* </li>
|
|
88
|
-
* <li>
|
|
89
|
-
* <p>The version fails to be deleted.</p>
|
|
90
|
-
* </li>
|
|
91
|
-
* </ul>
|
|
92
|
-
* <p>The <code>LATEST_WORKING</code> version will only be deleted if the recipe has no
|
|
93
|
-
* other versions. If you try to delete <code>LATEST_WORKING</code> while other versions
|
|
94
|
-
* exist (or if they can't be deleted), then <code>LATEST_WORKING</code> will be listed as
|
|
95
|
-
* partial failure in the response.</p>
|
|
47
|
+
export interface DataBrew {
|
|
48
|
+
/**
|
|
49
|
+
* @see {@link BatchDeleteRecipeVersionCommand}
|
|
96
50
|
*/
|
|
97
51
|
batchDeleteRecipeVersion(args: BatchDeleteRecipeVersionCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteRecipeVersionCommandOutput>;
|
|
98
52
|
batchDeleteRecipeVersion(args: BatchDeleteRecipeVersionCommandInput, cb: (err: any, data?: BatchDeleteRecipeVersionCommandOutput) => void): void;
|
|
99
53
|
batchDeleteRecipeVersion(args: BatchDeleteRecipeVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteRecipeVersionCommandOutput) => void): void;
|
|
100
54
|
/**
|
|
101
|
-
* @
|
|
102
|
-
* <p>Creates a new DataBrew dataset.</p>
|
|
55
|
+
* @see {@link CreateDatasetCommand}
|
|
103
56
|
*/
|
|
104
57
|
createDataset(args: CreateDatasetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDatasetCommandOutput>;
|
|
105
58
|
createDataset(args: CreateDatasetCommandInput, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
106
59
|
createDataset(args: CreateDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
107
60
|
/**
|
|
108
|
-
* @
|
|
109
|
-
* <p>Creates a new job to analyze a dataset and create its data profile.</p>
|
|
61
|
+
* @see {@link CreateProfileJobCommand}
|
|
110
62
|
*/
|
|
111
63
|
createProfileJob(args: CreateProfileJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateProfileJobCommandOutput>;
|
|
112
64
|
createProfileJob(args: CreateProfileJobCommandInput, cb: (err: any, data?: CreateProfileJobCommandOutput) => void): void;
|
|
113
65
|
createProfileJob(args: CreateProfileJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProfileJobCommandOutput) => void): void;
|
|
114
66
|
/**
|
|
115
|
-
* @
|
|
116
|
-
* <p>Creates a new DataBrew project.</p>
|
|
67
|
+
* @see {@link CreateProjectCommand}
|
|
117
68
|
*/
|
|
118
69
|
createProject(args: CreateProjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectCommandOutput>;
|
|
119
70
|
createProject(args: CreateProjectCommandInput, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
|
|
120
71
|
createProject(args: CreateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
|
|
121
72
|
/**
|
|
122
|
-
* @
|
|
123
|
-
* <p>Creates a new DataBrew recipe.</p>
|
|
73
|
+
* @see {@link CreateRecipeCommand}
|
|
124
74
|
*/
|
|
125
75
|
createRecipe(args: CreateRecipeCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecipeCommandOutput>;
|
|
126
76
|
createRecipe(args: CreateRecipeCommandInput, cb: (err: any, data?: CreateRecipeCommandOutput) => void): void;
|
|
127
77
|
createRecipe(args: CreateRecipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecipeCommandOutput) => void): void;
|
|
128
78
|
/**
|
|
129
|
-
* @
|
|
130
|
-
* <p>Creates a new job to transform input data, using steps defined in an existing Glue DataBrew recipe</p>
|
|
79
|
+
* @see {@link CreateRecipeJobCommand}
|
|
131
80
|
*/
|
|
132
81
|
createRecipeJob(args: CreateRecipeJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecipeJobCommandOutput>;
|
|
133
82
|
createRecipeJob(args: CreateRecipeJobCommandInput, cb: (err: any, data?: CreateRecipeJobCommandOutput) => void): void;
|
|
134
83
|
createRecipeJob(args: CreateRecipeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecipeJobCommandOutput) => void): void;
|
|
135
84
|
/**
|
|
136
|
-
* @
|
|
137
|
-
* <p>Creates a new ruleset that can be used in a profile job to validate
|
|
138
|
-
* the data quality of a dataset.</p>
|
|
85
|
+
* @see {@link CreateRulesetCommand}
|
|
139
86
|
*/
|
|
140
87
|
createRuleset(args: CreateRulesetCommandInput, options?: __HttpHandlerOptions): Promise<CreateRulesetCommandOutput>;
|
|
141
88
|
createRuleset(args: CreateRulesetCommandInput, cb: (err: any, data?: CreateRulesetCommandOutput) => void): void;
|
|
142
89
|
createRuleset(args: CreateRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRulesetCommandOutput) => void): void;
|
|
143
90
|
/**
|
|
144
|
-
* @
|
|
145
|
-
* <p>Creates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific
|
|
146
|
-
* date and time, or at regular intervals.</p>
|
|
91
|
+
* @see {@link CreateScheduleCommand}
|
|
147
92
|
*/
|
|
148
93
|
createSchedule(args: CreateScheduleCommandInput, options?: __HttpHandlerOptions): Promise<CreateScheduleCommandOutput>;
|
|
149
94
|
createSchedule(args: CreateScheduleCommandInput, cb: (err: any, data?: CreateScheduleCommandOutput) => void): void;
|
|
150
95
|
createSchedule(args: CreateScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateScheduleCommandOutput) => void): void;
|
|
151
96
|
/**
|
|
152
|
-
* @
|
|
153
|
-
* <p>Deletes a dataset from DataBrew.</p>
|
|
97
|
+
* @see {@link DeleteDatasetCommand}
|
|
154
98
|
*/
|
|
155
99
|
deleteDataset(args: DeleteDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDatasetCommandOutput>;
|
|
156
100
|
deleteDataset(args: DeleteDatasetCommandInput, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
|
|
157
101
|
deleteDataset(args: DeleteDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
|
|
158
102
|
/**
|
|
159
|
-
* @
|
|
160
|
-
* <p>Deletes the specified DataBrew job.</p>
|
|
103
|
+
* @see {@link DeleteJobCommand}
|
|
161
104
|
*/
|
|
162
105
|
deleteJob(args: DeleteJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteJobCommandOutput>;
|
|
163
106
|
deleteJob(args: DeleteJobCommandInput, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
|
|
164
107
|
deleteJob(args: DeleteJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
|
|
165
108
|
/**
|
|
166
|
-
* @
|
|
167
|
-
* <p>Deletes an existing DataBrew project.</p>
|
|
109
|
+
* @see {@link DeleteProjectCommand}
|
|
168
110
|
*/
|
|
169
111
|
deleteProject(args: DeleteProjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectCommandOutput>;
|
|
170
112
|
deleteProject(args: DeleteProjectCommandInput, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
171
113
|
deleteProject(args: DeleteProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
172
114
|
/**
|
|
173
|
-
* @
|
|
174
|
-
* <p>Deletes a single version of a DataBrew recipe.</p>
|
|
115
|
+
* @see {@link DeleteRecipeVersionCommand}
|
|
175
116
|
*/
|
|
176
117
|
deleteRecipeVersion(args: DeleteRecipeVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecipeVersionCommandOutput>;
|
|
177
118
|
deleteRecipeVersion(args: DeleteRecipeVersionCommandInput, cb: (err: any, data?: DeleteRecipeVersionCommandOutput) => void): void;
|
|
178
119
|
deleteRecipeVersion(args: DeleteRecipeVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecipeVersionCommandOutput) => void): void;
|
|
179
120
|
/**
|
|
180
|
-
* @
|
|
181
|
-
* <p>Deletes a ruleset.</p>
|
|
121
|
+
* @see {@link DeleteRulesetCommand}
|
|
182
122
|
*/
|
|
183
123
|
deleteRuleset(args: DeleteRulesetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRulesetCommandOutput>;
|
|
184
124
|
deleteRuleset(args: DeleteRulesetCommandInput, cb: (err: any, data?: DeleteRulesetCommandOutput) => void): void;
|
|
185
125
|
deleteRuleset(args: DeleteRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRulesetCommandOutput) => void): void;
|
|
186
126
|
/**
|
|
187
|
-
* @
|
|
188
|
-
* <p>Deletes the specified DataBrew schedule.</p>
|
|
127
|
+
* @see {@link DeleteScheduleCommand}
|
|
189
128
|
*/
|
|
190
129
|
deleteSchedule(args: DeleteScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteScheduleCommandOutput>;
|
|
191
130
|
deleteSchedule(args: DeleteScheduleCommandInput, cb: (err: any, data?: DeleteScheduleCommandOutput) => void): void;
|
|
192
131
|
deleteSchedule(args: DeleteScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScheduleCommandOutput) => void): void;
|
|
193
132
|
/**
|
|
194
|
-
* @
|
|
195
|
-
* <p>Returns the definition of a specific DataBrew dataset.</p>
|
|
133
|
+
* @see {@link DescribeDatasetCommand}
|
|
196
134
|
*/
|
|
197
135
|
describeDataset(args: DescribeDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDatasetCommandOutput>;
|
|
198
136
|
describeDataset(args: DescribeDatasetCommandInput, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
|
|
199
137
|
describeDataset(args: DescribeDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
|
|
200
138
|
/**
|
|
201
|
-
* @
|
|
202
|
-
* <p>Returns the definition of a specific DataBrew job.</p>
|
|
139
|
+
* @see {@link DescribeJobCommand}
|
|
203
140
|
*/
|
|
204
141
|
describeJob(args: DescribeJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobCommandOutput>;
|
|
205
142
|
describeJob(args: DescribeJobCommandInput, cb: (err: any, data?: DescribeJobCommandOutput) => void): void;
|
|
206
143
|
describeJob(args: DescribeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobCommandOutput) => void): void;
|
|
207
144
|
/**
|
|
208
|
-
* @
|
|
209
|
-
* <p>Represents one run of a DataBrew job.</p>
|
|
145
|
+
* @see {@link DescribeJobRunCommand}
|
|
210
146
|
*/
|
|
211
147
|
describeJobRun(args: DescribeJobRunCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobRunCommandOutput>;
|
|
212
148
|
describeJobRun(args: DescribeJobRunCommandInput, cb: (err: any, data?: DescribeJobRunCommandOutput) => void): void;
|
|
213
149
|
describeJobRun(args: DescribeJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobRunCommandOutput) => void): void;
|
|
214
150
|
/**
|
|
215
|
-
* @
|
|
216
|
-
* <p>Returns the definition of a specific DataBrew project.</p>
|
|
151
|
+
* @see {@link DescribeProjectCommand}
|
|
217
152
|
*/
|
|
218
153
|
describeProject(args: DescribeProjectCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProjectCommandOutput>;
|
|
219
154
|
describeProject(args: DescribeProjectCommandInput, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
|
|
220
155
|
describeProject(args: DescribeProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProjectCommandOutput) => void): void;
|
|
221
156
|
/**
|
|
222
|
-
* @
|
|
223
|
-
* <p>Returns the definition of a specific DataBrew recipe corresponding to a particular
|
|
224
|
-
* version.</p>
|
|
157
|
+
* @see {@link DescribeRecipeCommand}
|
|
225
158
|
*/
|
|
226
159
|
describeRecipe(args: DescribeRecipeCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecipeCommandOutput>;
|
|
227
160
|
describeRecipe(args: DescribeRecipeCommandInput, cb: (err: any, data?: DescribeRecipeCommandOutput) => void): void;
|
|
228
161
|
describeRecipe(args: DescribeRecipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecipeCommandOutput) => void): void;
|
|
229
162
|
/**
|
|
230
|
-
* @
|
|
231
|
-
* <p>Retrieves detailed information about the ruleset.</p>
|
|
163
|
+
* @see {@link DescribeRulesetCommand}
|
|
232
164
|
*/
|
|
233
165
|
describeRuleset(args: DescribeRulesetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRulesetCommandOutput>;
|
|
234
166
|
describeRuleset(args: DescribeRulesetCommandInput, cb: (err: any, data?: DescribeRulesetCommandOutput) => void): void;
|
|
235
167
|
describeRuleset(args: DescribeRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRulesetCommandOutput) => void): void;
|
|
236
168
|
/**
|
|
237
|
-
* @
|
|
238
|
-
* <p>Returns the definition of a specific DataBrew schedule.</p>
|
|
169
|
+
* @see {@link DescribeScheduleCommand}
|
|
239
170
|
*/
|
|
240
171
|
describeSchedule(args: DescribeScheduleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeScheduleCommandOutput>;
|
|
241
172
|
describeSchedule(args: DescribeScheduleCommandInput, cb: (err: any, data?: DescribeScheduleCommandOutput) => void): void;
|
|
242
173
|
describeSchedule(args: DescribeScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeScheduleCommandOutput) => void): void;
|
|
243
174
|
/**
|
|
244
|
-
* @
|
|
245
|
-
* <p>Lists all of the DataBrew datasets.</p>
|
|
175
|
+
* @see {@link ListDatasetsCommand}
|
|
246
176
|
*/
|
|
247
177
|
listDatasets(args: ListDatasetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetsCommandOutput>;
|
|
248
178
|
listDatasets(args: ListDatasetsCommandInput, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
|
|
249
179
|
listDatasets(args: ListDatasetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
|
|
250
180
|
/**
|
|
251
|
-
* @
|
|
252
|
-
* <p>Lists all of the previous runs of a particular DataBrew job.</p>
|
|
181
|
+
* @see {@link ListJobRunsCommand}
|
|
253
182
|
*/
|
|
254
183
|
listJobRuns(args: ListJobRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobRunsCommandOutput>;
|
|
255
184
|
listJobRuns(args: ListJobRunsCommandInput, cb: (err: any, data?: ListJobRunsCommandOutput) => void): void;
|
|
256
185
|
listJobRuns(args: ListJobRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobRunsCommandOutput) => void): void;
|
|
257
186
|
/**
|
|
258
|
-
* @
|
|
259
|
-
* <p>Lists all of the DataBrew jobs that are defined.</p>
|
|
187
|
+
* @see {@link ListJobsCommand}
|
|
260
188
|
*/
|
|
261
189
|
listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
|
|
262
190
|
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
263
191
|
listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
264
192
|
/**
|
|
265
|
-
* @
|
|
266
|
-
* <p>Lists all of the DataBrew projects that are defined.</p>
|
|
193
|
+
* @see {@link ListProjectsCommand}
|
|
267
194
|
*/
|
|
268
195
|
listProjects(args: ListProjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListProjectsCommandOutput>;
|
|
269
196
|
listProjects(args: ListProjectsCommandInput, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
|
|
270
197
|
listProjects(args: ListProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
|
|
271
198
|
/**
|
|
272
|
-
* @
|
|
273
|
-
* <p>Lists all of the DataBrew recipes that are defined.</p>
|
|
199
|
+
* @see {@link ListRecipesCommand}
|
|
274
200
|
*/
|
|
275
201
|
listRecipes(args: ListRecipesCommandInput, options?: __HttpHandlerOptions): Promise<ListRecipesCommandOutput>;
|
|
276
202
|
listRecipes(args: ListRecipesCommandInput, cb: (err: any, data?: ListRecipesCommandOutput) => void): void;
|
|
277
203
|
listRecipes(args: ListRecipesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecipesCommandOutput) => void): void;
|
|
278
204
|
/**
|
|
279
|
-
* @
|
|
280
|
-
* <p>Lists the versions of a particular DataBrew recipe, except for
|
|
281
|
-
* <code>LATEST_WORKING</code>.</p>
|
|
205
|
+
* @see {@link ListRecipeVersionsCommand}
|
|
282
206
|
*/
|
|
283
207
|
listRecipeVersions(args: ListRecipeVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecipeVersionsCommandOutput>;
|
|
284
208
|
listRecipeVersions(args: ListRecipeVersionsCommandInput, cb: (err: any, data?: ListRecipeVersionsCommandOutput) => void): void;
|
|
285
209
|
listRecipeVersions(args: ListRecipeVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecipeVersionsCommandOutput) => void): void;
|
|
286
210
|
/**
|
|
287
|
-
* @
|
|
288
|
-
* <p>List all rulesets available in the current account or rulesets associated
|
|
289
|
-
* with a specific resource (dataset).</p>
|
|
211
|
+
* @see {@link ListRulesetsCommand}
|
|
290
212
|
*/
|
|
291
213
|
listRulesets(args: ListRulesetsCommandInput, options?: __HttpHandlerOptions): Promise<ListRulesetsCommandOutput>;
|
|
292
214
|
listRulesets(args: ListRulesetsCommandInput, cb: (err: any, data?: ListRulesetsCommandOutput) => void): void;
|
|
293
215
|
listRulesets(args: ListRulesetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRulesetsCommandOutput) => void): void;
|
|
294
216
|
/**
|
|
295
|
-
* @
|
|
296
|
-
* <p>Lists the DataBrew schedules that are defined.</p>
|
|
217
|
+
* @see {@link ListSchedulesCommand}
|
|
297
218
|
*/
|
|
298
219
|
listSchedules(args: ListSchedulesCommandInput, options?: __HttpHandlerOptions): Promise<ListSchedulesCommandOutput>;
|
|
299
220
|
listSchedules(args: ListSchedulesCommandInput, cb: (err: any, data?: ListSchedulesCommandOutput) => void): void;
|
|
300
221
|
listSchedules(args: ListSchedulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSchedulesCommandOutput) => void): void;
|
|
301
222
|
/**
|
|
302
|
-
* @
|
|
303
|
-
* <p>Lists all the tags for a DataBrew resource. </p>
|
|
223
|
+
* @see {@link ListTagsForResourceCommand}
|
|
304
224
|
*/
|
|
305
225
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
306
226
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
307
227
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
308
228
|
/**
|
|
309
|
-
* @
|
|
310
|
-
* <p>Publishes a new version of a DataBrew recipe.</p>
|
|
229
|
+
* @see {@link PublishRecipeCommand}
|
|
311
230
|
*/
|
|
312
231
|
publishRecipe(args: PublishRecipeCommandInput, options?: __HttpHandlerOptions): Promise<PublishRecipeCommandOutput>;
|
|
313
232
|
publishRecipe(args: PublishRecipeCommandInput, cb: (err: any, data?: PublishRecipeCommandOutput) => void): void;
|
|
314
233
|
publishRecipe(args: PublishRecipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishRecipeCommandOutput) => void): void;
|
|
315
234
|
/**
|
|
316
|
-
* @
|
|
317
|
-
* <p>Performs a recipe step within an interactive DataBrew session that's currently
|
|
318
|
-
* open.</p>
|
|
235
|
+
* @see {@link SendProjectSessionActionCommand}
|
|
319
236
|
*/
|
|
320
237
|
sendProjectSessionAction(args: SendProjectSessionActionCommandInput, options?: __HttpHandlerOptions): Promise<SendProjectSessionActionCommandOutput>;
|
|
321
238
|
sendProjectSessionAction(args: SendProjectSessionActionCommandInput, cb: (err: any, data?: SendProjectSessionActionCommandOutput) => void): void;
|
|
322
239
|
sendProjectSessionAction(args: SendProjectSessionActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendProjectSessionActionCommandOutput) => void): void;
|
|
323
240
|
/**
|
|
324
|
-
* @
|
|
325
|
-
* <p>Runs a DataBrew job.</p>
|
|
241
|
+
* @see {@link StartJobRunCommand}
|
|
326
242
|
*/
|
|
327
243
|
startJobRun(args: StartJobRunCommandInput, options?: __HttpHandlerOptions): Promise<StartJobRunCommandOutput>;
|
|
328
244
|
startJobRun(args: StartJobRunCommandInput, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
|
|
329
245
|
startJobRun(args: StartJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
|
|
330
246
|
/**
|
|
331
|
-
* @
|
|
332
|
-
* <p>Creates an interactive session, enabling you to manipulate data in a DataBrew
|
|
333
|
-
* project.</p>
|
|
247
|
+
* @see {@link StartProjectSessionCommand}
|
|
334
248
|
*/
|
|
335
249
|
startProjectSession(args: StartProjectSessionCommandInput, options?: __HttpHandlerOptions): Promise<StartProjectSessionCommandOutput>;
|
|
336
250
|
startProjectSession(args: StartProjectSessionCommandInput, cb: (err: any, data?: StartProjectSessionCommandOutput) => void): void;
|
|
337
251
|
startProjectSession(args: StartProjectSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartProjectSessionCommandOutput) => void): void;
|
|
338
252
|
/**
|
|
339
|
-
* @
|
|
340
|
-
* <p>Stops a particular run of a job.</p>
|
|
253
|
+
* @see {@link StopJobRunCommand}
|
|
341
254
|
*/
|
|
342
255
|
stopJobRun(args: StopJobRunCommandInput, options?: __HttpHandlerOptions): Promise<StopJobRunCommandOutput>;
|
|
343
256
|
stopJobRun(args: StopJobRunCommandInput, cb: (err: any, data?: StopJobRunCommandOutput) => void): void;
|
|
344
257
|
stopJobRun(args: StopJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopJobRunCommandOutput) => void): void;
|
|
345
258
|
/**
|
|
346
|
-
* @
|
|
347
|
-
* <p>Adds metadata tags to a DataBrew resource, such as a dataset, project, recipe, job, or
|
|
348
|
-
* schedule.</p>
|
|
259
|
+
* @see {@link TagResourceCommand}
|
|
349
260
|
*/
|
|
350
261
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
351
262
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
352
263
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
353
264
|
/**
|
|
354
|
-
* @
|
|
355
|
-
* <p>Removes metadata tags from a DataBrew resource.</p>
|
|
265
|
+
* @see {@link UntagResourceCommand}
|
|
356
266
|
*/
|
|
357
267
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
358
268
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
359
269
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
360
270
|
/**
|
|
361
|
-
* @
|
|
362
|
-
* <p>Modifies the definition of an existing DataBrew dataset.</p>
|
|
271
|
+
* @see {@link UpdateDatasetCommand}
|
|
363
272
|
*/
|
|
364
273
|
updateDataset(args: UpdateDatasetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDatasetCommandOutput>;
|
|
365
274
|
updateDataset(args: UpdateDatasetCommandInput, cb: (err: any, data?: UpdateDatasetCommandOutput) => void): void;
|
|
366
275
|
updateDataset(args: UpdateDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDatasetCommandOutput) => void): void;
|
|
367
276
|
/**
|
|
368
|
-
* @
|
|
369
|
-
* <p>Modifies the definition of an existing profile job.</p>
|
|
277
|
+
* @see {@link UpdateProfileJobCommand}
|
|
370
278
|
*/
|
|
371
279
|
updateProfileJob(args: UpdateProfileJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProfileJobCommandOutput>;
|
|
372
280
|
updateProfileJob(args: UpdateProfileJobCommandInput, cb: (err: any, data?: UpdateProfileJobCommandOutput) => void): void;
|
|
373
281
|
updateProfileJob(args: UpdateProfileJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProfileJobCommandOutput) => void): void;
|
|
374
282
|
/**
|
|
375
|
-
* @
|
|
376
|
-
* <p>Modifies the definition of an existing DataBrew project.</p>
|
|
283
|
+
* @see {@link UpdateProjectCommand}
|
|
377
284
|
*/
|
|
378
285
|
updateProject(args: UpdateProjectCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectCommandOutput>;
|
|
379
286
|
updateProject(args: UpdateProjectCommandInput, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
380
287
|
updateProject(args: UpdateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
381
288
|
/**
|
|
382
|
-
* @
|
|
383
|
-
* <p>Modifies the definition of the <code>LATEST_WORKING</code> version of a DataBrew
|
|
384
|
-
* recipe.</p>
|
|
289
|
+
* @see {@link UpdateRecipeCommand}
|
|
385
290
|
*/
|
|
386
291
|
updateRecipe(args: UpdateRecipeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecipeCommandOutput>;
|
|
387
292
|
updateRecipe(args: UpdateRecipeCommandInput, cb: (err: any, data?: UpdateRecipeCommandOutput) => void): void;
|
|
388
293
|
updateRecipe(args: UpdateRecipeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecipeCommandOutput) => void): void;
|
|
389
294
|
/**
|
|
390
|
-
* @
|
|
391
|
-
* <p>Modifies the definition of an existing DataBrew recipe job.</p>
|
|
295
|
+
* @see {@link UpdateRecipeJobCommand}
|
|
392
296
|
*/
|
|
393
297
|
updateRecipeJob(args: UpdateRecipeJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecipeJobCommandOutput>;
|
|
394
298
|
updateRecipeJob(args: UpdateRecipeJobCommandInput, cb: (err: any, data?: UpdateRecipeJobCommandOutput) => void): void;
|
|
395
299
|
updateRecipeJob(args: UpdateRecipeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecipeJobCommandOutput) => void): void;
|
|
396
300
|
/**
|
|
397
|
-
* @
|
|
398
|
-
* <p>Updates specified ruleset.</p>
|
|
301
|
+
* @see {@link UpdateRulesetCommand}
|
|
399
302
|
*/
|
|
400
303
|
updateRuleset(args: UpdateRulesetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRulesetCommandOutput>;
|
|
401
304
|
updateRuleset(args: UpdateRulesetCommandInput, cb: (err: any, data?: UpdateRulesetCommandOutput) => void): void;
|
|
402
305
|
updateRuleset(args: UpdateRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRulesetCommandOutput) => void): void;
|
|
403
306
|
/**
|
|
404
|
-
* @
|
|
405
|
-
* <p>Modifies the definition of an existing DataBrew schedule.</p>
|
|
307
|
+
* @see {@link UpdateScheduleCommand}
|
|
406
308
|
*/
|
|
407
309
|
updateSchedule(args: UpdateScheduleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateScheduleCommandOutput>;
|
|
408
310
|
updateSchedule(args: UpdateScheduleCommandInput, cb: (err: any, data?: UpdateScheduleCommandOutput) => void): void;
|
|
409
311
|
updateSchedule(args: UpdateScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateScheduleCommandOutput) => void): void;
|
|
410
312
|
}
|
|
313
|
+
/**
|
|
314
|
+
* @public
|
|
315
|
+
* <p>Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew
|
|
316
|
+
* simplifies data preparation tasks, targeting data issues that are hard to spot and
|
|
317
|
+
* time-consuming to fix. DataBrew empowers users of all technical levels to visualize the
|
|
318
|
+
* data and perform one-click data transformations, with no coding required.</p>
|
|
319
|
+
*/
|
|
320
|
+
export declare class DataBrew extends DataBrewClient implements DataBrew {
|
|
321
|
+
}
|
|
@@ -176,7 +176,7 @@ import {
|
|
|
176
176
|
UpdateScheduleCommandOutput,
|
|
177
177
|
} from "./commands/UpdateScheduleCommand";
|
|
178
178
|
import { DataBrewClient } from "./DataBrewClient";
|
|
179
|
-
export
|
|
179
|
+
export interface DataBrew {
|
|
180
180
|
batchDeleteRecipeVersion(
|
|
181
181
|
args: BatchDeleteRecipeVersionCommandInput,
|
|
182
182
|
options?: __HttpHandlerOptions
|
|
@@ -750,3 +750,4 @@ export declare class DataBrew extends DataBrewClient {
|
|
|
750
750
|
cb: (err: any, data?: UpdateScheduleCommandOutput) => void
|
|
751
751
|
): void;
|
|
752
752
|
}
|
|
753
|
+
export declare class DataBrew extends DataBrewClient implements DataBrew {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-databrew",
|
|
3
3
|
"description": "AWS SDK for JavaScript Databrew Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|