@aws-sdk/client-machine-learning 3.986.0 → 3.988.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 +47 -995
- package/dist-cjs/models/MachineLearningServiceException.js +12 -0
- package/dist-cjs/models/errors.js +118 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +754 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +58 -52
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,8 +15,11 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
18
19
|
var middlewareSdkMachinelearning = require('@aws-sdk/middleware-sdk-machinelearning');
|
|
19
20
|
var utilWaiter = require('@smithy/util-waiter');
|
|
21
|
+
var errors = require('./models/errors');
|
|
22
|
+
var MachineLearningServiceException = require('./models/MachineLearningServiceException');
|
|
20
23
|
|
|
21
24
|
const resolveClientEndpointParameters = (options) => {
|
|
22
25
|
return Object.assign(options, {
|
|
@@ -112,854 +115,6 @@ class MachineLearningClient extends smithyClient.Client {
|
|
|
112
115
|
}
|
|
113
116
|
}
|
|
114
117
|
|
|
115
|
-
class MachineLearningServiceException extends smithyClient.ServiceException {
|
|
116
|
-
constructor(options) {
|
|
117
|
-
super(options);
|
|
118
|
-
Object.setPrototypeOf(this, MachineLearningServiceException.prototype);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
class InternalServerException extends MachineLearningServiceException {
|
|
123
|
-
name = "InternalServerException";
|
|
124
|
-
$fault = "server";
|
|
125
|
-
code;
|
|
126
|
-
constructor(opts) {
|
|
127
|
-
super({
|
|
128
|
-
name: "InternalServerException",
|
|
129
|
-
$fault: "server",
|
|
130
|
-
...opts,
|
|
131
|
-
});
|
|
132
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
133
|
-
this.code = opts.code;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
class InvalidInputException extends MachineLearningServiceException {
|
|
137
|
-
name = "InvalidInputException";
|
|
138
|
-
$fault = "client";
|
|
139
|
-
code;
|
|
140
|
-
constructor(opts) {
|
|
141
|
-
super({
|
|
142
|
-
name: "InvalidInputException",
|
|
143
|
-
$fault: "client",
|
|
144
|
-
...opts,
|
|
145
|
-
});
|
|
146
|
-
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
147
|
-
this.code = opts.code;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
class InvalidTagException extends MachineLearningServiceException {
|
|
151
|
-
name = "InvalidTagException";
|
|
152
|
-
$fault = "client";
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "InvalidTagException",
|
|
156
|
-
$fault: "client",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, InvalidTagException.prototype);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ResourceNotFoundException extends MachineLearningServiceException {
|
|
163
|
-
name = "ResourceNotFoundException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
code;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ResourceNotFoundException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
-
this.code = opts.code;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class TagLimitExceededException extends MachineLearningServiceException {
|
|
177
|
-
name = "TagLimitExceededException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
constructor(opts) {
|
|
180
|
-
super({
|
|
181
|
-
name: "TagLimitExceededException",
|
|
182
|
-
$fault: "client",
|
|
183
|
-
...opts,
|
|
184
|
-
});
|
|
185
|
-
Object.setPrototypeOf(this, TagLimitExceededException.prototype);
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
class IdempotentParameterMismatchException extends MachineLearningServiceException {
|
|
189
|
-
name = "IdempotentParameterMismatchException";
|
|
190
|
-
$fault = "client";
|
|
191
|
-
code;
|
|
192
|
-
constructor(opts) {
|
|
193
|
-
super({
|
|
194
|
-
name: "IdempotentParameterMismatchException",
|
|
195
|
-
$fault: "client",
|
|
196
|
-
...opts,
|
|
197
|
-
});
|
|
198
|
-
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
199
|
-
this.code = opts.code;
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
class LimitExceededException extends MachineLearningServiceException {
|
|
203
|
-
name = "LimitExceededException";
|
|
204
|
-
$fault = "client";
|
|
205
|
-
code;
|
|
206
|
-
constructor(opts) {
|
|
207
|
-
super({
|
|
208
|
-
name: "LimitExceededException",
|
|
209
|
-
$fault: "client",
|
|
210
|
-
...opts,
|
|
211
|
-
});
|
|
212
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
213
|
-
this.code = opts.code;
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class PredictorNotMountedException extends MachineLearningServiceException {
|
|
217
|
-
name = "PredictorNotMountedException";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "PredictorNotMountedException",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, PredictorNotMountedException.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
const _A = "Algorithm";
|
|
230
|
-
const _AT = "AddTags";
|
|
231
|
-
const _ATI = "AddTagsInput";
|
|
232
|
-
const _ATO = "AddTagsOutput";
|
|
233
|
-
const _BP = "BatchPrediction";
|
|
234
|
-
const _BPDSI = "BatchPredictionDataSourceId";
|
|
235
|
-
const _BPI = "BatchPredictionId";
|
|
236
|
-
const _BPN = "BatchPredictionName";
|
|
237
|
-
const _BPa = "BatchPredictions";
|
|
238
|
-
const _CA = "CreatedAt";
|
|
239
|
-
const _CBIU = "CreatedByIamUser";
|
|
240
|
-
const _CBP = "CreateBatchPrediction";
|
|
241
|
-
const _CBPI = "CreateBatchPredictionInput";
|
|
242
|
-
const _CBPO = "CreateBatchPredictionOutput";
|
|
243
|
-
const _CDSFR = "CreateDataSourceFromRedshift";
|
|
244
|
-
const _CDSFRDS = "CreateDataSourceFromRDS";
|
|
245
|
-
const _CDSFRDSI = "CreateDataSourceFromRDSInput";
|
|
246
|
-
const _CDSFRDSO = "CreateDataSourceFromRDSOutput";
|
|
247
|
-
const _CDSFRI = "CreateDataSourceFromRedshiftInput";
|
|
248
|
-
const _CDSFRO = "CreateDataSourceFromRedshiftOutput";
|
|
249
|
-
const _CDSFS = "CreateDataSourceFromS3";
|
|
250
|
-
const _CDSFSI = "CreateDataSourceFromS3Input";
|
|
251
|
-
const _CDSFSO = "CreateDataSourceFromS3Output";
|
|
252
|
-
const _CE = "CreateEvaluation";
|
|
253
|
-
const _CEI = "CreateEvaluationInput";
|
|
254
|
-
const _CEO = "CreateEvaluationOutput";
|
|
255
|
-
const _CI = "ClusterIdentifier";
|
|
256
|
-
const _CMLM = "CreateMLModel";
|
|
257
|
-
const _CMLMI = "CreateMLModelInput";
|
|
258
|
-
const _CMLMO = "CreateMLModelOutput";
|
|
259
|
-
const _CRE = "CreateRealtimeEndpoint";
|
|
260
|
-
const _CREI = "CreateRealtimeEndpointInput";
|
|
261
|
-
const _CREO = "CreateRealtimeEndpointOutput";
|
|
262
|
-
const _CS = "ComputeStatistics";
|
|
263
|
-
const _CT = "ComputeTime";
|
|
264
|
-
const _D = "Database";
|
|
265
|
-
const _DBP = "DeleteBatchPrediction";
|
|
266
|
-
const _DBPI = "DeleteBatchPredictionInput";
|
|
267
|
-
const _DBPIe = "DescribeBatchPredictionsInput";
|
|
268
|
-
const _DBPO = "DeleteBatchPredictionOutput";
|
|
269
|
-
const _DBPOe = "DescribeBatchPredictionsOutput";
|
|
270
|
-
const _DBPe = "DescribeBatchPredictions";
|
|
271
|
-
const _DC = "DatabaseCredentials";
|
|
272
|
-
const _DDS = "DeleteDataSource";
|
|
273
|
-
const _DDSI = "DeleteDataSourceInput";
|
|
274
|
-
const _DDSIe = "DescribeDataSourcesInput";
|
|
275
|
-
const _DDSO = "DeleteDataSourceOutput";
|
|
276
|
-
const _DDSOe = "DescribeDataSourcesOutput";
|
|
277
|
-
const _DDSe = "DescribeDataSources";
|
|
278
|
-
const _DE = "DeleteEvaluation";
|
|
279
|
-
const _DEI = "DeleteEvaluationInput";
|
|
280
|
-
const _DEIe = "DescribeEvaluationsInput";
|
|
281
|
-
const _DEO = "DeleteEvaluationOutput";
|
|
282
|
-
const _DEOe = "DescribeEvaluationsOutput";
|
|
283
|
-
const _DEe = "DescribeEvaluations";
|
|
284
|
-
const _DI = "DatabaseInformation";
|
|
285
|
-
const _DLS = "DataLocationS3";
|
|
286
|
-
const _DMLM = "DeleteMLModel";
|
|
287
|
-
const _DMLMI = "DeleteMLModelInput";
|
|
288
|
-
const _DMLMIe = "DescribeMLModelsInput";
|
|
289
|
-
const _DMLMO = "DeleteMLModelOutput";
|
|
290
|
-
const _DMLMOe = "DescribeMLModelsOutput";
|
|
291
|
-
const _DMLMe = "DescribeMLModels";
|
|
292
|
-
const _DN = "DatabaseName";
|
|
293
|
-
const _DPI = "DataPipelineId";
|
|
294
|
-
const _DR = "DataRearrangement";
|
|
295
|
-
const _DRE = "DeleteRealtimeEndpoint";
|
|
296
|
-
const _DREI = "DeleteRealtimeEndpointInput";
|
|
297
|
-
const _DREO = "DeleteRealtimeEndpointOutput";
|
|
298
|
-
const _DS = "DataSpec";
|
|
299
|
-
const _DSI = "DataSourceId";
|
|
300
|
-
const _DSIB = "DataSizeInBytes";
|
|
301
|
-
const _DSLS = "DataSchemaLocationS3";
|
|
302
|
-
const _DSN = "DataSourceName";
|
|
303
|
-
const _DSS = "DataSourceSchema";
|
|
304
|
-
const _DSU = "DataSchemaUri";
|
|
305
|
-
const _DSa = "DataSource";
|
|
306
|
-
const _DSat = "DataSchema";
|
|
307
|
-
const _DSata = "DataSources";
|
|
308
|
-
const _DT = "DeleteTags";
|
|
309
|
-
const _DTI = "DeleteTagsInput";
|
|
310
|
-
const _DTIe = "DescribeTagsInput";
|
|
311
|
-
const _DTO = "DeleteTagsOutput";
|
|
312
|
-
const _DTOe = "DescribeTagsOutput";
|
|
313
|
-
const _DTe = "DescribeTags";
|
|
314
|
-
const _DUN = "DatabaseUserName";
|
|
315
|
-
const _E = "Evaluation";
|
|
316
|
-
const _EDSI = "EvaluationDataSourceId";
|
|
317
|
-
const _EI = "EvaluationId";
|
|
318
|
-
const _EIn = "EndpointInfo";
|
|
319
|
-
const _EN = "EvaluationName";
|
|
320
|
-
const _EQ = "EQ";
|
|
321
|
-
const _ES = "EndpointStatus";
|
|
322
|
-
const _EU = "EndpointUrl";
|
|
323
|
-
const _Ev = "Evaluations";
|
|
324
|
-
const _FA = "FinishedAt";
|
|
325
|
-
const _FV = "FilterVariable";
|
|
326
|
-
const _GBP = "GetBatchPrediction";
|
|
327
|
-
const _GBPI = "GetBatchPredictionInput";
|
|
328
|
-
const _GBPO = "GetBatchPredictionOutput";
|
|
329
|
-
const _GDS = "GetDataSource";
|
|
330
|
-
const _GDSI = "GetDataSourceInput";
|
|
331
|
-
const _GDSO = "GetDataSourceOutput";
|
|
332
|
-
const _GE = "GE";
|
|
333
|
-
const _GEI = "GetEvaluationInput";
|
|
334
|
-
const _GEO = "GetEvaluationOutput";
|
|
335
|
-
const _GEe = "GetEvaluation";
|
|
336
|
-
const _GMLM = "GetMLModel";
|
|
337
|
-
const _GMLMI = "GetMLModelInput";
|
|
338
|
-
const _GMLMO = "GetMLModelOutput";
|
|
339
|
-
const _GT = "GT";
|
|
340
|
-
const _IDLS = "InputDataLocationS3";
|
|
341
|
-
const _II = "InstanceIdentifier";
|
|
342
|
-
const _IIE = "InvalidInputException";
|
|
343
|
-
const _IPME = "IdempotentParameterMismatchException";
|
|
344
|
-
const _IRC = "InvalidRecordCount";
|
|
345
|
-
const _ISE = "InternalServerException";
|
|
346
|
-
const _ITE = "InvalidTagException";
|
|
347
|
-
const _K = "Key";
|
|
348
|
-
const _L = "Limit";
|
|
349
|
-
const _LE = "LE";
|
|
350
|
-
const _LEE = "LimitExceededException";
|
|
351
|
-
const _LT = "LT";
|
|
352
|
-
const _LU = "LogUri";
|
|
353
|
-
const _LUA = "LastUpdatedAt";
|
|
354
|
-
const _M = "Message";
|
|
355
|
-
const _MLM = "MLModel";
|
|
356
|
-
const _MLMI = "MLModelId";
|
|
357
|
-
const _MLMN = "MLModelName";
|
|
358
|
-
const _MLMT = "MLModelType";
|
|
359
|
-
const _MLMo = "MLModels";
|
|
360
|
-
const _N = "Name";
|
|
361
|
-
const _NE = "NE";
|
|
362
|
-
const _NOF = "NumberOfFiles";
|
|
363
|
-
const _NT = "NextToken";
|
|
364
|
-
const _OU = "OutputUri";
|
|
365
|
-
const _P = "Parameters";
|
|
366
|
-
const _PE = "PredictEndpoint";
|
|
367
|
-
const _PI = "PredictInput";
|
|
368
|
-
const _PM = "PerformanceMetrics";
|
|
369
|
-
const _PNME = "PredictorNotMountedException";
|
|
370
|
-
const _PO = "PredictOutput";
|
|
371
|
-
const _PRPS = "PeakRequestsPerSecond";
|
|
372
|
-
const _Pa = "Password";
|
|
373
|
-
const _Pr = "Prefix";
|
|
374
|
-
const _Pre = "Prediction";
|
|
375
|
-
const _Pred = "Predict";
|
|
376
|
-
const _Pro = "Properties";
|
|
377
|
-
const _R = "Recipe";
|
|
378
|
-
const _RARN = "RoleARN";
|
|
379
|
-
const _RD = "RedshiftDatabase";
|
|
380
|
-
const _RDC = "RedshiftDatabaseCredentials";
|
|
381
|
-
const _RDP = "RedshiftDatabasePassword";
|
|
382
|
-
const _RDS = "RedshiftDataSpec";
|
|
383
|
-
const _RDSD = "RDSData";
|
|
384
|
-
const _RDSDC = "RDSDatabaseCredentials";
|
|
385
|
-
const _RDSDP = "RDSDatabasePassword";
|
|
386
|
-
const _RDSDS = "RDSDataSpec";
|
|
387
|
-
const _RDSDa = "RDSDatabase";
|
|
388
|
-
const _RDSM = "RDSMetadata";
|
|
389
|
-
const _REI = "RealtimeEndpointInfo";
|
|
390
|
-
const _RI = "ResourceId";
|
|
391
|
-
const _RM = "RedshiftMetadata";
|
|
392
|
-
const _RNFE = "ResourceNotFoundException";
|
|
393
|
-
const _RR = "ResourceRole";
|
|
394
|
-
const _RT = "ResourceType";
|
|
395
|
-
const _RU = "RecipeUri";
|
|
396
|
-
const _Re = "Results";
|
|
397
|
-
const _Rec = "Record";
|
|
398
|
-
const _S = "Status";
|
|
399
|
-
const _SA = "StartedAt";
|
|
400
|
-
const _SDS = "S3DataSpec";
|
|
401
|
-
const _SGI = "SecurityGroupIds";
|
|
402
|
-
const _SI = "SubnetId";
|
|
403
|
-
const _SIB = "SizeInBytes";
|
|
404
|
-
const _SO = "SortOrder";
|
|
405
|
-
const _SR = "ServiceRole";
|
|
406
|
-
const _SSL = "S3StagingLocation";
|
|
407
|
-
const _SSQ = "SelectSqlQuery";
|
|
408
|
-
const _ST = "ScoreThreshold";
|
|
409
|
-
const _STLUA = "ScoreThresholdLastUpdatedAt";
|
|
410
|
-
const _Sc = "Schema";
|
|
411
|
-
const _T = "Tags";
|
|
412
|
-
const _TDSI = "TrainingDataSourceId";
|
|
413
|
-
const _TK = "TagKeys";
|
|
414
|
-
const _TL = "TagList";
|
|
415
|
-
const _TLEE = "TagLimitExceededException";
|
|
416
|
-
const _TP = "TrainingParameters";
|
|
417
|
-
const _TRC = "TotalRecordCount";
|
|
418
|
-
const _Ta = "Tag";
|
|
419
|
-
const _U = "Username";
|
|
420
|
-
const _UBP = "UpdateBatchPrediction";
|
|
421
|
-
const _UBPI = "UpdateBatchPredictionInput";
|
|
422
|
-
const _UBPO = "UpdateBatchPredictionOutput";
|
|
423
|
-
const _UDS = "UpdateDataSource";
|
|
424
|
-
const _UDSI = "UpdateDataSourceInput";
|
|
425
|
-
const _UDSO = "UpdateDataSourceOutput";
|
|
426
|
-
const _UE = "UpdateEvaluation";
|
|
427
|
-
const _UEI = "UpdateEvaluationInput";
|
|
428
|
-
const _UEO = "UpdateEvaluationOutput";
|
|
429
|
-
const _UMLM = "UpdateMLModel";
|
|
430
|
-
const _UMLMI = "UpdateMLModelInput";
|
|
431
|
-
const _UMLMO = "UpdateMLModelOutput";
|
|
432
|
-
const _V = "Verbose";
|
|
433
|
-
const _Va = "Value";
|
|
434
|
-
const _c = "client";
|
|
435
|
-
const _co = "code";
|
|
436
|
-
const _d = "details";
|
|
437
|
-
const _e = "error";
|
|
438
|
-
const _hE = "httpError";
|
|
439
|
-
const _m = "message";
|
|
440
|
-
const _pL = "predictedLabel";
|
|
441
|
-
const _pS = "predictedScores";
|
|
442
|
-
const _pV = "predictedValue";
|
|
443
|
-
const _s = "server";
|
|
444
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.machinelearning";
|
|
445
|
-
const n0 = "com.amazonaws.machinelearning";
|
|
446
|
-
var RDSDatabasePassword = [0, n0, _RDSDP, 8, 0];
|
|
447
|
-
var RedshiftDatabasePassword = [0, n0, _RDP, 8, 0];
|
|
448
|
-
var AddTagsInput$ = [3, n0, _ATI,
|
|
449
|
-
0,
|
|
450
|
-
[_T, _RI, _RT],
|
|
451
|
-
[() => TagList, 0, 0], 3
|
|
452
|
-
];
|
|
453
|
-
var AddTagsOutput$ = [3, n0, _ATO,
|
|
454
|
-
0,
|
|
455
|
-
[_RI, _RT],
|
|
456
|
-
[0, 0]
|
|
457
|
-
];
|
|
458
|
-
var BatchPrediction$ = [3, n0, _BP,
|
|
459
|
-
0,
|
|
460
|
-
[_BPI, _MLMI, _BPDSI, _IDLS, _CBIU, _CA, _LUA, _N, _S, _OU, _M, _CT, _FA, _SA, _TRC, _IRC],
|
|
461
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 1, 4, 4, 1, 1]
|
|
462
|
-
];
|
|
463
|
-
var CreateBatchPredictionInput$ = [3, n0, _CBPI,
|
|
464
|
-
0,
|
|
465
|
-
[_BPI, _MLMI, _BPDSI, _OU, _BPN],
|
|
466
|
-
[0, 0, 0, 0, 0], 4
|
|
467
|
-
];
|
|
468
|
-
var CreateBatchPredictionOutput$ = [3, n0, _CBPO,
|
|
469
|
-
0,
|
|
470
|
-
[_BPI],
|
|
471
|
-
[0]
|
|
472
|
-
];
|
|
473
|
-
var CreateDataSourceFromRDSInput$ = [3, n0, _CDSFRDSI,
|
|
474
|
-
0,
|
|
475
|
-
[_DSI, _RDSD, _RARN, _DSN, _CS],
|
|
476
|
-
[0, [() => RDSDataSpec$, 0], 0, 0, 2], 3
|
|
477
|
-
];
|
|
478
|
-
var CreateDataSourceFromRDSOutput$ = [3, n0, _CDSFRDSO,
|
|
479
|
-
0,
|
|
480
|
-
[_DSI],
|
|
481
|
-
[0]
|
|
482
|
-
];
|
|
483
|
-
var CreateDataSourceFromRedshiftInput$ = [3, n0, _CDSFRI,
|
|
484
|
-
0,
|
|
485
|
-
[_DSI, _DS, _RARN, _DSN, _CS],
|
|
486
|
-
[0, [() => RedshiftDataSpec$, 0], 0, 0, 2], 3
|
|
487
|
-
];
|
|
488
|
-
var CreateDataSourceFromRedshiftOutput$ = [3, n0, _CDSFRO,
|
|
489
|
-
0,
|
|
490
|
-
[_DSI],
|
|
491
|
-
[0]
|
|
492
|
-
];
|
|
493
|
-
var CreateDataSourceFromS3Input$ = [3, n0, _CDSFSI,
|
|
494
|
-
0,
|
|
495
|
-
[_DSI, _DS, _DSN, _CS],
|
|
496
|
-
[0, () => S3DataSpec$, 0, 2], 2
|
|
497
|
-
];
|
|
498
|
-
var CreateDataSourceFromS3Output$ = [3, n0, _CDSFSO,
|
|
499
|
-
0,
|
|
500
|
-
[_DSI],
|
|
501
|
-
[0]
|
|
502
|
-
];
|
|
503
|
-
var CreateEvaluationInput$ = [3, n0, _CEI,
|
|
504
|
-
0,
|
|
505
|
-
[_EI, _MLMI, _EDSI, _EN],
|
|
506
|
-
[0, 0, 0, 0], 3
|
|
507
|
-
];
|
|
508
|
-
var CreateEvaluationOutput$ = [3, n0, _CEO,
|
|
509
|
-
0,
|
|
510
|
-
[_EI],
|
|
511
|
-
[0]
|
|
512
|
-
];
|
|
513
|
-
var CreateMLModelInput$ = [3, n0, _CMLMI,
|
|
514
|
-
0,
|
|
515
|
-
[_MLMI, _MLMT, _TDSI, _MLMN, _P, _R, _RU],
|
|
516
|
-
[0, 0, 0, 0, 128 | 0, 0, 0], 3
|
|
517
|
-
];
|
|
518
|
-
var CreateMLModelOutput$ = [3, n0, _CMLMO,
|
|
519
|
-
0,
|
|
520
|
-
[_MLMI],
|
|
521
|
-
[0]
|
|
522
|
-
];
|
|
523
|
-
var CreateRealtimeEndpointInput$ = [3, n0, _CREI,
|
|
524
|
-
0,
|
|
525
|
-
[_MLMI],
|
|
526
|
-
[0], 1
|
|
527
|
-
];
|
|
528
|
-
var CreateRealtimeEndpointOutput$ = [3, n0, _CREO,
|
|
529
|
-
0,
|
|
530
|
-
[_MLMI, _REI],
|
|
531
|
-
[0, () => RealtimeEndpointInfo$]
|
|
532
|
-
];
|
|
533
|
-
var DataSource$ = [3, n0, _DSa,
|
|
534
|
-
0,
|
|
535
|
-
[_DSI, _DLS, _DR, _CBIU, _CA, _LUA, _DSIB, _NOF, _N, _S, _M, _RM, _RDSM, _RARN, _CS, _CT, _FA, _SA],
|
|
536
|
-
[0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 0, () => RedshiftMetadata$, () => RDSMetadata$, 0, 2, 1, 4, 4]
|
|
537
|
-
];
|
|
538
|
-
var DeleteBatchPredictionInput$ = [3, n0, _DBPI,
|
|
539
|
-
0,
|
|
540
|
-
[_BPI],
|
|
541
|
-
[0], 1
|
|
542
|
-
];
|
|
543
|
-
var DeleteBatchPredictionOutput$ = [3, n0, _DBPO,
|
|
544
|
-
0,
|
|
545
|
-
[_BPI],
|
|
546
|
-
[0]
|
|
547
|
-
];
|
|
548
|
-
var DeleteDataSourceInput$ = [3, n0, _DDSI,
|
|
549
|
-
0,
|
|
550
|
-
[_DSI],
|
|
551
|
-
[0], 1
|
|
552
|
-
];
|
|
553
|
-
var DeleteDataSourceOutput$ = [3, n0, _DDSO,
|
|
554
|
-
0,
|
|
555
|
-
[_DSI],
|
|
556
|
-
[0]
|
|
557
|
-
];
|
|
558
|
-
var DeleteEvaluationInput$ = [3, n0, _DEI,
|
|
559
|
-
0,
|
|
560
|
-
[_EI],
|
|
561
|
-
[0], 1
|
|
562
|
-
];
|
|
563
|
-
var DeleteEvaluationOutput$ = [3, n0, _DEO,
|
|
564
|
-
0,
|
|
565
|
-
[_EI],
|
|
566
|
-
[0]
|
|
567
|
-
];
|
|
568
|
-
var DeleteMLModelInput$ = [3, n0, _DMLMI,
|
|
569
|
-
0,
|
|
570
|
-
[_MLMI],
|
|
571
|
-
[0], 1
|
|
572
|
-
];
|
|
573
|
-
var DeleteMLModelOutput$ = [3, n0, _DMLMO,
|
|
574
|
-
0,
|
|
575
|
-
[_MLMI],
|
|
576
|
-
[0]
|
|
577
|
-
];
|
|
578
|
-
var DeleteRealtimeEndpointInput$ = [3, n0, _DREI,
|
|
579
|
-
0,
|
|
580
|
-
[_MLMI],
|
|
581
|
-
[0], 1
|
|
582
|
-
];
|
|
583
|
-
var DeleteRealtimeEndpointOutput$ = [3, n0, _DREO,
|
|
584
|
-
0,
|
|
585
|
-
[_MLMI, _REI],
|
|
586
|
-
[0, () => RealtimeEndpointInfo$]
|
|
587
|
-
];
|
|
588
|
-
var DeleteTagsInput$ = [3, n0, _DTI,
|
|
589
|
-
0,
|
|
590
|
-
[_TK, _RI, _RT],
|
|
591
|
-
[64 | 0, 0, 0], 3
|
|
592
|
-
];
|
|
593
|
-
var DeleteTagsOutput$ = [3, n0, _DTO,
|
|
594
|
-
0,
|
|
595
|
-
[_RI, _RT],
|
|
596
|
-
[0, 0]
|
|
597
|
-
];
|
|
598
|
-
var DescribeBatchPredictionsInput$ = [3, n0, _DBPIe,
|
|
599
|
-
0,
|
|
600
|
-
[_FV, _EQ, _GT, _LT, _GE, _LE, _NE, _Pr, _SO, _NT, _L],
|
|
601
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]
|
|
602
|
-
];
|
|
603
|
-
var DescribeBatchPredictionsOutput$ = [3, n0, _DBPOe,
|
|
604
|
-
0,
|
|
605
|
-
[_Re, _NT],
|
|
606
|
-
[() => BatchPredictions, 0]
|
|
607
|
-
];
|
|
608
|
-
var DescribeDataSourcesInput$ = [3, n0, _DDSIe,
|
|
609
|
-
0,
|
|
610
|
-
[_FV, _EQ, _GT, _LT, _GE, _LE, _NE, _Pr, _SO, _NT, _L],
|
|
611
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]
|
|
612
|
-
];
|
|
613
|
-
var DescribeDataSourcesOutput$ = [3, n0, _DDSOe,
|
|
614
|
-
0,
|
|
615
|
-
[_Re, _NT],
|
|
616
|
-
[() => DataSources, 0]
|
|
617
|
-
];
|
|
618
|
-
var DescribeEvaluationsInput$ = [3, n0, _DEIe,
|
|
619
|
-
0,
|
|
620
|
-
[_FV, _EQ, _GT, _LT, _GE, _LE, _NE, _Pr, _SO, _NT, _L],
|
|
621
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]
|
|
622
|
-
];
|
|
623
|
-
var DescribeEvaluationsOutput$ = [3, n0, _DEOe,
|
|
624
|
-
0,
|
|
625
|
-
[_Re, _NT],
|
|
626
|
-
[() => Evaluations, 0]
|
|
627
|
-
];
|
|
628
|
-
var DescribeMLModelsInput$ = [3, n0, _DMLMIe,
|
|
629
|
-
0,
|
|
630
|
-
[_FV, _EQ, _GT, _LT, _GE, _LE, _NE, _Pr, _SO, _NT, _L],
|
|
631
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]
|
|
632
|
-
];
|
|
633
|
-
var DescribeMLModelsOutput$ = [3, n0, _DMLMOe,
|
|
634
|
-
0,
|
|
635
|
-
[_Re, _NT],
|
|
636
|
-
[() => MLModels, 0]
|
|
637
|
-
];
|
|
638
|
-
var DescribeTagsInput$ = [3, n0, _DTIe,
|
|
639
|
-
0,
|
|
640
|
-
[_RI, _RT],
|
|
641
|
-
[0, 0], 2
|
|
642
|
-
];
|
|
643
|
-
var DescribeTagsOutput$ = [3, n0, _DTOe,
|
|
644
|
-
0,
|
|
645
|
-
[_RI, _RT, _T],
|
|
646
|
-
[0, 0, () => TagList]
|
|
647
|
-
];
|
|
648
|
-
var Evaluation$ = [3, n0, _E,
|
|
649
|
-
0,
|
|
650
|
-
[_EI, _MLMI, _EDSI, _IDLS, _CBIU, _CA, _LUA, _N, _S, _PM, _M, _CT, _FA, _SA],
|
|
651
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, () => PerformanceMetrics$, 0, 1, 4, 4]
|
|
652
|
-
];
|
|
653
|
-
var GetBatchPredictionInput$ = [3, n0, _GBPI,
|
|
654
|
-
0,
|
|
655
|
-
[_BPI],
|
|
656
|
-
[0], 1
|
|
657
|
-
];
|
|
658
|
-
var GetBatchPredictionOutput$ = [3, n0, _GBPO,
|
|
659
|
-
0,
|
|
660
|
-
[_BPI, _MLMI, _BPDSI, _IDLS, _CBIU, _CA, _LUA, _N, _S, _OU, _LU, _M, _CT, _FA, _SA, _TRC, _IRC],
|
|
661
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 1, 4, 4, 1, 1]
|
|
662
|
-
];
|
|
663
|
-
var GetDataSourceInput$ = [3, n0, _GDSI,
|
|
664
|
-
0,
|
|
665
|
-
[_DSI, _V],
|
|
666
|
-
[0, 2], 1
|
|
667
|
-
];
|
|
668
|
-
var GetDataSourceOutput$ = [3, n0, _GDSO,
|
|
669
|
-
0,
|
|
670
|
-
[_DSI, _DLS, _DR, _CBIU, _CA, _LUA, _DSIB, _NOF, _N, _S, _LU, _M, _RM, _RDSM, _RARN, _CS, _CT, _FA, _SA, _DSS],
|
|
671
|
-
[0, 0, 0, 0, 4, 4, 1, 1, 0, 0, 0, 0, () => RedshiftMetadata$, () => RDSMetadata$, 0, 2, 1, 4, 4, 0]
|
|
672
|
-
];
|
|
673
|
-
var GetEvaluationInput$ = [3, n0, _GEI,
|
|
674
|
-
0,
|
|
675
|
-
[_EI],
|
|
676
|
-
[0], 1
|
|
677
|
-
];
|
|
678
|
-
var GetEvaluationOutput$ = [3, n0, _GEO,
|
|
679
|
-
0,
|
|
680
|
-
[_EI, _MLMI, _EDSI, _IDLS, _CBIU, _CA, _LUA, _N, _S, _PM, _LU, _M, _CT, _FA, _SA],
|
|
681
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, () => PerformanceMetrics$, 0, 0, 1, 4, 4]
|
|
682
|
-
];
|
|
683
|
-
var GetMLModelInput$ = [3, n0, _GMLMI,
|
|
684
|
-
0,
|
|
685
|
-
[_MLMI, _V],
|
|
686
|
-
[0, 2], 1
|
|
687
|
-
];
|
|
688
|
-
var GetMLModelOutput$ = [3, n0, _GMLMO,
|
|
689
|
-
0,
|
|
690
|
-
[_MLMI, _TDSI, _CBIU, _CA, _LUA, _N, _S, _SIB, _EIn, _TP, _IDLS, _MLMT, _ST, _STLUA, _LU, _M, _CT, _FA, _SA, _R, _Sc],
|
|
691
|
-
[0, 0, 0, 4, 4, 0, 0, 1, () => RealtimeEndpointInfo$, 128 | 0, 0, 0, 1, 4, 0, 0, 1, 4, 4, 0, 0]
|
|
692
|
-
];
|
|
693
|
-
var IdempotentParameterMismatchException$ = [-3, n0, _IPME,
|
|
694
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
695
|
-
[_m, _co],
|
|
696
|
-
[0, 1]
|
|
697
|
-
];
|
|
698
|
-
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
699
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
700
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
701
|
-
[_m, _co],
|
|
702
|
-
[0, 1]
|
|
703
|
-
];
|
|
704
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
705
|
-
var InvalidInputException$ = [-3, n0, _IIE,
|
|
706
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
707
|
-
[_m, _co],
|
|
708
|
-
[0, 1]
|
|
709
|
-
];
|
|
710
|
-
schema.TypeRegistry.for(n0).registerError(InvalidInputException$, InvalidInputException);
|
|
711
|
-
var InvalidTagException$ = [-3, n0, _ITE,
|
|
712
|
-
{ [_e]: _c },
|
|
713
|
-
[_m],
|
|
714
|
-
[0]
|
|
715
|
-
];
|
|
716
|
-
schema.TypeRegistry.for(n0).registerError(InvalidTagException$, InvalidTagException);
|
|
717
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
718
|
-
{ [_e]: _c, [_hE]: 417 },
|
|
719
|
-
[_m, _co],
|
|
720
|
-
[0, 1]
|
|
721
|
-
];
|
|
722
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
723
|
-
var MLModel$ = [3, n0, _MLM,
|
|
724
|
-
0,
|
|
725
|
-
[_MLMI, _TDSI, _CBIU, _CA, _LUA, _N, _S, _SIB, _EIn, _TP, _IDLS, _A, _MLMT, _ST, _STLUA, _M, _CT, _FA, _SA],
|
|
726
|
-
[0, 0, 0, 4, 4, 0, 0, 1, () => RealtimeEndpointInfo$, 128 | 0, 0, 0, 0, 1, 4, 0, 1, 4, 4]
|
|
727
|
-
];
|
|
728
|
-
var PerformanceMetrics$ = [3, n0, _PM,
|
|
729
|
-
0,
|
|
730
|
-
[_Pro],
|
|
731
|
-
[128 | 0]
|
|
732
|
-
];
|
|
733
|
-
var PredictInput$ = [3, n0, _PI,
|
|
734
|
-
0,
|
|
735
|
-
[_MLMI, _Rec, _PE],
|
|
736
|
-
[0, 128 | 0, 0], 3
|
|
737
|
-
];
|
|
738
|
-
var Prediction$ = [3, n0, _Pre,
|
|
739
|
-
0,
|
|
740
|
-
[_pL, _pV, _pS, _d],
|
|
741
|
-
[0, 1, 128 | 1, 128 | 0]
|
|
742
|
-
];
|
|
743
|
-
var PredictorNotMountedException$ = [-3, n0, _PNME,
|
|
744
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
745
|
-
[_m],
|
|
746
|
-
[0]
|
|
747
|
-
];
|
|
748
|
-
schema.TypeRegistry.for(n0).registerError(PredictorNotMountedException$, PredictorNotMountedException);
|
|
749
|
-
var PredictOutput$ = [3, n0, _PO,
|
|
750
|
-
0,
|
|
751
|
-
[_Pre],
|
|
752
|
-
[() => Prediction$]
|
|
753
|
-
];
|
|
754
|
-
var RDSDatabase$ = [3, n0, _RDSDa,
|
|
755
|
-
0,
|
|
756
|
-
[_II, _DN],
|
|
757
|
-
[0, 0], 2
|
|
758
|
-
];
|
|
759
|
-
var RDSDatabaseCredentials$ = [3, n0, _RDSDC,
|
|
760
|
-
0,
|
|
761
|
-
[_U, _Pa],
|
|
762
|
-
[0, [() => RDSDatabasePassword, 0]], 2
|
|
763
|
-
];
|
|
764
|
-
var RDSDataSpec$ = [3, n0, _RDSDS,
|
|
765
|
-
0,
|
|
766
|
-
[_DI, _SSQ, _DC, _SSL, _RR, _SR, _SI, _SGI, _DR, _DSat, _DSU],
|
|
767
|
-
[() => RDSDatabase$, 0, [() => RDSDatabaseCredentials$, 0], 0, 0, 0, 0, 64 | 0, 0, 0, 0], 8
|
|
768
|
-
];
|
|
769
|
-
var RDSMetadata$ = [3, n0, _RDSM,
|
|
770
|
-
0,
|
|
771
|
-
[_D, _DUN, _SSQ, _RR, _SR, _DPI],
|
|
772
|
-
[() => RDSDatabase$, 0, 0, 0, 0, 0]
|
|
773
|
-
];
|
|
774
|
-
var RealtimeEndpointInfo$ = [3, n0, _REI,
|
|
775
|
-
0,
|
|
776
|
-
[_PRPS, _CA, _EU, _ES],
|
|
777
|
-
[1, 4, 0, 0]
|
|
778
|
-
];
|
|
779
|
-
var RedshiftDatabase$ = [3, n0, _RD,
|
|
780
|
-
0,
|
|
781
|
-
[_DN, _CI],
|
|
782
|
-
[0, 0], 2
|
|
783
|
-
];
|
|
784
|
-
var RedshiftDatabaseCredentials$ = [3, n0, _RDC,
|
|
785
|
-
0,
|
|
786
|
-
[_U, _Pa],
|
|
787
|
-
[0, [() => RedshiftDatabasePassword, 0]], 2
|
|
788
|
-
];
|
|
789
|
-
var RedshiftDataSpec$ = [3, n0, _RDS,
|
|
790
|
-
0,
|
|
791
|
-
[_DI, _SSQ, _DC, _SSL, _DR, _DSat, _DSU],
|
|
792
|
-
[() => RedshiftDatabase$, 0, [() => RedshiftDatabaseCredentials$, 0], 0, 0, 0, 0], 4
|
|
793
|
-
];
|
|
794
|
-
var RedshiftMetadata$ = [3, n0, _RM,
|
|
795
|
-
0,
|
|
796
|
-
[_RD, _DUN, _SSQ],
|
|
797
|
-
[() => RedshiftDatabase$, 0, 0]
|
|
798
|
-
];
|
|
799
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
800
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
801
|
-
[_m, _co],
|
|
802
|
-
[0, 1]
|
|
803
|
-
];
|
|
804
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
805
|
-
var S3DataSpec$ = [3, n0, _SDS,
|
|
806
|
-
0,
|
|
807
|
-
[_DLS, _DR, _DSat, _DSLS],
|
|
808
|
-
[0, 0, 0, 0], 1
|
|
809
|
-
];
|
|
810
|
-
var Tag$ = [3, n0, _Ta,
|
|
811
|
-
0,
|
|
812
|
-
[_K, _Va],
|
|
813
|
-
[0, 0]
|
|
814
|
-
];
|
|
815
|
-
var TagLimitExceededException$ = [-3, n0, _TLEE,
|
|
816
|
-
{ [_e]: _c },
|
|
817
|
-
[_m],
|
|
818
|
-
[0]
|
|
819
|
-
];
|
|
820
|
-
schema.TypeRegistry.for(n0).registerError(TagLimitExceededException$, TagLimitExceededException);
|
|
821
|
-
var UpdateBatchPredictionInput$ = [3, n0, _UBPI,
|
|
822
|
-
0,
|
|
823
|
-
[_BPI, _BPN],
|
|
824
|
-
[0, 0], 2
|
|
825
|
-
];
|
|
826
|
-
var UpdateBatchPredictionOutput$ = [3, n0, _UBPO,
|
|
827
|
-
0,
|
|
828
|
-
[_BPI],
|
|
829
|
-
[0]
|
|
830
|
-
];
|
|
831
|
-
var UpdateDataSourceInput$ = [3, n0, _UDSI,
|
|
832
|
-
0,
|
|
833
|
-
[_DSI, _DSN],
|
|
834
|
-
[0, 0], 2
|
|
835
|
-
];
|
|
836
|
-
var UpdateDataSourceOutput$ = [3, n0, _UDSO,
|
|
837
|
-
0,
|
|
838
|
-
[_DSI],
|
|
839
|
-
[0]
|
|
840
|
-
];
|
|
841
|
-
var UpdateEvaluationInput$ = [3, n0, _UEI,
|
|
842
|
-
0,
|
|
843
|
-
[_EI, _EN],
|
|
844
|
-
[0, 0], 2
|
|
845
|
-
];
|
|
846
|
-
var UpdateEvaluationOutput$ = [3, n0, _UEO,
|
|
847
|
-
0,
|
|
848
|
-
[_EI],
|
|
849
|
-
[0]
|
|
850
|
-
];
|
|
851
|
-
var UpdateMLModelInput$ = [3, n0, _UMLMI,
|
|
852
|
-
0,
|
|
853
|
-
[_MLMI, _MLMN, _ST],
|
|
854
|
-
[0, 0, 1], 1
|
|
855
|
-
];
|
|
856
|
-
var UpdateMLModelOutput$ = [3, n0, _UMLMO,
|
|
857
|
-
0,
|
|
858
|
-
[_MLMI],
|
|
859
|
-
[0]
|
|
860
|
-
];
|
|
861
|
-
var MachineLearningServiceException$ = [-3, _sm, "MachineLearningServiceException", 0, [], []];
|
|
862
|
-
schema.TypeRegistry.for(_sm).registerError(MachineLearningServiceException$, MachineLearningServiceException);
|
|
863
|
-
var BatchPredictions = [1, n0, _BPa,
|
|
864
|
-
0, () => BatchPrediction$
|
|
865
|
-
];
|
|
866
|
-
var DataSources = [1, n0, _DSata,
|
|
867
|
-
0, () => DataSource$
|
|
868
|
-
];
|
|
869
|
-
var Evaluations = [1, n0, _Ev,
|
|
870
|
-
0, () => Evaluation$
|
|
871
|
-
];
|
|
872
|
-
var MLModels = [1, n0, _MLMo,
|
|
873
|
-
0, () => MLModel$
|
|
874
|
-
];
|
|
875
|
-
var TagList = [1, n0, _TL,
|
|
876
|
-
0, () => Tag$
|
|
877
|
-
];
|
|
878
|
-
var AddTags$ = [9, n0, _AT,
|
|
879
|
-
0, () => AddTagsInput$, () => AddTagsOutput$
|
|
880
|
-
];
|
|
881
|
-
var CreateBatchPrediction$ = [9, n0, _CBP,
|
|
882
|
-
0, () => CreateBatchPredictionInput$, () => CreateBatchPredictionOutput$
|
|
883
|
-
];
|
|
884
|
-
var CreateDataSourceFromRDS$ = [9, n0, _CDSFRDS,
|
|
885
|
-
0, () => CreateDataSourceFromRDSInput$, () => CreateDataSourceFromRDSOutput$
|
|
886
|
-
];
|
|
887
|
-
var CreateDataSourceFromRedshift$ = [9, n0, _CDSFR,
|
|
888
|
-
0, () => CreateDataSourceFromRedshiftInput$, () => CreateDataSourceFromRedshiftOutput$
|
|
889
|
-
];
|
|
890
|
-
var CreateDataSourceFromS3$ = [9, n0, _CDSFS,
|
|
891
|
-
0, () => CreateDataSourceFromS3Input$, () => CreateDataSourceFromS3Output$
|
|
892
|
-
];
|
|
893
|
-
var CreateEvaluation$ = [9, n0, _CE,
|
|
894
|
-
0, () => CreateEvaluationInput$, () => CreateEvaluationOutput$
|
|
895
|
-
];
|
|
896
|
-
var CreateMLModel$ = [9, n0, _CMLM,
|
|
897
|
-
0, () => CreateMLModelInput$, () => CreateMLModelOutput$
|
|
898
|
-
];
|
|
899
|
-
var CreateRealtimeEndpoint$ = [9, n0, _CRE,
|
|
900
|
-
0, () => CreateRealtimeEndpointInput$, () => CreateRealtimeEndpointOutput$
|
|
901
|
-
];
|
|
902
|
-
var DeleteBatchPrediction$ = [9, n0, _DBP,
|
|
903
|
-
0, () => DeleteBatchPredictionInput$, () => DeleteBatchPredictionOutput$
|
|
904
|
-
];
|
|
905
|
-
var DeleteDataSource$ = [9, n0, _DDS,
|
|
906
|
-
0, () => DeleteDataSourceInput$, () => DeleteDataSourceOutput$
|
|
907
|
-
];
|
|
908
|
-
var DeleteEvaluation$ = [9, n0, _DE,
|
|
909
|
-
0, () => DeleteEvaluationInput$, () => DeleteEvaluationOutput$
|
|
910
|
-
];
|
|
911
|
-
var DeleteMLModel$ = [9, n0, _DMLM,
|
|
912
|
-
0, () => DeleteMLModelInput$, () => DeleteMLModelOutput$
|
|
913
|
-
];
|
|
914
|
-
var DeleteRealtimeEndpoint$ = [9, n0, _DRE,
|
|
915
|
-
0, () => DeleteRealtimeEndpointInput$, () => DeleteRealtimeEndpointOutput$
|
|
916
|
-
];
|
|
917
|
-
var DeleteTags$ = [9, n0, _DT,
|
|
918
|
-
0, () => DeleteTagsInput$, () => DeleteTagsOutput$
|
|
919
|
-
];
|
|
920
|
-
var DescribeBatchPredictions$ = [9, n0, _DBPe,
|
|
921
|
-
0, () => DescribeBatchPredictionsInput$, () => DescribeBatchPredictionsOutput$
|
|
922
|
-
];
|
|
923
|
-
var DescribeDataSources$ = [9, n0, _DDSe,
|
|
924
|
-
0, () => DescribeDataSourcesInput$, () => DescribeDataSourcesOutput$
|
|
925
|
-
];
|
|
926
|
-
var DescribeEvaluations$ = [9, n0, _DEe,
|
|
927
|
-
0, () => DescribeEvaluationsInput$, () => DescribeEvaluationsOutput$
|
|
928
|
-
];
|
|
929
|
-
var DescribeMLModels$ = [9, n0, _DMLMe,
|
|
930
|
-
0, () => DescribeMLModelsInput$, () => DescribeMLModelsOutput$
|
|
931
|
-
];
|
|
932
|
-
var DescribeTags$ = [9, n0, _DTe,
|
|
933
|
-
0, () => DescribeTagsInput$, () => DescribeTagsOutput$
|
|
934
|
-
];
|
|
935
|
-
var GetBatchPrediction$ = [9, n0, _GBP,
|
|
936
|
-
0, () => GetBatchPredictionInput$, () => GetBatchPredictionOutput$
|
|
937
|
-
];
|
|
938
|
-
var GetDataSource$ = [9, n0, _GDS,
|
|
939
|
-
0, () => GetDataSourceInput$, () => GetDataSourceOutput$
|
|
940
|
-
];
|
|
941
|
-
var GetEvaluation$ = [9, n0, _GEe,
|
|
942
|
-
0, () => GetEvaluationInput$, () => GetEvaluationOutput$
|
|
943
|
-
];
|
|
944
|
-
var GetMLModel$ = [9, n0, _GMLM,
|
|
945
|
-
0, () => GetMLModelInput$, () => GetMLModelOutput$
|
|
946
|
-
];
|
|
947
|
-
var Predict$ = [9, n0, _Pred,
|
|
948
|
-
0, () => PredictInput$, () => PredictOutput$
|
|
949
|
-
];
|
|
950
|
-
var UpdateBatchPrediction$ = [9, n0, _UBP,
|
|
951
|
-
0, () => UpdateBatchPredictionInput$, () => UpdateBatchPredictionOutput$
|
|
952
|
-
];
|
|
953
|
-
var UpdateDataSource$ = [9, n0, _UDS,
|
|
954
|
-
0, () => UpdateDataSourceInput$, () => UpdateDataSourceOutput$
|
|
955
|
-
];
|
|
956
|
-
var UpdateEvaluation$ = [9, n0, _UE,
|
|
957
|
-
0, () => UpdateEvaluationInput$, () => UpdateEvaluationOutput$
|
|
958
|
-
];
|
|
959
|
-
var UpdateMLModel$ = [9, n0, _UMLM,
|
|
960
|
-
0, () => UpdateMLModelInput$, () => UpdateMLModelOutput$
|
|
961
|
-
];
|
|
962
|
-
|
|
963
118
|
class AddTagsCommand extends smithyClient.Command
|
|
964
119
|
.classBuilder()
|
|
965
120
|
.ep(commonParams)
|
|
@@ -968,7 +123,7 @@ class AddTagsCommand extends smithyClient.Command
|
|
|
968
123
|
})
|
|
969
124
|
.s("AmazonML_20141212", "AddTags", {})
|
|
970
125
|
.n("MachineLearningClient", "AddTagsCommand")
|
|
971
|
-
.sc(AddTags$)
|
|
126
|
+
.sc(schemas_0.AddTags$)
|
|
972
127
|
.build() {
|
|
973
128
|
}
|
|
974
129
|
|
|
@@ -980,7 +135,7 @@ class CreateBatchPredictionCommand extends smithyClient.Command
|
|
|
980
135
|
})
|
|
981
136
|
.s("AmazonML_20141212", "CreateBatchPrediction", {})
|
|
982
137
|
.n("MachineLearningClient", "CreateBatchPredictionCommand")
|
|
983
|
-
.sc(CreateBatchPrediction$)
|
|
138
|
+
.sc(schemas_0.CreateBatchPrediction$)
|
|
984
139
|
.build() {
|
|
985
140
|
}
|
|
986
141
|
|
|
@@ -992,7 +147,7 @@ class CreateDataSourceFromRDSCommand extends smithyClient.Command
|
|
|
992
147
|
})
|
|
993
148
|
.s("AmazonML_20141212", "CreateDataSourceFromRDS", {})
|
|
994
149
|
.n("MachineLearningClient", "CreateDataSourceFromRDSCommand")
|
|
995
|
-
.sc(CreateDataSourceFromRDS$)
|
|
150
|
+
.sc(schemas_0.CreateDataSourceFromRDS$)
|
|
996
151
|
.build() {
|
|
997
152
|
}
|
|
998
153
|
|
|
@@ -1004,7 +159,7 @@ class CreateDataSourceFromRedshiftCommand extends smithyClient.Command
|
|
|
1004
159
|
})
|
|
1005
160
|
.s("AmazonML_20141212", "CreateDataSourceFromRedshift", {})
|
|
1006
161
|
.n("MachineLearningClient", "CreateDataSourceFromRedshiftCommand")
|
|
1007
|
-
.sc(CreateDataSourceFromRedshift$)
|
|
162
|
+
.sc(schemas_0.CreateDataSourceFromRedshift$)
|
|
1008
163
|
.build() {
|
|
1009
164
|
}
|
|
1010
165
|
|
|
@@ -1016,7 +171,7 @@ class CreateDataSourceFromS3Command extends smithyClient.Command
|
|
|
1016
171
|
})
|
|
1017
172
|
.s("AmazonML_20141212", "CreateDataSourceFromS3", {})
|
|
1018
173
|
.n("MachineLearningClient", "CreateDataSourceFromS3Command")
|
|
1019
|
-
.sc(CreateDataSourceFromS3$)
|
|
174
|
+
.sc(schemas_0.CreateDataSourceFromS3$)
|
|
1020
175
|
.build() {
|
|
1021
176
|
}
|
|
1022
177
|
|
|
@@ -1028,7 +183,7 @@ class CreateEvaluationCommand extends smithyClient.Command
|
|
|
1028
183
|
})
|
|
1029
184
|
.s("AmazonML_20141212", "CreateEvaluation", {})
|
|
1030
185
|
.n("MachineLearningClient", "CreateEvaluationCommand")
|
|
1031
|
-
.sc(CreateEvaluation$)
|
|
186
|
+
.sc(schemas_0.CreateEvaluation$)
|
|
1032
187
|
.build() {
|
|
1033
188
|
}
|
|
1034
189
|
|
|
@@ -1040,7 +195,7 @@ class CreateMLModelCommand extends smithyClient.Command
|
|
|
1040
195
|
})
|
|
1041
196
|
.s("AmazonML_20141212", "CreateMLModel", {})
|
|
1042
197
|
.n("MachineLearningClient", "CreateMLModelCommand")
|
|
1043
|
-
.sc(CreateMLModel$)
|
|
198
|
+
.sc(schemas_0.CreateMLModel$)
|
|
1044
199
|
.build() {
|
|
1045
200
|
}
|
|
1046
201
|
|
|
@@ -1052,7 +207,7 @@ class CreateRealtimeEndpointCommand extends smithyClient.Command
|
|
|
1052
207
|
})
|
|
1053
208
|
.s("AmazonML_20141212", "CreateRealtimeEndpoint", {})
|
|
1054
209
|
.n("MachineLearningClient", "CreateRealtimeEndpointCommand")
|
|
1055
|
-
.sc(CreateRealtimeEndpoint$)
|
|
210
|
+
.sc(schemas_0.CreateRealtimeEndpoint$)
|
|
1056
211
|
.build() {
|
|
1057
212
|
}
|
|
1058
213
|
|
|
@@ -1064,7 +219,7 @@ class DeleteBatchPredictionCommand extends smithyClient.Command
|
|
|
1064
219
|
})
|
|
1065
220
|
.s("AmazonML_20141212", "DeleteBatchPrediction", {})
|
|
1066
221
|
.n("MachineLearningClient", "DeleteBatchPredictionCommand")
|
|
1067
|
-
.sc(DeleteBatchPrediction$)
|
|
222
|
+
.sc(schemas_0.DeleteBatchPrediction$)
|
|
1068
223
|
.build() {
|
|
1069
224
|
}
|
|
1070
225
|
|
|
@@ -1076,7 +231,7 @@ class DeleteDataSourceCommand extends smithyClient.Command
|
|
|
1076
231
|
})
|
|
1077
232
|
.s("AmazonML_20141212", "DeleteDataSource", {})
|
|
1078
233
|
.n("MachineLearningClient", "DeleteDataSourceCommand")
|
|
1079
|
-
.sc(DeleteDataSource$)
|
|
234
|
+
.sc(schemas_0.DeleteDataSource$)
|
|
1080
235
|
.build() {
|
|
1081
236
|
}
|
|
1082
237
|
|
|
@@ -1088,7 +243,7 @@ class DeleteEvaluationCommand extends smithyClient.Command
|
|
|
1088
243
|
})
|
|
1089
244
|
.s("AmazonML_20141212", "DeleteEvaluation", {})
|
|
1090
245
|
.n("MachineLearningClient", "DeleteEvaluationCommand")
|
|
1091
|
-
.sc(DeleteEvaluation$)
|
|
246
|
+
.sc(schemas_0.DeleteEvaluation$)
|
|
1092
247
|
.build() {
|
|
1093
248
|
}
|
|
1094
249
|
|
|
@@ -1100,7 +255,7 @@ class DeleteMLModelCommand extends smithyClient.Command
|
|
|
1100
255
|
})
|
|
1101
256
|
.s("AmazonML_20141212", "DeleteMLModel", {})
|
|
1102
257
|
.n("MachineLearningClient", "DeleteMLModelCommand")
|
|
1103
|
-
.sc(DeleteMLModel$)
|
|
258
|
+
.sc(schemas_0.DeleteMLModel$)
|
|
1104
259
|
.build() {
|
|
1105
260
|
}
|
|
1106
261
|
|
|
@@ -1112,7 +267,7 @@ class DeleteRealtimeEndpointCommand extends smithyClient.Command
|
|
|
1112
267
|
})
|
|
1113
268
|
.s("AmazonML_20141212", "DeleteRealtimeEndpoint", {})
|
|
1114
269
|
.n("MachineLearningClient", "DeleteRealtimeEndpointCommand")
|
|
1115
|
-
.sc(DeleteRealtimeEndpoint$)
|
|
270
|
+
.sc(schemas_0.DeleteRealtimeEndpoint$)
|
|
1116
271
|
.build() {
|
|
1117
272
|
}
|
|
1118
273
|
|
|
@@ -1124,7 +279,7 @@ class DeleteTagsCommand extends smithyClient.Command
|
|
|
1124
279
|
})
|
|
1125
280
|
.s("AmazonML_20141212", "DeleteTags", {})
|
|
1126
281
|
.n("MachineLearningClient", "DeleteTagsCommand")
|
|
1127
|
-
.sc(DeleteTags$)
|
|
282
|
+
.sc(schemas_0.DeleteTags$)
|
|
1128
283
|
.build() {
|
|
1129
284
|
}
|
|
1130
285
|
|
|
@@ -1136,7 +291,7 @@ class DescribeBatchPredictionsCommand extends smithyClient.Command
|
|
|
1136
291
|
})
|
|
1137
292
|
.s("AmazonML_20141212", "DescribeBatchPredictions", {})
|
|
1138
293
|
.n("MachineLearningClient", "DescribeBatchPredictionsCommand")
|
|
1139
|
-
.sc(DescribeBatchPredictions$)
|
|
294
|
+
.sc(schemas_0.DescribeBatchPredictions$)
|
|
1140
295
|
.build() {
|
|
1141
296
|
}
|
|
1142
297
|
|
|
@@ -1148,7 +303,7 @@ class DescribeDataSourcesCommand extends smithyClient.Command
|
|
|
1148
303
|
})
|
|
1149
304
|
.s("AmazonML_20141212", "DescribeDataSources", {})
|
|
1150
305
|
.n("MachineLearningClient", "DescribeDataSourcesCommand")
|
|
1151
|
-
.sc(DescribeDataSources$)
|
|
306
|
+
.sc(schemas_0.DescribeDataSources$)
|
|
1152
307
|
.build() {
|
|
1153
308
|
}
|
|
1154
309
|
|
|
@@ -1160,7 +315,7 @@ class DescribeEvaluationsCommand extends smithyClient.Command
|
|
|
1160
315
|
})
|
|
1161
316
|
.s("AmazonML_20141212", "DescribeEvaluations", {})
|
|
1162
317
|
.n("MachineLearningClient", "DescribeEvaluationsCommand")
|
|
1163
|
-
.sc(DescribeEvaluations$)
|
|
318
|
+
.sc(schemas_0.DescribeEvaluations$)
|
|
1164
319
|
.build() {
|
|
1165
320
|
}
|
|
1166
321
|
|
|
@@ -1172,7 +327,7 @@ class DescribeMLModelsCommand extends smithyClient.Command
|
|
|
1172
327
|
})
|
|
1173
328
|
.s("AmazonML_20141212", "DescribeMLModels", {})
|
|
1174
329
|
.n("MachineLearningClient", "DescribeMLModelsCommand")
|
|
1175
|
-
.sc(DescribeMLModels$)
|
|
330
|
+
.sc(schemas_0.DescribeMLModels$)
|
|
1176
331
|
.build() {
|
|
1177
332
|
}
|
|
1178
333
|
|
|
@@ -1184,7 +339,7 @@ class DescribeTagsCommand extends smithyClient.Command
|
|
|
1184
339
|
})
|
|
1185
340
|
.s("AmazonML_20141212", "DescribeTags", {})
|
|
1186
341
|
.n("MachineLearningClient", "DescribeTagsCommand")
|
|
1187
|
-
.sc(DescribeTags$)
|
|
342
|
+
.sc(schemas_0.DescribeTags$)
|
|
1188
343
|
.build() {
|
|
1189
344
|
}
|
|
1190
345
|
|
|
@@ -1196,7 +351,7 @@ class GetBatchPredictionCommand extends smithyClient.Command
|
|
|
1196
351
|
})
|
|
1197
352
|
.s("AmazonML_20141212", "GetBatchPrediction", {})
|
|
1198
353
|
.n("MachineLearningClient", "GetBatchPredictionCommand")
|
|
1199
|
-
.sc(GetBatchPrediction$)
|
|
354
|
+
.sc(schemas_0.GetBatchPrediction$)
|
|
1200
355
|
.build() {
|
|
1201
356
|
}
|
|
1202
357
|
|
|
@@ -1208,7 +363,7 @@ class GetDataSourceCommand extends smithyClient.Command
|
|
|
1208
363
|
})
|
|
1209
364
|
.s("AmazonML_20141212", "GetDataSource", {})
|
|
1210
365
|
.n("MachineLearningClient", "GetDataSourceCommand")
|
|
1211
|
-
.sc(GetDataSource$)
|
|
366
|
+
.sc(schemas_0.GetDataSource$)
|
|
1212
367
|
.build() {
|
|
1213
368
|
}
|
|
1214
369
|
|
|
@@ -1220,7 +375,7 @@ class GetEvaluationCommand extends smithyClient.Command
|
|
|
1220
375
|
})
|
|
1221
376
|
.s("AmazonML_20141212", "GetEvaluation", {})
|
|
1222
377
|
.n("MachineLearningClient", "GetEvaluationCommand")
|
|
1223
|
-
.sc(GetEvaluation$)
|
|
378
|
+
.sc(schemas_0.GetEvaluation$)
|
|
1224
379
|
.build() {
|
|
1225
380
|
}
|
|
1226
381
|
|
|
@@ -1232,7 +387,7 @@ class GetMLModelCommand extends smithyClient.Command
|
|
|
1232
387
|
})
|
|
1233
388
|
.s("AmazonML_20141212", "GetMLModel", {})
|
|
1234
389
|
.n("MachineLearningClient", "GetMLModelCommand")
|
|
1235
|
-
.sc(GetMLModel$)
|
|
390
|
+
.sc(schemas_0.GetMLModel$)
|
|
1236
391
|
.build() {
|
|
1237
392
|
}
|
|
1238
393
|
|
|
@@ -1247,7 +402,7 @@ class PredictCommand extends smithyClient.Command
|
|
|
1247
402
|
})
|
|
1248
403
|
.s("AmazonML_20141212", "Predict", {})
|
|
1249
404
|
.n("MachineLearningClient", "PredictCommand")
|
|
1250
|
-
.sc(Predict$)
|
|
405
|
+
.sc(schemas_0.Predict$)
|
|
1251
406
|
.build() {
|
|
1252
407
|
}
|
|
1253
408
|
|
|
@@ -1259,7 +414,7 @@ class UpdateBatchPredictionCommand extends smithyClient.Command
|
|
|
1259
414
|
})
|
|
1260
415
|
.s("AmazonML_20141212", "UpdateBatchPrediction", {})
|
|
1261
416
|
.n("MachineLearningClient", "UpdateBatchPredictionCommand")
|
|
1262
|
-
.sc(UpdateBatchPrediction$)
|
|
417
|
+
.sc(schemas_0.UpdateBatchPrediction$)
|
|
1263
418
|
.build() {
|
|
1264
419
|
}
|
|
1265
420
|
|
|
@@ -1271,7 +426,7 @@ class UpdateDataSourceCommand extends smithyClient.Command
|
|
|
1271
426
|
})
|
|
1272
427
|
.s("AmazonML_20141212", "UpdateDataSource", {})
|
|
1273
428
|
.n("MachineLearningClient", "UpdateDataSourceCommand")
|
|
1274
|
-
.sc(UpdateDataSource$)
|
|
429
|
+
.sc(schemas_0.UpdateDataSource$)
|
|
1275
430
|
.build() {
|
|
1276
431
|
}
|
|
1277
432
|
|
|
@@ -1283,7 +438,7 @@ class UpdateEvaluationCommand extends smithyClient.Command
|
|
|
1283
438
|
})
|
|
1284
439
|
.s("AmazonML_20141212", "UpdateEvaluation", {})
|
|
1285
440
|
.n("MachineLearningClient", "UpdateEvaluationCommand")
|
|
1286
|
-
.sc(UpdateEvaluation$)
|
|
441
|
+
.sc(schemas_0.UpdateEvaluation$)
|
|
1287
442
|
.build() {
|
|
1288
443
|
}
|
|
1289
444
|
|
|
@@ -1295,7 +450,7 @@ class UpdateMLModelCommand extends smithyClient.Command
|
|
|
1295
450
|
})
|
|
1296
451
|
.s("AmazonML_20141212", "UpdateMLModel", {})
|
|
1297
452
|
.n("MachineLearningClient", "UpdateMLModelCommand")
|
|
1298
|
-
.sc(UpdateMLModel$)
|
|
453
|
+
.sc(schemas_0.UpdateMLModel$)
|
|
1299
454
|
.build() {
|
|
1300
455
|
}
|
|
1301
456
|
|
|
@@ -1649,166 +804,51 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1649
804
|
enumerable: true,
|
|
1650
805
|
get: function () { return smithyClient.Client; }
|
|
1651
806
|
});
|
|
1652
|
-
exports
|
|
807
|
+
Object.defineProperty(exports, "MachineLearningServiceException", {
|
|
808
|
+
enumerable: true,
|
|
809
|
+
get: function () { return MachineLearningServiceException.MachineLearningServiceException; }
|
|
810
|
+
});
|
|
1653
811
|
exports.AddTagsCommand = AddTagsCommand;
|
|
1654
|
-
exports.AddTagsInput$ = AddTagsInput$;
|
|
1655
|
-
exports.AddTagsOutput$ = AddTagsOutput$;
|
|
1656
812
|
exports.Algorithm = Algorithm;
|
|
1657
|
-
exports.BatchPrediction$ = BatchPrediction$;
|
|
1658
813
|
exports.BatchPredictionFilterVariable = BatchPredictionFilterVariable;
|
|
1659
|
-
exports.CreateBatchPrediction$ = CreateBatchPrediction$;
|
|
1660
814
|
exports.CreateBatchPredictionCommand = CreateBatchPredictionCommand;
|
|
1661
|
-
exports.CreateBatchPredictionInput$ = CreateBatchPredictionInput$;
|
|
1662
|
-
exports.CreateBatchPredictionOutput$ = CreateBatchPredictionOutput$;
|
|
1663
|
-
exports.CreateDataSourceFromRDS$ = CreateDataSourceFromRDS$;
|
|
1664
815
|
exports.CreateDataSourceFromRDSCommand = CreateDataSourceFromRDSCommand;
|
|
1665
|
-
exports.CreateDataSourceFromRDSInput$ = CreateDataSourceFromRDSInput$;
|
|
1666
|
-
exports.CreateDataSourceFromRDSOutput$ = CreateDataSourceFromRDSOutput$;
|
|
1667
|
-
exports.CreateDataSourceFromRedshift$ = CreateDataSourceFromRedshift$;
|
|
1668
816
|
exports.CreateDataSourceFromRedshiftCommand = CreateDataSourceFromRedshiftCommand;
|
|
1669
|
-
exports.CreateDataSourceFromRedshiftInput$ = CreateDataSourceFromRedshiftInput$;
|
|
1670
|
-
exports.CreateDataSourceFromRedshiftOutput$ = CreateDataSourceFromRedshiftOutput$;
|
|
1671
|
-
exports.CreateDataSourceFromS3$ = CreateDataSourceFromS3$;
|
|
1672
817
|
exports.CreateDataSourceFromS3Command = CreateDataSourceFromS3Command;
|
|
1673
|
-
exports.CreateDataSourceFromS3Input$ = CreateDataSourceFromS3Input$;
|
|
1674
|
-
exports.CreateDataSourceFromS3Output$ = CreateDataSourceFromS3Output$;
|
|
1675
|
-
exports.CreateEvaluation$ = CreateEvaluation$;
|
|
1676
818
|
exports.CreateEvaluationCommand = CreateEvaluationCommand;
|
|
1677
|
-
exports.CreateEvaluationInput$ = CreateEvaluationInput$;
|
|
1678
|
-
exports.CreateEvaluationOutput$ = CreateEvaluationOutput$;
|
|
1679
|
-
exports.CreateMLModel$ = CreateMLModel$;
|
|
1680
819
|
exports.CreateMLModelCommand = CreateMLModelCommand;
|
|
1681
|
-
exports.CreateMLModelInput$ = CreateMLModelInput$;
|
|
1682
|
-
exports.CreateMLModelOutput$ = CreateMLModelOutput$;
|
|
1683
|
-
exports.CreateRealtimeEndpoint$ = CreateRealtimeEndpoint$;
|
|
1684
820
|
exports.CreateRealtimeEndpointCommand = CreateRealtimeEndpointCommand;
|
|
1685
|
-
exports.CreateRealtimeEndpointInput$ = CreateRealtimeEndpointInput$;
|
|
1686
|
-
exports.CreateRealtimeEndpointOutput$ = CreateRealtimeEndpointOutput$;
|
|
1687
|
-
exports.DataSource$ = DataSource$;
|
|
1688
821
|
exports.DataSourceFilterVariable = DataSourceFilterVariable;
|
|
1689
|
-
exports.DeleteBatchPrediction$ = DeleteBatchPrediction$;
|
|
1690
822
|
exports.DeleteBatchPredictionCommand = DeleteBatchPredictionCommand;
|
|
1691
|
-
exports.DeleteBatchPredictionInput$ = DeleteBatchPredictionInput$;
|
|
1692
|
-
exports.DeleteBatchPredictionOutput$ = DeleteBatchPredictionOutput$;
|
|
1693
|
-
exports.DeleteDataSource$ = DeleteDataSource$;
|
|
1694
823
|
exports.DeleteDataSourceCommand = DeleteDataSourceCommand;
|
|
1695
|
-
exports.DeleteDataSourceInput$ = DeleteDataSourceInput$;
|
|
1696
|
-
exports.DeleteDataSourceOutput$ = DeleteDataSourceOutput$;
|
|
1697
|
-
exports.DeleteEvaluation$ = DeleteEvaluation$;
|
|
1698
824
|
exports.DeleteEvaluationCommand = DeleteEvaluationCommand;
|
|
1699
|
-
exports.DeleteEvaluationInput$ = DeleteEvaluationInput$;
|
|
1700
|
-
exports.DeleteEvaluationOutput$ = DeleteEvaluationOutput$;
|
|
1701
|
-
exports.DeleteMLModel$ = DeleteMLModel$;
|
|
1702
825
|
exports.DeleteMLModelCommand = DeleteMLModelCommand;
|
|
1703
|
-
exports.DeleteMLModelInput$ = DeleteMLModelInput$;
|
|
1704
|
-
exports.DeleteMLModelOutput$ = DeleteMLModelOutput$;
|
|
1705
|
-
exports.DeleteRealtimeEndpoint$ = DeleteRealtimeEndpoint$;
|
|
1706
826
|
exports.DeleteRealtimeEndpointCommand = DeleteRealtimeEndpointCommand;
|
|
1707
|
-
exports.DeleteRealtimeEndpointInput$ = DeleteRealtimeEndpointInput$;
|
|
1708
|
-
exports.DeleteRealtimeEndpointOutput$ = DeleteRealtimeEndpointOutput$;
|
|
1709
|
-
exports.DeleteTags$ = DeleteTags$;
|
|
1710
827
|
exports.DeleteTagsCommand = DeleteTagsCommand;
|
|
1711
|
-
exports.DeleteTagsInput$ = DeleteTagsInput$;
|
|
1712
|
-
exports.DeleteTagsOutput$ = DeleteTagsOutput$;
|
|
1713
|
-
exports.DescribeBatchPredictions$ = DescribeBatchPredictions$;
|
|
1714
828
|
exports.DescribeBatchPredictionsCommand = DescribeBatchPredictionsCommand;
|
|
1715
|
-
exports.DescribeBatchPredictionsInput$ = DescribeBatchPredictionsInput$;
|
|
1716
|
-
exports.DescribeBatchPredictionsOutput$ = DescribeBatchPredictionsOutput$;
|
|
1717
|
-
exports.DescribeDataSources$ = DescribeDataSources$;
|
|
1718
829
|
exports.DescribeDataSourcesCommand = DescribeDataSourcesCommand;
|
|
1719
|
-
exports.DescribeDataSourcesInput$ = DescribeDataSourcesInput$;
|
|
1720
|
-
exports.DescribeDataSourcesOutput$ = DescribeDataSourcesOutput$;
|
|
1721
|
-
exports.DescribeEvaluations$ = DescribeEvaluations$;
|
|
1722
830
|
exports.DescribeEvaluationsCommand = DescribeEvaluationsCommand;
|
|
1723
|
-
exports.DescribeEvaluationsInput$ = DescribeEvaluationsInput$;
|
|
1724
|
-
exports.DescribeEvaluationsOutput$ = DescribeEvaluationsOutput$;
|
|
1725
|
-
exports.DescribeMLModels$ = DescribeMLModels$;
|
|
1726
831
|
exports.DescribeMLModelsCommand = DescribeMLModelsCommand;
|
|
1727
|
-
exports.DescribeMLModelsInput$ = DescribeMLModelsInput$;
|
|
1728
|
-
exports.DescribeMLModelsOutput$ = DescribeMLModelsOutput$;
|
|
1729
|
-
exports.DescribeTags$ = DescribeTags$;
|
|
1730
832
|
exports.DescribeTagsCommand = DescribeTagsCommand;
|
|
1731
|
-
exports.DescribeTagsInput$ = DescribeTagsInput$;
|
|
1732
|
-
exports.DescribeTagsOutput$ = DescribeTagsOutput$;
|
|
1733
833
|
exports.DetailsAttributes = DetailsAttributes;
|
|
1734
834
|
exports.EntityStatus = EntityStatus;
|
|
1735
|
-
exports.Evaluation$ = Evaluation$;
|
|
1736
835
|
exports.EvaluationFilterVariable = EvaluationFilterVariable;
|
|
1737
|
-
exports.GetBatchPrediction$ = GetBatchPrediction$;
|
|
1738
836
|
exports.GetBatchPredictionCommand = GetBatchPredictionCommand;
|
|
1739
|
-
exports.GetBatchPredictionInput$ = GetBatchPredictionInput$;
|
|
1740
|
-
exports.GetBatchPredictionOutput$ = GetBatchPredictionOutput$;
|
|
1741
|
-
exports.GetDataSource$ = GetDataSource$;
|
|
1742
837
|
exports.GetDataSourceCommand = GetDataSourceCommand;
|
|
1743
|
-
exports.GetDataSourceInput$ = GetDataSourceInput$;
|
|
1744
|
-
exports.GetDataSourceOutput$ = GetDataSourceOutput$;
|
|
1745
|
-
exports.GetEvaluation$ = GetEvaluation$;
|
|
1746
838
|
exports.GetEvaluationCommand = GetEvaluationCommand;
|
|
1747
|
-
exports.GetEvaluationInput$ = GetEvaluationInput$;
|
|
1748
|
-
exports.GetEvaluationOutput$ = GetEvaluationOutput$;
|
|
1749
|
-
exports.GetMLModel$ = GetMLModel$;
|
|
1750
839
|
exports.GetMLModelCommand = GetMLModelCommand;
|
|
1751
|
-
exports.GetMLModelInput$ = GetMLModelInput$;
|
|
1752
|
-
exports.GetMLModelOutput$ = GetMLModelOutput$;
|
|
1753
|
-
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
1754
|
-
exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
|
|
1755
|
-
exports.InternalServerException = InternalServerException;
|
|
1756
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1757
|
-
exports.InvalidInputException = InvalidInputException;
|
|
1758
|
-
exports.InvalidInputException$ = InvalidInputException$;
|
|
1759
|
-
exports.InvalidTagException = InvalidTagException;
|
|
1760
|
-
exports.InvalidTagException$ = InvalidTagException$;
|
|
1761
|
-
exports.LimitExceededException = LimitExceededException;
|
|
1762
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
1763
|
-
exports.MLModel$ = MLModel$;
|
|
1764
840
|
exports.MLModelFilterVariable = MLModelFilterVariable;
|
|
1765
841
|
exports.MLModelType = MLModelType;
|
|
1766
842
|
exports.MachineLearning = MachineLearning;
|
|
1767
843
|
exports.MachineLearningClient = MachineLearningClient;
|
|
1768
|
-
exports.MachineLearningServiceException = MachineLearningServiceException;
|
|
1769
|
-
exports.MachineLearningServiceException$ = MachineLearningServiceException$;
|
|
1770
|
-
exports.PerformanceMetrics$ = PerformanceMetrics$;
|
|
1771
|
-
exports.Predict$ = Predict$;
|
|
1772
844
|
exports.PredictCommand = PredictCommand;
|
|
1773
|
-
exports.PredictInput$ = PredictInput$;
|
|
1774
|
-
exports.PredictOutput$ = PredictOutput$;
|
|
1775
|
-
exports.Prediction$ = Prediction$;
|
|
1776
|
-
exports.PredictorNotMountedException = PredictorNotMountedException;
|
|
1777
|
-
exports.PredictorNotMountedException$ = PredictorNotMountedException$;
|
|
1778
|
-
exports.RDSDataSpec$ = RDSDataSpec$;
|
|
1779
|
-
exports.RDSDatabase$ = RDSDatabase$;
|
|
1780
|
-
exports.RDSDatabaseCredentials$ = RDSDatabaseCredentials$;
|
|
1781
|
-
exports.RDSMetadata$ = RDSMetadata$;
|
|
1782
|
-
exports.RealtimeEndpointInfo$ = RealtimeEndpointInfo$;
|
|
1783
845
|
exports.RealtimeEndpointStatus = RealtimeEndpointStatus;
|
|
1784
|
-
exports.RedshiftDataSpec$ = RedshiftDataSpec$;
|
|
1785
|
-
exports.RedshiftDatabase$ = RedshiftDatabase$;
|
|
1786
|
-
exports.RedshiftDatabaseCredentials$ = RedshiftDatabaseCredentials$;
|
|
1787
|
-
exports.RedshiftMetadata$ = RedshiftMetadata$;
|
|
1788
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1789
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1790
|
-
exports.S3DataSpec$ = S3DataSpec$;
|
|
1791
846
|
exports.SortOrder = SortOrder;
|
|
1792
|
-
exports.Tag$ = Tag$;
|
|
1793
|
-
exports.TagLimitExceededException = TagLimitExceededException;
|
|
1794
|
-
exports.TagLimitExceededException$ = TagLimitExceededException$;
|
|
1795
847
|
exports.TaggableResourceType = TaggableResourceType;
|
|
1796
|
-
exports.UpdateBatchPrediction$ = UpdateBatchPrediction$;
|
|
1797
848
|
exports.UpdateBatchPredictionCommand = UpdateBatchPredictionCommand;
|
|
1798
|
-
exports.UpdateBatchPredictionInput$ = UpdateBatchPredictionInput$;
|
|
1799
|
-
exports.UpdateBatchPredictionOutput$ = UpdateBatchPredictionOutput$;
|
|
1800
|
-
exports.UpdateDataSource$ = UpdateDataSource$;
|
|
1801
849
|
exports.UpdateDataSourceCommand = UpdateDataSourceCommand;
|
|
1802
|
-
exports.UpdateDataSourceInput$ = UpdateDataSourceInput$;
|
|
1803
|
-
exports.UpdateDataSourceOutput$ = UpdateDataSourceOutput$;
|
|
1804
|
-
exports.UpdateEvaluation$ = UpdateEvaluation$;
|
|
1805
850
|
exports.UpdateEvaluationCommand = UpdateEvaluationCommand;
|
|
1806
|
-
exports.UpdateEvaluationInput$ = UpdateEvaluationInput$;
|
|
1807
|
-
exports.UpdateEvaluationOutput$ = UpdateEvaluationOutput$;
|
|
1808
|
-
exports.UpdateMLModel$ = UpdateMLModel$;
|
|
1809
851
|
exports.UpdateMLModelCommand = UpdateMLModelCommand;
|
|
1810
|
-
exports.UpdateMLModelInput$ = UpdateMLModelInput$;
|
|
1811
|
-
exports.UpdateMLModelOutput$ = UpdateMLModelOutput$;
|
|
1812
852
|
exports.paginateDescribeBatchPredictions = paginateDescribeBatchPredictions;
|
|
1813
853
|
exports.paginateDescribeDataSources = paginateDescribeDataSources;
|
|
1814
854
|
exports.paginateDescribeEvaluations = paginateDescribeEvaluations;
|
|
@@ -1821,3 +861,15 @@ exports.waitUntilBatchPredictionAvailable = waitUntilBatchPredictionAvailable;
|
|
|
1821
861
|
exports.waitUntilDataSourceAvailable = waitUntilDataSourceAvailable;
|
|
1822
862
|
exports.waitUntilEvaluationAvailable = waitUntilEvaluationAvailable;
|
|
1823
863
|
exports.waitUntilMLModelAvailable = waitUntilMLModelAvailable;
|
|
864
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
865
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
866
|
+
enumerable: true,
|
|
867
|
+
get: function () { return schemas_0[k]; }
|
|
868
|
+
});
|
|
869
|
+
});
|
|
870
|
+
Object.keys(errors).forEach(function (k) {
|
|
871
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
872
|
+
enumerable: true,
|
|
873
|
+
get: function () { return errors[k]; }
|
|
874
|
+
});
|
|
875
|
+
});
|