@aws-sdk/client-scheduler 3.987.0 → 3.989.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 +31 -621
- package/dist-cjs/models/SchedulerServiceException.js +12 -0
- package/dist-cjs/models/errors.js +94 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +467 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +46 -40
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ 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');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SchedulerServiceException = require('./models/SchedulerServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,546 +113,6 @@ class SchedulerClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SchedulerServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SchedulerServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class InternalServerException extends SchedulerServiceException {
|
|
121
|
-
name = "InternalServerException";
|
|
122
|
-
$fault = "server";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "InternalServerException",
|
|
127
|
-
$fault: "server",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ResourceNotFoundException extends SchedulerServiceException {
|
|
135
|
-
name = "ResourceNotFoundException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "ResourceNotFoundException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class ThrottlingException extends SchedulerServiceException {
|
|
149
|
-
name = "ThrottlingException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ThrottlingException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ValidationException extends SchedulerServiceException {
|
|
163
|
-
name = "ValidationException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ValidationException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ConflictException extends SchedulerServiceException {
|
|
177
|
-
name = "ConflictException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ConflictException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class ServiceQuotaExceededException extends SchedulerServiceException {
|
|
191
|
-
name = "ServiceQuotaExceededException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "ServiceQuotaExceededException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
const _A = "Arn";
|
|
206
|
-
const _AAC = "ActionAfterCompletion";
|
|
207
|
-
const _API = "AssignPublicIp";
|
|
208
|
-
const _AVC = "AwsVpcConfiguration";
|
|
209
|
-
const _CD = "CreationDate";
|
|
210
|
-
const _CE = "ConflictException";
|
|
211
|
-
const _CPS = "CapacityProviderStrategy";
|
|
212
|
-
const _CPSI = "CapacityProviderStrategyItem";
|
|
213
|
-
const _CS = "CreateSchedule";
|
|
214
|
-
const _CSG = "CreateScheduleGroup";
|
|
215
|
-
const _CSGI = "CreateScheduleGroupInput";
|
|
216
|
-
const _CSGO = "CreateScheduleGroupOutput";
|
|
217
|
-
const _CSI = "CreateScheduleInput";
|
|
218
|
-
const _CSO = "CreateScheduleOutput";
|
|
219
|
-
const _CT = "ClientToken";
|
|
220
|
-
const _D = "Description";
|
|
221
|
-
const _DLC = "DeadLetterConfig";
|
|
222
|
-
const _DS = "DeleteSchedule";
|
|
223
|
-
const _DSG = "DeleteScheduleGroup";
|
|
224
|
-
const _DSGI = "DeleteScheduleGroupInput";
|
|
225
|
-
const _DSGO = "DeleteScheduleGroupOutput";
|
|
226
|
-
const _DSI = "DeleteScheduleInput";
|
|
227
|
-
const _DSO = "DeleteScheduleOutput";
|
|
228
|
-
const _DT = "DetailType";
|
|
229
|
-
const _EBP = "EventBridgeParameters";
|
|
230
|
-
const _ED = "EndDate";
|
|
231
|
-
const _EEC = "EnableExecuteCommand";
|
|
232
|
-
const _EECSMT = "EnableECSManagedTags";
|
|
233
|
-
const _EP = "EcsParameters";
|
|
234
|
-
const _FTW = "FlexibleTimeWindow";
|
|
235
|
-
const _G = "Group";
|
|
236
|
-
const _GN = "GroupName";
|
|
237
|
-
const _GS = "GetSchedule";
|
|
238
|
-
const _GSG = "GetScheduleGroup";
|
|
239
|
-
const _GSGI = "GetScheduleGroupInput";
|
|
240
|
-
const _GSGO = "GetScheduleGroupOutput";
|
|
241
|
-
const _GSI = "GetScheduleInput";
|
|
242
|
-
const _GSO = "GetScheduleOutput";
|
|
243
|
-
const _I = "Input";
|
|
244
|
-
const _ISE = "InternalServerException";
|
|
245
|
-
const _K = "Key";
|
|
246
|
-
const _KKA = "KmsKeyArn";
|
|
247
|
-
const _KP = "KinesisParameters";
|
|
248
|
-
const _LMD = "LastModificationDate";
|
|
249
|
-
const _LS = "ListSchedules";
|
|
250
|
-
const _LSG = "ListScheduleGroups";
|
|
251
|
-
const _LSGI = "ListScheduleGroupsInput";
|
|
252
|
-
const _LSGO = "ListScheduleGroupsOutput";
|
|
253
|
-
const _LSI = "ListSchedulesInput";
|
|
254
|
-
const _LSO = "ListSchedulesOutput";
|
|
255
|
-
const _LT = "LaunchType";
|
|
256
|
-
const _LTFR = "ListTagsForResource";
|
|
257
|
-
const _LTFRI = "ListTagsForResourceInput";
|
|
258
|
-
const _LTFRO = "ListTagsForResourceOutput";
|
|
259
|
-
const _M = "Message";
|
|
260
|
-
const _MEAIS = "MaximumEventAgeInSeconds";
|
|
261
|
-
const _MGI = "MessageGroupId";
|
|
262
|
-
const _MR = "MaxResults";
|
|
263
|
-
const _MRA = "MaximumRetryAttempts";
|
|
264
|
-
const _MWIM = "MaximumWindowInMinutes";
|
|
265
|
-
const _Mo = "Mode";
|
|
266
|
-
const _N = "Name";
|
|
267
|
-
const _NC = "NetworkConfiguration";
|
|
268
|
-
const _NP = "NamePrefix";
|
|
269
|
-
const _NT = "NextToken";
|
|
270
|
-
const _PC = "PlacementConstraints";
|
|
271
|
-
const _PCl = "PlacementConstraint";
|
|
272
|
-
const _PK = "PartitionKey";
|
|
273
|
-
const _PPL = "PipelineParameterList";
|
|
274
|
-
const _PS = "PlacementStrategy";
|
|
275
|
-
const _PSl = "PlacementStrategies";
|
|
276
|
-
const _PT = "PropagateTags";
|
|
277
|
-
const _PV = "PlatformVersion";
|
|
278
|
-
const _RA = "ResourceArn";
|
|
279
|
-
const _RAo = "RoleArn";
|
|
280
|
-
const _RI = "ReferenceId";
|
|
281
|
-
const _RNFE = "ResourceNotFoundException";
|
|
282
|
-
const _RP = "RetryPolicy";
|
|
283
|
-
const _S = "Subnets";
|
|
284
|
-
const _SA = "ScheduleArn";
|
|
285
|
-
const _SD = "StartDate";
|
|
286
|
-
const _SE = "ScheduleExpression";
|
|
287
|
-
const _SET = "ScheduleExpressionTimezone";
|
|
288
|
-
const _SG = "SecurityGroups";
|
|
289
|
-
const _SGA = "ScheduleGroupArn";
|
|
290
|
-
const _SGL = "ScheduleGroupList";
|
|
291
|
-
const _SGS = "ScheduleGroupSummary";
|
|
292
|
-
const _SGc = "ScheduleGroups";
|
|
293
|
-
const _SGch = "ScheduleGroup";
|
|
294
|
-
const _SL = "ScheduleList";
|
|
295
|
-
const _SMPP = "SageMakerPipelineParameter";
|
|
296
|
-
const _SMPPL = "SageMakerPipelineParameterList";
|
|
297
|
-
const _SMPPa = "SageMakerPipelineParameters";
|
|
298
|
-
const _SP = "SqsParameters";
|
|
299
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
300
|
-
const _SS = "ScheduleSummary";
|
|
301
|
-
const _Sc = "Schedules";
|
|
302
|
-
const _So = "Source";
|
|
303
|
-
const _St = "State";
|
|
304
|
-
const _T = "Tags";
|
|
305
|
-
const _TC = "TaskCount";
|
|
306
|
-
const _TDA = "TaskDefinitionArn";
|
|
307
|
-
const _TE = "ThrottlingException";
|
|
308
|
-
const _TK = "TagKeys";
|
|
309
|
-
const _TL = "TagList";
|
|
310
|
-
const _TR = "TagResource";
|
|
311
|
-
const _TRI = "TagResourceInput";
|
|
312
|
-
const _TRO = "TagResourceOutput";
|
|
313
|
-
const _TS = "TargetSummary";
|
|
314
|
-
const _Ta = "Target";
|
|
315
|
-
const _Tag = "Tag";
|
|
316
|
-
const _UR = "UntagResource";
|
|
317
|
-
const _URI = "UntagResourceInput";
|
|
318
|
-
const _URO = "UntagResourceOutput";
|
|
319
|
-
const _US = "UpdateSchedule";
|
|
320
|
-
const _USI = "UpdateScheduleInput";
|
|
321
|
-
const _USO = "UpdateScheduleOutput";
|
|
322
|
-
const _V = "Value";
|
|
323
|
-
const _VE = "ValidationException";
|
|
324
|
-
const _aC = "awsvpcConfiguration";
|
|
325
|
-
const _b = "base";
|
|
326
|
-
const _c = "client";
|
|
327
|
-
const _cP = "capacityProvider";
|
|
328
|
-
const _cT = "clientToken";
|
|
329
|
-
const _e = "error";
|
|
330
|
-
const _ex = "expression";
|
|
331
|
-
const _f = "field";
|
|
332
|
-
const _gN = "groupName";
|
|
333
|
-
const _h = "http";
|
|
334
|
-
const _hE = "httpError";
|
|
335
|
-
const _hQ = "httpQuery";
|
|
336
|
-
const _iT = "idempotencyToken";
|
|
337
|
-
const _s = "server";
|
|
338
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.scheduler";
|
|
339
|
-
const _t = "type";
|
|
340
|
-
const _w = "weight";
|
|
341
|
-
const n0 = "com.amazonaws.scheduler";
|
|
342
|
-
var AwsVpcConfiguration$ = [3, n0, _AVC,
|
|
343
|
-
0,
|
|
344
|
-
[_S, _SG, _API],
|
|
345
|
-
[64 | 0, 64 | 0, 0], 1
|
|
346
|
-
];
|
|
347
|
-
var CapacityProviderStrategyItem$ = [3, n0, _CPSI,
|
|
348
|
-
0,
|
|
349
|
-
[_cP, _w, _b],
|
|
350
|
-
[0, 1, 1], 1
|
|
351
|
-
];
|
|
352
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
353
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
354
|
-
[_M],
|
|
355
|
-
[0], 1
|
|
356
|
-
];
|
|
357
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
358
|
-
var CreateScheduleGroupInput$ = [3, n0, _CSGI,
|
|
359
|
-
0,
|
|
360
|
-
[_N, _T, _CT],
|
|
361
|
-
[[0, 1], () => TagList, [0, 4]], 1
|
|
362
|
-
];
|
|
363
|
-
var CreateScheduleGroupOutput$ = [3, n0, _CSGO,
|
|
364
|
-
0,
|
|
365
|
-
[_SGA],
|
|
366
|
-
[0], 1
|
|
367
|
-
];
|
|
368
|
-
var CreateScheduleInput$ = [3, n0, _CSI,
|
|
369
|
-
0,
|
|
370
|
-
[_N, _SE, _Ta, _FTW, _GN, _SD, _ED, _D, _SET, _St, _KKA, _CT, _AAC],
|
|
371
|
-
[[0, 1], 0, () => Target$, () => FlexibleTimeWindow$, 0, 4, 4, 0, 0, 0, 0, [0, 4], 0], 4
|
|
372
|
-
];
|
|
373
|
-
var CreateScheduleOutput$ = [3, n0, _CSO,
|
|
374
|
-
0,
|
|
375
|
-
[_SA],
|
|
376
|
-
[0], 1
|
|
377
|
-
];
|
|
378
|
-
var DeadLetterConfig$ = [3, n0, _DLC,
|
|
379
|
-
0,
|
|
380
|
-
[_A],
|
|
381
|
-
[0]
|
|
382
|
-
];
|
|
383
|
-
var DeleteScheduleGroupInput$ = [3, n0, _DSGI,
|
|
384
|
-
0,
|
|
385
|
-
[_N, _CT],
|
|
386
|
-
[[0, 1], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
387
|
-
];
|
|
388
|
-
var DeleteScheduleGroupOutput$ = [3, n0, _DSGO,
|
|
389
|
-
0,
|
|
390
|
-
[],
|
|
391
|
-
[]
|
|
392
|
-
];
|
|
393
|
-
var DeleteScheduleInput$ = [3, n0, _DSI,
|
|
394
|
-
0,
|
|
395
|
-
[_N, _GN, _CT],
|
|
396
|
-
[[0, 1], [0, { [_hQ]: _gN }], [0, { [_hQ]: _cT, [_iT]: 1 }]], 1
|
|
397
|
-
];
|
|
398
|
-
var DeleteScheduleOutput$ = [3, n0, _DSO,
|
|
399
|
-
0,
|
|
400
|
-
[],
|
|
401
|
-
[]
|
|
402
|
-
];
|
|
403
|
-
var EcsParameters$ = [3, n0, _EP,
|
|
404
|
-
0,
|
|
405
|
-
[_TDA, _TC, _LT, _NC, _PV, _G, _CPS, _EECSMT, _EEC, _PC, _PS, _PT, _RI, _T],
|
|
406
|
-
[0, 1, 0, () => NetworkConfiguration$, 0, 0, () => CapacityProviderStrategy, 2, 2, () => PlacementConstraints, () => PlacementStrategies, 0, 0, [1, n0, _T, 0, 128 | 0]], 1
|
|
407
|
-
];
|
|
408
|
-
var EventBridgeParameters$ = [3, n0, _EBP,
|
|
409
|
-
0,
|
|
410
|
-
[_DT, _So],
|
|
411
|
-
[0, 0], 2
|
|
412
|
-
];
|
|
413
|
-
var FlexibleTimeWindow$ = [3, n0, _FTW,
|
|
414
|
-
0,
|
|
415
|
-
[_Mo, _MWIM],
|
|
416
|
-
[0, 1], 1
|
|
417
|
-
];
|
|
418
|
-
var GetScheduleGroupInput$ = [3, n0, _GSGI,
|
|
419
|
-
0,
|
|
420
|
-
[_N],
|
|
421
|
-
[[0, 1]], 1
|
|
422
|
-
];
|
|
423
|
-
var GetScheduleGroupOutput$ = [3, n0, _GSGO,
|
|
424
|
-
0,
|
|
425
|
-
[_A, _N, _St, _CD, _LMD],
|
|
426
|
-
[0, 0, 0, 4, 4]
|
|
427
|
-
];
|
|
428
|
-
var GetScheduleInput$ = [3, n0, _GSI,
|
|
429
|
-
0,
|
|
430
|
-
[_N, _GN],
|
|
431
|
-
[[0, 1], [0, { [_hQ]: _gN }]], 1
|
|
432
|
-
];
|
|
433
|
-
var GetScheduleOutput$ = [3, n0, _GSO,
|
|
434
|
-
0,
|
|
435
|
-
[_A, _GN, _N, _SE, _SD, _ED, _D, _SET, _St, _CD, _LMD, _KKA, _Ta, _FTW, _AAC],
|
|
436
|
-
[0, 0, 0, 0, 4, 4, 0, 0, 0, 4, 4, 0, () => Target$, () => FlexibleTimeWindow$, 0]
|
|
437
|
-
];
|
|
438
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
439
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
440
|
-
[_M],
|
|
441
|
-
[0], 1
|
|
442
|
-
];
|
|
443
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
444
|
-
var KinesisParameters$ = [3, n0, _KP,
|
|
445
|
-
0,
|
|
446
|
-
[_PK],
|
|
447
|
-
[0], 1
|
|
448
|
-
];
|
|
449
|
-
var ListScheduleGroupsInput$ = [3, n0, _LSGI,
|
|
450
|
-
0,
|
|
451
|
-
[_NP, _NT, _MR],
|
|
452
|
-
[[0, { [_hQ]: _NP }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
453
|
-
];
|
|
454
|
-
var ListScheduleGroupsOutput$ = [3, n0, _LSGO,
|
|
455
|
-
0,
|
|
456
|
-
[_SGc, _NT],
|
|
457
|
-
[() => ScheduleGroupList, 0], 1
|
|
458
|
-
];
|
|
459
|
-
var ListSchedulesInput$ = [3, n0, _LSI,
|
|
460
|
-
0,
|
|
461
|
-
[_GN, _NP, _St, _NT, _MR],
|
|
462
|
-
[[0, { [_hQ]: _SGch }], [0, { [_hQ]: _NP }], [0, { [_hQ]: _St }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
463
|
-
];
|
|
464
|
-
var ListSchedulesOutput$ = [3, n0, _LSO,
|
|
465
|
-
0,
|
|
466
|
-
[_Sc, _NT],
|
|
467
|
-
[() => ScheduleList, 0], 1
|
|
468
|
-
];
|
|
469
|
-
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
470
|
-
0,
|
|
471
|
-
[_RA],
|
|
472
|
-
[[0, 1]], 1
|
|
473
|
-
];
|
|
474
|
-
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
475
|
-
0,
|
|
476
|
-
[_T],
|
|
477
|
-
[() => TagList]
|
|
478
|
-
];
|
|
479
|
-
var NetworkConfiguration$ = [3, n0, _NC,
|
|
480
|
-
0,
|
|
481
|
-
[_aC],
|
|
482
|
-
[() => AwsVpcConfiguration$]
|
|
483
|
-
];
|
|
484
|
-
var PlacementConstraint$ = [3, n0, _PCl,
|
|
485
|
-
0,
|
|
486
|
-
[_t, _ex],
|
|
487
|
-
[0, 0]
|
|
488
|
-
];
|
|
489
|
-
var PlacementStrategy$ = [3, n0, _PS,
|
|
490
|
-
0,
|
|
491
|
-
[_t, _f],
|
|
492
|
-
[0, 0]
|
|
493
|
-
];
|
|
494
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
495
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
496
|
-
[_M],
|
|
497
|
-
[0], 1
|
|
498
|
-
];
|
|
499
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
500
|
-
var RetryPolicy$ = [3, n0, _RP,
|
|
501
|
-
0,
|
|
502
|
-
[_MEAIS, _MRA],
|
|
503
|
-
[1, 1]
|
|
504
|
-
];
|
|
505
|
-
var SageMakerPipelineParameter$ = [3, n0, _SMPP,
|
|
506
|
-
0,
|
|
507
|
-
[_N, _V],
|
|
508
|
-
[0, 0], 2
|
|
509
|
-
];
|
|
510
|
-
var SageMakerPipelineParameters$ = [3, n0, _SMPPa,
|
|
511
|
-
0,
|
|
512
|
-
[_PPL],
|
|
513
|
-
[() => SageMakerPipelineParameterList]
|
|
514
|
-
];
|
|
515
|
-
var ScheduleGroupSummary$ = [3, n0, _SGS,
|
|
516
|
-
0,
|
|
517
|
-
[_A, _N, _St, _CD, _LMD],
|
|
518
|
-
[0, 0, 0, 4, 4]
|
|
519
|
-
];
|
|
520
|
-
var ScheduleSummary$ = [3, n0, _SS,
|
|
521
|
-
0,
|
|
522
|
-
[_A, _N, _GN, _St, _CD, _LMD, _Ta],
|
|
523
|
-
[0, 0, 0, 0, 4, 4, () => TargetSummary$]
|
|
524
|
-
];
|
|
525
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
526
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
527
|
-
[_M],
|
|
528
|
-
[0], 1
|
|
529
|
-
];
|
|
530
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
531
|
-
var SqsParameters$ = [3, n0, _SP,
|
|
532
|
-
0,
|
|
533
|
-
[_MGI],
|
|
534
|
-
[0]
|
|
535
|
-
];
|
|
536
|
-
var Tag$ = [3, n0, _Tag,
|
|
537
|
-
0,
|
|
538
|
-
[_K, _V],
|
|
539
|
-
[0, 0], 2
|
|
540
|
-
];
|
|
541
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
542
|
-
0,
|
|
543
|
-
[_RA, _T],
|
|
544
|
-
[[0, 1], () => TagList], 2
|
|
545
|
-
];
|
|
546
|
-
var TagResourceOutput$ = [3, n0, _TRO,
|
|
547
|
-
0,
|
|
548
|
-
[],
|
|
549
|
-
[]
|
|
550
|
-
];
|
|
551
|
-
var Target$ = [3, n0, _Ta,
|
|
552
|
-
0,
|
|
553
|
-
[_A, _RAo, _DLC, _RP, _I, _EP, _EBP, _KP, _SMPPa, _SP],
|
|
554
|
-
[0, 0, () => DeadLetterConfig$, () => RetryPolicy$, 0, () => EcsParameters$, () => EventBridgeParameters$, () => KinesisParameters$, () => SageMakerPipelineParameters$, () => SqsParameters$], 2
|
|
555
|
-
];
|
|
556
|
-
var TargetSummary$ = [3, n0, _TS,
|
|
557
|
-
0,
|
|
558
|
-
[_A],
|
|
559
|
-
[0], 1
|
|
560
|
-
];
|
|
561
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
562
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
563
|
-
[_M],
|
|
564
|
-
[0], 1
|
|
565
|
-
];
|
|
566
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
567
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
568
|
-
0,
|
|
569
|
-
[_RA, _TK],
|
|
570
|
-
[[0, 1], [64 | 0, { [_hQ]: _TK }]], 2
|
|
571
|
-
];
|
|
572
|
-
var UntagResourceOutput$ = [3, n0, _URO,
|
|
573
|
-
0,
|
|
574
|
-
[],
|
|
575
|
-
[]
|
|
576
|
-
];
|
|
577
|
-
var UpdateScheduleInput$ = [3, n0, _USI,
|
|
578
|
-
0,
|
|
579
|
-
[_N, _SE, _Ta, _FTW, _GN, _SD, _ED, _D, _SET, _St, _KKA, _CT, _AAC],
|
|
580
|
-
[[0, 1], 0, () => Target$, () => FlexibleTimeWindow$, 0, 4, 4, 0, 0, 0, 0, [0, 4], 0], 4
|
|
581
|
-
];
|
|
582
|
-
var UpdateScheduleOutput$ = [3, n0, _USO,
|
|
583
|
-
0,
|
|
584
|
-
[_SA],
|
|
585
|
-
[0], 1
|
|
586
|
-
];
|
|
587
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
588
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
589
|
-
[_M],
|
|
590
|
-
[0], 1
|
|
591
|
-
];
|
|
592
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
593
|
-
var SchedulerServiceException$ = [-3, _sm, "SchedulerServiceException", 0, [], []];
|
|
594
|
-
schema.TypeRegistry.for(_sm).registerError(SchedulerServiceException$, SchedulerServiceException);
|
|
595
|
-
var CapacityProviderStrategy = [1, n0, _CPS,
|
|
596
|
-
0, () => CapacityProviderStrategyItem$
|
|
597
|
-
];
|
|
598
|
-
var PlacementConstraints = [1, n0, _PC,
|
|
599
|
-
0, () => PlacementConstraint$
|
|
600
|
-
];
|
|
601
|
-
var PlacementStrategies = [1, n0, _PSl,
|
|
602
|
-
0, () => PlacementStrategy$
|
|
603
|
-
];
|
|
604
|
-
var SageMakerPipelineParameterList = [1, n0, _SMPPL,
|
|
605
|
-
0, () => SageMakerPipelineParameter$
|
|
606
|
-
];
|
|
607
|
-
var ScheduleGroupList = [1, n0, _SGL,
|
|
608
|
-
0, () => ScheduleGroupSummary$
|
|
609
|
-
];
|
|
610
|
-
var ScheduleList = [1, n0, _SL,
|
|
611
|
-
0, () => ScheduleSummary$
|
|
612
|
-
];
|
|
613
|
-
var TagList = [1, n0, _TL,
|
|
614
|
-
0, () => Tag$
|
|
615
|
-
];
|
|
616
|
-
var CreateSchedule$ = [9, n0, _CS,
|
|
617
|
-
{ [_h]: ["POST", "/schedules/{Name}", 200] }, () => CreateScheduleInput$, () => CreateScheduleOutput$
|
|
618
|
-
];
|
|
619
|
-
var CreateScheduleGroup$ = [9, n0, _CSG,
|
|
620
|
-
{ [_h]: ["POST", "/schedule-groups/{Name}", 200] }, () => CreateScheduleGroupInput$, () => CreateScheduleGroupOutput$
|
|
621
|
-
];
|
|
622
|
-
var DeleteSchedule$ = [9, n0, _DS,
|
|
623
|
-
{ [_h]: ["DELETE", "/schedules/{Name}", 200] }, () => DeleteScheduleInput$, () => DeleteScheduleOutput$
|
|
624
|
-
];
|
|
625
|
-
var DeleteScheduleGroup$ = [9, n0, _DSG,
|
|
626
|
-
{ [_h]: ["DELETE", "/schedule-groups/{Name}", 200] }, () => DeleteScheduleGroupInput$, () => DeleteScheduleGroupOutput$
|
|
627
|
-
];
|
|
628
|
-
var GetSchedule$ = [9, n0, _GS,
|
|
629
|
-
{ [_h]: ["GET", "/schedules/{Name}", 200] }, () => GetScheduleInput$, () => GetScheduleOutput$
|
|
630
|
-
];
|
|
631
|
-
var GetScheduleGroup$ = [9, n0, _GSG,
|
|
632
|
-
{ [_h]: ["GET", "/schedule-groups/{Name}", 200] }, () => GetScheduleGroupInput$, () => GetScheduleGroupOutput$
|
|
633
|
-
];
|
|
634
|
-
var ListScheduleGroups$ = [9, n0, _LSG,
|
|
635
|
-
{ [_h]: ["GET", "/schedule-groups", 200] }, () => ListScheduleGroupsInput$, () => ListScheduleGroupsOutput$
|
|
636
|
-
];
|
|
637
|
-
var ListSchedules$ = [9, n0, _LS,
|
|
638
|
-
{ [_h]: ["GET", "/schedules", 200] }, () => ListSchedulesInput$, () => ListSchedulesOutput$
|
|
639
|
-
];
|
|
640
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
641
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
642
|
-
];
|
|
643
|
-
var TagResource$ = [9, n0, _TR,
|
|
644
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceInput$, () => TagResourceOutput$
|
|
645
|
-
];
|
|
646
|
-
var UntagResource$ = [9, n0, _UR,
|
|
647
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
648
|
-
];
|
|
649
|
-
var UpdateSchedule$ = [9, n0, _US,
|
|
650
|
-
{ [_h]: ["PUT", "/schedules/{Name}", 200] }, () => UpdateScheduleInput$, () => UpdateScheduleOutput$
|
|
651
|
-
];
|
|
652
|
-
|
|
653
116
|
class CreateScheduleCommand extends smithyClient.Command
|
|
654
117
|
.classBuilder()
|
|
655
118
|
.ep(commonParams)
|
|
@@ -658,7 +121,7 @@ class CreateScheduleCommand extends smithyClient.Command
|
|
|
658
121
|
})
|
|
659
122
|
.s("AWSChronosService", "CreateSchedule", {})
|
|
660
123
|
.n("SchedulerClient", "CreateScheduleCommand")
|
|
661
|
-
.sc(CreateSchedule$)
|
|
124
|
+
.sc(schemas_0.CreateSchedule$)
|
|
662
125
|
.build() {
|
|
663
126
|
}
|
|
664
127
|
|
|
@@ -670,7 +133,7 @@ class CreateScheduleGroupCommand extends smithyClient.Command
|
|
|
670
133
|
})
|
|
671
134
|
.s("AWSChronosService", "CreateScheduleGroup", {})
|
|
672
135
|
.n("SchedulerClient", "CreateScheduleGroupCommand")
|
|
673
|
-
.sc(CreateScheduleGroup$)
|
|
136
|
+
.sc(schemas_0.CreateScheduleGroup$)
|
|
674
137
|
.build() {
|
|
675
138
|
}
|
|
676
139
|
|
|
@@ -682,7 +145,7 @@ class DeleteScheduleCommand extends smithyClient.Command
|
|
|
682
145
|
})
|
|
683
146
|
.s("AWSChronosService", "DeleteSchedule", {})
|
|
684
147
|
.n("SchedulerClient", "DeleteScheduleCommand")
|
|
685
|
-
.sc(DeleteSchedule$)
|
|
148
|
+
.sc(schemas_0.DeleteSchedule$)
|
|
686
149
|
.build() {
|
|
687
150
|
}
|
|
688
151
|
|
|
@@ -694,7 +157,7 @@ class DeleteScheduleGroupCommand extends smithyClient.Command
|
|
|
694
157
|
})
|
|
695
158
|
.s("AWSChronosService", "DeleteScheduleGroup", {})
|
|
696
159
|
.n("SchedulerClient", "DeleteScheduleGroupCommand")
|
|
697
|
-
.sc(DeleteScheduleGroup$)
|
|
160
|
+
.sc(schemas_0.DeleteScheduleGroup$)
|
|
698
161
|
.build() {
|
|
699
162
|
}
|
|
700
163
|
|
|
@@ -706,7 +169,7 @@ class GetScheduleCommand extends smithyClient.Command
|
|
|
706
169
|
})
|
|
707
170
|
.s("AWSChronosService", "GetSchedule", {})
|
|
708
171
|
.n("SchedulerClient", "GetScheduleCommand")
|
|
709
|
-
.sc(GetSchedule$)
|
|
172
|
+
.sc(schemas_0.GetSchedule$)
|
|
710
173
|
.build() {
|
|
711
174
|
}
|
|
712
175
|
|
|
@@ -718,7 +181,7 @@ class GetScheduleGroupCommand extends smithyClient.Command
|
|
|
718
181
|
})
|
|
719
182
|
.s("AWSChronosService", "GetScheduleGroup", {})
|
|
720
183
|
.n("SchedulerClient", "GetScheduleGroupCommand")
|
|
721
|
-
.sc(GetScheduleGroup$)
|
|
184
|
+
.sc(schemas_0.GetScheduleGroup$)
|
|
722
185
|
.build() {
|
|
723
186
|
}
|
|
724
187
|
|
|
@@ -730,7 +193,7 @@ class ListScheduleGroupsCommand extends smithyClient.Command
|
|
|
730
193
|
})
|
|
731
194
|
.s("AWSChronosService", "ListScheduleGroups", {})
|
|
732
195
|
.n("SchedulerClient", "ListScheduleGroupsCommand")
|
|
733
|
-
.sc(ListScheduleGroups$)
|
|
196
|
+
.sc(schemas_0.ListScheduleGroups$)
|
|
734
197
|
.build() {
|
|
735
198
|
}
|
|
736
199
|
|
|
@@ -742,7 +205,7 @@ class ListSchedulesCommand extends smithyClient.Command
|
|
|
742
205
|
})
|
|
743
206
|
.s("AWSChronosService", "ListSchedules", {})
|
|
744
207
|
.n("SchedulerClient", "ListSchedulesCommand")
|
|
745
|
-
.sc(ListSchedules$)
|
|
208
|
+
.sc(schemas_0.ListSchedules$)
|
|
746
209
|
.build() {
|
|
747
210
|
}
|
|
748
211
|
|
|
@@ -754,7 +217,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
754
217
|
})
|
|
755
218
|
.s("AWSChronosService", "ListTagsForResource", {})
|
|
756
219
|
.n("SchedulerClient", "ListTagsForResourceCommand")
|
|
757
|
-
.sc(ListTagsForResource$)
|
|
220
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
758
221
|
.build() {
|
|
759
222
|
}
|
|
760
223
|
|
|
@@ -766,7 +229,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
766
229
|
})
|
|
767
230
|
.s("AWSChronosService", "TagResource", {})
|
|
768
231
|
.n("SchedulerClient", "TagResourceCommand")
|
|
769
|
-
.sc(TagResource$)
|
|
232
|
+
.sc(schemas_0.TagResource$)
|
|
770
233
|
.build() {
|
|
771
234
|
}
|
|
772
235
|
|
|
@@ -778,7 +241,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
778
241
|
})
|
|
779
242
|
.s("AWSChronosService", "UntagResource", {})
|
|
780
243
|
.n("SchedulerClient", "UntagResourceCommand")
|
|
781
|
-
.sc(UntagResource$)
|
|
244
|
+
.sc(schemas_0.UntagResource$)
|
|
782
245
|
.build() {
|
|
783
246
|
}
|
|
784
247
|
|
|
@@ -790,7 +253,7 @@ class UpdateScheduleCommand extends smithyClient.Command
|
|
|
790
253
|
})
|
|
791
254
|
.s("AWSChronosService", "UpdateSchedule", {})
|
|
792
255
|
.n("SchedulerClient", "UpdateScheduleCommand")
|
|
793
|
-
.sc(UpdateSchedule$)
|
|
256
|
+
.sc(schemas_0.UpdateSchedule$)
|
|
794
257
|
.build() {
|
|
795
258
|
}
|
|
796
259
|
|
|
@@ -866,97 +329,44 @@ Object.defineProperty(exports, "__Client", {
|
|
|
866
329
|
enumerable: true,
|
|
867
330
|
get: function () { return smithyClient.Client; }
|
|
868
331
|
});
|
|
332
|
+
Object.defineProperty(exports, "SchedulerServiceException", {
|
|
333
|
+
enumerable: true,
|
|
334
|
+
get: function () { return SchedulerServiceException.SchedulerServiceException; }
|
|
335
|
+
});
|
|
869
336
|
exports.ActionAfterCompletion = ActionAfterCompletion;
|
|
870
337
|
exports.AssignPublicIp = AssignPublicIp;
|
|
871
|
-
exports.AwsVpcConfiguration$ = AwsVpcConfiguration$;
|
|
872
|
-
exports.CapacityProviderStrategyItem$ = CapacityProviderStrategyItem$;
|
|
873
|
-
exports.ConflictException = ConflictException;
|
|
874
|
-
exports.ConflictException$ = ConflictException$;
|
|
875
|
-
exports.CreateSchedule$ = CreateSchedule$;
|
|
876
338
|
exports.CreateScheduleCommand = CreateScheduleCommand;
|
|
877
|
-
exports.CreateScheduleGroup$ = CreateScheduleGroup$;
|
|
878
339
|
exports.CreateScheduleGroupCommand = CreateScheduleGroupCommand;
|
|
879
|
-
exports.CreateScheduleGroupInput$ = CreateScheduleGroupInput$;
|
|
880
|
-
exports.CreateScheduleGroupOutput$ = CreateScheduleGroupOutput$;
|
|
881
|
-
exports.CreateScheduleInput$ = CreateScheduleInput$;
|
|
882
|
-
exports.CreateScheduleOutput$ = CreateScheduleOutput$;
|
|
883
|
-
exports.DeadLetterConfig$ = DeadLetterConfig$;
|
|
884
|
-
exports.DeleteSchedule$ = DeleteSchedule$;
|
|
885
340
|
exports.DeleteScheduleCommand = DeleteScheduleCommand;
|
|
886
|
-
exports.DeleteScheduleGroup$ = DeleteScheduleGroup$;
|
|
887
341
|
exports.DeleteScheduleGroupCommand = DeleteScheduleGroupCommand;
|
|
888
|
-
exports.DeleteScheduleGroupInput$ = DeleteScheduleGroupInput$;
|
|
889
|
-
exports.DeleteScheduleGroupOutput$ = DeleteScheduleGroupOutput$;
|
|
890
|
-
exports.DeleteScheduleInput$ = DeleteScheduleInput$;
|
|
891
|
-
exports.DeleteScheduleOutput$ = DeleteScheduleOutput$;
|
|
892
|
-
exports.EcsParameters$ = EcsParameters$;
|
|
893
|
-
exports.EventBridgeParameters$ = EventBridgeParameters$;
|
|
894
|
-
exports.FlexibleTimeWindow$ = FlexibleTimeWindow$;
|
|
895
342
|
exports.FlexibleTimeWindowMode = FlexibleTimeWindowMode;
|
|
896
|
-
exports.GetSchedule$ = GetSchedule$;
|
|
897
343
|
exports.GetScheduleCommand = GetScheduleCommand;
|
|
898
|
-
exports.GetScheduleGroup$ = GetScheduleGroup$;
|
|
899
344
|
exports.GetScheduleGroupCommand = GetScheduleGroupCommand;
|
|
900
|
-
exports.GetScheduleGroupInput$ = GetScheduleGroupInput$;
|
|
901
|
-
exports.GetScheduleGroupOutput$ = GetScheduleGroupOutput$;
|
|
902
|
-
exports.GetScheduleInput$ = GetScheduleInput$;
|
|
903
|
-
exports.GetScheduleOutput$ = GetScheduleOutput$;
|
|
904
|
-
exports.InternalServerException = InternalServerException;
|
|
905
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
906
|
-
exports.KinesisParameters$ = KinesisParameters$;
|
|
907
345
|
exports.LaunchType = LaunchType;
|
|
908
|
-
exports.ListScheduleGroups$ = ListScheduleGroups$;
|
|
909
346
|
exports.ListScheduleGroupsCommand = ListScheduleGroupsCommand;
|
|
910
|
-
exports.ListScheduleGroupsInput$ = ListScheduleGroupsInput$;
|
|
911
|
-
exports.ListScheduleGroupsOutput$ = ListScheduleGroupsOutput$;
|
|
912
|
-
exports.ListSchedules$ = ListSchedules$;
|
|
913
347
|
exports.ListSchedulesCommand = ListSchedulesCommand;
|
|
914
|
-
exports.ListSchedulesInput$ = ListSchedulesInput$;
|
|
915
|
-
exports.ListSchedulesOutput$ = ListSchedulesOutput$;
|
|
916
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
917
348
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
918
|
-
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
919
|
-
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
920
|
-
exports.NetworkConfiguration$ = NetworkConfiguration$;
|
|
921
|
-
exports.PlacementConstraint$ = PlacementConstraint$;
|
|
922
349
|
exports.PlacementConstraintType = PlacementConstraintType;
|
|
923
|
-
exports.PlacementStrategy$ = PlacementStrategy$;
|
|
924
350
|
exports.PlacementStrategyType = PlacementStrategyType;
|
|
925
351
|
exports.PropagateTags = PropagateTags;
|
|
926
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
927
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
928
|
-
exports.RetryPolicy$ = RetryPolicy$;
|
|
929
|
-
exports.SageMakerPipelineParameter$ = SageMakerPipelineParameter$;
|
|
930
|
-
exports.SageMakerPipelineParameters$ = SageMakerPipelineParameters$;
|
|
931
352
|
exports.ScheduleGroupState = ScheduleGroupState;
|
|
932
|
-
exports.ScheduleGroupSummary$ = ScheduleGroupSummary$;
|
|
933
353
|
exports.ScheduleState = ScheduleState;
|
|
934
|
-
exports.ScheduleSummary$ = ScheduleSummary$;
|
|
935
354
|
exports.Scheduler = Scheduler;
|
|
936
355
|
exports.SchedulerClient = SchedulerClient;
|
|
937
|
-
exports.SchedulerServiceException = SchedulerServiceException;
|
|
938
|
-
exports.SchedulerServiceException$ = SchedulerServiceException$;
|
|
939
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
940
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
941
|
-
exports.SqsParameters$ = SqsParameters$;
|
|
942
|
-
exports.Tag$ = Tag$;
|
|
943
|
-
exports.TagResource$ = TagResource$;
|
|
944
356
|
exports.TagResourceCommand = TagResourceCommand;
|
|
945
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
946
|
-
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
947
|
-
exports.Target$ = Target$;
|
|
948
|
-
exports.TargetSummary$ = TargetSummary$;
|
|
949
|
-
exports.ThrottlingException = ThrottlingException;
|
|
950
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
951
|
-
exports.UntagResource$ = UntagResource$;
|
|
952
357
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
953
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
954
|
-
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
955
|
-
exports.UpdateSchedule$ = UpdateSchedule$;
|
|
956
358
|
exports.UpdateScheduleCommand = UpdateScheduleCommand;
|
|
957
|
-
exports.UpdateScheduleInput$ = UpdateScheduleInput$;
|
|
958
|
-
exports.UpdateScheduleOutput$ = UpdateScheduleOutput$;
|
|
959
|
-
exports.ValidationException = ValidationException;
|
|
960
|
-
exports.ValidationException$ = ValidationException$;
|
|
961
359
|
exports.paginateListScheduleGroups = paginateListScheduleGroups;
|
|
962
360
|
exports.paginateListSchedules = paginateListSchedules;
|
|
361
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
362
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
363
|
+
enumerable: true,
|
|
364
|
+
get: function () { return schemas_0[k]; }
|
|
365
|
+
});
|
|
366
|
+
});
|
|
367
|
+
Object.keys(errors).forEach(function (k) {
|
|
368
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
369
|
+
enumerable: true,
|
|
370
|
+
get: function () { return errors[k]; }
|
|
371
|
+
});
|
|
372
|
+
});
|