@aws-sdk/client-synthetics 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 +41 -1062
- package/dist-cjs/models/SyntheticsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +169 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +781 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +71 -65
- package/dist-types/schemas/schemas_0.d.ts +18 -11
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -11
- 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 SyntheticsServiceException = require('./models/SyntheticsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,925 +113,6 @@ class SyntheticsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SyntheticsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SyntheticsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends SyntheticsServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends SyntheticsServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "ConflictException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends SyntheticsServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "InternalServerException",
|
|
155
|
-
$fault: "server",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ResourceNotFoundException extends SyntheticsServiceException {
|
|
163
|
-
name = "ResourceNotFoundException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ResourceNotFoundException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ServiceQuotaExceededException extends SyntheticsServiceException {
|
|
177
|
-
name = "ServiceQuotaExceededException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ServiceQuotaExceededException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class ValidationException extends SyntheticsServiceException {
|
|
191
|
-
name = "ValidationException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "ValidationException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class BadRequestException extends SyntheticsServiceException {
|
|
205
|
-
name = "BadRequestException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
Message;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "BadRequestException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
215
|
-
this.Message = opts.Message;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class RequestEntityTooLargeException extends SyntheticsServiceException {
|
|
219
|
-
name = "RequestEntityTooLargeException";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
Message;
|
|
222
|
-
constructor(opts) {
|
|
223
|
-
super({
|
|
224
|
-
name: "RequestEntityTooLargeException",
|
|
225
|
-
$fault: "client",
|
|
226
|
-
...opts,
|
|
227
|
-
});
|
|
228
|
-
Object.setPrototypeOf(this, RequestEntityTooLargeException.prototype);
|
|
229
|
-
this.Message = opts.Message;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
class InternalFailureException extends SyntheticsServiceException {
|
|
233
|
-
name = "InternalFailureException";
|
|
234
|
-
$fault = "server";
|
|
235
|
-
Message;
|
|
236
|
-
constructor(opts) {
|
|
237
|
-
super({
|
|
238
|
-
name: "InternalFailureException",
|
|
239
|
-
$fault: "server",
|
|
240
|
-
...opts,
|
|
241
|
-
});
|
|
242
|
-
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
243
|
-
this.Message = opts.Message;
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
class NotFoundException extends SyntheticsServiceException {
|
|
247
|
-
name = "NotFoundException";
|
|
248
|
-
$fault = "client";
|
|
249
|
-
Message;
|
|
250
|
-
constructor(opts) {
|
|
251
|
-
super({
|
|
252
|
-
name: "NotFoundException",
|
|
253
|
-
$fault: "client",
|
|
254
|
-
...opts,
|
|
255
|
-
});
|
|
256
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
257
|
-
this.Message = opts.Message;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
class TooManyRequestsException extends SyntheticsServiceException {
|
|
261
|
-
name = "TooManyRequestsException";
|
|
262
|
-
$fault = "client";
|
|
263
|
-
Message;
|
|
264
|
-
constructor(opts) {
|
|
265
|
-
super({
|
|
266
|
-
name: "TooManyRequestsException",
|
|
267
|
-
$fault: "client",
|
|
268
|
-
...opts,
|
|
269
|
-
});
|
|
270
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
271
|
-
this.Message = opts.Message;
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
const _A = "Arn";
|
|
276
|
-
const _AC = "ArtifactConfig";
|
|
277
|
-
const _ACI = "ArtifactConfigInput";
|
|
278
|
-
const _ACO = "ArtifactConfigOutput";
|
|
279
|
-
const _ADE = "AccessDeniedException";
|
|
280
|
-
const _AR = "AssociateResource";
|
|
281
|
-
const _ARR = "AssociateResourceRequest";
|
|
282
|
-
const _ARRs = "AssociateResourceResponse";
|
|
283
|
-
const _ASL = "ArtifactS3Location";
|
|
284
|
-
const _AT = "ActiveTracing";
|
|
285
|
-
const _BC = "BrowserConfig";
|
|
286
|
-
const _BCRI = "BaseCanaryRunId";
|
|
287
|
-
const _BCr = "BrowserConfigs";
|
|
288
|
-
const _BRE = "BadRequestException";
|
|
289
|
-
const _BS = "BaseScreenshot";
|
|
290
|
-
const _BSa = "BaseScreenshots";
|
|
291
|
-
const _BT = "BrowserType";
|
|
292
|
-
const _BTl = "BlueprintTypes";
|
|
293
|
-
const _C = "Canary";
|
|
294
|
-
const _CC = "CreateCanary";
|
|
295
|
-
const _CCI = "CanaryCodeInput";
|
|
296
|
-
const _CCO = "CanaryCodeOutput";
|
|
297
|
-
const _CCR = "CreateCanaryRequest";
|
|
298
|
-
const _CCRr = "CreateCanaryResponse";
|
|
299
|
-
const _CDRCO = "CanaryDryRunConfigOutput";
|
|
300
|
-
const _CE = "ConflictException";
|
|
301
|
-
const _CG = "CreateGroup";
|
|
302
|
-
const _CGR = "CreateGroupRequest";
|
|
303
|
-
const _CGRr = "CreateGroupResponse";
|
|
304
|
-
const _CLR = "CanaryLastRun";
|
|
305
|
-
const _CLRa = "CanariesLastRun";
|
|
306
|
-
const _CN = "CanaryName";
|
|
307
|
-
const _CR = "CanaryRun";
|
|
308
|
-
const _CRCI = "CanaryRunConfigInput";
|
|
309
|
-
const _CRCO = "CanaryRunConfigOutput";
|
|
310
|
-
const _CRS = "CanaryRunStatus";
|
|
311
|
-
const _CRT = "CanaryRunTimeline";
|
|
312
|
-
const _CRa = "CanaryRuns";
|
|
313
|
-
const _CS = "CanaryStatus";
|
|
314
|
-
const _CSI = "CanaryScheduleInput";
|
|
315
|
-
const _CSO = "CanaryScheduleOutput";
|
|
316
|
-
const _CT = "CanaryTimeline";
|
|
317
|
-
const _CTr = "CreatedTime";
|
|
318
|
-
const _Ca = "Canaries";
|
|
319
|
-
const _Co = "Code";
|
|
320
|
-
const _Com = "Completed";
|
|
321
|
-
const _Cr = "Created";
|
|
322
|
-
const _D = "Dependencies";
|
|
323
|
-
const _DC = "DeleteCanary";
|
|
324
|
-
const _DCLR = "DescribeCanariesLastRun";
|
|
325
|
-
const _DCLRR = "DescribeCanariesLastRunRequest";
|
|
326
|
-
const _DCLRRe = "DescribeCanariesLastRunResponse";
|
|
327
|
-
const _DCR = "DeleteCanaryRequest";
|
|
328
|
-
const _DCRe = "DeleteCanaryResponse";
|
|
329
|
-
const _DCRes = "DescribeCanariesRequest";
|
|
330
|
-
const _DCResc = "DescribeCanariesResponse";
|
|
331
|
-
const _DCe = "DescribeCanaries";
|
|
332
|
-
const _DD = "DeprecationDate";
|
|
333
|
-
const _DG = "DeleteGroup";
|
|
334
|
-
const _DGR = "DeleteGroupRequest";
|
|
335
|
-
const _DGRe = "DeleteGroupResponse";
|
|
336
|
-
const _DIS = "DurationInSeconds";
|
|
337
|
-
const _DL = "DeleteLambda";
|
|
338
|
-
const _DR = "DisassociateResource";
|
|
339
|
-
const _DRC = "DryRunConfig";
|
|
340
|
-
const _DRCO = "DryRunConfigOutput";
|
|
341
|
-
const _DRI = "DryRunId";
|
|
342
|
-
const _DRR = "DisassociateResourceRequest";
|
|
343
|
-
const _DRRi = "DisassociateResourceResponse";
|
|
344
|
-
const _DRV = "DescribeRuntimeVersions";
|
|
345
|
-
const _DRVR = "DescribeRuntimeVersionsRequest";
|
|
346
|
-
const _DRVRe = "DescribeRuntimeVersionsResponse";
|
|
347
|
-
const _De = "Dependency";
|
|
348
|
-
const _Des = "Description";
|
|
349
|
-
const _E = "Expression";
|
|
350
|
-
const _EA = "EngineArn";
|
|
351
|
-
const _EC = "EngineConfigs";
|
|
352
|
-
const _ECn = "EngineConfig";
|
|
353
|
-
const _EM = "EncryptionMode";
|
|
354
|
-
const _ERA = "ExecutionRoleArn";
|
|
355
|
-
const _ES = "EphemeralStorage";
|
|
356
|
-
const _EV = "EnvironmentVariables";
|
|
357
|
-
const _FRPID = "FailureRetentionPeriodInDays";
|
|
358
|
-
const _G = "Group";
|
|
359
|
-
const _GC = "GetCanary";
|
|
360
|
-
const _GCR = "GetCanaryRequest";
|
|
361
|
-
const _GCRR = "GetCanaryRunsRequest";
|
|
362
|
-
const _GCRRe = "GetCanaryRunsResponse";
|
|
363
|
-
const _GCRe = "GetCanaryResponse";
|
|
364
|
-
const _GCRet = "GetCanaryRuns";
|
|
365
|
-
const _GG = "GetGroup";
|
|
366
|
-
const _GGR = "GetGroupRequest";
|
|
367
|
-
const _GGRe = "GetGroupResponse";
|
|
368
|
-
const _GI = "GroupIdentifier";
|
|
369
|
-
const _GS = "GroupSummary";
|
|
370
|
-
const _GSL = "GroupSummaryList";
|
|
371
|
-
const _Gr = "Groups";
|
|
372
|
-
const _H = "Handler";
|
|
373
|
-
const _I = "Id";
|
|
374
|
-
const _IAFDS = "Ipv6AllowedForDualStack";
|
|
375
|
-
const _IC = "IgnoreCoordinates";
|
|
376
|
-
const _IFE = "InternalFailureException";
|
|
377
|
-
const _ISE = "InternalServerException";
|
|
378
|
-
const _KKA = "KmsKeyArn";
|
|
379
|
-
const _LAG = "ListAssociatedGroups";
|
|
380
|
-
const _LAGR = "ListAssociatedGroupsRequest";
|
|
381
|
-
const _LAGRi = "ListAssociatedGroupsResponse";
|
|
382
|
-
const _LDRES = "LastDryRunExecutionStatus";
|
|
383
|
-
const _LG = "ListGroups";
|
|
384
|
-
const _LGR = "ListGroupsRequest";
|
|
385
|
-
const _LGRR = "ListGroupResourcesRequest";
|
|
386
|
-
const _LGRRi = "ListGroupResourcesResponse";
|
|
387
|
-
const _LGRi = "ListGroupsResponse";
|
|
388
|
-
const _LGRis = "ListGroupResources";
|
|
389
|
-
const _LM = "LastModified";
|
|
390
|
-
const _LMT = "LastModifiedTime";
|
|
391
|
-
const _LR = "LastRun";
|
|
392
|
-
const _LS = "LastStarted";
|
|
393
|
-
const _LSa = "LastStopped";
|
|
394
|
-
const _LTFR = "ListTagsForResource";
|
|
395
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
396
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
397
|
-
const _M = "Message";
|
|
398
|
-
const _MIMB = "MemoryInMB";
|
|
399
|
-
const _MR = "MaxResults";
|
|
400
|
-
const _MRa = "MaxRetries";
|
|
401
|
-
const _MTFRAR = "MetricTimestampForRunAndRetries";
|
|
402
|
-
const _N = "Name";
|
|
403
|
-
const _NFE = "NotFoundException";
|
|
404
|
-
const _NT = "NextToken";
|
|
405
|
-
const _Na = "Names";
|
|
406
|
-
const _PRC = "ProvisionedResourceCleanup";
|
|
407
|
-
const _R = "Reference";
|
|
408
|
-
const _RA = "ResourceArn";
|
|
409
|
-
const _RAe = "RetryAttempt";
|
|
410
|
-
const _RC = "RunConfig";
|
|
411
|
-
const _RCI = "RetryConfigInput";
|
|
412
|
-
const _RCO = "RetryConfigOutput";
|
|
413
|
-
const _RCe = "RetryConfig";
|
|
414
|
-
const _RD = "ReleaseDate";
|
|
415
|
-
const _RETLE = "RequestEntityTooLargeException";
|
|
416
|
-
const _RNFE = "ResourceNotFoundException";
|
|
417
|
-
const _RT = "RunType";
|
|
418
|
-
const _RTRT = "ResourcesToReplicateTags";
|
|
419
|
-
const _RV = "RuntimeVersion";
|
|
420
|
-
const _RVL = "RuntimeVersionList";
|
|
421
|
-
const _RVu = "RuntimeVersions";
|
|
422
|
-
const _Re = "Resources";
|
|
423
|
-
const _S = "Schedule";
|
|
424
|
-
const _SB = "S3Bucket";
|
|
425
|
-
const _SC = "StartCanary";
|
|
426
|
-
const _SCDR = "StartCanaryDryRun";
|
|
427
|
-
const _SCDRR = "StartCanaryDryRunRequest";
|
|
428
|
-
const _SCDRRt = "StartCanaryDryRunResponse";
|
|
429
|
-
const _SCR = "StartCanaryRequest";
|
|
430
|
-
const _SCRt = "StartCanaryResponse";
|
|
431
|
-
const _SCRto = "StopCanaryRequest";
|
|
432
|
-
const _SCRtop = "StopCanaryResponse";
|
|
433
|
-
const _SCt = "StopCanary";
|
|
434
|
-
const _SE = "S3Encryption";
|
|
435
|
-
const _SEC = "S3EncryptionConfig";
|
|
436
|
-
const _SGI = "SecurityGroupIds";
|
|
437
|
-
const _SI = "SubnetIds";
|
|
438
|
-
const _SK = "S3Key";
|
|
439
|
-
const _SLA = "SourceLocationArn";
|
|
440
|
-
const _SN = "ScreenshotName";
|
|
441
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
442
|
-
const _SR = "StateReason";
|
|
443
|
-
const _SRC = "StateReasonCode";
|
|
444
|
-
const _SRI = "ScheduledRunId";
|
|
445
|
-
const _SRPID = "SuccessRetentionPeriodInDays";
|
|
446
|
-
const _SV = "S3Version";
|
|
447
|
-
const _St = "Status";
|
|
448
|
-
const _Sta = "State";
|
|
449
|
-
const _Star = "Started";
|
|
450
|
-
const _T = "Timeline";
|
|
451
|
-
const _TIS = "TimeoutInSeconds";
|
|
452
|
-
const _TK = "TagKeys";
|
|
453
|
-
const _TMRE = "TooManyRequestsException";
|
|
454
|
-
const _TR = "TestResult";
|
|
455
|
-
const _TRR = "TagResourceRequest";
|
|
456
|
-
const _TRRa = "TagResourceResponse";
|
|
457
|
-
const _TRa = "TagResource";
|
|
458
|
-
const _Ta = "Tags";
|
|
459
|
-
const _Ty = "Type";
|
|
460
|
-
const _UC = "UpdateCanary";
|
|
461
|
-
const _UCR = "UpdateCanaryRequest";
|
|
462
|
-
const _UCRp = "UpdateCanaryResponse";
|
|
463
|
-
const _UR = "UntagResource";
|
|
464
|
-
const _URR = "UntagResourceRequest";
|
|
465
|
-
const _URRn = "UntagResourceResponse";
|
|
466
|
-
const _VC = "VpcConfig";
|
|
467
|
-
const _VCI = "VpcConfigInput";
|
|
468
|
-
const _VCO = "VpcConfigOutput";
|
|
469
|
-
const _VE = "ValidationException";
|
|
470
|
-
const _VI = "VpcId";
|
|
471
|
-
const _VN = "VersionName";
|
|
472
|
-
const _VR = "VisualReference";
|
|
473
|
-
const _VRI = "VisualReferenceInput";
|
|
474
|
-
const _VRO = "VisualReferenceOutput";
|
|
475
|
-
const _VROi = "VisualReferencesOutput";
|
|
476
|
-
const _VRi = "VisualReferences";
|
|
477
|
-
const _ZF = "ZipFile";
|
|
478
|
-
const _c = "client";
|
|
479
|
-
const _dL = "deleteLambda";
|
|
480
|
-
const _dRI = "dryRunId";
|
|
481
|
-
const _e = "error";
|
|
482
|
-
const _h = "http";
|
|
483
|
-
const _hE = "httpError";
|
|
484
|
-
const _hQ = "httpQuery";
|
|
485
|
-
const _s = "server";
|
|
486
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.synthetics";
|
|
487
|
-
const _tK = "tagKeys";
|
|
488
|
-
const n0 = "com.amazonaws.synthetics";
|
|
489
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
490
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
491
|
-
[_M],
|
|
492
|
-
[0]
|
|
493
|
-
];
|
|
494
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
495
|
-
var ArtifactConfigInput$ = [3, n0, _ACI,
|
|
496
|
-
0,
|
|
497
|
-
[_SE],
|
|
498
|
-
[() => S3EncryptionConfig$]
|
|
499
|
-
];
|
|
500
|
-
var ArtifactConfigOutput$ = [3, n0, _ACO,
|
|
501
|
-
0,
|
|
502
|
-
[_SE],
|
|
503
|
-
[() => S3EncryptionConfig$]
|
|
504
|
-
];
|
|
505
|
-
var AssociateResourceRequest$ = [3, n0, _ARR,
|
|
506
|
-
0,
|
|
507
|
-
[_GI, _RA],
|
|
508
|
-
[[0, 1], 0], 2
|
|
509
|
-
];
|
|
510
|
-
var AssociateResourceResponse$ = [3, n0, _ARRs,
|
|
511
|
-
0,
|
|
512
|
-
[],
|
|
513
|
-
[]
|
|
514
|
-
];
|
|
515
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
516
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
517
|
-
[_M],
|
|
518
|
-
[0]
|
|
519
|
-
];
|
|
520
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
521
|
-
var BaseScreenshot$ = [3, n0, _BS,
|
|
522
|
-
0,
|
|
523
|
-
[_SN, _IC],
|
|
524
|
-
[0, 64 | 0], 1
|
|
525
|
-
];
|
|
526
|
-
var BrowserConfig$ = [3, n0, _BC,
|
|
527
|
-
0,
|
|
528
|
-
[_BT],
|
|
529
|
-
[0]
|
|
530
|
-
];
|
|
531
|
-
var Canary$ = [3, n0, _C,
|
|
532
|
-
0,
|
|
533
|
-
[_I, _N, _Co, _ERA, _S, _RC, _SRPID, _FRPID, _St, _T, _ASL, _EA, _RV, _VC, _VR, _PRC, _BCr, _EC, _VRi, _Ta, _AC, _DRC],
|
|
534
|
-
[0, 0, () => CanaryCodeOutput$, 0, () => CanaryScheduleOutput$, () => CanaryRunConfigOutput$, 1, 1, () => CanaryStatus$, () => CanaryTimeline$, 0, 0, 0, () => VpcConfigOutput$, () => VisualReferenceOutput$, 0, () => BrowserConfigs, () => EngineConfigs, () => VisualReferencesOutput, 128 | 0, () => ArtifactConfigOutput$, () => DryRunConfigOutput$]
|
|
535
|
-
];
|
|
536
|
-
var CanaryCodeInput$ = [3, n0, _CCI,
|
|
537
|
-
0,
|
|
538
|
-
[_SB, _SK, _SV, _ZF, _H, _BTl, _D],
|
|
539
|
-
[0, 0, 0, 21, 0, 64 | 0, () => Dependencies]
|
|
540
|
-
];
|
|
541
|
-
var CanaryCodeOutput$ = [3, n0, _CCO,
|
|
542
|
-
0,
|
|
543
|
-
[_SLA, _H, _BTl, _D],
|
|
544
|
-
[0, 0, 64 | 0, () => Dependencies]
|
|
545
|
-
];
|
|
546
|
-
var CanaryDryRunConfigOutput$ = [3, n0, _CDRCO,
|
|
547
|
-
0,
|
|
548
|
-
[_DRI],
|
|
549
|
-
[0]
|
|
550
|
-
];
|
|
551
|
-
var CanaryLastRun$ = [3, n0, _CLR,
|
|
552
|
-
0,
|
|
553
|
-
[_CN, _LR],
|
|
554
|
-
[0, () => CanaryRun$]
|
|
555
|
-
];
|
|
556
|
-
var CanaryRun$ = [3, n0, _CR,
|
|
557
|
-
0,
|
|
558
|
-
[_I, _SRI, _RAe, _N, _St, _T, _ASL, _DRC, _BT],
|
|
559
|
-
[0, 0, 1, 0, () => CanaryRunStatus$, () => CanaryRunTimeline$, 0, () => CanaryDryRunConfigOutput$, 0]
|
|
560
|
-
];
|
|
561
|
-
var CanaryRunConfigInput$ = [3, n0, _CRCI,
|
|
562
|
-
0,
|
|
563
|
-
[_TIS, _MIMB, _AT, _EV, _ES],
|
|
564
|
-
[1, 1, 2, 128 | 0, 1]
|
|
565
|
-
];
|
|
566
|
-
var CanaryRunConfigOutput$ = [3, n0, _CRCO,
|
|
567
|
-
0,
|
|
568
|
-
[_TIS, _MIMB, _AT, _ES],
|
|
569
|
-
[1, 1, 2, 1]
|
|
570
|
-
];
|
|
571
|
-
var CanaryRunStatus$ = [3, n0, _CRS,
|
|
572
|
-
0,
|
|
573
|
-
[_Sta, _SR, _SRC, _TR],
|
|
574
|
-
[0, 0, 0, 0]
|
|
575
|
-
];
|
|
576
|
-
var CanaryRunTimeline$ = [3, n0, _CRT,
|
|
577
|
-
0,
|
|
578
|
-
[_Star, _Com, _MTFRAR],
|
|
579
|
-
[4, 4, 4]
|
|
580
|
-
];
|
|
581
|
-
var CanaryScheduleInput$ = [3, n0, _CSI,
|
|
582
|
-
0,
|
|
583
|
-
[_E, _DIS, _RCe],
|
|
584
|
-
[0, 1, () => RetryConfigInput$], 1
|
|
585
|
-
];
|
|
586
|
-
var CanaryScheduleOutput$ = [3, n0, _CSO,
|
|
587
|
-
0,
|
|
588
|
-
[_E, _DIS, _RCe],
|
|
589
|
-
[0, 1, () => RetryConfigOutput$]
|
|
590
|
-
];
|
|
591
|
-
var CanaryStatus$ = [3, n0, _CS,
|
|
592
|
-
0,
|
|
593
|
-
[_Sta, _SR, _SRC],
|
|
594
|
-
[0, 0, 0]
|
|
595
|
-
];
|
|
596
|
-
var CanaryTimeline$ = [3, n0, _CT,
|
|
597
|
-
0,
|
|
598
|
-
[_Cr, _LM, _LS, _LSa],
|
|
599
|
-
[4, 4, 4, 4]
|
|
600
|
-
];
|
|
601
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
602
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
603
|
-
[_M],
|
|
604
|
-
[0]
|
|
605
|
-
];
|
|
606
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
607
|
-
var CreateCanaryRequest$ = [3, n0, _CCR,
|
|
608
|
-
0,
|
|
609
|
-
[_N, _Co, _ASL, _ERA, _S, _RV, _RC, _SRPID, _FRPID, _VC, _RTRT, _PRC, _BCr, _Ta, _AC],
|
|
610
|
-
[0, () => CanaryCodeInput$, 0, 0, () => CanaryScheduleInput$, 0, () => CanaryRunConfigInput$, 1, 1, () => VpcConfigInput$, 64 | 0, 0, () => BrowserConfigs, 128 | 0, () => ArtifactConfigInput$], 6
|
|
611
|
-
];
|
|
612
|
-
var CreateCanaryResponse$ = [3, n0, _CCRr,
|
|
613
|
-
0,
|
|
614
|
-
[_C],
|
|
615
|
-
[() => Canary$]
|
|
616
|
-
];
|
|
617
|
-
var CreateGroupRequest$ = [3, n0, _CGR,
|
|
618
|
-
0,
|
|
619
|
-
[_N, _Ta],
|
|
620
|
-
[0, 128 | 0], 1
|
|
621
|
-
];
|
|
622
|
-
var CreateGroupResponse$ = [3, n0, _CGRr,
|
|
623
|
-
0,
|
|
624
|
-
[_G],
|
|
625
|
-
[() => Group$]
|
|
626
|
-
];
|
|
627
|
-
var DeleteCanaryRequest$ = [3, n0, _DCR,
|
|
628
|
-
0,
|
|
629
|
-
[_N, _DL],
|
|
630
|
-
[[0, 1], [2, { [_hQ]: _dL }]], 1
|
|
631
|
-
];
|
|
632
|
-
var DeleteCanaryResponse$ = [3, n0, _DCRe,
|
|
633
|
-
0,
|
|
634
|
-
[],
|
|
635
|
-
[]
|
|
636
|
-
];
|
|
637
|
-
var DeleteGroupRequest$ = [3, n0, _DGR,
|
|
638
|
-
0,
|
|
639
|
-
[_GI],
|
|
640
|
-
[[0, 1]], 1
|
|
641
|
-
];
|
|
642
|
-
var DeleteGroupResponse$ = [3, n0, _DGRe,
|
|
643
|
-
0,
|
|
644
|
-
[],
|
|
645
|
-
[]
|
|
646
|
-
];
|
|
647
|
-
var Dependency$ = [3, n0, _De,
|
|
648
|
-
0,
|
|
649
|
-
[_R, _Ty],
|
|
650
|
-
[0, 0], 1
|
|
651
|
-
];
|
|
652
|
-
var DescribeCanariesLastRunRequest$ = [3, n0, _DCLRR,
|
|
653
|
-
0,
|
|
654
|
-
[_NT, _MR, _Na, _BT],
|
|
655
|
-
[0, 1, 64 | 0, 0]
|
|
656
|
-
];
|
|
657
|
-
var DescribeCanariesLastRunResponse$ = [3, n0, _DCLRRe,
|
|
658
|
-
0,
|
|
659
|
-
[_CLRa, _NT],
|
|
660
|
-
[() => CanariesLastRun, 0]
|
|
661
|
-
];
|
|
662
|
-
var DescribeCanariesRequest$ = [3, n0, _DCRes,
|
|
663
|
-
0,
|
|
664
|
-
[_NT, _MR, _Na],
|
|
665
|
-
[0, 1, 64 | 0]
|
|
666
|
-
];
|
|
667
|
-
var DescribeCanariesResponse$ = [3, n0, _DCResc,
|
|
668
|
-
0,
|
|
669
|
-
[_Ca, _NT],
|
|
670
|
-
[() => Canaries, 0]
|
|
671
|
-
];
|
|
672
|
-
var DescribeRuntimeVersionsRequest$ = [3, n0, _DRVR,
|
|
673
|
-
0,
|
|
674
|
-
[_NT, _MR],
|
|
675
|
-
[0, 1]
|
|
676
|
-
];
|
|
677
|
-
var DescribeRuntimeVersionsResponse$ = [3, n0, _DRVRe,
|
|
678
|
-
0,
|
|
679
|
-
[_RVu, _NT],
|
|
680
|
-
[() => RuntimeVersionList, 0]
|
|
681
|
-
];
|
|
682
|
-
var DisassociateResourceRequest$ = [3, n0, _DRR,
|
|
683
|
-
0,
|
|
684
|
-
[_GI, _RA],
|
|
685
|
-
[[0, 1], 0], 2
|
|
686
|
-
];
|
|
687
|
-
var DisassociateResourceResponse$ = [3, n0, _DRRi,
|
|
688
|
-
0,
|
|
689
|
-
[],
|
|
690
|
-
[]
|
|
691
|
-
];
|
|
692
|
-
var DryRunConfigOutput$ = [3, n0, _DRCO,
|
|
693
|
-
0,
|
|
694
|
-
[_DRI, _LDRES],
|
|
695
|
-
[0, 0]
|
|
696
|
-
];
|
|
697
|
-
var EngineConfig$ = [3, n0, _ECn,
|
|
698
|
-
0,
|
|
699
|
-
[_EA, _BT],
|
|
700
|
-
[0, 0]
|
|
701
|
-
];
|
|
702
|
-
var GetCanaryRequest$ = [3, n0, _GCR,
|
|
703
|
-
0,
|
|
704
|
-
[_N, _DRI],
|
|
705
|
-
[[0, 1], [0, { [_hQ]: _dRI }]], 1
|
|
706
|
-
];
|
|
707
|
-
var GetCanaryResponse$ = [3, n0, _GCRe,
|
|
708
|
-
0,
|
|
709
|
-
[_C],
|
|
710
|
-
[() => Canary$]
|
|
711
|
-
];
|
|
712
|
-
var GetCanaryRunsRequest$ = [3, n0, _GCRR,
|
|
713
|
-
0,
|
|
714
|
-
[_N, _NT, _MR, _DRI, _RT],
|
|
715
|
-
[[0, 1], 0, 1, 0, 0], 1
|
|
716
|
-
];
|
|
717
|
-
var GetCanaryRunsResponse$ = [3, n0, _GCRRe,
|
|
718
|
-
0,
|
|
719
|
-
[_CRa, _NT],
|
|
720
|
-
[() => CanaryRuns, 0]
|
|
721
|
-
];
|
|
722
|
-
var GetGroupRequest$ = [3, n0, _GGR,
|
|
723
|
-
0,
|
|
724
|
-
[_GI],
|
|
725
|
-
[[0, 1]], 1
|
|
726
|
-
];
|
|
727
|
-
var GetGroupResponse$ = [3, n0, _GGRe,
|
|
728
|
-
0,
|
|
729
|
-
[_G],
|
|
730
|
-
[() => Group$]
|
|
731
|
-
];
|
|
732
|
-
var Group$ = [3, n0, _G,
|
|
733
|
-
0,
|
|
734
|
-
[_I, _N, _A, _Ta, _CTr, _LMT],
|
|
735
|
-
[0, 0, 0, 128 | 0, 4, 4]
|
|
736
|
-
];
|
|
737
|
-
var GroupSummary$ = [3, n0, _GS,
|
|
738
|
-
0,
|
|
739
|
-
[_I, _N, _A],
|
|
740
|
-
[0, 0, 0]
|
|
741
|
-
];
|
|
742
|
-
var InternalFailureException$ = [-3, n0, _IFE,
|
|
743
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
744
|
-
[_M],
|
|
745
|
-
[0]
|
|
746
|
-
];
|
|
747
|
-
schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
|
|
748
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
749
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
750
|
-
[_M],
|
|
751
|
-
[0]
|
|
752
|
-
];
|
|
753
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
754
|
-
var ListAssociatedGroupsRequest$ = [3, n0, _LAGR,
|
|
755
|
-
0,
|
|
756
|
-
[_RA, _NT, _MR],
|
|
757
|
-
[[0, 1], 0, 1], 1
|
|
758
|
-
];
|
|
759
|
-
var ListAssociatedGroupsResponse$ = [3, n0, _LAGRi,
|
|
760
|
-
0,
|
|
761
|
-
[_Gr, _NT],
|
|
762
|
-
[() => GroupSummaryList, 0]
|
|
763
|
-
];
|
|
764
|
-
var ListGroupResourcesRequest$ = [3, n0, _LGRR,
|
|
765
|
-
0,
|
|
766
|
-
[_GI, _NT, _MR],
|
|
767
|
-
[[0, 1], 0, 1], 1
|
|
768
|
-
];
|
|
769
|
-
var ListGroupResourcesResponse$ = [3, n0, _LGRRi,
|
|
770
|
-
0,
|
|
771
|
-
[_Re, _NT],
|
|
772
|
-
[64 | 0, 0]
|
|
773
|
-
];
|
|
774
|
-
var ListGroupsRequest$ = [3, n0, _LGR,
|
|
775
|
-
0,
|
|
776
|
-
[_NT, _MR],
|
|
777
|
-
[0, 1]
|
|
778
|
-
];
|
|
779
|
-
var ListGroupsResponse$ = [3, n0, _LGRi,
|
|
780
|
-
0,
|
|
781
|
-
[_Gr, _NT],
|
|
782
|
-
[() => GroupSummaryList, 0]
|
|
783
|
-
];
|
|
784
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
785
|
-
0,
|
|
786
|
-
[_RA],
|
|
787
|
-
[[0, 1]], 1
|
|
788
|
-
];
|
|
789
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
790
|
-
0,
|
|
791
|
-
[_Ta],
|
|
792
|
-
[128 | 0]
|
|
793
|
-
];
|
|
794
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
795
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
796
|
-
[_M],
|
|
797
|
-
[0]
|
|
798
|
-
];
|
|
799
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
800
|
-
var RequestEntityTooLargeException$ = [-3, n0, _RETLE,
|
|
801
|
-
{ [_e]: _c, [_hE]: 413 },
|
|
802
|
-
[_M],
|
|
803
|
-
[0]
|
|
804
|
-
];
|
|
805
|
-
schema.TypeRegistry.for(n0).registerError(RequestEntityTooLargeException$, RequestEntityTooLargeException);
|
|
806
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
807
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
808
|
-
[_M],
|
|
809
|
-
[0]
|
|
810
|
-
];
|
|
811
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
812
|
-
var RetryConfigInput$ = [3, n0, _RCI,
|
|
813
|
-
0,
|
|
814
|
-
[_MRa],
|
|
815
|
-
[1], 1
|
|
816
|
-
];
|
|
817
|
-
var RetryConfigOutput$ = [3, n0, _RCO,
|
|
818
|
-
0,
|
|
819
|
-
[_MRa],
|
|
820
|
-
[1]
|
|
821
|
-
];
|
|
822
|
-
var RuntimeVersion$ = [3, n0, _RV,
|
|
823
|
-
0,
|
|
824
|
-
[_VN, _Des, _RD, _DD],
|
|
825
|
-
[0, 0, 4, 4]
|
|
826
|
-
];
|
|
827
|
-
var S3EncryptionConfig$ = [3, n0, _SEC,
|
|
828
|
-
0,
|
|
829
|
-
[_EM, _KKA],
|
|
830
|
-
[0, 0]
|
|
831
|
-
];
|
|
832
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
833
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
834
|
-
[_M],
|
|
835
|
-
[0]
|
|
836
|
-
];
|
|
837
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
838
|
-
var StartCanaryDryRunRequest$ = [3, n0, _SCDRR,
|
|
839
|
-
0,
|
|
840
|
-
[_N, _Co, _RV, _RC, _VC, _ERA, _SRPID, _FRPID, _VR, _ASL, _AC, _PRC, _BCr, _VRi],
|
|
841
|
-
[[0, 1], () => CanaryCodeInput$, 0, () => CanaryRunConfigInput$, () => VpcConfigInput$, 0, 1, 1, () => VisualReferenceInput$, 0, () => ArtifactConfigInput$, 0, () => BrowserConfigs, () => VisualReferences], 1
|
|
842
|
-
];
|
|
843
|
-
var StartCanaryDryRunResponse$ = [3, n0, _SCDRRt,
|
|
844
|
-
0,
|
|
845
|
-
[_DRC],
|
|
846
|
-
[() => DryRunConfigOutput$]
|
|
847
|
-
];
|
|
848
|
-
var StartCanaryRequest$ = [3, n0, _SCR,
|
|
849
|
-
0,
|
|
850
|
-
[_N],
|
|
851
|
-
[[0, 1]], 1
|
|
852
|
-
];
|
|
853
|
-
var StartCanaryResponse$ = [3, n0, _SCRt,
|
|
854
|
-
0,
|
|
855
|
-
[],
|
|
856
|
-
[]
|
|
857
|
-
];
|
|
858
|
-
var StopCanaryRequest$ = [3, n0, _SCRto,
|
|
859
|
-
0,
|
|
860
|
-
[_N],
|
|
861
|
-
[[0, 1]], 1
|
|
862
|
-
];
|
|
863
|
-
var StopCanaryResponse$ = [3, n0, _SCRtop,
|
|
864
|
-
0,
|
|
865
|
-
[],
|
|
866
|
-
[]
|
|
867
|
-
];
|
|
868
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
869
|
-
0,
|
|
870
|
-
[_RA, _Ta],
|
|
871
|
-
[[0, 1], 128 | 0], 2
|
|
872
|
-
];
|
|
873
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
874
|
-
0,
|
|
875
|
-
[],
|
|
876
|
-
[]
|
|
877
|
-
];
|
|
878
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
879
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
880
|
-
[_M],
|
|
881
|
-
[0]
|
|
882
|
-
];
|
|
883
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
884
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
885
|
-
0,
|
|
886
|
-
[_RA, _TK],
|
|
887
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
888
|
-
];
|
|
889
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
890
|
-
0,
|
|
891
|
-
[],
|
|
892
|
-
[]
|
|
893
|
-
];
|
|
894
|
-
var UpdateCanaryRequest$ = [3, n0, _UCR,
|
|
895
|
-
0,
|
|
896
|
-
[_N, _Co, _ERA, _RV, _S, _RC, _SRPID, _FRPID, _VC, _VR, _ASL, _AC, _PRC, _DRI, _VRi, _BCr],
|
|
897
|
-
[[0, 1], () => CanaryCodeInput$, 0, 0, () => CanaryScheduleInput$, () => CanaryRunConfigInput$, 1, 1, () => VpcConfigInput$, () => VisualReferenceInput$, 0, () => ArtifactConfigInput$, 0, 0, () => VisualReferences, () => BrowserConfigs], 1
|
|
898
|
-
];
|
|
899
|
-
var UpdateCanaryResponse$ = [3, n0, _UCRp,
|
|
900
|
-
0,
|
|
901
|
-
[],
|
|
902
|
-
[]
|
|
903
|
-
];
|
|
904
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
905
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
906
|
-
[_M],
|
|
907
|
-
[0]
|
|
908
|
-
];
|
|
909
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
910
|
-
var VisualReferenceInput$ = [3, n0, _VRI,
|
|
911
|
-
0,
|
|
912
|
-
[_BCRI, _BSa, _BT],
|
|
913
|
-
[0, () => BaseScreenshots, 0], 1
|
|
914
|
-
];
|
|
915
|
-
var VisualReferenceOutput$ = [3, n0, _VRO,
|
|
916
|
-
0,
|
|
917
|
-
[_BSa, _BCRI, _BT],
|
|
918
|
-
[() => BaseScreenshots, 0, 0]
|
|
919
|
-
];
|
|
920
|
-
var VpcConfigInput$ = [3, n0, _VCI,
|
|
921
|
-
0,
|
|
922
|
-
[_SI, _SGI, _IAFDS],
|
|
923
|
-
[64 | 0, 64 | 0, 2]
|
|
924
|
-
];
|
|
925
|
-
var VpcConfigOutput$ = [3, n0, _VCO,
|
|
926
|
-
0,
|
|
927
|
-
[_VI, _SI, _SGI, _IAFDS],
|
|
928
|
-
[0, 64 | 0, 64 | 0, 2]
|
|
929
|
-
];
|
|
930
|
-
var SyntheticsServiceException$ = [-3, _sm, "SyntheticsServiceException", 0, [], []];
|
|
931
|
-
schema.TypeRegistry.for(_sm).registerError(SyntheticsServiceException$, SyntheticsServiceException);
|
|
932
|
-
var BaseScreenshots = [1, n0, _BSa,
|
|
933
|
-
0, () => BaseScreenshot$
|
|
934
|
-
];
|
|
935
|
-
var BrowserConfigs = [1, n0, _BCr,
|
|
936
|
-
0, () => BrowserConfig$
|
|
937
|
-
];
|
|
938
|
-
var Canaries = [1, n0, _Ca,
|
|
939
|
-
0, () => Canary$
|
|
940
|
-
];
|
|
941
|
-
var CanariesLastRun = [1, n0, _CLRa,
|
|
942
|
-
0, () => CanaryLastRun$
|
|
943
|
-
];
|
|
944
|
-
var CanaryRuns = [1, n0, _CRa,
|
|
945
|
-
0, () => CanaryRun$
|
|
946
|
-
];
|
|
947
|
-
var Dependencies = [1, n0, _D,
|
|
948
|
-
0, () => Dependency$
|
|
949
|
-
];
|
|
950
|
-
var EngineConfigs = [1, n0, _EC,
|
|
951
|
-
0, () => EngineConfig$
|
|
952
|
-
];
|
|
953
|
-
var GroupSummaryList = [1, n0, _GSL,
|
|
954
|
-
0, () => GroupSummary$
|
|
955
|
-
];
|
|
956
|
-
var RuntimeVersionList = [1, n0, _RVL,
|
|
957
|
-
0, () => RuntimeVersion$
|
|
958
|
-
];
|
|
959
|
-
var VisualReferences = [1, n0, _VRi,
|
|
960
|
-
0, () => VisualReferenceInput$
|
|
961
|
-
];
|
|
962
|
-
var VisualReferencesOutput = [1, n0, _VROi,
|
|
963
|
-
0, () => VisualReferenceOutput$
|
|
964
|
-
];
|
|
965
|
-
var AssociateResource$ = [9, n0, _AR,
|
|
966
|
-
{ [_h]: ["PATCH", "/group/{GroupIdentifier}/associate", 200] }, () => AssociateResourceRequest$, () => AssociateResourceResponse$
|
|
967
|
-
];
|
|
968
|
-
var CreateCanary$ = [9, n0, _CC,
|
|
969
|
-
{ [_h]: ["POST", "/canary", 200] }, () => CreateCanaryRequest$, () => CreateCanaryResponse$
|
|
970
|
-
];
|
|
971
|
-
var CreateGroup$ = [9, n0, _CG,
|
|
972
|
-
{ [_h]: ["POST", "/group", 200] }, () => CreateGroupRequest$, () => CreateGroupResponse$
|
|
973
|
-
];
|
|
974
|
-
var DeleteCanary$ = [9, n0, _DC,
|
|
975
|
-
{ [_h]: ["DELETE", "/canary/{Name}", 200] }, () => DeleteCanaryRequest$, () => DeleteCanaryResponse$
|
|
976
|
-
];
|
|
977
|
-
var DeleteGroup$ = [9, n0, _DG,
|
|
978
|
-
{ [_h]: ["DELETE", "/group/{GroupIdentifier}", 200] }, () => DeleteGroupRequest$, () => DeleteGroupResponse$
|
|
979
|
-
];
|
|
980
|
-
var DescribeCanaries$ = [9, n0, _DCe,
|
|
981
|
-
{ [_h]: ["POST", "/canaries", 200] }, () => DescribeCanariesRequest$, () => DescribeCanariesResponse$
|
|
982
|
-
];
|
|
983
|
-
var DescribeCanariesLastRun$ = [9, n0, _DCLR,
|
|
984
|
-
{ [_h]: ["POST", "/canaries/last-run", 200] }, () => DescribeCanariesLastRunRequest$, () => DescribeCanariesLastRunResponse$
|
|
985
|
-
];
|
|
986
|
-
var DescribeRuntimeVersions$ = [9, n0, _DRV,
|
|
987
|
-
{ [_h]: ["POST", "/runtime-versions", 200] }, () => DescribeRuntimeVersionsRequest$, () => DescribeRuntimeVersionsResponse$
|
|
988
|
-
];
|
|
989
|
-
var DisassociateResource$ = [9, n0, _DR,
|
|
990
|
-
{ [_h]: ["PATCH", "/group/{GroupIdentifier}/disassociate", 200] }, () => DisassociateResourceRequest$, () => DisassociateResourceResponse$
|
|
991
|
-
];
|
|
992
|
-
var GetCanary$ = [9, n0, _GC,
|
|
993
|
-
{ [_h]: ["GET", "/canary/{Name}", 200] }, () => GetCanaryRequest$, () => GetCanaryResponse$
|
|
994
|
-
];
|
|
995
|
-
var GetCanaryRuns$ = [9, n0, _GCRet,
|
|
996
|
-
{ [_h]: ["POST", "/canary/{Name}/runs", 200] }, () => GetCanaryRunsRequest$, () => GetCanaryRunsResponse$
|
|
997
|
-
];
|
|
998
|
-
var GetGroup$ = [9, n0, _GG,
|
|
999
|
-
{ [_h]: ["GET", "/group/{GroupIdentifier}", 200] }, () => GetGroupRequest$, () => GetGroupResponse$
|
|
1000
|
-
];
|
|
1001
|
-
var ListAssociatedGroups$ = [9, n0, _LAG,
|
|
1002
|
-
{ [_h]: ["POST", "/resource/{ResourceArn}/groups", 200] }, () => ListAssociatedGroupsRequest$, () => ListAssociatedGroupsResponse$
|
|
1003
|
-
];
|
|
1004
|
-
var ListGroupResources$ = [9, n0, _LGRis,
|
|
1005
|
-
{ [_h]: ["POST", "/group/{GroupIdentifier}/resources", 200] }, () => ListGroupResourcesRequest$, () => ListGroupResourcesResponse$
|
|
1006
|
-
];
|
|
1007
|
-
var ListGroups$ = [9, n0, _LG,
|
|
1008
|
-
{ [_h]: ["POST", "/groups", 200] }, () => ListGroupsRequest$, () => ListGroupsResponse$
|
|
1009
|
-
];
|
|
1010
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1011
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1012
|
-
];
|
|
1013
|
-
var StartCanary$ = [9, n0, _SC,
|
|
1014
|
-
{ [_h]: ["POST", "/canary/{Name}/start", 200] }, () => StartCanaryRequest$, () => StartCanaryResponse$
|
|
1015
|
-
];
|
|
1016
|
-
var StartCanaryDryRun$ = [9, n0, _SCDR,
|
|
1017
|
-
{ [_h]: ["POST", "/canary/{Name}/dry-run/start", 200] }, () => StartCanaryDryRunRequest$, () => StartCanaryDryRunResponse$
|
|
1018
|
-
];
|
|
1019
|
-
var StopCanary$ = [9, n0, _SCt,
|
|
1020
|
-
{ [_h]: ["POST", "/canary/{Name}/stop", 200] }, () => StopCanaryRequest$, () => StopCanaryResponse$
|
|
1021
|
-
];
|
|
1022
|
-
var TagResource$ = [9, n0, _TRa,
|
|
1023
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1024
|
-
];
|
|
1025
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1026
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1027
|
-
];
|
|
1028
|
-
var UpdateCanary$ = [9, n0, _UC,
|
|
1029
|
-
{ [_h]: ["PATCH", "/canary/{Name}", 200] }, () => UpdateCanaryRequest$, () => UpdateCanaryResponse$
|
|
1030
|
-
];
|
|
1031
|
-
|
|
1032
116
|
class AssociateResourceCommand extends smithyClient.Command
|
|
1033
117
|
.classBuilder()
|
|
1034
118
|
.ep(commonParams)
|
|
@@ -1037,7 +121,7 @@ class AssociateResourceCommand extends smithyClient.Command
|
|
|
1037
121
|
})
|
|
1038
122
|
.s("Synthetics", "AssociateResource", {})
|
|
1039
123
|
.n("SyntheticsClient", "AssociateResourceCommand")
|
|
1040
|
-
.sc(AssociateResource$)
|
|
124
|
+
.sc(schemas_0.AssociateResource$)
|
|
1041
125
|
.build() {
|
|
1042
126
|
}
|
|
1043
127
|
|
|
@@ -1049,7 +133,7 @@ class CreateCanaryCommand extends smithyClient.Command
|
|
|
1049
133
|
})
|
|
1050
134
|
.s("Synthetics", "CreateCanary", {})
|
|
1051
135
|
.n("SyntheticsClient", "CreateCanaryCommand")
|
|
1052
|
-
.sc(CreateCanary$)
|
|
136
|
+
.sc(schemas_0.CreateCanary$)
|
|
1053
137
|
.build() {
|
|
1054
138
|
}
|
|
1055
139
|
|
|
@@ -1061,7 +145,7 @@ class CreateGroupCommand extends smithyClient.Command
|
|
|
1061
145
|
})
|
|
1062
146
|
.s("Synthetics", "CreateGroup", {})
|
|
1063
147
|
.n("SyntheticsClient", "CreateGroupCommand")
|
|
1064
|
-
.sc(CreateGroup$)
|
|
148
|
+
.sc(schemas_0.CreateGroup$)
|
|
1065
149
|
.build() {
|
|
1066
150
|
}
|
|
1067
151
|
|
|
@@ -1073,7 +157,7 @@ class DeleteCanaryCommand extends smithyClient.Command
|
|
|
1073
157
|
})
|
|
1074
158
|
.s("Synthetics", "DeleteCanary", {})
|
|
1075
159
|
.n("SyntheticsClient", "DeleteCanaryCommand")
|
|
1076
|
-
.sc(DeleteCanary$)
|
|
160
|
+
.sc(schemas_0.DeleteCanary$)
|
|
1077
161
|
.build() {
|
|
1078
162
|
}
|
|
1079
163
|
|
|
@@ -1085,7 +169,7 @@ class DeleteGroupCommand extends smithyClient.Command
|
|
|
1085
169
|
})
|
|
1086
170
|
.s("Synthetics", "DeleteGroup", {})
|
|
1087
171
|
.n("SyntheticsClient", "DeleteGroupCommand")
|
|
1088
|
-
.sc(DeleteGroup$)
|
|
172
|
+
.sc(schemas_0.DeleteGroup$)
|
|
1089
173
|
.build() {
|
|
1090
174
|
}
|
|
1091
175
|
|
|
@@ -1097,7 +181,7 @@ class DescribeCanariesCommand extends smithyClient.Command
|
|
|
1097
181
|
})
|
|
1098
182
|
.s("Synthetics", "DescribeCanaries", {})
|
|
1099
183
|
.n("SyntheticsClient", "DescribeCanariesCommand")
|
|
1100
|
-
.sc(DescribeCanaries$)
|
|
184
|
+
.sc(schemas_0.DescribeCanaries$)
|
|
1101
185
|
.build() {
|
|
1102
186
|
}
|
|
1103
187
|
|
|
@@ -1109,7 +193,7 @@ class DescribeCanariesLastRunCommand extends smithyClient.Command
|
|
|
1109
193
|
})
|
|
1110
194
|
.s("Synthetics", "DescribeCanariesLastRun", {})
|
|
1111
195
|
.n("SyntheticsClient", "DescribeCanariesLastRunCommand")
|
|
1112
|
-
.sc(DescribeCanariesLastRun$)
|
|
196
|
+
.sc(schemas_0.DescribeCanariesLastRun$)
|
|
1113
197
|
.build() {
|
|
1114
198
|
}
|
|
1115
199
|
|
|
@@ -1121,7 +205,7 @@ class DescribeRuntimeVersionsCommand extends smithyClient.Command
|
|
|
1121
205
|
})
|
|
1122
206
|
.s("Synthetics", "DescribeRuntimeVersions", {})
|
|
1123
207
|
.n("SyntheticsClient", "DescribeRuntimeVersionsCommand")
|
|
1124
|
-
.sc(DescribeRuntimeVersions$)
|
|
208
|
+
.sc(schemas_0.DescribeRuntimeVersions$)
|
|
1125
209
|
.build() {
|
|
1126
210
|
}
|
|
1127
211
|
|
|
@@ -1133,7 +217,7 @@ class DisassociateResourceCommand extends smithyClient.Command
|
|
|
1133
217
|
})
|
|
1134
218
|
.s("Synthetics", "DisassociateResource", {})
|
|
1135
219
|
.n("SyntheticsClient", "DisassociateResourceCommand")
|
|
1136
|
-
.sc(DisassociateResource$)
|
|
220
|
+
.sc(schemas_0.DisassociateResource$)
|
|
1137
221
|
.build() {
|
|
1138
222
|
}
|
|
1139
223
|
|
|
@@ -1145,7 +229,7 @@ class GetCanaryCommand extends smithyClient.Command
|
|
|
1145
229
|
})
|
|
1146
230
|
.s("Synthetics", "GetCanary", {})
|
|
1147
231
|
.n("SyntheticsClient", "GetCanaryCommand")
|
|
1148
|
-
.sc(GetCanary$)
|
|
232
|
+
.sc(schemas_0.GetCanary$)
|
|
1149
233
|
.build() {
|
|
1150
234
|
}
|
|
1151
235
|
|
|
@@ -1157,7 +241,7 @@ class GetCanaryRunsCommand extends smithyClient.Command
|
|
|
1157
241
|
})
|
|
1158
242
|
.s("Synthetics", "GetCanaryRuns", {})
|
|
1159
243
|
.n("SyntheticsClient", "GetCanaryRunsCommand")
|
|
1160
|
-
.sc(GetCanaryRuns$)
|
|
244
|
+
.sc(schemas_0.GetCanaryRuns$)
|
|
1161
245
|
.build() {
|
|
1162
246
|
}
|
|
1163
247
|
|
|
@@ -1169,7 +253,7 @@ class GetGroupCommand extends smithyClient.Command
|
|
|
1169
253
|
})
|
|
1170
254
|
.s("Synthetics", "GetGroup", {})
|
|
1171
255
|
.n("SyntheticsClient", "GetGroupCommand")
|
|
1172
|
-
.sc(GetGroup$)
|
|
256
|
+
.sc(schemas_0.GetGroup$)
|
|
1173
257
|
.build() {
|
|
1174
258
|
}
|
|
1175
259
|
|
|
@@ -1181,7 +265,7 @@ class ListAssociatedGroupsCommand extends smithyClient.Command
|
|
|
1181
265
|
})
|
|
1182
266
|
.s("Synthetics", "ListAssociatedGroups", {})
|
|
1183
267
|
.n("SyntheticsClient", "ListAssociatedGroupsCommand")
|
|
1184
|
-
.sc(ListAssociatedGroups$)
|
|
268
|
+
.sc(schemas_0.ListAssociatedGroups$)
|
|
1185
269
|
.build() {
|
|
1186
270
|
}
|
|
1187
271
|
|
|
@@ -1193,7 +277,7 @@ class ListGroupResourcesCommand extends smithyClient.Command
|
|
|
1193
277
|
})
|
|
1194
278
|
.s("Synthetics", "ListGroupResources", {})
|
|
1195
279
|
.n("SyntheticsClient", "ListGroupResourcesCommand")
|
|
1196
|
-
.sc(ListGroupResources$)
|
|
280
|
+
.sc(schemas_0.ListGroupResources$)
|
|
1197
281
|
.build() {
|
|
1198
282
|
}
|
|
1199
283
|
|
|
@@ -1205,7 +289,7 @@ class ListGroupsCommand extends smithyClient.Command
|
|
|
1205
289
|
})
|
|
1206
290
|
.s("Synthetics", "ListGroups", {})
|
|
1207
291
|
.n("SyntheticsClient", "ListGroupsCommand")
|
|
1208
|
-
.sc(ListGroups$)
|
|
292
|
+
.sc(schemas_0.ListGroups$)
|
|
1209
293
|
.build() {
|
|
1210
294
|
}
|
|
1211
295
|
|
|
@@ -1217,7 +301,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1217
301
|
})
|
|
1218
302
|
.s("Synthetics", "ListTagsForResource", {})
|
|
1219
303
|
.n("SyntheticsClient", "ListTagsForResourceCommand")
|
|
1220
|
-
.sc(ListTagsForResource$)
|
|
304
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1221
305
|
.build() {
|
|
1222
306
|
}
|
|
1223
307
|
|
|
@@ -1229,7 +313,7 @@ class StartCanaryCommand extends smithyClient.Command
|
|
|
1229
313
|
})
|
|
1230
314
|
.s("Synthetics", "StartCanary", {})
|
|
1231
315
|
.n("SyntheticsClient", "StartCanaryCommand")
|
|
1232
|
-
.sc(StartCanary$)
|
|
316
|
+
.sc(schemas_0.StartCanary$)
|
|
1233
317
|
.build() {
|
|
1234
318
|
}
|
|
1235
319
|
|
|
@@ -1241,7 +325,7 @@ class StartCanaryDryRunCommand extends smithyClient.Command
|
|
|
1241
325
|
})
|
|
1242
326
|
.s("Synthetics", "StartCanaryDryRun", {})
|
|
1243
327
|
.n("SyntheticsClient", "StartCanaryDryRunCommand")
|
|
1244
|
-
.sc(StartCanaryDryRun$)
|
|
328
|
+
.sc(schemas_0.StartCanaryDryRun$)
|
|
1245
329
|
.build() {
|
|
1246
330
|
}
|
|
1247
331
|
|
|
@@ -1253,7 +337,7 @@ class StopCanaryCommand extends smithyClient.Command
|
|
|
1253
337
|
})
|
|
1254
338
|
.s("Synthetics", "StopCanary", {})
|
|
1255
339
|
.n("SyntheticsClient", "StopCanaryCommand")
|
|
1256
|
-
.sc(StopCanary$)
|
|
340
|
+
.sc(schemas_0.StopCanary$)
|
|
1257
341
|
.build() {
|
|
1258
342
|
}
|
|
1259
343
|
|
|
@@ -1265,7 +349,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1265
349
|
})
|
|
1266
350
|
.s("Synthetics", "TagResource", {})
|
|
1267
351
|
.n("SyntheticsClient", "TagResourceCommand")
|
|
1268
|
-
.sc(TagResource$)
|
|
352
|
+
.sc(schemas_0.TagResource$)
|
|
1269
353
|
.build() {
|
|
1270
354
|
}
|
|
1271
355
|
|
|
@@ -1277,7 +361,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1277
361
|
})
|
|
1278
362
|
.s("Synthetics", "UntagResource", {})
|
|
1279
363
|
.n("SyntheticsClient", "UntagResourceCommand")
|
|
1280
|
-
.sc(UntagResource$)
|
|
364
|
+
.sc(schemas_0.UntagResource$)
|
|
1281
365
|
.build() {
|
|
1282
366
|
}
|
|
1283
367
|
|
|
@@ -1289,7 +373,7 @@ class UpdateCanaryCommand extends smithyClient.Command
|
|
|
1289
373
|
})
|
|
1290
374
|
.s("Synthetics", "UpdateCanary", {})
|
|
1291
375
|
.n("SyntheticsClient", "UpdateCanaryCommand")
|
|
1292
|
-
.sc(UpdateCanary$)
|
|
376
|
+
.sc(schemas_0.UpdateCanary$)
|
|
1293
377
|
.build() {
|
|
1294
378
|
}
|
|
1295
379
|
|
|
@@ -1414,162 +498,45 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1414
498
|
enumerable: true,
|
|
1415
499
|
get: function () { return smithyClient.Client; }
|
|
1416
500
|
});
|
|
1417
|
-
exports
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
exports.AssociateResource$ = AssociateResource$;
|
|
501
|
+
Object.defineProperty(exports, "SyntheticsServiceException", {
|
|
502
|
+
enumerable: true,
|
|
503
|
+
get: function () { return SyntheticsServiceException.SyntheticsServiceException; }
|
|
504
|
+
});
|
|
1422
505
|
exports.AssociateResourceCommand = AssociateResourceCommand;
|
|
1423
|
-
exports.AssociateResourceRequest$ = AssociateResourceRequest$;
|
|
1424
|
-
exports.AssociateResourceResponse$ = AssociateResourceResponse$;
|
|
1425
|
-
exports.BadRequestException = BadRequestException;
|
|
1426
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
1427
|
-
exports.BaseScreenshot$ = BaseScreenshot$;
|
|
1428
|
-
exports.BrowserConfig$ = BrowserConfig$;
|
|
1429
506
|
exports.BrowserType = BrowserType;
|
|
1430
|
-
exports.Canary$ = Canary$;
|
|
1431
|
-
exports.CanaryCodeInput$ = CanaryCodeInput$;
|
|
1432
|
-
exports.CanaryCodeOutput$ = CanaryCodeOutput$;
|
|
1433
|
-
exports.CanaryDryRunConfigOutput$ = CanaryDryRunConfigOutput$;
|
|
1434
|
-
exports.CanaryLastRun$ = CanaryLastRun$;
|
|
1435
|
-
exports.CanaryRun$ = CanaryRun$;
|
|
1436
|
-
exports.CanaryRunConfigInput$ = CanaryRunConfigInput$;
|
|
1437
|
-
exports.CanaryRunConfigOutput$ = CanaryRunConfigOutput$;
|
|
1438
507
|
exports.CanaryRunState = CanaryRunState;
|
|
1439
508
|
exports.CanaryRunStateReasonCode = CanaryRunStateReasonCode;
|
|
1440
|
-
exports.CanaryRunStatus$ = CanaryRunStatus$;
|
|
1441
509
|
exports.CanaryRunTestResult = CanaryRunTestResult;
|
|
1442
|
-
exports.CanaryRunTimeline$ = CanaryRunTimeline$;
|
|
1443
|
-
exports.CanaryScheduleInput$ = CanaryScheduleInput$;
|
|
1444
|
-
exports.CanaryScheduleOutput$ = CanaryScheduleOutput$;
|
|
1445
510
|
exports.CanaryState = CanaryState;
|
|
1446
511
|
exports.CanaryStateReasonCode = CanaryStateReasonCode;
|
|
1447
|
-
exports.CanaryStatus$ = CanaryStatus$;
|
|
1448
|
-
exports.CanaryTimeline$ = CanaryTimeline$;
|
|
1449
|
-
exports.ConflictException = ConflictException;
|
|
1450
|
-
exports.ConflictException$ = ConflictException$;
|
|
1451
|
-
exports.CreateCanary$ = CreateCanary$;
|
|
1452
512
|
exports.CreateCanaryCommand = CreateCanaryCommand;
|
|
1453
|
-
exports.CreateCanaryRequest$ = CreateCanaryRequest$;
|
|
1454
|
-
exports.CreateCanaryResponse$ = CreateCanaryResponse$;
|
|
1455
|
-
exports.CreateGroup$ = CreateGroup$;
|
|
1456
513
|
exports.CreateGroupCommand = CreateGroupCommand;
|
|
1457
|
-
exports.CreateGroupRequest$ = CreateGroupRequest$;
|
|
1458
|
-
exports.CreateGroupResponse$ = CreateGroupResponse$;
|
|
1459
|
-
exports.DeleteCanary$ = DeleteCanary$;
|
|
1460
514
|
exports.DeleteCanaryCommand = DeleteCanaryCommand;
|
|
1461
|
-
exports.DeleteCanaryRequest$ = DeleteCanaryRequest$;
|
|
1462
|
-
exports.DeleteCanaryResponse$ = DeleteCanaryResponse$;
|
|
1463
|
-
exports.DeleteGroup$ = DeleteGroup$;
|
|
1464
515
|
exports.DeleteGroupCommand = DeleteGroupCommand;
|
|
1465
|
-
exports.DeleteGroupRequest$ = DeleteGroupRequest$;
|
|
1466
|
-
exports.DeleteGroupResponse$ = DeleteGroupResponse$;
|
|
1467
|
-
exports.Dependency$ = Dependency$;
|
|
1468
516
|
exports.DependencyType = DependencyType;
|
|
1469
|
-
exports.DescribeCanaries$ = DescribeCanaries$;
|
|
1470
517
|
exports.DescribeCanariesCommand = DescribeCanariesCommand;
|
|
1471
|
-
exports.DescribeCanariesLastRun$ = DescribeCanariesLastRun$;
|
|
1472
518
|
exports.DescribeCanariesLastRunCommand = DescribeCanariesLastRunCommand;
|
|
1473
|
-
exports.DescribeCanariesLastRunRequest$ = DescribeCanariesLastRunRequest$;
|
|
1474
|
-
exports.DescribeCanariesLastRunResponse$ = DescribeCanariesLastRunResponse$;
|
|
1475
|
-
exports.DescribeCanariesRequest$ = DescribeCanariesRequest$;
|
|
1476
|
-
exports.DescribeCanariesResponse$ = DescribeCanariesResponse$;
|
|
1477
|
-
exports.DescribeRuntimeVersions$ = DescribeRuntimeVersions$;
|
|
1478
519
|
exports.DescribeRuntimeVersionsCommand = DescribeRuntimeVersionsCommand;
|
|
1479
|
-
exports.DescribeRuntimeVersionsRequest$ = DescribeRuntimeVersionsRequest$;
|
|
1480
|
-
exports.DescribeRuntimeVersionsResponse$ = DescribeRuntimeVersionsResponse$;
|
|
1481
|
-
exports.DisassociateResource$ = DisassociateResource$;
|
|
1482
520
|
exports.DisassociateResourceCommand = DisassociateResourceCommand;
|
|
1483
|
-
exports.DisassociateResourceRequest$ = DisassociateResourceRequest$;
|
|
1484
|
-
exports.DisassociateResourceResponse$ = DisassociateResourceResponse$;
|
|
1485
|
-
exports.DryRunConfigOutput$ = DryRunConfigOutput$;
|
|
1486
521
|
exports.EncryptionMode = EncryptionMode;
|
|
1487
|
-
exports.EngineConfig$ = EngineConfig$;
|
|
1488
|
-
exports.GetCanary$ = GetCanary$;
|
|
1489
522
|
exports.GetCanaryCommand = GetCanaryCommand;
|
|
1490
|
-
exports.GetCanaryRequest$ = GetCanaryRequest$;
|
|
1491
|
-
exports.GetCanaryResponse$ = GetCanaryResponse$;
|
|
1492
|
-
exports.GetCanaryRuns$ = GetCanaryRuns$;
|
|
1493
523
|
exports.GetCanaryRunsCommand = GetCanaryRunsCommand;
|
|
1494
|
-
exports.GetCanaryRunsRequest$ = GetCanaryRunsRequest$;
|
|
1495
|
-
exports.GetCanaryRunsResponse$ = GetCanaryRunsResponse$;
|
|
1496
|
-
exports.GetGroup$ = GetGroup$;
|
|
1497
524
|
exports.GetGroupCommand = GetGroupCommand;
|
|
1498
|
-
exports.GetGroupRequest$ = GetGroupRequest$;
|
|
1499
|
-
exports.GetGroupResponse$ = GetGroupResponse$;
|
|
1500
|
-
exports.Group$ = Group$;
|
|
1501
|
-
exports.GroupSummary$ = GroupSummary$;
|
|
1502
|
-
exports.InternalFailureException = InternalFailureException;
|
|
1503
|
-
exports.InternalFailureException$ = InternalFailureException$;
|
|
1504
|
-
exports.InternalServerException = InternalServerException;
|
|
1505
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1506
|
-
exports.ListAssociatedGroups$ = ListAssociatedGroups$;
|
|
1507
525
|
exports.ListAssociatedGroupsCommand = ListAssociatedGroupsCommand;
|
|
1508
|
-
exports.ListAssociatedGroupsRequest$ = ListAssociatedGroupsRequest$;
|
|
1509
|
-
exports.ListAssociatedGroupsResponse$ = ListAssociatedGroupsResponse$;
|
|
1510
|
-
exports.ListGroupResources$ = ListGroupResources$;
|
|
1511
526
|
exports.ListGroupResourcesCommand = ListGroupResourcesCommand;
|
|
1512
|
-
exports.ListGroupResourcesRequest$ = ListGroupResourcesRequest$;
|
|
1513
|
-
exports.ListGroupResourcesResponse$ = ListGroupResourcesResponse$;
|
|
1514
|
-
exports.ListGroups$ = ListGroups$;
|
|
1515
527
|
exports.ListGroupsCommand = ListGroupsCommand;
|
|
1516
|
-
exports.ListGroupsRequest$ = ListGroupsRequest$;
|
|
1517
|
-
exports.ListGroupsResponse$ = ListGroupsResponse$;
|
|
1518
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1519
528
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1520
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1521
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1522
|
-
exports.NotFoundException = NotFoundException;
|
|
1523
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
1524
529
|
exports.ProvisionedResourceCleanupSetting = ProvisionedResourceCleanupSetting;
|
|
1525
|
-
exports.RequestEntityTooLargeException = RequestEntityTooLargeException;
|
|
1526
|
-
exports.RequestEntityTooLargeException$ = RequestEntityTooLargeException$;
|
|
1527
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1528
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1529
530
|
exports.ResourceToTag = ResourceToTag;
|
|
1530
|
-
exports.RetryConfigInput$ = RetryConfigInput$;
|
|
1531
|
-
exports.RetryConfigOutput$ = RetryConfigOutput$;
|
|
1532
531
|
exports.RunType = RunType;
|
|
1533
|
-
exports.RuntimeVersion$ = RuntimeVersion$;
|
|
1534
|
-
exports.S3EncryptionConfig$ = S3EncryptionConfig$;
|
|
1535
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1536
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1537
|
-
exports.StartCanary$ = StartCanary$;
|
|
1538
532
|
exports.StartCanaryCommand = StartCanaryCommand;
|
|
1539
|
-
exports.StartCanaryDryRun$ = StartCanaryDryRun$;
|
|
1540
533
|
exports.StartCanaryDryRunCommand = StartCanaryDryRunCommand;
|
|
1541
|
-
exports.StartCanaryDryRunRequest$ = StartCanaryDryRunRequest$;
|
|
1542
|
-
exports.StartCanaryDryRunResponse$ = StartCanaryDryRunResponse$;
|
|
1543
|
-
exports.StartCanaryRequest$ = StartCanaryRequest$;
|
|
1544
|
-
exports.StartCanaryResponse$ = StartCanaryResponse$;
|
|
1545
|
-
exports.StopCanary$ = StopCanary$;
|
|
1546
534
|
exports.StopCanaryCommand = StopCanaryCommand;
|
|
1547
|
-
exports.StopCanaryRequest$ = StopCanaryRequest$;
|
|
1548
|
-
exports.StopCanaryResponse$ = StopCanaryResponse$;
|
|
1549
535
|
exports.Synthetics = Synthetics;
|
|
1550
536
|
exports.SyntheticsClient = SyntheticsClient;
|
|
1551
|
-
exports.SyntheticsServiceException = SyntheticsServiceException;
|
|
1552
|
-
exports.SyntheticsServiceException$ = SyntheticsServiceException$;
|
|
1553
|
-
exports.TagResource$ = TagResource$;
|
|
1554
537
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1555
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1556
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1557
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1558
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1559
|
-
exports.UntagResource$ = UntagResource$;
|
|
1560
538
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1561
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1562
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1563
|
-
exports.UpdateCanary$ = UpdateCanary$;
|
|
1564
539
|
exports.UpdateCanaryCommand = UpdateCanaryCommand;
|
|
1565
|
-
exports.UpdateCanaryRequest$ = UpdateCanaryRequest$;
|
|
1566
|
-
exports.UpdateCanaryResponse$ = UpdateCanaryResponse$;
|
|
1567
|
-
exports.ValidationException = ValidationException;
|
|
1568
|
-
exports.ValidationException$ = ValidationException$;
|
|
1569
|
-
exports.VisualReferenceInput$ = VisualReferenceInput$;
|
|
1570
|
-
exports.VisualReferenceOutput$ = VisualReferenceOutput$;
|
|
1571
|
-
exports.VpcConfigInput$ = VpcConfigInput$;
|
|
1572
|
-
exports.VpcConfigOutput$ = VpcConfigOutput$;
|
|
1573
540
|
exports.paginateDescribeCanaries = paginateDescribeCanaries;
|
|
1574
541
|
exports.paginateDescribeCanariesLastRun = paginateDescribeCanariesLastRun;
|
|
1575
542
|
exports.paginateDescribeRuntimeVersions = paginateDescribeRuntimeVersions;
|
|
@@ -1577,3 +544,15 @@ exports.paginateGetCanaryRuns = paginateGetCanaryRuns;
|
|
|
1577
544
|
exports.paginateListAssociatedGroups = paginateListAssociatedGroups;
|
|
1578
545
|
exports.paginateListGroupResources = paginateListGroupResources;
|
|
1579
546
|
exports.paginateListGroups = paginateListGroups;
|
|
547
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
548
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
549
|
+
enumerable: true,
|
|
550
|
+
get: function () { return schemas_0[k]; }
|
|
551
|
+
});
|
|
552
|
+
});
|
|
553
|
+
Object.keys(errors).forEach(function (k) {
|
|
554
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
555
|
+
enumerable: true,
|
|
556
|
+
get: function () { return errors[k]; }
|
|
557
|
+
});
|
|
558
|
+
});
|