@aws-sdk/client-arc-zonal-shift 3.987.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 +34 -549
- package/dist-cjs/models/ARCZonalShiftServiceException.js +12 -0
- package/dist-cjs/models/errors.js +88 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +401 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +53 -47
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- 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 ARCZonalShiftServiceException = require('./models/ARCZonalShiftServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,476 +113,6 @@ class ARCZonalShiftClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ARCZonalShiftServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ARCZonalShiftServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends ARCZonalShiftServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends ARCZonalShiftServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InternalServerException",
|
|
138
|
-
$fault: "server",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ThrottlingException extends ARCZonalShiftServiceException {
|
|
145
|
-
name = "ThrottlingException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ThrottlingException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ValidationException extends ARCZonalShiftServiceException {
|
|
157
|
-
name = "ValidationException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
reason;
|
|
160
|
-
constructor(opts) {
|
|
161
|
-
super({
|
|
162
|
-
name: "ValidationException",
|
|
163
|
-
$fault: "client",
|
|
164
|
-
...opts,
|
|
165
|
-
});
|
|
166
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
167
|
-
this.reason = opts.reason;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class ConflictException extends ARCZonalShiftServiceException {
|
|
171
|
-
name = "ConflictException";
|
|
172
|
-
$fault = "client";
|
|
173
|
-
reason;
|
|
174
|
-
zonalShiftId;
|
|
175
|
-
constructor(opts) {
|
|
176
|
-
super({
|
|
177
|
-
name: "ConflictException",
|
|
178
|
-
$fault: "client",
|
|
179
|
-
...opts,
|
|
180
|
-
});
|
|
181
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
182
|
-
this.reason = opts.reason;
|
|
183
|
-
this.zonalShiftId = opts.zonalShiftId;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
class ResourceNotFoundException extends ARCZonalShiftServiceException {
|
|
187
|
-
name = "ResourceNotFoundException";
|
|
188
|
-
$fault = "client";
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "ResourceNotFoundException",
|
|
192
|
-
$fault: "client",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
const _ADE = "AccessDeniedException";
|
|
200
|
-
const _AIR = "AutoshiftInResource";
|
|
201
|
-
const _AIRu = "AutoshiftsInResource";
|
|
202
|
-
const _AS = "AutoshiftSummary";
|
|
203
|
-
const _ASu = "AutoshiftSummaries";
|
|
204
|
-
const _BA = "BlockingAlarms";
|
|
205
|
-
const _CC = "ControlCondition";
|
|
206
|
-
const _CE = "ConflictException";
|
|
207
|
-
const _CPR = "CancelPracticeRun";
|
|
208
|
-
const _CPRC = "CreatePracticeRunConfiguration";
|
|
209
|
-
const _CPRCR = "CreatePracticeRunConfigurationRequest";
|
|
210
|
-
const _CPRCRr = "CreatePracticeRunConfigurationResponse";
|
|
211
|
-
const _CPRR = "CancelPracticeRunRequest";
|
|
212
|
-
const _CPRRa = "CancelPracticeRunResponse";
|
|
213
|
-
const _CZS = "CancelZonalShift";
|
|
214
|
-
const _CZSR = "CancelZonalShiftRequest";
|
|
215
|
-
const _DPRC = "DeletePracticeRunConfiguration";
|
|
216
|
-
const _DPRCR = "DeletePracticeRunConfigurationRequest";
|
|
217
|
-
const _DPRCRe = "DeletePracticeRunConfigurationResponse";
|
|
218
|
-
const _GAONS = "GetAutoshiftObserverNotificationStatus";
|
|
219
|
-
const _GAONSR = "GetAutoshiftObserverNotificationStatusRequest";
|
|
220
|
-
const _GAONSRe = "GetAutoshiftObserverNotificationStatusResponse";
|
|
221
|
-
const _GMR = "GetManagedResource";
|
|
222
|
-
const _GMRR = "GetManagedResourceRequest";
|
|
223
|
-
const _GMRRe = "GetManagedResourceResponse";
|
|
224
|
-
const _ISE = "InternalServerException";
|
|
225
|
-
const _LA = "ListAutoshifts";
|
|
226
|
-
const _LAR = "ListAutoshiftsRequest";
|
|
227
|
-
const _LARi = "ListAutoshiftsResponse";
|
|
228
|
-
const _LMR = "ListManagedResources";
|
|
229
|
-
const _LMRR = "ListManagedResourcesRequest";
|
|
230
|
-
const _LMRRi = "ListManagedResourcesResponse";
|
|
231
|
-
const _LZS = "ListZonalShifts";
|
|
232
|
-
const _LZSR = "ListZonalShiftsRequest";
|
|
233
|
-
const _LZSRi = "ListZonalShiftsResponse";
|
|
234
|
-
const _MRS = "ManagedResourceSummary";
|
|
235
|
-
const _MRSa = "ManagedResourceSummaries";
|
|
236
|
-
const _OA = "OutcomeAlarms";
|
|
237
|
-
const _PRC = "PracticeRunConfiguration";
|
|
238
|
-
const _RNFE = "ResourceNotFoundException";
|
|
239
|
-
const _SPR = "StartPracticeRun";
|
|
240
|
-
const _SPRR = "StartPracticeRunRequest";
|
|
241
|
-
const _SPRRt = "StartPracticeRunResponse";
|
|
242
|
-
const _SZS = "StartZonalShift";
|
|
243
|
-
const _SZSR = "StartZonalShiftRequest";
|
|
244
|
-
const _TE = "ThrottlingException";
|
|
245
|
-
const _UAONS = "UpdateAutoshiftObserverNotificationStatus";
|
|
246
|
-
const _UAONSR = "UpdateAutoshiftObserverNotificationStatusRequest";
|
|
247
|
-
const _UAONSRp = "UpdateAutoshiftObserverNotificationStatusResponse";
|
|
248
|
-
const _UPRC = "UpdatePracticeRunConfiguration";
|
|
249
|
-
const _UPRCR = "UpdatePracticeRunConfigurationRequest";
|
|
250
|
-
const _UPRCRp = "UpdatePracticeRunConfigurationResponse";
|
|
251
|
-
const _UZAC = "UpdateZonalAutoshiftConfiguration";
|
|
252
|
-
const _UZACR = "UpdateZonalAutoshiftConfigurationRequest";
|
|
253
|
-
const _UZACRp = "UpdateZonalAutoshiftConfigurationResponse";
|
|
254
|
-
const _UZS = "UpdateZonalShift";
|
|
255
|
-
const _UZSR = "UpdateZonalShiftRequest";
|
|
256
|
-
const _VE = "ValidationException";
|
|
257
|
-
const _ZS = "ZonalShift";
|
|
258
|
-
const _ZSIR = "ZonalShiftInResource";
|
|
259
|
-
const _ZSIRo = "ZonalShiftsInResource";
|
|
260
|
-
const _ZSS = "ZonalShiftSummary";
|
|
261
|
-
const _ZSSo = "ZonalShiftSummaries";
|
|
262
|
-
const _a = "arn";
|
|
263
|
-
const _aF = "awayFrom";
|
|
264
|
-
const _aI = "alarmIdentifier";
|
|
265
|
-
const _aS = "appliedStatus";
|
|
266
|
-
const _aW = "allowedWindows";
|
|
267
|
-
const _aWp = "appliedWeights";
|
|
268
|
-
const _aZ = "availabilityZones";
|
|
269
|
-
const _au = "autoshifts";
|
|
270
|
-
const _bA = "blockingAlarms";
|
|
271
|
-
const _bD = "blockedDates";
|
|
272
|
-
const _bW = "blockedWindows";
|
|
273
|
-
const _c = "client";
|
|
274
|
-
const _co = "comment";
|
|
275
|
-
const _e = "error";
|
|
276
|
-
const _eI = "expiresIn";
|
|
277
|
-
const _eT = "endTime";
|
|
278
|
-
const _eTx = "expiryTime";
|
|
279
|
-
const _h = "http";
|
|
280
|
-
const _hE = "httpError";
|
|
281
|
-
const _hQ = "httpQuery";
|
|
282
|
-
const _i = "items";
|
|
283
|
-
const _m = "message";
|
|
284
|
-
const _mR = "maxResults";
|
|
285
|
-
const _n = "name";
|
|
286
|
-
const _nT = "nextToken";
|
|
287
|
-
const _oA = "outcomeAlarms";
|
|
288
|
-
const _pRC = "practiceRunConfiguration";
|
|
289
|
-
const _pRO = "practiceRunOutcome";
|
|
290
|
-
const _pRS = "practiceRunStatus";
|
|
291
|
-
const _r = "reason";
|
|
292
|
-
const _rI = "resourceIdentifier";
|
|
293
|
-
const _s = "status";
|
|
294
|
-
const _sT = "startTime";
|
|
295
|
-
const _sTh = "shiftType";
|
|
296
|
-
const _se = "server";
|
|
297
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.arczonalshift";
|
|
298
|
-
const _t = "type";
|
|
299
|
-
const _zAS = "zonalAutoshiftStatus";
|
|
300
|
-
const _zS = "zonalShifts";
|
|
301
|
-
const _zSI = "zonalShiftId";
|
|
302
|
-
const n0 = "com.amazonaws.arczonalshift";
|
|
303
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
304
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
305
|
-
[_m],
|
|
306
|
-
[0]
|
|
307
|
-
];
|
|
308
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
309
|
-
var AutoshiftInResource$ = [3, n0, _AIR,
|
|
310
|
-
0,
|
|
311
|
-
[_aS, _aF, _sT],
|
|
312
|
-
[0, 0, 4], 3
|
|
313
|
-
];
|
|
314
|
-
var AutoshiftSummary$ = [3, n0, _AS,
|
|
315
|
-
0,
|
|
316
|
-
[_aF, _sT, _s, _eT],
|
|
317
|
-
[0, 4, 0, 4], 3
|
|
318
|
-
];
|
|
319
|
-
var CancelPracticeRunRequest$ = [3, n0, _CPRR,
|
|
320
|
-
0,
|
|
321
|
-
[_zSI],
|
|
322
|
-
[[0, 1]], 1
|
|
323
|
-
];
|
|
324
|
-
var CancelPracticeRunResponse$ = [3, n0, _CPRRa,
|
|
325
|
-
0,
|
|
326
|
-
[_zSI, _rI, _aF, _eTx, _sT, _s, _co],
|
|
327
|
-
[0, 0, 0, 4, 4, 0, 0], 7
|
|
328
|
-
];
|
|
329
|
-
var CancelZonalShiftRequest$ = [3, n0, _CZSR,
|
|
330
|
-
0,
|
|
331
|
-
[_zSI],
|
|
332
|
-
[[0, 1]], 1
|
|
333
|
-
];
|
|
334
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
335
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
336
|
-
[_m, _r, _zSI],
|
|
337
|
-
[0, 0, 0], 2
|
|
338
|
-
];
|
|
339
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
340
|
-
var ControlCondition$ = [3, n0, _CC,
|
|
341
|
-
0,
|
|
342
|
-
[_t, _aI],
|
|
343
|
-
[0, 0], 2
|
|
344
|
-
];
|
|
345
|
-
var CreatePracticeRunConfigurationRequest$ = [3, n0, _CPRCR,
|
|
346
|
-
0,
|
|
347
|
-
[_rI, _oA, _bW, _bD, _bA, _aW],
|
|
348
|
-
[0, () => OutcomeAlarms, 64 | 0, 64 | 0, () => BlockingAlarms, 64 | 0], 2
|
|
349
|
-
];
|
|
350
|
-
var CreatePracticeRunConfigurationResponse$ = [3, n0, _CPRCRr,
|
|
351
|
-
0,
|
|
352
|
-
[_a, _n, _zAS, _pRC],
|
|
353
|
-
[0, 0, 0, () => PracticeRunConfiguration$], 4
|
|
354
|
-
];
|
|
355
|
-
var DeletePracticeRunConfigurationRequest$ = [3, n0, _DPRCR,
|
|
356
|
-
0,
|
|
357
|
-
[_rI],
|
|
358
|
-
[[0, 1]], 1
|
|
359
|
-
];
|
|
360
|
-
var DeletePracticeRunConfigurationResponse$ = [3, n0, _DPRCRe,
|
|
361
|
-
0,
|
|
362
|
-
[_a, _n, _zAS],
|
|
363
|
-
[0, 0, 0], 3
|
|
364
|
-
];
|
|
365
|
-
var GetAutoshiftObserverNotificationStatusRequest$ = [3, n0, _GAONSR,
|
|
366
|
-
0,
|
|
367
|
-
[],
|
|
368
|
-
[]
|
|
369
|
-
];
|
|
370
|
-
var GetAutoshiftObserverNotificationStatusResponse$ = [3, n0, _GAONSRe,
|
|
371
|
-
0,
|
|
372
|
-
[_s],
|
|
373
|
-
[0], 1
|
|
374
|
-
];
|
|
375
|
-
var GetManagedResourceRequest$ = [3, n0, _GMRR,
|
|
376
|
-
0,
|
|
377
|
-
[_rI],
|
|
378
|
-
[[0, 1]], 1
|
|
379
|
-
];
|
|
380
|
-
var GetManagedResourceResponse$ = [3, n0, _GMRRe,
|
|
381
|
-
0,
|
|
382
|
-
[_aWp, _zS, _a, _n, _au, _pRC, _zAS],
|
|
383
|
-
[128 | 1, () => ZonalShiftsInResource, 0, 0, () => AutoshiftsInResource, () => PracticeRunConfiguration$, 0], 2
|
|
384
|
-
];
|
|
385
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
386
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
387
|
-
[_m],
|
|
388
|
-
[0]
|
|
389
|
-
];
|
|
390
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
391
|
-
var ListAutoshiftsRequest$ = [3, n0, _LAR,
|
|
392
|
-
0,
|
|
393
|
-
[_nT, _s, _mR],
|
|
394
|
-
[[0, { [_hQ]: _nT }], [0, { [_hQ]: _s }], [1, { [_hQ]: _mR }]]
|
|
395
|
-
];
|
|
396
|
-
var ListAutoshiftsResponse$ = [3, n0, _LARi,
|
|
397
|
-
0,
|
|
398
|
-
[_i, _nT],
|
|
399
|
-
[() => AutoshiftSummaries, 0]
|
|
400
|
-
];
|
|
401
|
-
var ListManagedResourcesRequest$ = [3, n0, _LMRR,
|
|
402
|
-
0,
|
|
403
|
-
[_nT, _mR],
|
|
404
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
405
|
-
];
|
|
406
|
-
var ListManagedResourcesResponse$ = [3, n0, _LMRRi,
|
|
407
|
-
0,
|
|
408
|
-
[_i, _nT],
|
|
409
|
-
[() => ManagedResourceSummaries, 0], 1
|
|
410
|
-
];
|
|
411
|
-
var ListZonalShiftsRequest$ = [3, n0, _LZSR,
|
|
412
|
-
0,
|
|
413
|
-
[_nT, _s, _mR, _rI],
|
|
414
|
-
[[0, { [_hQ]: _nT }], [0, { [_hQ]: _s }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _rI }]]
|
|
415
|
-
];
|
|
416
|
-
var ListZonalShiftsResponse$ = [3, n0, _LZSRi,
|
|
417
|
-
0,
|
|
418
|
-
[_i, _nT],
|
|
419
|
-
[() => ZonalShiftSummaries, 0]
|
|
420
|
-
];
|
|
421
|
-
var ManagedResourceSummary$ = [3, n0, _MRS,
|
|
422
|
-
0,
|
|
423
|
-
[_aZ, _a, _n, _aWp, _zS, _au, _zAS, _pRS],
|
|
424
|
-
[64 | 0, 0, 0, 128 | 1, () => ZonalShiftsInResource, () => AutoshiftsInResource, 0, 0], 1
|
|
425
|
-
];
|
|
426
|
-
var PracticeRunConfiguration$ = [3, n0, _PRC,
|
|
427
|
-
0,
|
|
428
|
-
[_oA, _bA, _bW, _aW, _bD],
|
|
429
|
-
[() => OutcomeAlarms, () => BlockingAlarms, 64 | 0, 64 | 0, 64 | 0], 1
|
|
430
|
-
];
|
|
431
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
432
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
433
|
-
[_m],
|
|
434
|
-
[0], 1
|
|
435
|
-
];
|
|
436
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
437
|
-
var StartPracticeRunRequest$ = [3, n0, _SPRR,
|
|
438
|
-
0,
|
|
439
|
-
[_rI, _aF, _co],
|
|
440
|
-
[0, 0, 0], 3
|
|
441
|
-
];
|
|
442
|
-
var StartPracticeRunResponse$ = [3, n0, _SPRRt,
|
|
443
|
-
0,
|
|
444
|
-
[_zSI, _rI, _aF, _eTx, _sT, _s, _co],
|
|
445
|
-
[0, 0, 0, 4, 4, 0, 0], 7
|
|
446
|
-
];
|
|
447
|
-
var StartZonalShiftRequest$ = [3, n0, _SZSR,
|
|
448
|
-
0,
|
|
449
|
-
[_rI, _aF, _eI, _co],
|
|
450
|
-
[0, 0, 0, 0], 4
|
|
451
|
-
];
|
|
452
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
453
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
454
|
-
[_m],
|
|
455
|
-
[0]
|
|
456
|
-
];
|
|
457
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
458
|
-
var UpdateAutoshiftObserverNotificationStatusRequest$ = [3, n0, _UAONSR,
|
|
459
|
-
0,
|
|
460
|
-
[_s],
|
|
461
|
-
[0], 1
|
|
462
|
-
];
|
|
463
|
-
var UpdateAutoshiftObserverNotificationStatusResponse$ = [3, n0, _UAONSRp,
|
|
464
|
-
0,
|
|
465
|
-
[_s],
|
|
466
|
-
[0], 1
|
|
467
|
-
];
|
|
468
|
-
var UpdatePracticeRunConfigurationRequest$ = [3, n0, _UPRCR,
|
|
469
|
-
0,
|
|
470
|
-
[_rI, _bW, _bD, _bA, _aW, _oA],
|
|
471
|
-
[[0, 1], 64 | 0, 64 | 0, () => BlockingAlarms, 64 | 0, () => OutcomeAlarms], 1
|
|
472
|
-
];
|
|
473
|
-
var UpdatePracticeRunConfigurationResponse$ = [3, n0, _UPRCRp,
|
|
474
|
-
0,
|
|
475
|
-
[_a, _n, _zAS, _pRC],
|
|
476
|
-
[0, 0, 0, () => PracticeRunConfiguration$], 4
|
|
477
|
-
];
|
|
478
|
-
var UpdateZonalAutoshiftConfigurationRequest$ = [3, n0, _UZACR,
|
|
479
|
-
0,
|
|
480
|
-
[_rI, _zAS],
|
|
481
|
-
[[0, 1], 0], 2
|
|
482
|
-
];
|
|
483
|
-
var UpdateZonalAutoshiftConfigurationResponse$ = [3, n0, _UZACRp,
|
|
484
|
-
0,
|
|
485
|
-
[_rI, _zAS],
|
|
486
|
-
[0, 0], 2
|
|
487
|
-
];
|
|
488
|
-
var UpdateZonalShiftRequest$ = [3, n0, _UZSR,
|
|
489
|
-
0,
|
|
490
|
-
[_zSI, _co, _eI],
|
|
491
|
-
[[0, 1], 0, 0], 1
|
|
492
|
-
];
|
|
493
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
494
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
495
|
-
[_m, _r],
|
|
496
|
-
[0, 0], 2
|
|
497
|
-
];
|
|
498
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
499
|
-
var ZonalShift$ = [3, n0, _ZS,
|
|
500
|
-
0,
|
|
501
|
-
[_zSI, _rI, _aF, _eTx, _sT, _s, _co],
|
|
502
|
-
[0, 0, 0, 4, 4, 0, 0], 7
|
|
503
|
-
];
|
|
504
|
-
var ZonalShiftInResource$ = [3, n0, _ZSIR,
|
|
505
|
-
0,
|
|
506
|
-
[_aS, _zSI, _rI, _aF, _eTx, _sT, _co, _sTh, _pRO],
|
|
507
|
-
[0, 0, 0, 0, 4, 4, 0, 0, 0], 7
|
|
508
|
-
];
|
|
509
|
-
var ZonalShiftSummary$ = [3, n0, _ZSS,
|
|
510
|
-
0,
|
|
511
|
-
[_zSI, _rI, _aF, _eTx, _sT, _s, _co, _sTh, _pRO],
|
|
512
|
-
[0, 0, 0, 4, 4, 0, 0, 0, 0], 7
|
|
513
|
-
];
|
|
514
|
-
var ARCZonalShiftServiceException$ = [-3, _sm, "ARCZonalShiftServiceException", 0, [], []];
|
|
515
|
-
schema.TypeRegistry.for(_sm).registerError(ARCZonalShiftServiceException$, ARCZonalShiftServiceException);
|
|
516
|
-
var AutoshiftsInResource = [1, n0, _AIRu,
|
|
517
|
-
0, () => AutoshiftInResource$
|
|
518
|
-
];
|
|
519
|
-
var AutoshiftSummaries = [1, n0, _ASu,
|
|
520
|
-
0, () => AutoshiftSummary$
|
|
521
|
-
];
|
|
522
|
-
var BlockingAlarms = [1, n0, _BA,
|
|
523
|
-
0, () => ControlCondition$
|
|
524
|
-
];
|
|
525
|
-
var ManagedResourceSummaries = [1, n0, _MRSa,
|
|
526
|
-
0, () => ManagedResourceSummary$
|
|
527
|
-
];
|
|
528
|
-
var OutcomeAlarms = [1, n0, _OA,
|
|
529
|
-
0, () => ControlCondition$
|
|
530
|
-
];
|
|
531
|
-
var ZonalShiftsInResource = [1, n0, _ZSIRo,
|
|
532
|
-
0, () => ZonalShiftInResource$
|
|
533
|
-
];
|
|
534
|
-
var ZonalShiftSummaries = [1, n0, _ZSSo,
|
|
535
|
-
0, () => ZonalShiftSummary$
|
|
536
|
-
];
|
|
537
|
-
var CancelPracticeRun$ = [9, n0, _CPR,
|
|
538
|
-
{ [_h]: ["DELETE", "/practiceruns/{zonalShiftId}", 200] }, () => CancelPracticeRunRequest$, () => CancelPracticeRunResponse$
|
|
539
|
-
];
|
|
540
|
-
var CancelZonalShift$ = [9, n0, _CZS,
|
|
541
|
-
{ [_h]: ["DELETE", "/zonalshifts/{zonalShiftId}", 200] }, () => CancelZonalShiftRequest$, () => ZonalShift$
|
|
542
|
-
];
|
|
543
|
-
var CreatePracticeRunConfiguration$ = [9, n0, _CPRC,
|
|
544
|
-
{ [_h]: ["POST", "/configuration", 201] }, () => CreatePracticeRunConfigurationRequest$, () => CreatePracticeRunConfigurationResponse$
|
|
545
|
-
];
|
|
546
|
-
var DeletePracticeRunConfiguration$ = [9, n0, _DPRC,
|
|
547
|
-
{ [_h]: ["DELETE", "/configuration/{resourceIdentifier}", 200] }, () => DeletePracticeRunConfigurationRequest$, () => DeletePracticeRunConfigurationResponse$
|
|
548
|
-
];
|
|
549
|
-
var GetAutoshiftObserverNotificationStatus$ = [9, n0, _GAONS,
|
|
550
|
-
{ [_h]: ["GET", "/autoshift-observer-notification", 200] }, () => GetAutoshiftObserverNotificationStatusRequest$, () => GetAutoshiftObserverNotificationStatusResponse$
|
|
551
|
-
];
|
|
552
|
-
var GetManagedResource$ = [9, n0, _GMR,
|
|
553
|
-
{ [_h]: ["GET", "/managedresources/{resourceIdentifier}", 200] }, () => GetManagedResourceRequest$, () => GetManagedResourceResponse$
|
|
554
|
-
];
|
|
555
|
-
var ListAutoshifts$ = [9, n0, _LA,
|
|
556
|
-
{ [_h]: ["GET", "/autoshifts", 200] }, () => ListAutoshiftsRequest$, () => ListAutoshiftsResponse$
|
|
557
|
-
];
|
|
558
|
-
var ListManagedResources$ = [9, n0, _LMR,
|
|
559
|
-
{ [_h]: ["GET", "/managedresources", 200] }, () => ListManagedResourcesRequest$, () => ListManagedResourcesResponse$
|
|
560
|
-
];
|
|
561
|
-
var ListZonalShifts$ = [9, n0, _LZS,
|
|
562
|
-
{ [_h]: ["GET", "/zonalshifts", 200] }, () => ListZonalShiftsRequest$, () => ListZonalShiftsResponse$
|
|
563
|
-
];
|
|
564
|
-
var StartPracticeRun$ = [9, n0, _SPR,
|
|
565
|
-
{ [_h]: ["POST", "/practiceruns", 200] }, () => StartPracticeRunRequest$, () => StartPracticeRunResponse$
|
|
566
|
-
];
|
|
567
|
-
var StartZonalShift$ = [9, n0, _SZS,
|
|
568
|
-
{ [_h]: ["POST", "/zonalshifts", 201] }, () => StartZonalShiftRequest$, () => ZonalShift$
|
|
569
|
-
];
|
|
570
|
-
var UpdateAutoshiftObserverNotificationStatus$ = [9, n0, _UAONS,
|
|
571
|
-
{ [_h]: ["PUT", "/autoshift-observer-notification", 200] }, () => UpdateAutoshiftObserverNotificationStatusRequest$, () => UpdateAutoshiftObserverNotificationStatusResponse$
|
|
572
|
-
];
|
|
573
|
-
var UpdatePracticeRunConfiguration$ = [9, n0, _UPRC,
|
|
574
|
-
{ [_h]: ["PATCH", "/configuration/{resourceIdentifier}", 200] }, () => UpdatePracticeRunConfigurationRequest$, () => UpdatePracticeRunConfigurationResponse$
|
|
575
|
-
];
|
|
576
|
-
var UpdateZonalAutoshiftConfiguration$ = [9, n0, _UZAC,
|
|
577
|
-
{ [_h]: ["PUT", "/managedresources/{resourceIdentifier}", 200] }, () => UpdateZonalAutoshiftConfigurationRequest$, () => UpdateZonalAutoshiftConfigurationResponse$
|
|
578
|
-
];
|
|
579
|
-
var UpdateZonalShift$ = [9, n0, _UZS,
|
|
580
|
-
{ [_h]: ["PATCH", "/zonalshifts/{zonalShiftId}", 200] }, () => UpdateZonalShiftRequest$, () => ZonalShift$
|
|
581
|
-
];
|
|
582
|
-
|
|
583
116
|
class CancelPracticeRunCommand extends smithyClient.Command
|
|
584
117
|
.classBuilder()
|
|
585
118
|
.ep(commonParams)
|
|
@@ -588,7 +121,7 @@ class CancelPracticeRunCommand extends smithyClient.Command
|
|
|
588
121
|
})
|
|
589
122
|
.s("PercDataPlane", "CancelPracticeRun", {})
|
|
590
123
|
.n("ARCZonalShiftClient", "CancelPracticeRunCommand")
|
|
591
|
-
.sc(CancelPracticeRun$)
|
|
124
|
+
.sc(schemas_0.CancelPracticeRun$)
|
|
592
125
|
.build() {
|
|
593
126
|
}
|
|
594
127
|
|
|
@@ -600,7 +133,7 @@ class CancelZonalShiftCommand extends smithyClient.Command
|
|
|
600
133
|
})
|
|
601
134
|
.s("PercDataPlane", "CancelZonalShift", {})
|
|
602
135
|
.n("ARCZonalShiftClient", "CancelZonalShiftCommand")
|
|
603
|
-
.sc(CancelZonalShift$)
|
|
136
|
+
.sc(schemas_0.CancelZonalShift$)
|
|
604
137
|
.build() {
|
|
605
138
|
}
|
|
606
139
|
|
|
@@ -612,7 +145,7 @@ class CreatePracticeRunConfigurationCommand extends smithyClient.Command
|
|
|
612
145
|
})
|
|
613
146
|
.s("PercDataPlane", "CreatePracticeRunConfiguration", {})
|
|
614
147
|
.n("ARCZonalShiftClient", "CreatePracticeRunConfigurationCommand")
|
|
615
|
-
.sc(CreatePracticeRunConfiguration$)
|
|
148
|
+
.sc(schemas_0.CreatePracticeRunConfiguration$)
|
|
616
149
|
.build() {
|
|
617
150
|
}
|
|
618
151
|
|
|
@@ -624,7 +157,7 @@ class DeletePracticeRunConfigurationCommand extends smithyClient.Command
|
|
|
624
157
|
})
|
|
625
158
|
.s("PercDataPlane", "DeletePracticeRunConfiguration", {})
|
|
626
159
|
.n("ARCZonalShiftClient", "DeletePracticeRunConfigurationCommand")
|
|
627
|
-
.sc(DeletePracticeRunConfiguration$)
|
|
160
|
+
.sc(schemas_0.DeletePracticeRunConfiguration$)
|
|
628
161
|
.build() {
|
|
629
162
|
}
|
|
630
163
|
|
|
@@ -636,7 +169,7 @@ class GetAutoshiftObserverNotificationStatusCommand extends smithyClient.Command
|
|
|
636
169
|
})
|
|
637
170
|
.s("PercDataPlane", "GetAutoshiftObserverNotificationStatus", {})
|
|
638
171
|
.n("ARCZonalShiftClient", "GetAutoshiftObserverNotificationStatusCommand")
|
|
639
|
-
.sc(GetAutoshiftObserverNotificationStatus$)
|
|
172
|
+
.sc(schemas_0.GetAutoshiftObserverNotificationStatus$)
|
|
640
173
|
.build() {
|
|
641
174
|
}
|
|
642
175
|
|
|
@@ -648,7 +181,7 @@ class GetManagedResourceCommand extends smithyClient.Command
|
|
|
648
181
|
})
|
|
649
182
|
.s("PercDataPlane", "GetManagedResource", {})
|
|
650
183
|
.n("ARCZonalShiftClient", "GetManagedResourceCommand")
|
|
651
|
-
.sc(GetManagedResource$)
|
|
184
|
+
.sc(schemas_0.GetManagedResource$)
|
|
652
185
|
.build() {
|
|
653
186
|
}
|
|
654
187
|
|
|
@@ -660,7 +193,7 @@ class ListAutoshiftsCommand extends smithyClient.Command
|
|
|
660
193
|
})
|
|
661
194
|
.s("PercDataPlane", "ListAutoshifts", {})
|
|
662
195
|
.n("ARCZonalShiftClient", "ListAutoshiftsCommand")
|
|
663
|
-
.sc(ListAutoshifts$)
|
|
196
|
+
.sc(schemas_0.ListAutoshifts$)
|
|
664
197
|
.build() {
|
|
665
198
|
}
|
|
666
199
|
|
|
@@ -672,7 +205,7 @@ class ListManagedResourcesCommand extends smithyClient.Command
|
|
|
672
205
|
})
|
|
673
206
|
.s("PercDataPlane", "ListManagedResources", {})
|
|
674
207
|
.n("ARCZonalShiftClient", "ListManagedResourcesCommand")
|
|
675
|
-
.sc(ListManagedResources$)
|
|
208
|
+
.sc(schemas_0.ListManagedResources$)
|
|
676
209
|
.build() {
|
|
677
210
|
}
|
|
678
211
|
|
|
@@ -684,7 +217,7 @@ class ListZonalShiftsCommand extends smithyClient.Command
|
|
|
684
217
|
})
|
|
685
218
|
.s("PercDataPlane", "ListZonalShifts", {})
|
|
686
219
|
.n("ARCZonalShiftClient", "ListZonalShiftsCommand")
|
|
687
|
-
.sc(ListZonalShifts$)
|
|
220
|
+
.sc(schemas_0.ListZonalShifts$)
|
|
688
221
|
.build() {
|
|
689
222
|
}
|
|
690
223
|
|
|
@@ -696,7 +229,7 @@ class StartPracticeRunCommand extends smithyClient.Command
|
|
|
696
229
|
})
|
|
697
230
|
.s("PercDataPlane", "StartPracticeRun", {})
|
|
698
231
|
.n("ARCZonalShiftClient", "StartPracticeRunCommand")
|
|
699
|
-
.sc(StartPracticeRun$)
|
|
232
|
+
.sc(schemas_0.StartPracticeRun$)
|
|
700
233
|
.build() {
|
|
701
234
|
}
|
|
702
235
|
|
|
@@ -708,7 +241,7 @@ class StartZonalShiftCommand extends smithyClient.Command
|
|
|
708
241
|
})
|
|
709
242
|
.s("PercDataPlane", "StartZonalShift", {})
|
|
710
243
|
.n("ARCZonalShiftClient", "StartZonalShiftCommand")
|
|
711
|
-
.sc(StartZonalShift$)
|
|
244
|
+
.sc(schemas_0.StartZonalShift$)
|
|
712
245
|
.build() {
|
|
713
246
|
}
|
|
714
247
|
|
|
@@ -720,7 +253,7 @@ class UpdateAutoshiftObserverNotificationStatusCommand extends smithyClient.Comm
|
|
|
720
253
|
})
|
|
721
254
|
.s("PercDataPlane", "UpdateAutoshiftObserverNotificationStatus", {})
|
|
722
255
|
.n("ARCZonalShiftClient", "UpdateAutoshiftObserverNotificationStatusCommand")
|
|
723
|
-
.sc(UpdateAutoshiftObserverNotificationStatus$)
|
|
256
|
+
.sc(schemas_0.UpdateAutoshiftObserverNotificationStatus$)
|
|
724
257
|
.build() {
|
|
725
258
|
}
|
|
726
259
|
|
|
@@ -732,7 +265,7 @@ class UpdatePracticeRunConfigurationCommand extends smithyClient.Command
|
|
|
732
265
|
})
|
|
733
266
|
.s("PercDataPlane", "UpdatePracticeRunConfiguration", {})
|
|
734
267
|
.n("ARCZonalShiftClient", "UpdatePracticeRunConfigurationCommand")
|
|
735
|
-
.sc(UpdatePracticeRunConfiguration$)
|
|
268
|
+
.sc(schemas_0.UpdatePracticeRunConfiguration$)
|
|
736
269
|
.build() {
|
|
737
270
|
}
|
|
738
271
|
|
|
@@ -744,7 +277,7 @@ class UpdateZonalAutoshiftConfigurationCommand extends smithyClient.Command
|
|
|
744
277
|
})
|
|
745
278
|
.s("PercDataPlane", "UpdateZonalAutoshiftConfiguration", {})
|
|
746
279
|
.n("ARCZonalShiftClient", "UpdateZonalAutoshiftConfigurationCommand")
|
|
747
|
-
.sc(UpdateZonalAutoshiftConfiguration$)
|
|
280
|
+
.sc(schemas_0.UpdateZonalAutoshiftConfiguration$)
|
|
748
281
|
.build() {
|
|
749
282
|
}
|
|
750
283
|
|
|
@@ -756,7 +289,7 @@ class UpdateZonalShiftCommand extends smithyClient.Command
|
|
|
756
289
|
})
|
|
757
290
|
.s("PercDataPlane", "UpdateZonalShift", {})
|
|
758
291
|
.n("ARCZonalShiftClient", "UpdateZonalShiftCommand")
|
|
759
|
-
.sc(UpdateZonalShift$)
|
|
292
|
+
.sc(schemas_0.UpdateZonalShift$)
|
|
760
293
|
.build() {
|
|
761
294
|
}
|
|
762
295
|
|
|
@@ -873,98 +406,50 @@ Object.defineProperty(exports, "__Client", {
|
|
|
873
406
|
enumerable: true,
|
|
874
407
|
get: function () { return smithyClient.Client; }
|
|
875
408
|
});
|
|
409
|
+
Object.defineProperty(exports, "ARCZonalShiftServiceException", {
|
|
410
|
+
enumerable: true,
|
|
411
|
+
get: function () { return ARCZonalShiftServiceException.ARCZonalShiftServiceException; }
|
|
412
|
+
});
|
|
876
413
|
exports.ARCZonalShift = ARCZonalShift;
|
|
877
414
|
exports.ARCZonalShiftClient = ARCZonalShiftClient;
|
|
878
|
-
exports.ARCZonalShiftServiceException = ARCZonalShiftServiceException;
|
|
879
|
-
exports.ARCZonalShiftServiceException$ = ARCZonalShiftServiceException$;
|
|
880
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
881
|
-
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
882
415
|
exports.AppliedStatus = AppliedStatus;
|
|
883
416
|
exports.AutoshiftAppliedStatus = AutoshiftAppliedStatus;
|
|
884
417
|
exports.AutoshiftExecutionStatus = AutoshiftExecutionStatus;
|
|
885
|
-
exports.AutoshiftInResource$ = AutoshiftInResource$;
|
|
886
418
|
exports.AutoshiftObserverNotificationStatus = AutoshiftObserverNotificationStatus;
|
|
887
|
-
exports.AutoshiftSummary$ = AutoshiftSummary$;
|
|
888
|
-
exports.CancelPracticeRun$ = CancelPracticeRun$;
|
|
889
419
|
exports.CancelPracticeRunCommand = CancelPracticeRunCommand;
|
|
890
|
-
exports.CancelPracticeRunRequest$ = CancelPracticeRunRequest$;
|
|
891
|
-
exports.CancelPracticeRunResponse$ = CancelPracticeRunResponse$;
|
|
892
|
-
exports.CancelZonalShift$ = CancelZonalShift$;
|
|
893
420
|
exports.CancelZonalShiftCommand = CancelZonalShiftCommand;
|
|
894
|
-
exports.CancelZonalShiftRequest$ = CancelZonalShiftRequest$;
|
|
895
|
-
exports.ConflictException = ConflictException;
|
|
896
|
-
exports.ConflictException$ = ConflictException$;
|
|
897
421
|
exports.ConflictExceptionReason = ConflictExceptionReason;
|
|
898
|
-
exports.ControlCondition$ = ControlCondition$;
|
|
899
422
|
exports.ControlConditionType = ControlConditionType;
|
|
900
|
-
exports.CreatePracticeRunConfiguration$ = CreatePracticeRunConfiguration$;
|
|
901
423
|
exports.CreatePracticeRunConfigurationCommand = CreatePracticeRunConfigurationCommand;
|
|
902
|
-
exports.CreatePracticeRunConfigurationRequest$ = CreatePracticeRunConfigurationRequest$;
|
|
903
|
-
exports.CreatePracticeRunConfigurationResponse$ = CreatePracticeRunConfigurationResponse$;
|
|
904
|
-
exports.DeletePracticeRunConfiguration$ = DeletePracticeRunConfiguration$;
|
|
905
424
|
exports.DeletePracticeRunConfigurationCommand = DeletePracticeRunConfigurationCommand;
|
|
906
|
-
exports.DeletePracticeRunConfigurationRequest$ = DeletePracticeRunConfigurationRequest$;
|
|
907
|
-
exports.DeletePracticeRunConfigurationResponse$ = DeletePracticeRunConfigurationResponse$;
|
|
908
|
-
exports.GetAutoshiftObserverNotificationStatus$ = GetAutoshiftObserverNotificationStatus$;
|
|
909
425
|
exports.GetAutoshiftObserverNotificationStatusCommand = GetAutoshiftObserverNotificationStatusCommand;
|
|
910
|
-
exports.GetAutoshiftObserverNotificationStatusRequest$ = GetAutoshiftObserverNotificationStatusRequest$;
|
|
911
|
-
exports.GetAutoshiftObserverNotificationStatusResponse$ = GetAutoshiftObserverNotificationStatusResponse$;
|
|
912
|
-
exports.GetManagedResource$ = GetManagedResource$;
|
|
913
426
|
exports.GetManagedResourceCommand = GetManagedResourceCommand;
|
|
914
|
-
exports.GetManagedResourceRequest$ = GetManagedResourceRequest$;
|
|
915
|
-
exports.GetManagedResourceResponse$ = GetManagedResourceResponse$;
|
|
916
|
-
exports.InternalServerException = InternalServerException;
|
|
917
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
918
|
-
exports.ListAutoshifts$ = ListAutoshifts$;
|
|
919
427
|
exports.ListAutoshiftsCommand = ListAutoshiftsCommand;
|
|
920
|
-
exports.ListAutoshiftsRequest$ = ListAutoshiftsRequest$;
|
|
921
|
-
exports.ListAutoshiftsResponse$ = ListAutoshiftsResponse$;
|
|
922
|
-
exports.ListManagedResources$ = ListManagedResources$;
|
|
923
428
|
exports.ListManagedResourcesCommand = ListManagedResourcesCommand;
|
|
924
|
-
exports.ListManagedResourcesRequest$ = ListManagedResourcesRequest$;
|
|
925
|
-
exports.ListManagedResourcesResponse$ = ListManagedResourcesResponse$;
|
|
926
|
-
exports.ListZonalShifts$ = ListZonalShifts$;
|
|
927
429
|
exports.ListZonalShiftsCommand = ListZonalShiftsCommand;
|
|
928
|
-
exports.ListZonalShiftsRequest$ = ListZonalShiftsRequest$;
|
|
929
|
-
exports.ListZonalShiftsResponse$ = ListZonalShiftsResponse$;
|
|
930
|
-
exports.ManagedResourceSummary$ = ManagedResourceSummary$;
|
|
931
|
-
exports.PracticeRunConfiguration$ = PracticeRunConfiguration$;
|
|
932
430
|
exports.PracticeRunOutcome = PracticeRunOutcome;
|
|
933
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
934
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
935
431
|
exports.ShiftType = ShiftType;
|
|
936
|
-
exports.StartPracticeRun$ = StartPracticeRun$;
|
|
937
432
|
exports.StartPracticeRunCommand = StartPracticeRunCommand;
|
|
938
|
-
exports.StartPracticeRunRequest$ = StartPracticeRunRequest$;
|
|
939
|
-
exports.StartPracticeRunResponse$ = StartPracticeRunResponse$;
|
|
940
|
-
exports.StartZonalShift$ = StartZonalShift$;
|
|
941
433
|
exports.StartZonalShiftCommand = StartZonalShiftCommand;
|
|
942
|
-
exports.StartZonalShiftRequest$ = StartZonalShiftRequest$;
|
|
943
|
-
exports.ThrottlingException = ThrottlingException;
|
|
944
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
945
|
-
exports.UpdateAutoshiftObserverNotificationStatus$ = UpdateAutoshiftObserverNotificationStatus$;
|
|
946
434
|
exports.UpdateAutoshiftObserverNotificationStatusCommand = UpdateAutoshiftObserverNotificationStatusCommand;
|
|
947
|
-
exports.UpdateAutoshiftObserverNotificationStatusRequest$ = UpdateAutoshiftObserverNotificationStatusRequest$;
|
|
948
|
-
exports.UpdateAutoshiftObserverNotificationStatusResponse$ = UpdateAutoshiftObserverNotificationStatusResponse$;
|
|
949
|
-
exports.UpdatePracticeRunConfiguration$ = UpdatePracticeRunConfiguration$;
|
|
950
435
|
exports.UpdatePracticeRunConfigurationCommand = UpdatePracticeRunConfigurationCommand;
|
|
951
|
-
exports.UpdatePracticeRunConfigurationRequest$ = UpdatePracticeRunConfigurationRequest$;
|
|
952
|
-
exports.UpdatePracticeRunConfigurationResponse$ = UpdatePracticeRunConfigurationResponse$;
|
|
953
|
-
exports.UpdateZonalAutoshiftConfiguration$ = UpdateZonalAutoshiftConfiguration$;
|
|
954
436
|
exports.UpdateZonalAutoshiftConfigurationCommand = UpdateZonalAutoshiftConfigurationCommand;
|
|
955
|
-
exports.UpdateZonalAutoshiftConfigurationRequest$ = UpdateZonalAutoshiftConfigurationRequest$;
|
|
956
|
-
exports.UpdateZonalAutoshiftConfigurationResponse$ = UpdateZonalAutoshiftConfigurationResponse$;
|
|
957
|
-
exports.UpdateZonalShift$ = UpdateZonalShift$;
|
|
958
437
|
exports.UpdateZonalShiftCommand = UpdateZonalShiftCommand;
|
|
959
|
-
exports.UpdateZonalShiftRequest$ = UpdateZonalShiftRequest$;
|
|
960
|
-
exports.ValidationException = ValidationException;
|
|
961
|
-
exports.ValidationException$ = ValidationException$;
|
|
962
438
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
963
439
|
exports.ZonalAutoshiftStatus = ZonalAutoshiftStatus;
|
|
964
|
-
exports.ZonalShift$ = ZonalShift$;
|
|
965
|
-
exports.ZonalShiftInResource$ = ZonalShiftInResource$;
|
|
966
440
|
exports.ZonalShiftStatus = ZonalShiftStatus;
|
|
967
|
-
exports.ZonalShiftSummary$ = ZonalShiftSummary$;
|
|
968
441
|
exports.paginateListAutoshifts = paginateListAutoshifts;
|
|
969
442
|
exports.paginateListManagedResources = paginateListManagedResources;
|
|
970
443
|
exports.paginateListZonalShifts = paginateListZonalShifts;
|
|
444
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
445
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
446
|
+
enumerable: true,
|
|
447
|
+
get: function () { return schemas_0[k]; }
|
|
448
|
+
});
|
|
449
|
+
});
|
|
450
|
+
Object.keys(errors).forEach(function (k) {
|
|
451
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
452
|
+
enumerable: true,
|
|
453
|
+
get: function () { return errors[k]; }
|
|
454
|
+
});
|
|
455
|
+
});
|