@aws-sdk/client-databrew 3.1067.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +181 -201
- package/dist-cjs/models/DataBrewServiceException.js +4 -8
- package/dist-cjs/models/errors.js +13 -22
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +390 -255
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getOmitRetryHeadersPlugin, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultDataBrewHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { BatchDeleteRecipeVersion$, CreateDataset$, CreateProfileJob$, CreateProject$, CreateRecipe$, CreateRecipeJob$, CreateRuleset$, CreateSchedule$, DeleteDataset$, DeleteJob$, DeleteProject$, DeleteRecipeVersion$, DeleteRuleset$, DeleteSchedule$, DescribeDataset$, DescribeJob$, DescribeJobRun$, DescribeProject$, DescribeRecipe$, DescribeRuleset$, DescribeSchedule$, ListDatasets$, ListJobRuns$, ListJobs$, ListProjects$, ListRecipes$, ListRecipeVersions$, ListRulesets$, ListSchedules$, ListTagsForResource$, PublishRecipe$, SendProjectSessionAction$, StartJobRun$, StartProjectSession$, StopJobRun$, TagResource$, UntagResource$, UpdateDataset$, UpdateProfileJob$, UpdateProject$, UpdateRecipe$, UpdateRecipeJob$, UpdateRuleset$, UpdateSchedule$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { DataBrewServiceException } = require("./models/DataBrewServiceException");
|
|
18
|
+
exports.DataBrewServiceException = DataBrewServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,590 +71,590 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class DataBrewClient extends
|
|
79
|
+
class DataBrewClient extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
this.middlewareStack.use(
|
|
100
|
-
httpAuthSchemeParametersProvider:
|
|
101
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getOmitRetryHeadersPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
102
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
103
|
+
httpAuthSchemeParametersProvider: defaultDataBrewHttpAuthSchemeParametersProvider,
|
|
104
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
102
105
|
"aws.auth#sigv4": config.credentials,
|
|
103
106
|
}),
|
|
104
107
|
}));
|
|
105
|
-
this.middlewareStack.use(
|
|
108
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
106
109
|
}
|
|
107
110
|
destroy() {
|
|
108
111
|
super.destroy();
|
|
109
112
|
}
|
|
110
113
|
}
|
|
111
114
|
|
|
112
|
-
class BatchDeleteRecipeVersionCommand extends
|
|
115
|
+
class BatchDeleteRecipeVersionCommand extends Command
|
|
113
116
|
.classBuilder()
|
|
114
117
|
.ep(commonParams)
|
|
115
118
|
.m(function (Command, cs, config, o) {
|
|
116
|
-
return [
|
|
119
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
117
120
|
})
|
|
118
121
|
.s("AWSGlueDataBrew", "BatchDeleteRecipeVersion", {})
|
|
119
122
|
.n("DataBrewClient", "BatchDeleteRecipeVersionCommand")
|
|
120
|
-
.sc(
|
|
123
|
+
.sc(BatchDeleteRecipeVersion$)
|
|
121
124
|
.build() {
|
|
122
125
|
}
|
|
123
126
|
|
|
124
|
-
class CreateDatasetCommand extends
|
|
127
|
+
class CreateDatasetCommand extends Command
|
|
125
128
|
.classBuilder()
|
|
126
129
|
.ep(commonParams)
|
|
127
130
|
.m(function (Command, cs, config, o) {
|
|
128
|
-
return [
|
|
131
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
129
132
|
})
|
|
130
133
|
.s("AWSGlueDataBrew", "CreateDataset", {})
|
|
131
134
|
.n("DataBrewClient", "CreateDatasetCommand")
|
|
132
|
-
.sc(
|
|
135
|
+
.sc(CreateDataset$)
|
|
133
136
|
.build() {
|
|
134
137
|
}
|
|
135
138
|
|
|
136
|
-
class CreateProfileJobCommand extends
|
|
139
|
+
class CreateProfileJobCommand extends Command
|
|
137
140
|
.classBuilder()
|
|
138
141
|
.ep(commonParams)
|
|
139
142
|
.m(function (Command, cs, config, o) {
|
|
140
|
-
return [
|
|
143
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
141
144
|
})
|
|
142
145
|
.s("AWSGlueDataBrew", "CreateProfileJob", {})
|
|
143
146
|
.n("DataBrewClient", "CreateProfileJobCommand")
|
|
144
|
-
.sc(
|
|
147
|
+
.sc(CreateProfileJob$)
|
|
145
148
|
.build() {
|
|
146
149
|
}
|
|
147
150
|
|
|
148
|
-
class CreateProjectCommand extends
|
|
151
|
+
class CreateProjectCommand extends Command
|
|
149
152
|
.classBuilder()
|
|
150
153
|
.ep(commonParams)
|
|
151
154
|
.m(function (Command, cs, config, o) {
|
|
152
|
-
return [
|
|
155
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
153
156
|
})
|
|
154
157
|
.s("AWSGlueDataBrew", "CreateProject", {})
|
|
155
158
|
.n("DataBrewClient", "CreateProjectCommand")
|
|
156
|
-
.sc(
|
|
159
|
+
.sc(CreateProject$)
|
|
157
160
|
.build() {
|
|
158
161
|
}
|
|
159
162
|
|
|
160
|
-
class CreateRecipeCommand extends
|
|
163
|
+
class CreateRecipeCommand extends Command
|
|
161
164
|
.classBuilder()
|
|
162
165
|
.ep(commonParams)
|
|
163
166
|
.m(function (Command, cs, config, o) {
|
|
164
|
-
return [
|
|
167
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
165
168
|
})
|
|
166
169
|
.s("AWSGlueDataBrew", "CreateRecipe", {})
|
|
167
170
|
.n("DataBrewClient", "CreateRecipeCommand")
|
|
168
|
-
.sc(
|
|
171
|
+
.sc(CreateRecipe$)
|
|
169
172
|
.build() {
|
|
170
173
|
}
|
|
171
174
|
|
|
172
|
-
class CreateRecipeJobCommand extends
|
|
175
|
+
class CreateRecipeJobCommand extends Command
|
|
173
176
|
.classBuilder()
|
|
174
177
|
.ep(commonParams)
|
|
175
178
|
.m(function (Command, cs, config, o) {
|
|
176
|
-
return [
|
|
179
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
177
180
|
})
|
|
178
181
|
.s("AWSGlueDataBrew", "CreateRecipeJob", {})
|
|
179
182
|
.n("DataBrewClient", "CreateRecipeJobCommand")
|
|
180
|
-
.sc(
|
|
183
|
+
.sc(CreateRecipeJob$)
|
|
181
184
|
.build() {
|
|
182
185
|
}
|
|
183
186
|
|
|
184
|
-
class CreateRulesetCommand extends
|
|
187
|
+
class CreateRulesetCommand extends Command
|
|
185
188
|
.classBuilder()
|
|
186
189
|
.ep(commonParams)
|
|
187
190
|
.m(function (Command, cs, config, o) {
|
|
188
|
-
return [
|
|
191
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
189
192
|
})
|
|
190
193
|
.s("AWSGlueDataBrew", "CreateRuleset", {})
|
|
191
194
|
.n("DataBrewClient", "CreateRulesetCommand")
|
|
192
|
-
.sc(
|
|
195
|
+
.sc(CreateRuleset$)
|
|
193
196
|
.build() {
|
|
194
197
|
}
|
|
195
198
|
|
|
196
|
-
class CreateScheduleCommand extends
|
|
199
|
+
class CreateScheduleCommand extends Command
|
|
197
200
|
.classBuilder()
|
|
198
201
|
.ep(commonParams)
|
|
199
202
|
.m(function (Command, cs, config, o) {
|
|
200
|
-
return [
|
|
203
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
201
204
|
})
|
|
202
205
|
.s("AWSGlueDataBrew", "CreateSchedule", {})
|
|
203
206
|
.n("DataBrewClient", "CreateScheduleCommand")
|
|
204
|
-
.sc(
|
|
207
|
+
.sc(CreateSchedule$)
|
|
205
208
|
.build() {
|
|
206
209
|
}
|
|
207
210
|
|
|
208
|
-
class DeleteDatasetCommand extends
|
|
211
|
+
class DeleteDatasetCommand extends Command
|
|
209
212
|
.classBuilder()
|
|
210
213
|
.ep(commonParams)
|
|
211
214
|
.m(function (Command, cs, config, o) {
|
|
212
|
-
return [
|
|
215
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
213
216
|
})
|
|
214
217
|
.s("AWSGlueDataBrew", "DeleteDataset", {})
|
|
215
218
|
.n("DataBrewClient", "DeleteDatasetCommand")
|
|
216
|
-
.sc(
|
|
219
|
+
.sc(DeleteDataset$)
|
|
217
220
|
.build() {
|
|
218
221
|
}
|
|
219
222
|
|
|
220
|
-
class DeleteJobCommand extends
|
|
223
|
+
class DeleteJobCommand extends Command
|
|
221
224
|
.classBuilder()
|
|
222
225
|
.ep(commonParams)
|
|
223
226
|
.m(function (Command, cs, config, o) {
|
|
224
|
-
return [
|
|
227
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
225
228
|
})
|
|
226
229
|
.s("AWSGlueDataBrew", "DeleteJob", {})
|
|
227
230
|
.n("DataBrewClient", "DeleteJobCommand")
|
|
228
|
-
.sc(
|
|
231
|
+
.sc(DeleteJob$)
|
|
229
232
|
.build() {
|
|
230
233
|
}
|
|
231
234
|
|
|
232
|
-
class DeleteProjectCommand extends
|
|
235
|
+
class DeleteProjectCommand extends Command
|
|
233
236
|
.classBuilder()
|
|
234
237
|
.ep(commonParams)
|
|
235
238
|
.m(function (Command, cs, config, o) {
|
|
236
|
-
return [
|
|
239
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
237
240
|
})
|
|
238
241
|
.s("AWSGlueDataBrew", "DeleteProject", {})
|
|
239
242
|
.n("DataBrewClient", "DeleteProjectCommand")
|
|
240
|
-
.sc(
|
|
243
|
+
.sc(DeleteProject$)
|
|
241
244
|
.build() {
|
|
242
245
|
}
|
|
243
246
|
|
|
244
|
-
class DeleteRecipeVersionCommand extends
|
|
247
|
+
class DeleteRecipeVersionCommand extends Command
|
|
245
248
|
.classBuilder()
|
|
246
249
|
.ep(commonParams)
|
|
247
250
|
.m(function (Command, cs, config, o) {
|
|
248
|
-
return [
|
|
251
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
249
252
|
})
|
|
250
253
|
.s("AWSGlueDataBrew", "DeleteRecipeVersion", {})
|
|
251
254
|
.n("DataBrewClient", "DeleteRecipeVersionCommand")
|
|
252
|
-
.sc(
|
|
255
|
+
.sc(DeleteRecipeVersion$)
|
|
253
256
|
.build() {
|
|
254
257
|
}
|
|
255
258
|
|
|
256
|
-
class DeleteRulesetCommand extends
|
|
259
|
+
class DeleteRulesetCommand extends Command
|
|
257
260
|
.classBuilder()
|
|
258
261
|
.ep(commonParams)
|
|
259
262
|
.m(function (Command, cs, config, o) {
|
|
260
|
-
return [
|
|
263
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
261
264
|
})
|
|
262
265
|
.s("AWSGlueDataBrew", "DeleteRuleset", {})
|
|
263
266
|
.n("DataBrewClient", "DeleteRulesetCommand")
|
|
264
|
-
.sc(
|
|
267
|
+
.sc(DeleteRuleset$)
|
|
265
268
|
.build() {
|
|
266
269
|
}
|
|
267
270
|
|
|
268
|
-
class DeleteScheduleCommand extends
|
|
271
|
+
class DeleteScheduleCommand extends Command
|
|
269
272
|
.classBuilder()
|
|
270
273
|
.ep(commonParams)
|
|
271
274
|
.m(function (Command, cs, config, o) {
|
|
272
|
-
return [
|
|
275
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
273
276
|
})
|
|
274
277
|
.s("AWSGlueDataBrew", "DeleteSchedule", {})
|
|
275
278
|
.n("DataBrewClient", "DeleteScheduleCommand")
|
|
276
|
-
.sc(
|
|
279
|
+
.sc(DeleteSchedule$)
|
|
277
280
|
.build() {
|
|
278
281
|
}
|
|
279
282
|
|
|
280
|
-
class DescribeDatasetCommand extends
|
|
283
|
+
class DescribeDatasetCommand extends Command
|
|
281
284
|
.classBuilder()
|
|
282
285
|
.ep(commonParams)
|
|
283
286
|
.m(function (Command, cs, config, o) {
|
|
284
|
-
return [
|
|
287
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
285
288
|
})
|
|
286
289
|
.s("AWSGlueDataBrew", "DescribeDataset", {})
|
|
287
290
|
.n("DataBrewClient", "DescribeDatasetCommand")
|
|
288
|
-
.sc(
|
|
291
|
+
.sc(DescribeDataset$)
|
|
289
292
|
.build() {
|
|
290
293
|
}
|
|
291
294
|
|
|
292
|
-
class DescribeJobCommand extends
|
|
295
|
+
class DescribeJobCommand extends Command
|
|
293
296
|
.classBuilder()
|
|
294
297
|
.ep(commonParams)
|
|
295
298
|
.m(function (Command, cs, config, o) {
|
|
296
|
-
return [
|
|
299
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
297
300
|
})
|
|
298
301
|
.s("AWSGlueDataBrew", "DescribeJob", {})
|
|
299
302
|
.n("DataBrewClient", "DescribeJobCommand")
|
|
300
|
-
.sc(
|
|
303
|
+
.sc(DescribeJob$)
|
|
301
304
|
.build() {
|
|
302
305
|
}
|
|
303
306
|
|
|
304
|
-
class DescribeJobRunCommand extends
|
|
307
|
+
class DescribeJobRunCommand extends Command
|
|
305
308
|
.classBuilder()
|
|
306
309
|
.ep(commonParams)
|
|
307
310
|
.m(function (Command, cs, config, o) {
|
|
308
|
-
return [
|
|
311
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
309
312
|
})
|
|
310
313
|
.s("AWSGlueDataBrew", "DescribeJobRun", {})
|
|
311
314
|
.n("DataBrewClient", "DescribeJobRunCommand")
|
|
312
|
-
.sc(
|
|
315
|
+
.sc(DescribeJobRun$)
|
|
313
316
|
.build() {
|
|
314
317
|
}
|
|
315
318
|
|
|
316
|
-
class DescribeProjectCommand extends
|
|
319
|
+
class DescribeProjectCommand extends Command
|
|
317
320
|
.classBuilder()
|
|
318
321
|
.ep(commonParams)
|
|
319
322
|
.m(function (Command, cs, config, o) {
|
|
320
|
-
return [
|
|
323
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
321
324
|
})
|
|
322
325
|
.s("AWSGlueDataBrew", "DescribeProject", {})
|
|
323
326
|
.n("DataBrewClient", "DescribeProjectCommand")
|
|
324
|
-
.sc(
|
|
327
|
+
.sc(DescribeProject$)
|
|
325
328
|
.build() {
|
|
326
329
|
}
|
|
327
330
|
|
|
328
|
-
class DescribeRecipeCommand extends
|
|
331
|
+
class DescribeRecipeCommand extends Command
|
|
329
332
|
.classBuilder()
|
|
330
333
|
.ep(commonParams)
|
|
331
334
|
.m(function (Command, cs, config, o) {
|
|
332
|
-
return [
|
|
335
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
333
336
|
})
|
|
334
337
|
.s("AWSGlueDataBrew", "DescribeRecipe", {})
|
|
335
338
|
.n("DataBrewClient", "DescribeRecipeCommand")
|
|
336
|
-
.sc(
|
|
339
|
+
.sc(DescribeRecipe$)
|
|
337
340
|
.build() {
|
|
338
341
|
}
|
|
339
342
|
|
|
340
|
-
class DescribeRulesetCommand extends
|
|
343
|
+
class DescribeRulesetCommand extends Command
|
|
341
344
|
.classBuilder()
|
|
342
345
|
.ep(commonParams)
|
|
343
346
|
.m(function (Command, cs, config, o) {
|
|
344
|
-
return [
|
|
347
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
345
348
|
})
|
|
346
349
|
.s("AWSGlueDataBrew", "DescribeRuleset", {})
|
|
347
350
|
.n("DataBrewClient", "DescribeRulesetCommand")
|
|
348
|
-
.sc(
|
|
351
|
+
.sc(DescribeRuleset$)
|
|
349
352
|
.build() {
|
|
350
353
|
}
|
|
351
354
|
|
|
352
|
-
class DescribeScheduleCommand extends
|
|
355
|
+
class DescribeScheduleCommand extends Command
|
|
353
356
|
.classBuilder()
|
|
354
357
|
.ep(commonParams)
|
|
355
358
|
.m(function (Command, cs, config, o) {
|
|
356
|
-
return [
|
|
359
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
357
360
|
})
|
|
358
361
|
.s("AWSGlueDataBrew", "DescribeSchedule", {})
|
|
359
362
|
.n("DataBrewClient", "DescribeScheduleCommand")
|
|
360
|
-
.sc(
|
|
363
|
+
.sc(DescribeSchedule$)
|
|
361
364
|
.build() {
|
|
362
365
|
}
|
|
363
366
|
|
|
364
|
-
class ListDatasetsCommand extends
|
|
367
|
+
class ListDatasetsCommand extends Command
|
|
365
368
|
.classBuilder()
|
|
366
369
|
.ep(commonParams)
|
|
367
370
|
.m(function (Command, cs, config, o) {
|
|
368
|
-
return [
|
|
371
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
369
372
|
})
|
|
370
373
|
.s("AWSGlueDataBrew", "ListDatasets", {})
|
|
371
374
|
.n("DataBrewClient", "ListDatasetsCommand")
|
|
372
|
-
.sc(
|
|
375
|
+
.sc(ListDatasets$)
|
|
373
376
|
.build() {
|
|
374
377
|
}
|
|
375
378
|
|
|
376
|
-
class ListJobRunsCommand extends
|
|
379
|
+
class ListJobRunsCommand extends Command
|
|
377
380
|
.classBuilder()
|
|
378
381
|
.ep(commonParams)
|
|
379
382
|
.m(function (Command, cs, config, o) {
|
|
380
|
-
return [
|
|
383
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
381
384
|
})
|
|
382
385
|
.s("AWSGlueDataBrew", "ListJobRuns", {})
|
|
383
386
|
.n("DataBrewClient", "ListJobRunsCommand")
|
|
384
|
-
.sc(
|
|
387
|
+
.sc(ListJobRuns$)
|
|
385
388
|
.build() {
|
|
386
389
|
}
|
|
387
390
|
|
|
388
|
-
class ListJobsCommand extends
|
|
391
|
+
class ListJobsCommand extends Command
|
|
389
392
|
.classBuilder()
|
|
390
393
|
.ep(commonParams)
|
|
391
394
|
.m(function (Command, cs, config, o) {
|
|
392
|
-
return [
|
|
395
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
393
396
|
})
|
|
394
397
|
.s("AWSGlueDataBrew", "ListJobs", {})
|
|
395
398
|
.n("DataBrewClient", "ListJobsCommand")
|
|
396
|
-
.sc(
|
|
399
|
+
.sc(ListJobs$)
|
|
397
400
|
.build() {
|
|
398
401
|
}
|
|
399
402
|
|
|
400
|
-
class ListProjectsCommand extends
|
|
403
|
+
class ListProjectsCommand extends Command
|
|
401
404
|
.classBuilder()
|
|
402
405
|
.ep(commonParams)
|
|
403
406
|
.m(function (Command, cs, config, o) {
|
|
404
|
-
return [
|
|
407
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
405
408
|
})
|
|
406
409
|
.s("AWSGlueDataBrew", "ListProjects", {})
|
|
407
410
|
.n("DataBrewClient", "ListProjectsCommand")
|
|
408
|
-
.sc(
|
|
411
|
+
.sc(ListProjects$)
|
|
409
412
|
.build() {
|
|
410
413
|
}
|
|
411
414
|
|
|
412
|
-
class ListRecipesCommand extends
|
|
415
|
+
class ListRecipesCommand extends Command
|
|
413
416
|
.classBuilder()
|
|
414
417
|
.ep(commonParams)
|
|
415
418
|
.m(function (Command, cs, config, o) {
|
|
416
|
-
return [
|
|
419
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
417
420
|
})
|
|
418
421
|
.s("AWSGlueDataBrew", "ListRecipes", {})
|
|
419
422
|
.n("DataBrewClient", "ListRecipesCommand")
|
|
420
|
-
.sc(
|
|
423
|
+
.sc(ListRecipes$)
|
|
421
424
|
.build() {
|
|
422
425
|
}
|
|
423
426
|
|
|
424
|
-
class ListRecipeVersionsCommand extends
|
|
427
|
+
class ListRecipeVersionsCommand extends Command
|
|
425
428
|
.classBuilder()
|
|
426
429
|
.ep(commonParams)
|
|
427
430
|
.m(function (Command, cs, config, o) {
|
|
428
|
-
return [
|
|
431
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
429
432
|
})
|
|
430
433
|
.s("AWSGlueDataBrew", "ListRecipeVersions", {})
|
|
431
434
|
.n("DataBrewClient", "ListRecipeVersionsCommand")
|
|
432
|
-
.sc(
|
|
435
|
+
.sc(ListRecipeVersions$)
|
|
433
436
|
.build() {
|
|
434
437
|
}
|
|
435
438
|
|
|
436
|
-
class ListRulesetsCommand extends
|
|
439
|
+
class ListRulesetsCommand extends Command
|
|
437
440
|
.classBuilder()
|
|
438
441
|
.ep(commonParams)
|
|
439
442
|
.m(function (Command, cs, config, o) {
|
|
440
|
-
return [
|
|
443
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
441
444
|
})
|
|
442
445
|
.s("AWSGlueDataBrew", "ListRulesets", {})
|
|
443
446
|
.n("DataBrewClient", "ListRulesetsCommand")
|
|
444
|
-
.sc(
|
|
447
|
+
.sc(ListRulesets$)
|
|
445
448
|
.build() {
|
|
446
449
|
}
|
|
447
450
|
|
|
448
|
-
class ListSchedulesCommand extends
|
|
451
|
+
class ListSchedulesCommand extends Command
|
|
449
452
|
.classBuilder()
|
|
450
453
|
.ep(commonParams)
|
|
451
454
|
.m(function (Command, cs, config, o) {
|
|
452
|
-
return [
|
|
455
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
453
456
|
})
|
|
454
457
|
.s("AWSGlueDataBrew", "ListSchedules", {})
|
|
455
458
|
.n("DataBrewClient", "ListSchedulesCommand")
|
|
456
|
-
.sc(
|
|
459
|
+
.sc(ListSchedules$)
|
|
457
460
|
.build() {
|
|
458
461
|
}
|
|
459
462
|
|
|
460
|
-
class ListTagsForResourceCommand extends
|
|
463
|
+
class ListTagsForResourceCommand extends Command
|
|
461
464
|
.classBuilder()
|
|
462
465
|
.ep(commonParams)
|
|
463
466
|
.m(function (Command, cs, config, o) {
|
|
464
|
-
return [
|
|
467
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
465
468
|
})
|
|
466
469
|
.s("AWSGlueDataBrew", "ListTagsForResource", {})
|
|
467
470
|
.n("DataBrewClient", "ListTagsForResourceCommand")
|
|
468
|
-
.sc(
|
|
471
|
+
.sc(ListTagsForResource$)
|
|
469
472
|
.build() {
|
|
470
473
|
}
|
|
471
474
|
|
|
472
|
-
class PublishRecipeCommand extends
|
|
475
|
+
class PublishRecipeCommand extends Command
|
|
473
476
|
.classBuilder()
|
|
474
477
|
.ep(commonParams)
|
|
475
478
|
.m(function (Command, cs, config, o) {
|
|
476
|
-
return [
|
|
479
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
477
480
|
})
|
|
478
481
|
.s("AWSGlueDataBrew", "PublishRecipe", {})
|
|
479
482
|
.n("DataBrewClient", "PublishRecipeCommand")
|
|
480
|
-
.sc(
|
|
483
|
+
.sc(PublishRecipe$)
|
|
481
484
|
.build() {
|
|
482
485
|
}
|
|
483
486
|
|
|
484
|
-
class SendProjectSessionActionCommand extends
|
|
487
|
+
class SendProjectSessionActionCommand extends Command
|
|
485
488
|
.classBuilder()
|
|
486
489
|
.ep(commonParams)
|
|
487
490
|
.m(function (Command, cs, config, o) {
|
|
488
|
-
return [
|
|
491
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
489
492
|
})
|
|
490
493
|
.s("AWSGlueDataBrew", "SendProjectSessionAction", {})
|
|
491
494
|
.n("DataBrewClient", "SendProjectSessionActionCommand")
|
|
492
|
-
.sc(
|
|
495
|
+
.sc(SendProjectSessionAction$)
|
|
493
496
|
.build() {
|
|
494
497
|
}
|
|
495
498
|
|
|
496
|
-
class StartJobRunCommand extends
|
|
499
|
+
class StartJobRunCommand extends Command
|
|
497
500
|
.classBuilder()
|
|
498
501
|
.ep(commonParams)
|
|
499
502
|
.m(function (Command, cs, config, o) {
|
|
500
|
-
return [
|
|
503
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
501
504
|
})
|
|
502
505
|
.s("AWSGlueDataBrew", "StartJobRun", {})
|
|
503
506
|
.n("DataBrewClient", "StartJobRunCommand")
|
|
504
|
-
.sc(
|
|
507
|
+
.sc(StartJobRun$)
|
|
505
508
|
.build() {
|
|
506
509
|
}
|
|
507
510
|
|
|
508
|
-
class StartProjectSessionCommand extends
|
|
511
|
+
class StartProjectSessionCommand extends Command
|
|
509
512
|
.classBuilder()
|
|
510
513
|
.ep(commonParams)
|
|
511
514
|
.m(function (Command, cs, config, o) {
|
|
512
|
-
return [
|
|
515
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
513
516
|
})
|
|
514
517
|
.s("AWSGlueDataBrew", "StartProjectSession", {})
|
|
515
518
|
.n("DataBrewClient", "StartProjectSessionCommand")
|
|
516
|
-
.sc(
|
|
519
|
+
.sc(StartProjectSession$)
|
|
517
520
|
.build() {
|
|
518
521
|
}
|
|
519
522
|
|
|
520
|
-
class StopJobRunCommand extends
|
|
523
|
+
class StopJobRunCommand extends Command
|
|
521
524
|
.classBuilder()
|
|
522
525
|
.ep(commonParams)
|
|
523
526
|
.m(function (Command, cs, config, o) {
|
|
524
|
-
return [
|
|
527
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
525
528
|
})
|
|
526
529
|
.s("AWSGlueDataBrew", "StopJobRun", {})
|
|
527
530
|
.n("DataBrewClient", "StopJobRunCommand")
|
|
528
|
-
.sc(
|
|
531
|
+
.sc(StopJobRun$)
|
|
529
532
|
.build() {
|
|
530
533
|
}
|
|
531
534
|
|
|
532
|
-
class TagResourceCommand extends
|
|
535
|
+
class TagResourceCommand extends Command
|
|
533
536
|
.classBuilder()
|
|
534
537
|
.ep(commonParams)
|
|
535
538
|
.m(function (Command, cs, config, o) {
|
|
536
|
-
return [
|
|
539
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
537
540
|
})
|
|
538
541
|
.s("AWSGlueDataBrew", "TagResource", {})
|
|
539
542
|
.n("DataBrewClient", "TagResourceCommand")
|
|
540
|
-
.sc(
|
|
543
|
+
.sc(TagResource$)
|
|
541
544
|
.build() {
|
|
542
545
|
}
|
|
543
546
|
|
|
544
|
-
class UntagResourceCommand extends
|
|
547
|
+
class UntagResourceCommand extends Command
|
|
545
548
|
.classBuilder()
|
|
546
549
|
.ep(commonParams)
|
|
547
550
|
.m(function (Command, cs, config, o) {
|
|
548
|
-
return [
|
|
551
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
549
552
|
})
|
|
550
553
|
.s("AWSGlueDataBrew", "UntagResource", {})
|
|
551
554
|
.n("DataBrewClient", "UntagResourceCommand")
|
|
552
|
-
.sc(
|
|
555
|
+
.sc(UntagResource$)
|
|
553
556
|
.build() {
|
|
554
557
|
}
|
|
555
558
|
|
|
556
|
-
class UpdateDatasetCommand extends
|
|
559
|
+
class UpdateDatasetCommand extends Command
|
|
557
560
|
.classBuilder()
|
|
558
561
|
.ep(commonParams)
|
|
559
562
|
.m(function (Command, cs, config, o) {
|
|
560
|
-
return [
|
|
563
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
561
564
|
})
|
|
562
565
|
.s("AWSGlueDataBrew", "UpdateDataset", {})
|
|
563
566
|
.n("DataBrewClient", "UpdateDatasetCommand")
|
|
564
|
-
.sc(
|
|
567
|
+
.sc(UpdateDataset$)
|
|
565
568
|
.build() {
|
|
566
569
|
}
|
|
567
570
|
|
|
568
|
-
class UpdateProfileJobCommand extends
|
|
571
|
+
class UpdateProfileJobCommand extends Command
|
|
569
572
|
.classBuilder()
|
|
570
573
|
.ep(commonParams)
|
|
571
574
|
.m(function (Command, cs, config, o) {
|
|
572
|
-
return [
|
|
575
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
573
576
|
})
|
|
574
577
|
.s("AWSGlueDataBrew", "UpdateProfileJob", {})
|
|
575
578
|
.n("DataBrewClient", "UpdateProfileJobCommand")
|
|
576
|
-
.sc(
|
|
579
|
+
.sc(UpdateProfileJob$)
|
|
577
580
|
.build() {
|
|
578
581
|
}
|
|
579
582
|
|
|
580
|
-
class UpdateProjectCommand extends
|
|
583
|
+
class UpdateProjectCommand extends Command
|
|
581
584
|
.classBuilder()
|
|
582
585
|
.ep(commonParams)
|
|
583
586
|
.m(function (Command, cs, config, o) {
|
|
584
|
-
return [
|
|
587
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
585
588
|
})
|
|
586
589
|
.s("AWSGlueDataBrew", "UpdateProject", {})
|
|
587
590
|
.n("DataBrewClient", "UpdateProjectCommand")
|
|
588
|
-
.sc(
|
|
591
|
+
.sc(UpdateProject$)
|
|
589
592
|
.build() {
|
|
590
593
|
}
|
|
591
594
|
|
|
592
|
-
class UpdateRecipeCommand extends
|
|
595
|
+
class UpdateRecipeCommand extends Command
|
|
593
596
|
.classBuilder()
|
|
594
597
|
.ep(commonParams)
|
|
595
598
|
.m(function (Command, cs, config, o) {
|
|
596
|
-
return [
|
|
599
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
597
600
|
})
|
|
598
601
|
.s("AWSGlueDataBrew", "UpdateRecipe", {})
|
|
599
602
|
.n("DataBrewClient", "UpdateRecipeCommand")
|
|
600
|
-
.sc(
|
|
603
|
+
.sc(UpdateRecipe$)
|
|
601
604
|
.build() {
|
|
602
605
|
}
|
|
603
606
|
|
|
604
|
-
class UpdateRecipeJobCommand extends
|
|
607
|
+
class UpdateRecipeJobCommand extends Command
|
|
605
608
|
.classBuilder()
|
|
606
609
|
.ep(commonParams)
|
|
607
610
|
.m(function (Command, cs, config, o) {
|
|
608
|
-
return [
|
|
611
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
609
612
|
})
|
|
610
613
|
.s("AWSGlueDataBrew", "UpdateRecipeJob", {})
|
|
611
614
|
.n("DataBrewClient", "UpdateRecipeJobCommand")
|
|
612
|
-
.sc(
|
|
615
|
+
.sc(UpdateRecipeJob$)
|
|
613
616
|
.build() {
|
|
614
617
|
}
|
|
615
618
|
|
|
616
|
-
class UpdateRulesetCommand extends
|
|
619
|
+
class UpdateRulesetCommand extends Command
|
|
617
620
|
.classBuilder()
|
|
618
621
|
.ep(commonParams)
|
|
619
622
|
.m(function (Command, cs, config, o) {
|
|
620
|
-
return [
|
|
623
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
621
624
|
})
|
|
622
625
|
.s("AWSGlueDataBrew", "UpdateRuleset", {})
|
|
623
626
|
.n("DataBrewClient", "UpdateRulesetCommand")
|
|
624
|
-
.sc(
|
|
627
|
+
.sc(UpdateRuleset$)
|
|
625
628
|
.build() {
|
|
626
629
|
}
|
|
627
630
|
|
|
628
|
-
class UpdateScheduleCommand extends
|
|
631
|
+
class UpdateScheduleCommand extends Command
|
|
629
632
|
.classBuilder()
|
|
630
633
|
.ep(commonParams)
|
|
631
634
|
.m(function (Command, cs, config, o) {
|
|
632
|
-
return [
|
|
635
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
633
636
|
})
|
|
634
637
|
.s("AWSGlueDataBrew", "UpdateSchedule", {})
|
|
635
638
|
.n("DataBrewClient", "UpdateScheduleCommand")
|
|
636
|
-
.sc(
|
|
639
|
+
.sc(UpdateSchedule$)
|
|
637
640
|
.build() {
|
|
638
641
|
}
|
|
639
642
|
|
|
640
|
-
const paginateListDatasets =
|
|
643
|
+
const paginateListDatasets = createPaginator(DataBrewClient, ListDatasetsCommand, "NextToken", "NextToken", "MaxResults");
|
|
641
644
|
|
|
642
|
-
const paginateListJobRuns =
|
|
645
|
+
const paginateListJobRuns = createPaginator(DataBrewClient, ListJobRunsCommand, "NextToken", "NextToken", "MaxResults");
|
|
643
646
|
|
|
644
|
-
const paginateListJobs =
|
|
647
|
+
const paginateListJobs = createPaginator(DataBrewClient, ListJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
645
648
|
|
|
646
|
-
const paginateListProjects =
|
|
649
|
+
const paginateListProjects = createPaginator(DataBrewClient, ListProjectsCommand, "NextToken", "NextToken", "MaxResults");
|
|
647
650
|
|
|
648
|
-
const paginateListRecipes =
|
|
651
|
+
const paginateListRecipes = createPaginator(DataBrewClient, ListRecipesCommand, "NextToken", "NextToken", "MaxResults");
|
|
649
652
|
|
|
650
|
-
const paginateListRecipeVersions =
|
|
653
|
+
const paginateListRecipeVersions = createPaginator(DataBrewClient, ListRecipeVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
651
654
|
|
|
652
|
-
const paginateListRulesets =
|
|
655
|
+
const paginateListRulesets = createPaginator(DataBrewClient, ListRulesetsCommand, "NextToken", "NextToken", "MaxResults");
|
|
653
656
|
|
|
654
|
-
const paginateListSchedules =
|
|
657
|
+
const paginateListSchedules = createPaginator(DataBrewClient, ListSchedulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
655
658
|
|
|
656
659
|
const commands = {
|
|
657
660
|
BatchDeleteRecipeVersionCommand,
|
|
@@ -711,7 +714,7 @@ const paginators = {
|
|
|
711
714
|
};
|
|
712
715
|
class DataBrew extends DataBrewClient {
|
|
713
716
|
}
|
|
714
|
-
|
|
717
|
+
createAggregatedClient(commands, DataBrew, { paginators });
|
|
715
718
|
|
|
716
719
|
const AnalyticsMode = {
|
|
717
720
|
DISABLE: "DISABLE",
|
|
@@ -821,9 +824,6 @@ const SessionStatus = {
|
|
|
821
824
|
UPDATING: "UPDATING",
|
|
822
825
|
};
|
|
823
826
|
|
|
824
|
-
exports.$Command = client.Command;
|
|
825
|
-
exports.__Client = client.Client;
|
|
826
|
-
exports.DataBrewServiceException = DataBrewServiceException.DataBrewServiceException;
|
|
827
827
|
exports.AnalyticsMode = AnalyticsMode;
|
|
828
828
|
exports.BatchDeleteRecipeVersionCommand = BatchDeleteRecipeVersionCommand;
|
|
829
829
|
exports.CompressionFormat = CompressionFormat;
|
|
@@ -897,23 +897,3 @@ exports.paginateListRecipeVersions = paginateListRecipeVersions;
|
|
|
897
897
|
exports.paginateListRecipes = paginateListRecipes;
|
|
898
898
|
exports.paginateListRulesets = paginateListRulesets;
|
|
899
899
|
exports.paginateListSchedules = paginateListSchedules;
|
|
900
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
901
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
902
|
-
Object.defineProperty(exports, '__proto__', {
|
|
903
|
-
enumerable: true,
|
|
904
|
-
value: schemas_0['__proto__']
|
|
905
|
-
});
|
|
906
|
-
|
|
907
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
908
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
909
|
-
});
|
|
910
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
911
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
912
|
-
Object.defineProperty(exports, '__proto__', {
|
|
913
|
-
enumerable: true,
|
|
914
|
-
value: errors['__proto__']
|
|
915
|
-
});
|
|
916
|
-
|
|
917
|
-
Object.keys(errors).forEach(function (k) {
|
|
918
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
919
|
-
});
|