@aws-sdk/client-synthetics 3.952.0 → 3.954.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 +371 -262
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateResourceCommand.js +2 -2
- package/dist-es/commands/CreateCanaryCommand.js +2 -2
- package/dist-es/commands/CreateGroupCommand.js +2 -2
- package/dist-es/commands/DeleteCanaryCommand.js +2 -2
- package/dist-es/commands/DeleteGroupCommand.js +2 -2
- package/dist-es/commands/DescribeCanariesCommand.js +2 -2
- package/dist-es/commands/DescribeCanariesLastRunCommand.js +2 -2
- package/dist-es/commands/DescribeRuntimeVersionsCommand.js +2 -2
- package/dist-es/commands/DisassociateResourceCommand.js +2 -2
- package/dist-es/commands/GetCanaryCommand.js +2 -2
- package/dist-es/commands/GetCanaryRunsCommand.js +2 -2
- package/dist-es/commands/GetGroupCommand.js +2 -2
- package/dist-es/commands/ListAssociatedGroupsCommand.js +2 -2
- package/dist-es/commands/ListGroupResourcesCommand.js +2 -2
- package/dist-es/commands/ListGroupsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartCanaryCommand.js +2 -2
- package/dist-es/commands/StartCanaryDryRunCommand.js +2 -2
- package/dist-es/commands/StopCanaryCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCanaryCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +217 -217
- package/dist-types/SyntheticsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +110 -132
- package/dist-types/ts3.4/SyntheticsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +109 -132
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class SyntheticsClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class SyntheticsServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, SyntheticsServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends SyntheticsServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends SyntheticsServ
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class ConflictException extends SyntheticsServiceException {
|
|
135
135
|
name = "ConflictException";
|
|
136
136
|
$fault = "client";
|
|
137
137
|
Message;
|
|
@@ -144,8 +144,8 @@ let ConflictException$1 = class ConflictException extends SyntheticsServiceExcep
|
|
|
144
144
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
145
|
this.Message = opts.Message;
|
|
146
146
|
}
|
|
147
|
-
}
|
|
148
|
-
|
|
147
|
+
}
|
|
148
|
+
class InternalServerException extends SyntheticsServiceException {
|
|
149
149
|
name = "InternalServerException";
|
|
150
150
|
$fault = "server";
|
|
151
151
|
Message;
|
|
@@ -158,8 +158,8 @@ let InternalServerException$1 = class InternalServerException extends Synthetics
|
|
|
158
158
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
159
|
this.Message = opts.Message;
|
|
160
160
|
}
|
|
161
|
-
}
|
|
162
|
-
|
|
161
|
+
}
|
|
162
|
+
class ResourceNotFoundException extends SyntheticsServiceException {
|
|
163
163
|
name = "ResourceNotFoundException";
|
|
164
164
|
$fault = "client";
|
|
165
165
|
Message;
|
|
@@ -172,8 +172,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Synthe
|
|
|
172
172
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
173
|
this.Message = opts.Message;
|
|
174
174
|
}
|
|
175
|
-
}
|
|
176
|
-
|
|
175
|
+
}
|
|
176
|
+
class ServiceQuotaExceededException extends SyntheticsServiceException {
|
|
177
177
|
name = "ServiceQuotaExceededException";
|
|
178
178
|
$fault = "client";
|
|
179
179
|
Message;
|
|
@@ -186,8 +186,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
186
186
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
187
187
|
this.Message = opts.Message;
|
|
188
188
|
}
|
|
189
|
-
}
|
|
190
|
-
|
|
189
|
+
}
|
|
190
|
+
class ValidationException extends SyntheticsServiceException {
|
|
191
191
|
name = "ValidationException";
|
|
192
192
|
$fault = "client";
|
|
193
193
|
Message;
|
|
@@ -200,8 +200,8 @@ let ValidationException$1 = class ValidationException extends SyntheticsServiceE
|
|
|
200
200
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
201
201
|
this.Message = opts.Message;
|
|
202
202
|
}
|
|
203
|
-
}
|
|
204
|
-
|
|
203
|
+
}
|
|
204
|
+
class BadRequestException extends SyntheticsServiceException {
|
|
205
205
|
name = "BadRequestException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
Message;
|
|
@@ -214,8 +214,8 @@ let BadRequestException$1 = class BadRequestException extends SyntheticsServiceE
|
|
|
214
214
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
215
215
|
this.Message = opts.Message;
|
|
216
216
|
}
|
|
217
|
-
}
|
|
218
|
-
|
|
217
|
+
}
|
|
218
|
+
class RequestEntityTooLargeException extends SyntheticsServiceException {
|
|
219
219
|
name = "RequestEntityTooLargeException";
|
|
220
220
|
$fault = "client";
|
|
221
221
|
Message;
|
|
@@ -228,8 +228,8 @@ let RequestEntityTooLargeException$1 = class RequestEntityTooLargeException exte
|
|
|
228
228
|
Object.setPrototypeOf(this, RequestEntityTooLargeException.prototype);
|
|
229
229
|
this.Message = opts.Message;
|
|
230
230
|
}
|
|
231
|
-
}
|
|
232
|
-
|
|
231
|
+
}
|
|
232
|
+
class InternalFailureException extends SyntheticsServiceException {
|
|
233
233
|
name = "InternalFailureException";
|
|
234
234
|
$fault = "server";
|
|
235
235
|
Message;
|
|
@@ -242,8 +242,8 @@ let InternalFailureException$1 = class InternalFailureException extends Syntheti
|
|
|
242
242
|
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
243
243
|
this.Message = opts.Message;
|
|
244
244
|
}
|
|
245
|
-
}
|
|
246
|
-
|
|
245
|
+
}
|
|
246
|
+
class NotFoundException extends SyntheticsServiceException {
|
|
247
247
|
name = "NotFoundException";
|
|
248
248
|
$fault = "client";
|
|
249
249
|
Message;
|
|
@@ -256,8 +256,8 @@ let NotFoundException$1 = class NotFoundException extends SyntheticsServiceExcep
|
|
|
256
256
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
257
257
|
this.Message = opts.Message;
|
|
258
258
|
}
|
|
259
|
-
}
|
|
260
|
-
|
|
259
|
+
}
|
|
260
|
+
class TooManyRequestsException extends SyntheticsServiceException {
|
|
261
261
|
name = "TooManyRequestsException";
|
|
262
262
|
$fault = "client";
|
|
263
263
|
Message;
|
|
@@ -270,7 +270,7 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends Syntheti
|
|
|
270
270
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
271
271
|
this.Message = opts.Message;
|
|
272
272
|
}
|
|
273
|
-
}
|
|
273
|
+
}
|
|
274
274
|
|
|
275
275
|
const _A = "Arn";
|
|
276
276
|
const _AC = "ArtifactConfig";
|
|
@@ -486,17 +486,17 @@ const _s = "server";
|
|
|
486
486
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.synthetics";
|
|
487
487
|
const _tK = "tagKeys";
|
|
488
488
|
const n0 = "com.amazonaws.synthetics";
|
|
489
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
490
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
491
|
-
var ArtifactConfigInput = [3, n0, _ACI, 0, [_SE], [() => S3EncryptionConfig]];
|
|
492
|
-
var ArtifactConfigOutput = [3, n0, _ACO, 0, [_SE], [() => S3EncryptionConfig]];
|
|
493
|
-
var AssociateResourceRequest = [3, n0, _ARR, 0, [_GI, _RA], [[0, 1], 0]];
|
|
494
|
-
var AssociateResourceResponse = [3, n0, _ARRs, 0, [], []];
|
|
495
|
-
var BadRequestException = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
496
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException
|
|
497
|
-
var BaseScreenshot = [3, n0, _BS, 0, [_SN, _IC], [0, 64 | 0]];
|
|
498
|
-
var BrowserConfig = [3, n0, _BC, 0, [_BT], [0]];
|
|
499
|
-
var Canary = [
|
|
489
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
490
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
491
|
+
var ArtifactConfigInput$ = [3, n0, _ACI, 0, [_SE], [() => S3EncryptionConfig$]];
|
|
492
|
+
var ArtifactConfigOutput$ = [3, n0, _ACO, 0, [_SE], [() => S3EncryptionConfig$]];
|
|
493
|
+
var AssociateResourceRequest$ = [3, n0, _ARR, 0, [_GI, _RA], [[0, 1], 0]];
|
|
494
|
+
var AssociateResourceResponse$ = [3, n0, _ARRs, 0, [], []];
|
|
495
|
+
var BadRequestException$ = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
496
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
497
|
+
var BaseScreenshot$ = [3, n0, _BS, 0, [_SN, _IC], [0, 64 | 0]];
|
|
498
|
+
var BrowserConfig$ = [3, n0, _BC, 0, [_BT], [0]];
|
|
499
|
+
var Canary$ = [
|
|
500
500
|
3,
|
|
501
501
|
n0,
|
|
502
502
|
_C,
|
|
@@ -528,29 +528,29 @@ var Canary = [
|
|
|
528
528
|
[
|
|
529
529
|
0,
|
|
530
530
|
0,
|
|
531
|
-
() => CanaryCodeOutput
|
|
531
|
+
() => CanaryCodeOutput$,
|
|
532
532
|
0,
|
|
533
|
-
() => CanaryScheduleOutput
|
|
534
|
-
() => CanaryRunConfigOutput
|
|
533
|
+
() => CanaryScheduleOutput$,
|
|
534
|
+
() => CanaryRunConfigOutput$,
|
|
535
535
|
1,
|
|
536
536
|
1,
|
|
537
|
-
() => CanaryStatus
|
|
538
|
-
() => CanaryTimeline
|
|
537
|
+
() => CanaryStatus$,
|
|
538
|
+
() => CanaryTimeline$,
|
|
539
539
|
0,
|
|
540
540
|
0,
|
|
541
541
|
0,
|
|
542
|
-
() => VpcConfigOutput
|
|
543
|
-
() => VisualReferenceOutput
|
|
542
|
+
() => VpcConfigOutput$,
|
|
543
|
+
() => VisualReferenceOutput$,
|
|
544
544
|
0,
|
|
545
545
|
() => BrowserConfigs,
|
|
546
546
|
() => EngineConfigs,
|
|
547
547
|
() => VisualReferencesOutput,
|
|
548
548
|
128 | 0,
|
|
549
|
-
() => ArtifactConfigOutput
|
|
550
|
-
() => DryRunConfigOutput
|
|
549
|
+
() => ArtifactConfigOutput$,
|
|
550
|
+
() => DryRunConfigOutput$,
|
|
551
551
|
],
|
|
552
552
|
];
|
|
553
|
-
var CanaryCodeInput = [
|
|
553
|
+
var CanaryCodeInput$ = [
|
|
554
554
|
3,
|
|
555
555
|
n0,
|
|
556
556
|
_CCI,
|
|
@@ -558,7 +558,7 @@ var CanaryCodeInput = [
|
|
|
558
558
|
[_SB, _SK, _SV, _ZF, _H, _BTl, _D],
|
|
559
559
|
[0, 0, 0, 21, 0, 64 | 0, () => Dependencies],
|
|
560
560
|
];
|
|
561
|
-
var CanaryCodeOutput = [
|
|
561
|
+
var CanaryCodeOutput$ = [
|
|
562
562
|
3,
|
|
563
563
|
n0,
|
|
564
564
|
_CCO,
|
|
@@ -566,17 +566,17 @@ var CanaryCodeOutput = [
|
|
|
566
566
|
[_SLA, _H, _BTl, _D],
|
|
567
567
|
[0, 0, 64 | 0, () => Dependencies],
|
|
568
568
|
];
|
|
569
|
-
var CanaryDryRunConfigOutput = [3, n0, _CDRCO, 0, [_DRI], [0]];
|
|
570
|
-
var CanaryLastRun = [3, n0, _CLR, 0, [_CN, _LR], [0, () => CanaryRun]];
|
|
571
|
-
var CanaryRun = [
|
|
569
|
+
var CanaryDryRunConfigOutput$ = [3, n0, _CDRCO, 0, [_DRI], [0]];
|
|
570
|
+
var CanaryLastRun$ = [3, n0, _CLR, 0, [_CN, _LR], [0, () => CanaryRun$]];
|
|
571
|
+
var CanaryRun$ = [
|
|
572
572
|
3,
|
|
573
573
|
n0,
|
|
574
574
|
_CR,
|
|
575
575
|
0,
|
|
576
576
|
[_I, _SRI, _RAe, _N, _St, _T, _ASL, _DRC, _BT],
|
|
577
|
-
[0, 0, 1, 0, () => CanaryRunStatus
|
|
577
|
+
[0, 0, 1, 0, () => CanaryRunStatus$, () => CanaryRunTimeline$, 0, () => CanaryDryRunConfigOutput$, 0],
|
|
578
578
|
];
|
|
579
|
-
var CanaryRunConfigInput = [
|
|
579
|
+
var CanaryRunConfigInput$ = [
|
|
580
580
|
3,
|
|
581
581
|
n0,
|
|
582
582
|
_CRCI,
|
|
@@ -584,30 +584,30 @@ var CanaryRunConfigInput = [
|
|
|
584
584
|
[_TIS, _MIMB, _AT, _EV, _ES],
|
|
585
585
|
[1, 1, 2, 128 | 0, 1],
|
|
586
586
|
];
|
|
587
|
-
var CanaryRunConfigOutput = [3, n0, _CRCO, 0, [_TIS, _MIMB, _AT, _ES], [1, 1, 2, 1]];
|
|
588
|
-
var CanaryRunStatus = [3, n0, _CRS, 0, [_Sta, _SR, _SRC, _TR], [0, 0, 0, 0]];
|
|
589
|
-
var CanaryRunTimeline = [3, n0, _CRT, 0, [_Star, _Com, _MTFRAR], [4, 4, 4]];
|
|
590
|
-
var CanaryScheduleInput = [
|
|
587
|
+
var CanaryRunConfigOutput$ = [3, n0, _CRCO, 0, [_TIS, _MIMB, _AT, _ES], [1, 1, 2, 1]];
|
|
588
|
+
var CanaryRunStatus$ = [3, n0, _CRS, 0, [_Sta, _SR, _SRC, _TR], [0, 0, 0, 0]];
|
|
589
|
+
var CanaryRunTimeline$ = [3, n0, _CRT, 0, [_Star, _Com, _MTFRAR], [4, 4, 4]];
|
|
590
|
+
var CanaryScheduleInput$ = [
|
|
591
591
|
3,
|
|
592
592
|
n0,
|
|
593
593
|
_CSI,
|
|
594
594
|
0,
|
|
595
595
|
[_E, _DIS, _RCe],
|
|
596
|
-
[0, 1, () => RetryConfigInput],
|
|
596
|
+
[0, 1, () => RetryConfigInput$],
|
|
597
597
|
];
|
|
598
|
-
var CanaryScheduleOutput = [
|
|
598
|
+
var CanaryScheduleOutput$ = [
|
|
599
599
|
3,
|
|
600
600
|
n0,
|
|
601
601
|
_CSO,
|
|
602
602
|
0,
|
|
603
603
|
[_E, _DIS, _RCe],
|
|
604
|
-
[0, 1, () => RetryConfigOutput],
|
|
604
|
+
[0, 1, () => RetryConfigOutput$],
|
|
605
605
|
];
|
|
606
|
-
var CanaryStatus = [3, n0, _CS, 0, [_Sta, _SR, _SRC], [0, 0, 0]];
|
|
607
|
-
var CanaryTimeline = [3, n0, _CT, 0, [_Cr, _LM, _LS, _LSa], [4, 4, 4, 4]];
|
|
608
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
609
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
610
|
-
var CreateCanaryRequest = [
|
|
606
|
+
var CanaryStatus$ = [3, n0, _CS, 0, [_Sta, _SR, _SRC], [0, 0, 0]];
|
|
607
|
+
var CanaryTimeline$ = [3, n0, _CT, 0, [_Cr, _LM, _LS, _LSa], [4, 4, 4, 4]];
|
|
608
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
609
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
610
|
+
var CreateCanaryRequest$ = [
|
|
611
611
|
3,
|
|
612
612
|
n0,
|
|
613
613
|
_CCR,
|
|
@@ -615,26 +615,26 @@ var CreateCanaryRequest = [
|
|
|
615
615
|
[_N, _Co, _ASL, _ERA, _S, _RC, _SRPID, _FRPID, _RV, _VC, _RTRT, _PRC, _BCr, _Ta, _AC],
|
|
616
616
|
[
|
|
617
617
|
0,
|
|
618
|
-
() => CanaryCodeInput
|
|
618
|
+
() => CanaryCodeInput$,
|
|
619
619
|
0,
|
|
620
620
|
0,
|
|
621
|
-
() => CanaryScheduleInput
|
|
622
|
-
() => CanaryRunConfigInput
|
|
621
|
+
() => CanaryScheduleInput$,
|
|
622
|
+
() => CanaryRunConfigInput$,
|
|
623
623
|
1,
|
|
624
624
|
1,
|
|
625
625
|
0,
|
|
626
|
-
() => VpcConfigInput
|
|
626
|
+
() => VpcConfigInput$,
|
|
627
627
|
64 | 0,
|
|
628
628
|
0,
|
|
629
629
|
() => BrowserConfigs,
|
|
630
630
|
128 | 0,
|
|
631
|
-
() => ArtifactConfigInput
|
|
631
|
+
() => ArtifactConfigInput$,
|
|
632
632
|
],
|
|
633
633
|
];
|
|
634
|
-
var CreateCanaryResponse = [3, n0, _CCRr, 0, [_C], [() => Canary]];
|
|
635
|
-
var CreateGroupRequest = [3, n0, _CGR, 0, [_N, _Ta], [0, 128 | 0]];
|
|
636
|
-
var CreateGroupResponse = [3, n0, _CGRr, 0, [_G], [() => Group]];
|
|
637
|
-
var DeleteCanaryRequest = [
|
|
634
|
+
var CreateCanaryResponse$ = [3, n0, _CCRr, 0, [_C], [() => Canary$]];
|
|
635
|
+
var CreateGroupRequest$ = [3, n0, _CGR, 0, [_N, _Ta], [0, 128 | 0]];
|
|
636
|
+
var CreateGroupResponse$ = [3, n0, _CGRr, 0, [_G], [() => Group$]];
|
|
637
|
+
var DeleteCanaryRequest$ = [
|
|
638
638
|
3,
|
|
639
639
|
n0,
|
|
640
640
|
_DCR,
|
|
@@ -645,11 +645,11 @@ var DeleteCanaryRequest = [
|
|
|
645
645
|
[2, { [_hQ]: _dL }],
|
|
646
646
|
],
|
|
647
647
|
];
|
|
648
|
-
var DeleteCanaryResponse = [3, n0, _DCRe, 0, [], []];
|
|
649
|
-
var DeleteGroupRequest = [3, n0, _DGR, 0, [_GI], [[0, 1]]];
|
|
650
|
-
var DeleteGroupResponse = [3, n0, _DGRe, 0, [], []];
|
|
651
|
-
var Dependency = [3, n0, _De, 0, [_Ty, _R], [0, 0]];
|
|
652
|
-
var DescribeCanariesLastRunRequest = [
|
|
648
|
+
var DeleteCanaryResponse$ = [3, n0, _DCRe, 0, [], []];
|
|
649
|
+
var DeleteGroupRequest$ = [3, n0, _DGR, 0, [_GI], [[0, 1]]];
|
|
650
|
+
var DeleteGroupResponse$ = [3, n0, _DGRe, 0, [], []];
|
|
651
|
+
var Dependency$ = [3, n0, _De, 0, [_Ty, _R], [0, 0]];
|
|
652
|
+
var DescribeCanariesLastRunRequest$ = [
|
|
653
653
|
3,
|
|
654
654
|
n0,
|
|
655
655
|
_DCLRR,
|
|
@@ -657,7 +657,7 @@ var DescribeCanariesLastRunRequest = [
|
|
|
657
657
|
[_NT, _MR, _Na, _BT],
|
|
658
658
|
[0, 1, 64 | 0, 0],
|
|
659
659
|
];
|
|
660
|
-
var DescribeCanariesLastRunResponse = [
|
|
660
|
+
var DescribeCanariesLastRunResponse$ = [
|
|
661
661
|
3,
|
|
662
662
|
n0,
|
|
663
663
|
_DCLRRe,
|
|
@@ -665,10 +665,10 @@ var DescribeCanariesLastRunResponse = [
|
|
|
665
665
|
[_CLRa, _NT],
|
|
666
666
|
[() => CanariesLastRun, 0],
|
|
667
667
|
];
|
|
668
|
-
var DescribeCanariesRequest = [3, n0, _DCRes, 0, [_NT, _MR, _Na], [0, 1, 64 | 0]];
|
|
669
|
-
var DescribeCanariesResponse = [3, n0, _DCResc, 0, [_Ca, _NT], [() => Canaries, 0]];
|
|
670
|
-
var DescribeRuntimeVersionsRequest = [3, n0, _DRVR, 0, [_NT, _MR], [0, 1]];
|
|
671
|
-
var DescribeRuntimeVersionsResponse = [
|
|
668
|
+
var DescribeCanariesRequest$ = [3, n0, _DCRes, 0, [_NT, _MR, _Na], [0, 1, 64 | 0]];
|
|
669
|
+
var DescribeCanariesResponse$ = [3, n0, _DCResc, 0, [_Ca, _NT], [() => Canaries, 0]];
|
|
670
|
+
var DescribeRuntimeVersionsRequest$ = [3, n0, _DRVR, 0, [_NT, _MR], [0, 1]];
|
|
671
|
+
var DescribeRuntimeVersionsResponse$ = [
|
|
672
672
|
3,
|
|
673
673
|
n0,
|
|
674
674
|
_DRVRe,
|
|
@@ -676,11 +676,11 @@ var DescribeRuntimeVersionsResponse = [
|
|
|
676
676
|
[_RVu, _NT],
|
|
677
677
|
[() => RuntimeVersionList, 0],
|
|
678
678
|
];
|
|
679
|
-
var DisassociateResourceRequest = [3, n0, _DRR, 0, [_GI, _RA], [[0, 1], 0]];
|
|
680
|
-
var DisassociateResourceResponse = [3, n0, _DRRi, 0, [], []];
|
|
681
|
-
var DryRunConfigOutput = [3, n0, _DRCO, 0, [_DRI, _LDRES], [0, 0]];
|
|
682
|
-
var EngineConfig = [3, n0, _ECn, 0, [_EA, _BT], [0, 0]];
|
|
683
|
-
var GetCanaryRequest = [
|
|
679
|
+
var DisassociateResourceRequest$ = [3, n0, _DRR, 0, [_GI, _RA], [[0, 1], 0]];
|
|
680
|
+
var DisassociateResourceResponse$ = [3, n0, _DRRi, 0, [], []];
|
|
681
|
+
var DryRunConfigOutput$ = [3, n0, _DRCO, 0, [_DRI, _LDRES], [0, 0]];
|
|
682
|
+
var EngineConfig$ = [3, n0, _ECn, 0, [_EA, _BT], [0, 0]];
|
|
683
|
+
var GetCanaryRequest$ = [
|
|
684
684
|
3,
|
|
685
685
|
n0,
|
|
686
686
|
_GCR,
|
|
@@ -691,8 +691,8 @@ var GetCanaryRequest = [
|
|
|
691
691
|
[0, { [_hQ]: _dRI }],
|
|
692
692
|
],
|
|
693
693
|
];
|
|
694
|
-
var GetCanaryResponse = [3, n0, _GCRe, 0, [_C], [() => Canary]];
|
|
695
|
-
var GetCanaryRunsRequest = [
|
|
694
|
+
var GetCanaryResponse$ = [3, n0, _GCRe, 0, [_C], [() => Canary$]];
|
|
695
|
+
var GetCanaryRunsRequest$ = [
|
|
696
696
|
3,
|
|
697
697
|
n0,
|
|
698
698
|
_GCRR,
|
|
@@ -700,17 +700,17 @@ var GetCanaryRunsRequest = [
|
|
|
700
700
|
[_N, _NT, _MR, _DRI, _RT],
|
|
701
701
|
[[0, 1], 0, 1, 0, 0],
|
|
702
702
|
];
|
|
703
|
-
var GetCanaryRunsResponse = [3, n0, _GCRRe, 0, [_CRa, _NT], [() => CanaryRuns, 0]];
|
|
704
|
-
var GetGroupRequest = [3, n0, _GGR, 0, [_GI], [[0, 1]]];
|
|
705
|
-
var GetGroupResponse = [3, n0, _GGRe, 0, [_G], [() => Group]];
|
|
706
|
-
var Group = [3, n0, _G, 0, [_I, _N, _A, _Ta, _CTr, _LMT], [0, 0, 0, 128 | 0, 4, 4]];
|
|
707
|
-
var GroupSummary = [3, n0, _GS, 0, [_I, _N, _A], [0, 0, 0]];
|
|
708
|
-
var InternalFailureException = [-3, n0, _IFE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
709
|
-
schema.TypeRegistry.for(n0).registerError(InternalFailureException
|
|
710
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
711
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
712
|
-
var ListAssociatedGroupsRequest = [3, n0, _LAGR, 0, [_NT, _MR, _RA], [0, 1, [0, 1]]];
|
|
713
|
-
var ListAssociatedGroupsResponse = [
|
|
703
|
+
var GetCanaryRunsResponse$ = [3, n0, _GCRRe, 0, [_CRa, _NT], [() => CanaryRuns, 0]];
|
|
704
|
+
var GetGroupRequest$ = [3, n0, _GGR, 0, [_GI], [[0, 1]]];
|
|
705
|
+
var GetGroupResponse$ = [3, n0, _GGRe, 0, [_G], [() => Group$]];
|
|
706
|
+
var Group$ = [3, n0, _G, 0, [_I, _N, _A, _Ta, _CTr, _LMT], [0, 0, 0, 128 | 0, 4, 4]];
|
|
707
|
+
var GroupSummary$ = [3, n0, _GS, 0, [_I, _N, _A], [0, 0, 0]];
|
|
708
|
+
var InternalFailureException$ = [-3, n0, _IFE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
709
|
+
schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
|
|
710
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
711
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
712
|
+
var ListAssociatedGroupsRequest$ = [3, n0, _LAGR, 0, [_NT, _MR, _RA], [0, 1, [0, 1]]];
|
|
713
|
+
var ListAssociatedGroupsResponse$ = [
|
|
714
714
|
3,
|
|
715
715
|
n0,
|
|
716
716
|
_LAGRi,
|
|
@@ -718,25 +718,25 @@ var ListAssociatedGroupsResponse = [
|
|
|
718
718
|
[_Gr, _NT],
|
|
719
719
|
[() => GroupSummaryList, 0],
|
|
720
720
|
];
|
|
721
|
-
var ListGroupResourcesRequest = [3, n0, _LGRR, 0, [_NT, _MR, _GI], [0, 1, [0, 1]]];
|
|
722
|
-
var ListGroupResourcesResponse = [3, n0, _LGRRi, 0, [_Re, _NT], [64 | 0, 0]];
|
|
723
|
-
var ListGroupsRequest = [3, n0, _LGR, 0, [_NT, _MR], [0, 1]];
|
|
724
|
-
var ListGroupsResponse = [3, n0, _LGRi, 0, [_Gr, _NT], [() => GroupSummaryList, 0]];
|
|
725
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
726
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
|
|
727
|
-
var NotFoundException = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
|
|
728
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException
|
|
729
|
-
var RequestEntityTooLargeException = [-3, n0, _RETLE, { [_e]: _c, [_hE]: 413 }, [_M], [0]];
|
|
730
|
-
schema.TypeRegistry.for(n0).registerError(RequestEntityTooLargeException
|
|
731
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
|
|
732
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
733
|
-
var RetryConfigInput = [3, n0, _RCI, 0, [_MRa], [1]];
|
|
734
|
-
var RetryConfigOutput = [3, n0, _RCO, 0, [_MRa], [1]];
|
|
735
|
-
var RuntimeVersion = [3, n0, _RV, 0, [_VN, _Des, _RD, _DD], [0, 0, 4, 4]];
|
|
736
|
-
var S3EncryptionConfig = [3, n0, _SEC, 0, [_EM, _KKA], [0, 0]];
|
|
737
|
-
var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
|
|
738
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
739
|
-
var StartCanaryDryRunRequest = [
|
|
721
|
+
var ListGroupResourcesRequest$ = [3, n0, _LGRR, 0, [_NT, _MR, _GI], [0, 1, [0, 1]]];
|
|
722
|
+
var ListGroupResourcesResponse$ = [3, n0, _LGRRi, 0, [_Re, _NT], [64 | 0, 0]];
|
|
723
|
+
var ListGroupsRequest$ = [3, n0, _LGR, 0, [_NT, _MR], [0, 1]];
|
|
724
|
+
var ListGroupsResponse$ = [3, n0, _LGRi, 0, [_Gr, _NT], [() => GroupSummaryList, 0]];
|
|
725
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
726
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
|
|
727
|
+
var NotFoundException$ = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
|
|
728
|
+
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
729
|
+
var RequestEntityTooLargeException$ = [-3, n0, _RETLE, { [_e]: _c, [_hE]: 413 }, [_M], [0]];
|
|
730
|
+
schema.TypeRegistry.for(n0).registerError(RequestEntityTooLargeException$, RequestEntityTooLargeException);
|
|
731
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
|
|
732
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
733
|
+
var RetryConfigInput$ = [3, n0, _RCI, 0, [_MRa], [1]];
|
|
734
|
+
var RetryConfigOutput$ = [3, n0, _RCO, 0, [_MRa], [1]];
|
|
735
|
+
var RuntimeVersion$ = [3, n0, _RV, 0, [_VN, _Des, _RD, _DD], [0, 0, 4, 4]];
|
|
736
|
+
var S3EncryptionConfig$ = [3, n0, _SEC, 0, [_EM, _KKA], [0, 0]];
|
|
737
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
|
|
738
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
739
|
+
var StartCanaryDryRunRequest$ = [
|
|
740
740
|
3,
|
|
741
741
|
n0,
|
|
742
742
|
_SCDRR,
|
|
@@ -744,31 +744,31 @@ var StartCanaryDryRunRequest = [
|
|
|
744
744
|
[_N, _Co, _RV, _RC, _VC, _ERA, _SRPID, _FRPID, _VR, _ASL, _AC, _PRC, _BCr, _VRi],
|
|
745
745
|
[
|
|
746
746
|
[0, 1],
|
|
747
|
-
() => CanaryCodeInput
|
|
747
|
+
() => CanaryCodeInput$,
|
|
748
748
|
0,
|
|
749
|
-
() => CanaryRunConfigInput
|
|
750
|
-
() => VpcConfigInput
|
|
749
|
+
() => CanaryRunConfigInput$,
|
|
750
|
+
() => VpcConfigInput$,
|
|
751
751
|
0,
|
|
752
752
|
1,
|
|
753
753
|
1,
|
|
754
|
-
() => VisualReferenceInput
|
|
754
|
+
() => VisualReferenceInput$,
|
|
755
755
|
0,
|
|
756
|
-
() => ArtifactConfigInput
|
|
756
|
+
() => ArtifactConfigInput$,
|
|
757
757
|
0,
|
|
758
758
|
() => BrowserConfigs,
|
|
759
759
|
() => VisualReferences,
|
|
760
760
|
],
|
|
761
761
|
];
|
|
762
|
-
var StartCanaryDryRunResponse = [3, n0, _SCDRRt, 0, [_DRC], [() => DryRunConfigOutput]];
|
|
763
|
-
var StartCanaryRequest = [3, n0, _SCR, 0, [_N], [[0, 1]]];
|
|
764
|
-
var StartCanaryResponse = [3, n0, _SCRt, 0, [], []];
|
|
765
|
-
var StopCanaryRequest = [3, n0, _SCRto, 0, [_N], [[0, 1]]];
|
|
766
|
-
var StopCanaryResponse = [3, n0, _SCRtop, 0, [], []];
|
|
767
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
|
|
768
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
769
|
-
var TooManyRequestsException = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
770
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException
|
|
771
|
-
var UntagResourceRequest = [
|
|
762
|
+
var StartCanaryDryRunResponse$ = [3, n0, _SCDRRt, 0, [_DRC], [() => DryRunConfigOutput$]];
|
|
763
|
+
var StartCanaryRequest$ = [3, n0, _SCR, 0, [_N], [[0, 1]]];
|
|
764
|
+
var StartCanaryResponse$ = [3, n0, _SCRt, 0, [], []];
|
|
765
|
+
var StopCanaryRequest$ = [3, n0, _SCRto, 0, [_N], [[0, 1]]];
|
|
766
|
+
var StopCanaryResponse$ = [3, n0, _SCRtop, 0, [], []];
|
|
767
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
|
|
768
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
769
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
770
|
+
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
771
|
+
var UntagResourceRequest$ = [
|
|
772
772
|
3,
|
|
773
773
|
n0,
|
|
774
774
|
_URR,
|
|
@@ -779,8 +779,8 @@ var UntagResourceRequest = [
|
|
|
779
779
|
[64 | 0, { [_hQ]: _tK }],
|
|
780
780
|
],
|
|
781
781
|
];
|
|
782
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
783
|
-
var UpdateCanaryRequest = [
|
|
782
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
783
|
+
var UpdateCanaryRequest$ = [
|
|
784
784
|
3,
|
|
785
785
|
n0,
|
|
786
786
|
_UCR,
|
|
@@ -788,27 +788,27 @@ var UpdateCanaryRequest = [
|
|
|
788
788
|
[_N, _Co, _ERA, _RV, _S, _RC, _SRPID, _FRPID, _VC, _VR, _ASL, _AC, _PRC, _DRI, _VRi, _BCr],
|
|
789
789
|
[
|
|
790
790
|
[0, 1],
|
|
791
|
-
() => CanaryCodeInput
|
|
791
|
+
() => CanaryCodeInput$,
|
|
792
792
|
0,
|
|
793
793
|
0,
|
|
794
|
-
() => CanaryScheduleInput
|
|
795
|
-
() => CanaryRunConfigInput
|
|
794
|
+
() => CanaryScheduleInput$,
|
|
795
|
+
() => CanaryRunConfigInput$,
|
|
796
796
|
1,
|
|
797
797
|
1,
|
|
798
|
-
() => VpcConfigInput
|
|
799
|
-
() => VisualReferenceInput
|
|
798
|
+
() => VpcConfigInput$,
|
|
799
|
+
() => VisualReferenceInput$,
|
|
800
800
|
0,
|
|
801
|
-
() => ArtifactConfigInput
|
|
801
|
+
() => ArtifactConfigInput$,
|
|
802
802
|
0,
|
|
803
803
|
0,
|
|
804
804
|
() => VisualReferences,
|
|
805
805
|
() => BrowserConfigs,
|
|
806
806
|
],
|
|
807
807
|
];
|
|
808
|
-
var UpdateCanaryResponse = [3, n0, _UCRp, 0, [], []];
|
|
809
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
810
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
811
|
-
var VisualReferenceInput = [
|
|
808
|
+
var UpdateCanaryResponse$ = [3, n0, _UCRp, 0, [], []];
|
|
809
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
810
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
811
|
+
var VisualReferenceInput$ = [
|
|
812
812
|
3,
|
|
813
813
|
n0,
|
|
814
814
|
_VRI,
|
|
@@ -816,7 +816,7 @@ var VisualReferenceInput = [
|
|
|
816
816
|
[_BSa, _BCRI, _BT],
|
|
817
817
|
[() => BaseScreenshots, 0, 0],
|
|
818
818
|
];
|
|
819
|
-
var VisualReferenceOutput = [
|
|
819
|
+
var VisualReferenceOutput$ = [
|
|
820
820
|
3,
|
|
821
821
|
n0,
|
|
822
822
|
_VRO,
|
|
@@ -824,196 +824,196 @@ var VisualReferenceOutput = [
|
|
|
824
824
|
[_BSa, _BCRI, _BT],
|
|
825
825
|
[() => BaseScreenshots, 0, 0],
|
|
826
826
|
];
|
|
827
|
-
var VpcConfigInput = [3, n0, _VCI, 0, [_SI, _SGI, _IAFDS], [64 | 0, 64 | 0, 2]];
|
|
828
|
-
var VpcConfigOutput = [3, n0, _VCO, 0, [_VI, _SI, _SGI, _IAFDS], [0, 64 | 0, 64 | 0, 2]];
|
|
829
|
-
var SyntheticsServiceException = [-3, _sm, "SyntheticsServiceException", 0, [], []];
|
|
830
|
-
schema.TypeRegistry.for(_sm).registerError(SyntheticsServiceException
|
|
831
|
-
var BaseScreenshots = [1, n0, _BSa, 0, () => BaseScreenshot];
|
|
832
|
-
var BrowserConfigs = [1, n0, _BCr, 0, () => BrowserConfig];
|
|
833
|
-
var Canaries = [1, n0, _Ca, 0, () => Canary];
|
|
834
|
-
var CanariesLastRun = [1, n0, _CLRa, 0, () => CanaryLastRun];
|
|
835
|
-
var CanaryRuns = [1, n0, _CRa, 0, () => CanaryRun];
|
|
836
|
-
var Dependencies = [1, n0, _D, 0, () => Dependency];
|
|
837
|
-
var EngineConfigs = [1, n0, _EC, 0, () => EngineConfig];
|
|
838
|
-
var GroupSummaryList = [1, n0, _GSL, 0, () => GroupSummary];
|
|
839
|
-
var RuntimeVersionList = [1, n0, _RVL, 0, () => RuntimeVersion];
|
|
840
|
-
var VisualReferences = [1, n0, _VRi, 0, () => VisualReferenceInput];
|
|
841
|
-
var VisualReferencesOutput = [1, n0, _VROi, 0, () => VisualReferenceOutput];
|
|
842
|
-
var AssociateResource = [
|
|
827
|
+
var VpcConfigInput$ = [3, n0, _VCI, 0, [_SI, _SGI, _IAFDS], [64 | 0, 64 | 0, 2]];
|
|
828
|
+
var VpcConfigOutput$ = [3, n0, _VCO, 0, [_VI, _SI, _SGI, _IAFDS], [0, 64 | 0, 64 | 0, 2]];
|
|
829
|
+
var SyntheticsServiceException$ = [-3, _sm, "SyntheticsServiceException", 0, [], []];
|
|
830
|
+
schema.TypeRegistry.for(_sm).registerError(SyntheticsServiceException$, SyntheticsServiceException);
|
|
831
|
+
var BaseScreenshots = [1, n0, _BSa, 0, () => BaseScreenshot$];
|
|
832
|
+
var BrowserConfigs = [1, n0, _BCr, 0, () => BrowserConfig$];
|
|
833
|
+
var Canaries = [1, n0, _Ca, 0, () => Canary$];
|
|
834
|
+
var CanariesLastRun = [1, n0, _CLRa, 0, () => CanaryLastRun$];
|
|
835
|
+
var CanaryRuns = [1, n0, _CRa, 0, () => CanaryRun$];
|
|
836
|
+
var Dependencies = [1, n0, _D, 0, () => Dependency$];
|
|
837
|
+
var EngineConfigs = [1, n0, _EC, 0, () => EngineConfig$];
|
|
838
|
+
var GroupSummaryList = [1, n0, _GSL, 0, () => GroupSummary$];
|
|
839
|
+
var RuntimeVersionList = [1, n0, _RVL, 0, () => RuntimeVersion$];
|
|
840
|
+
var VisualReferences = [1, n0, _VRi, 0, () => VisualReferenceInput$];
|
|
841
|
+
var VisualReferencesOutput = [1, n0, _VROi, 0, () => VisualReferenceOutput$];
|
|
842
|
+
var AssociateResource$ = [
|
|
843
843
|
9,
|
|
844
844
|
n0,
|
|
845
845
|
_AR,
|
|
846
846
|
{ [_h]: ["PATCH", "/group/{GroupIdentifier}/associate", 200] },
|
|
847
|
-
() => AssociateResourceRequest
|
|
848
|
-
() => AssociateResourceResponse
|
|
847
|
+
() => AssociateResourceRequest$,
|
|
848
|
+
() => AssociateResourceResponse$,
|
|
849
849
|
];
|
|
850
|
-
var CreateCanary = [
|
|
850
|
+
var CreateCanary$ = [
|
|
851
851
|
9,
|
|
852
852
|
n0,
|
|
853
853
|
_CC,
|
|
854
854
|
{ [_h]: ["POST", "/canary", 200] },
|
|
855
|
-
() => CreateCanaryRequest
|
|
856
|
-
() => CreateCanaryResponse
|
|
855
|
+
() => CreateCanaryRequest$,
|
|
856
|
+
() => CreateCanaryResponse$,
|
|
857
857
|
];
|
|
858
|
-
var CreateGroup = [
|
|
858
|
+
var CreateGroup$ = [
|
|
859
859
|
9,
|
|
860
860
|
n0,
|
|
861
861
|
_CG,
|
|
862
862
|
{ [_h]: ["POST", "/group", 200] },
|
|
863
|
-
() => CreateGroupRequest
|
|
864
|
-
() => CreateGroupResponse
|
|
863
|
+
() => CreateGroupRequest$,
|
|
864
|
+
() => CreateGroupResponse$,
|
|
865
865
|
];
|
|
866
|
-
var DeleteCanary = [
|
|
866
|
+
var DeleteCanary$ = [
|
|
867
867
|
9,
|
|
868
868
|
n0,
|
|
869
869
|
_DC,
|
|
870
870
|
{ [_h]: ["DELETE", "/canary/{Name}", 200] },
|
|
871
|
-
() => DeleteCanaryRequest
|
|
872
|
-
() => DeleteCanaryResponse
|
|
871
|
+
() => DeleteCanaryRequest$,
|
|
872
|
+
() => DeleteCanaryResponse$,
|
|
873
873
|
];
|
|
874
|
-
var DeleteGroup = [
|
|
874
|
+
var DeleteGroup$ = [
|
|
875
875
|
9,
|
|
876
876
|
n0,
|
|
877
877
|
_DG,
|
|
878
878
|
{ [_h]: ["DELETE", "/group/{GroupIdentifier}", 200] },
|
|
879
|
-
() => DeleteGroupRequest
|
|
880
|
-
() => DeleteGroupResponse
|
|
879
|
+
() => DeleteGroupRequest$,
|
|
880
|
+
() => DeleteGroupResponse$,
|
|
881
881
|
];
|
|
882
|
-
var DescribeCanaries = [
|
|
882
|
+
var DescribeCanaries$ = [
|
|
883
883
|
9,
|
|
884
884
|
n0,
|
|
885
885
|
_DCe,
|
|
886
886
|
{ [_h]: ["POST", "/canaries", 200] },
|
|
887
|
-
() => DescribeCanariesRequest
|
|
888
|
-
() => DescribeCanariesResponse
|
|
887
|
+
() => DescribeCanariesRequest$,
|
|
888
|
+
() => DescribeCanariesResponse$,
|
|
889
889
|
];
|
|
890
|
-
var DescribeCanariesLastRun = [
|
|
890
|
+
var DescribeCanariesLastRun$ = [
|
|
891
891
|
9,
|
|
892
892
|
n0,
|
|
893
893
|
_DCLR,
|
|
894
894
|
{ [_h]: ["POST", "/canaries/last-run", 200] },
|
|
895
|
-
() => DescribeCanariesLastRunRequest
|
|
896
|
-
() => DescribeCanariesLastRunResponse
|
|
895
|
+
() => DescribeCanariesLastRunRequest$,
|
|
896
|
+
() => DescribeCanariesLastRunResponse$,
|
|
897
897
|
];
|
|
898
|
-
var DescribeRuntimeVersions = [
|
|
898
|
+
var DescribeRuntimeVersions$ = [
|
|
899
899
|
9,
|
|
900
900
|
n0,
|
|
901
901
|
_DRV,
|
|
902
902
|
{ [_h]: ["POST", "/runtime-versions", 200] },
|
|
903
|
-
() => DescribeRuntimeVersionsRequest
|
|
904
|
-
() => DescribeRuntimeVersionsResponse
|
|
903
|
+
() => DescribeRuntimeVersionsRequest$,
|
|
904
|
+
() => DescribeRuntimeVersionsResponse$,
|
|
905
905
|
];
|
|
906
|
-
var DisassociateResource = [
|
|
906
|
+
var DisassociateResource$ = [
|
|
907
907
|
9,
|
|
908
908
|
n0,
|
|
909
909
|
_DR,
|
|
910
910
|
{ [_h]: ["PATCH", "/group/{GroupIdentifier}/disassociate", 200] },
|
|
911
|
-
() => DisassociateResourceRequest
|
|
912
|
-
() => DisassociateResourceResponse
|
|
911
|
+
() => DisassociateResourceRequest$,
|
|
912
|
+
() => DisassociateResourceResponse$,
|
|
913
913
|
];
|
|
914
|
-
var GetCanary = [
|
|
914
|
+
var GetCanary$ = [
|
|
915
915
|
9,
|
|
916
916
|
n0,
|
|
917
917
|
_GC,
|
|
918
918
|
{ [_h]: ["GET", "/canary/{Name}", 200] },
|
|
919
|
-
() => GetCanaryRequest
|
|
920
|
-
() => GetCanaryResponse
|
|
919
|
+
() => GetCanaryRequest$,
|
|
920
|
+
() => GetCanaryResponse$,
|
|
921
921
|
];
|
|
922
|
-
var GetCanaryRuns = [
|
|
922
|
+
var GetCanaryRuns$ = [
|
|
923
923
|
9,
|
|
924
924
|
n0,
|
|
925
925
|
_GCRet,
|
|
926
926
|
{ [_h]: ["POST", "/canary/{Name}/runs", 200] },
|
|
927
|
-
() => GetCanaryRunsRequest
|
|
928
|
-
() => GetCanaryRunsResponse
|
|
927
|
+
() => GetCanaryRunsRequest$,
|
|
928
|
+
() => GetCanaryRunsResponse$,
|
|
929
929
|
];
|
|
930
|
-
var GetGroup = [
|
|
930
|
+
var GetGroup$ = [
|
|
931
931
|
9,
|
|
932
932
|
n0,
|
|
933
933
|
_GG,
|
|
934
934
|
{ [_h]: ["GET", "/group/{GroupIdentifier}", 200] },
|
|
935
|
-
() => GetGroupRequest
|
|
936
|
-
() => GetGroupResponse
|
|
935
|
+
() => GetGroupRequest$,
|
|
936
|
+
() => GetGroupResponse$,
|
|
937
937
|
];
|
|
938
|
-
var ListAssociatedGroups = [
|
|
938
|
+
var ListAssociatedGroups$ = [
|
|
939
939
|
9,
|
|
940
940
|
n0,
|
|
941
941
|
_LAG,
|
|
942
942
|
{ [_h]: ["POST", "/resource/{ResourceArn}/groups", 200] },
|
|
943
|
-
() => ListAssociatedGroupsRequest
|
|
944
|
-
() => ListAssociatedGroupsResponse
|
|
943
|
+
() => ListAssociatedGroupsRequest$,
|
|
944
|
+
() => ListAssociatedGroupsResponse$,
|
|
945
945
|
];
|
|
946
|
-
var ListGroupResources = [
|
|
946
|
+
var ListGroupResources$ = [
|
|
947
947
|
9,
|
|
948
948
|
n0,
|
|
949
949
|
_LGRis,
|
|
950
950
|
{ [_h]: ["POST", "/group/{GroupIdentifier}/resources", 200] },
|
|
951
|
-
() => ListGroupResourcesRequest
|
|
952
|
-
() => ListGroupResourcesResponse
|
|
951
|
+
() => ListGroupResourcesRequest$,
|
|
952
|
+
() => ListGroupResourcesResponse$,
|
|
953
953
|
];
|
|
954
|
-
var ListGroups = [
|
|
954
|
+
var ListGroups$ = [
|
|
955
955
|
9,
|
|
956
956
|
n0,
|
|
957
957
|
_LG,
|
|
958
958
|
{ [_h]: ["POST", "/groups", 200] },
|
|
959
|
-
() => ListGroupsRequest
|
|
960
|
-
() => ListGroupsResponse
|
|
959
|
+
() => ListGroupsRequest$,
|
|
960
|
+
() => ListGroupsResponse$,
|
|
961
961
|
];
|
|
962
|
-
var ListTagsForResource = [
|
|
962
|
+
var ListTagsForResource$ = [
|
|
963
963
|
9,
|
|
964
964
|
n0,
|
|
965
965
|
_LTFR,
|
|
966
966
|
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] },
|
|
967
|
-
() => ListTagsForResourceRequest
|
|
968
|
-
() => ListTagsForResourceResponse
|
|
967
|
+
() => ListTagsForResourceRequest$,
|
|
968
|
+
() => ListTagsForResourceResponse$,
|
|
969
969
|
];
|
|
970
|
-
var StartCanary = [
|
|
970
|
+
var StartCanary$ = [
|
|
971
971
|
9,
|
|
972
972
|
n0,
|
|
973
973
|
_SC,
|
|
974
974
|
{ [_h]: ["POST", "/canary/{Name}/start", 200] },
|
|
975
|
-
() => StartCanaryRequest
|
|
976
|
-
() => StartCanaryResponse
|
|
975
|
+
() => StartCanaryRequest$,
|
|
976
|
+
() => StartCanaryResponse$,
|
|
977
977
|
];
|
|
978
|
-
var StartCanaryDryRun = [
|
|
978
|
+
var StartCanaryDryRun$ = [
|
|
979
979
|
9,
|
|
980
980
|
n0,
|
|
981
981
|
_SCDR,
|
|
982
982
|
{ [_h]: ["POST", "/canary/{Name}/dry-run/start", 200] },
|
|
983
|
-
() => StartCanaryDryRunRequest
|
|
984
|
-
() => StartCanaryDryRunResponse
|
|
983
|
+
() => StartCanaryDryRunRequest$,
|
|
984
|
+
() => StartCanaryDryRunResponse$,
|
|
985
985
|
];
|
|
986
|
-
var StopCanary = [
|
|
986
|
+
var StopCanary$ = [
|
|
987
987
|
9,
|
|
988
988
|
n0,
|
|
989
989
|
_SCt,
|
|
990
990
|
{ [_h]: ["POST", "/canary/{Name}/stop", 200] },
|
|
991
|
-
() => StopCanaryRequest
|
|
992
|
-
() => StopCanaryResponse
|
|
991
|
+
() => StopCanaryRequest$,
|
|
992
|
+
() => StopCanaryResponse$,
|
|
993
993
|
];
|
|
994
|
-
var TagResource = [
|
|
994
|
+
var TagResource$ = [
|
|
995
995
|
9,
|
|
996
996
|
n0,
|
|
997
997
|
_TRa,
|
|
998
998
|
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] },
|
|
999
|
-
() => TagResourceRequest
|
|
1000
|
-
() => TagResourceResponse
|
|
999
|
+
() => TagResourceRequest$,
|
|
1000
|
+
() => TagResourceResponse$,
|
|
1001
1001
|
];
|
|
1002
|
-
var UntagResource = [
|
|
1002
|
+
var UntagResource$ = [
|
|
1003
1003
|
9,
|
|
1004
1004
|
n0,
|
|
1005
1005
|
_UR,
|
|
1006
1006
|
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] },
|
|
1007
|
-
() => UntagResourceRequest
|
|
1008
|
-
() => UntagResourceResponse
|
|
1007
|
+
() => UntagResourceRequest$,
|
|
1008
|
+
() => UntagResourceResponse$,
|
|
1009
1009
|
];
|
|
1010
|
-
var UpdateCanary = [
|
|
1010
|
+
var UpdateCanary$ = [
|
|
1011
1011
|
9,
|
|
1012
1012
|
n0,
|
|
1013
1013
|
_UC,
|
|
1014
1014
|
{ [_h]: ["PATCH", "/canary/{Name}", 200] },
|
|
1015
|
-
() => UpdateCanaryRequest
|
|
1016
|
-
() => UpdateCanaryResponse
|
|
1015
|
+
() => UpdateCanaryRequest$,
|
|
1016
|
+
() => UpdateCanaryResponse$,
|
|
1017
1017
|
];
|
|
1018
1018
|
|
|
1019
1019
|
class AssociateResourceCommand extends smithyClient.Command
|
|
@@ -1024,7 +1024,7 @@ class AssociateResourceCommand extends smithyClient.Command
|
|
|
1024
1024
|
})
|
|
1025
1025
|
.s("Synthetics", "AssociateResource", {})
|
|
1026
1026
|
.n("SyntheticsClient", "AssociateResourceCommand")
|
|
1027
|
-
.sc(AssociateResource)
|
|
1027
|
+
.sc(AssociateResource$)
|
|
1028
1028
|
.build() {
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
@@ -1036,7 +1036,7 @@ class CreateCanaryCommand extends smithyClient.Command
|
|
|
1036
1036
|
})
|
|
1037
1037
|
.s("Synthetics", "CreateCanary", {})
|
|
1038
1038
|
.n("SyntheticsClient", "CreateCanaryCommand")
|
|
1039
|
-
.sc(CreateCanary)
|
|
1039
|
+
.sc(CreateCanary$)
|
|
1040
1040
|
.build() {
|
|
1041
1041
|
}
|
|
1042
1042
|
|
|
@@ -1048,7 +1048,7 @@ class CreateGroupCommand extends smithyClient.Command
|
|
|
1048
1048
|
})
|
|
1049
1049
|
.s("Synthetics", "CreateGroup", {})
|
|
1050
1050
|
.n("SyntheticsClient", "CreateGroupCommand")
|
|
1051
|
-
.sc(CreateGroup)
|
|
1051
|
+
.sc(CreateGroup$)
|
|
1052
1052
|
.build() {
|
|
1053
1053
|
}
|
|
1054
1054
|
|
|
@@ -1060,7 +1060,7 @@ class DeleteCanaryCommand extends smithyClient.Command
|
|
|
1060
1060
|
})
|
|
1061
1061
|
.s("Synthetics", "DeleteCanary", {})
|
|
1062
1062
|
.n("SyntheticsClient", "DeleteCanaryCommand")
|
|
1063
|
-
.sc(DeleteCanary)
|
|
1063
|
+
.sc(DeleteCanary$)
|
|
1064
1064
|
.build() {
|
|
1065
1065
|
}
|
|
1066
1066
|
|
|
@@ -1072,7 +1072,7 @@ class DeleteGroupCommand extends smithyClient.Command
|
|
|
1072
1072
|
})
|
|
1073
1073
|
.s("Synthetics", "DeleteGroup", {})
|
|
1074
1074
|
.n("SyntheticsClient", "DeleteGroupCommand")
|
|
1075
|
-
.sc(DeleteGroup)
|
|
1075
|
+
.sc(DeleteGroup$)
|
|
1076
1076
|
.build() {
|
|
1077
1077
|
}
|
|
1078
1078
|
|
|
@@ -1084,7 +1084,7 @@ class DescribeCanariesCommand extends smithyClient.Command
|
|
|
1084
1084
|
})
|
|
1085
1085
|
.s("Synthetics", "DescribeCanaries", {})
|
|
1086
1086
|
.n("SyntheticsClient", "DescribeCanariesCommand")
|
|
1087
|
-
.sc(DescribeCanaries)
|
|
1087
|
+
.sc(DescribeCanaries$)
|
|
1088
1088
|
.build() {
|
|
1089
1089
|
}
|
|
1090
1090
|
|
|
@@ -1096,7 +1096,7 @@ class DescribeCanariesLastRunCommand extends smithyClient.Command
|
|
|
1096
1096
|
})
|
|
1097
1097
|
.s("Synthetics", "DescribeCanariesLastRun", {})
|
|
1098
1098
|
.n("SyntheticsClient", "DescribeCanariesLastRunCommand")
|
|
1099
|
-
.sc(DescribeCanariesLastRun)
|
|
1099
|
+
.sc(DescribeCanariesLastRun$)
|
|
1100
1100
|
.build() {
|
|
1101
1101
|
}
|
|
1102
1102
|
|
|
@@ -1108,7 +1108,7 @@ class DescribeRuntimeVersionsCommand extends smithyClient.Command
|
|
|
1108
1108
|
})
|
|
1109
1109
|
.s("Synthetics", "DescribeRuntimeVersions", {})
|
|
1110
1110
|
.n("SyntheticsClient", "DescribeRuntimeVersionsCommand")
|
|
1111
|
-
.sc(DescribeRuntimeVersions)
|
|
1111
|
+
.sc(DescribeRuntimeVersions$)
|
|
1112
1112
|
.build() {
|
|
1113
1113
|
}
|
|
1114
1114
|
|
|
@@ -1120,7 +1120,7 @@ class DisassociateResourceCommand extends smithyClient.Command
|
|
|
1120
1120
|
})
|
|
1121
1121
|
.s("Synthetics", "DisassociateResource", {})
|
|
1122
1122
|
.n("SyntheticsClient", "DisassociateResourceCommand")
|
|
1123
|
-
.sc(DisassociateResource)
|
|
1123
|
+
.sc(DisassociateResource$)
|
|
1124
1124
|
.build() {
|
|
1125
1125
|
}
|
|
1126
1126
|
|
|
@@ -1132,7 +1132,7 @@ class GetCanaryCommand extends smithyClient.Command
|
|
|
1132
1132
|
})
|
|
1133
1133
|
.s("Synthetics", "GetCanary", {})
|
|
1134
1134
|
.n("SyntheticsClient", "GetCanaryCommand")
|
|
1135
|
-
.sc(GetCanary)
|
|
1135
|
+
.sc(GetCanary$)
|
|
1136
1136
|
.build() {
|
|
1137
1137
|
}
|
|
1138
1138
|
|
|
@@ -1144,7 +1144,7 @@ class GetCanaryRunsCommand extends smithyClient.Command
|
|
|
1144
1144
|
})
|
|
1145
1145
|
.s("Synthetics", "GetCanaryRuns", {})
|
|
1146
1146
|
.n("SyntheticsClient", "GetCanaryRunsCommand")
|
|
1147
|
-
.sc(GetCanaryRuns)
|
|
1147
|
+
.sc(GetCanaryRuns$)
|
|
1148
1148
|
.build() {
|
|
1149
1149
|
}
|
|
1150
1150
|
|
|
@@ -1156,7 +1156,7 @@ class GetGroupCommand extends smithyClient.Command
|
|
|
1156
1156
|
})
|
|
1157
1157
|
.s("Synthetics", "GetGroup", {})
|
|
1158
1158
|
.n("SyntheticsClient", "GetGroupCommand")
|
|
1159
|
-
.sc(GetGroup)
|
|
1159
|
+
.sc(GetGroup$)
|
|
1160
1160
|
.build() {
|
|
1161
1161
|
}
|
|
1162
1162
|
|
|
@@ -1168,7 +1168,7 @@ class ListAssociatedGroupsCommand extends smithyClient.Command
|
|
|
1168
1168
|
})
|
|
1169
1169
|
.s("Synthetics", "ListAssociatedGroups", {})
|
|
1170
1170
|
.n("SyntheticsClient", "ListAssociatedGroupsCommand")
|
|
1171
|
-
.sc(ListAssociatedGroups)
|
|
1171
|
+
.sc(ListAssociatedGroups$)
|
|
1172
1172
|
.build() {
|
|
1173
1173
|
}
|
|
1174
1174
|
|
|
@@ -1180,7 +1180,7 @@ class ListGroupResourcesCommand extends smithyClient.Command
|
|
|
1180
1180
|
})
|
|
1181
1181
|
.s("Synthetics", "ListGroupResources", {})
|
|
1182
1182
|
.n("SyntheticsClient", "ListGroupResourcesCommand")
|
|
1183
|
-
.sc(ListGroupResources)
|
|
1183
|
+
.sc(ListGroupResources$)
|
|
1184
1184
|
.build() {
|
|
1185
1185
|
}
|
|
1186
1186
|
|
|
@@ -1192,7 +1192,7 @@ class ListGroupsCommand extends smithyClient.Command
|
|
|
1192
1192
|
})
|
|
1193
1193
|
.s("Synthetics", "ListGroups", {})
|
|
1194
1194
|
.n("SyntheticsClient", "ListGroupsCommand")
|
|
1195
|
-
.sc(ListGroups)
|
|
1195
|
+
.sc(ListGroups$)
|
|
1196
1196
|
.build() {
|
|
1197
1197
|
}
|
|
1198
1198
|
|
|
@@ -1204,7 +1204,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1204
1204
|
})
|
|
1205
1205
|
.s("Synthetics", "ListTagsForResource", {})
|
|
1206
1206
|
.n("SyntheticsClient", "ListTagsForResourceCommand")
|
|
1207
|
-
.sc(ListTagsForResource)
|
|
1207
|
+
.sc(ListTagsForResource$)
|
|
1208
1208
|
.build() {
|
|
1209
1209
|
}
|
|
1210
1210
|
|
|
@@ -1216,7 +1216,7 @@ class StartCanaryCommand extends smithyClient.Command
|
|
|
1216
1216
|
})
|
|
1217
1217
|
.s("Synthetics", "StartCanary", {})
|
|
1218
1218
|
.n("SyntheticsClient", "StartCanaryCommand")
|
|
1219
|
-
.sc(StartCanary)
|
|
1219
|
+
.sc(StartCanary$)
|
|
1220
1220
|
.build() {
|
|
1221
1221
|
}
|
|
1222
1222
|
|
|
@@ -1228,7 +1228,7 @@ class StartCanaryDryRunCommand extends smithyClient.Command
|
|
|
1228
1228
|
})
|
|
1229
1229
|
.s("Synthetics", "StartCanaryDryRun", {})
|
|
1230
1230
|
.n("SyntheticsClient", "StartCanaryDryRunCommand")
|
|
1231
|
-
.sc(StartCanaryDryRun)
|
|
1231
|
+
.sc(StartCanaryDryRun$)
|
|
1232
1232
|
.build() {
|
|
1233
1233
|
}
|
|
1234
1234
|
|
|
@@ -1240,7 +1240,7 @@ class StopCanaryCommand extends smithyClient.Command
|
|
|
1240
1240
|
})
|
|
1241
1241
|
.s("Synthetics", "StopCanary", {})
|
|
1242
1242
|
.n("SyntheticsClient", "StopCanaryCommand")
|
|
1243
|
-
.sc(StopCanary)
|
|
1243
|
+
.sc(StopCanary$)
|
|
1244
1244
|
.build() {
|
|
1245
1245
|
}
|
|
1246
1246
|
|
|
@@ -1252,7 +1252,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1252
1252
|
})
|
|
1253
1253
|
.s("Synthetics", "TagResource", {})
|
|
1254
1254
|
.n("SyntheticsClient", "TagResourceCommand")
|
|
1255
|
-
.sc(TagResource)
|
|
1255
|
+
.sc(TagResource$)
|
|
1256
1256
|
.build() {
|
|
1257
1257
|
}
|
|
1258
1258
|
|
|
@@ -1264,7 +1264,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1264
1264
|
})
|
|
1265
1265
|
.s("Synthetics", "UntagResource", {})
|
|
1266
1266
|
.n("SyntheticsClient", "UntagResourceCommand")
|
|
1267
|
-
.sc(UntagResource)
|
|
1267
|
+
.sc(UntagResource$)
|
|
1268
1268
|
.build() {
|
|
1269
1269
|
}
|
|
1270
1270
|
|
|
@@ -1276,7 +1276,7 @@ class UpdateCanaryCommand extends smithyClient.Command
|
|
|
1276
1276
|
})
|
|
1277
1277
|
.s("Synthetics", "UpdateCanary", {})
|
|
1278
1278
|
.n("SyntheticsClient", "UpdateCanaryCommand")
|
|
1279
|
-
.sc(UpdateCanary)
|
|
1279
|
+
.sc(UpdateCanary$)
|
|
1280
1280
|
.build() {
|
|
1281
1281
|
}
|
|
1282
1282
|
|
|
@@ -1392,53 +1392,162 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1392
1392
|
enumerable: true,
|
|
1393
1393
|
get: function () { return smithyClient.Client; }
|
|
1394
1394
|
});
|
|
1395
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1395
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1396
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1397
|
+
exports.ArtifactConfigInput$ = ArtifactConfigInput$;
|
|
1398
|
+
exports.ArtifactConfigOutput$ = ArtifactConfigOutput$;
|
|
1399
|
+
exports.AssociateResource$ = AssociateResource$;
|
|
1396
1400
|
exports.AssociateResourceCommand = AssociateResourceCommand;
|
|
1397
|
-
exports.
|
|
1401
|
+
exports.AssociateResourceRequest$ = AssociateResourceRequest$;
|
|
1402
|
+
exports.AssociateResourceResponse$ = AssociateResourceResponse$;
|
|
1403
|
+
exports.BadRequestException = BadRequestException;
|
|
1404
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
1405
|
+
exports.BaseScreenshot$ = BaseScreenshot$;
|
|
1406
|
+
exports.BrowserConfig$ = BrowserConfig$;
|
|
1398
1407
|
exports.BrowserType = BrowserType;
|
|
1408
|
+
exports.Canary$ = Canary$;
|
|
1409
|
+
exports.CanaryCodeInput$ = CanaryCodeInput$;
|
|
1410
|
+
exports.CanaryCodeOutput$ = CanaryCodeOutput$;
|
|
1411
|
+
exports.CanaryDryRunConfigOutput$ = CanaryDryRunConfigOutput$;
|
|
1412
|
+
exports.CanaryLastRun$ = CanaryLastRun$;
|
|
1413
|
+
exports.CanaryRun$ = CanaryRun$;
|
|
1414
|
+
exports.CanaryRunConfigInput$ = CanaryRunConfigInput$;
|
|
1415
|
+
exports.CanaryRunConfigOutput$ = CanaryRunConfigOutput$;
|
|
1399
1416
|
exports.CanaryRunState = CanaryRunState;
|
|
1400
1417
|
exports.CanaryRunStateReasonCode = CanaryRunStateReasonCode;
|
|
1418
|
+
exports.CanaryRunStatus$ = CanaryRunStatus$;
|
|
1401
1419
|
exports.CanaryRunTestResult = CanaryRunTestResult;
|
|
1420
|
+
exports.CanaryRunTimeline$ = CanaryRunTimeline$;
|
|
1421
|
+
exports.CanaryScheduleInput$ = CanaryScheduleInput$;
|
|
1422
|
+
exports.CanaryScheduleOutput$ = CanaryScheduleOutput$;
|
|
1402
1423
|
exports.CanaryState = CanaryState;
|
|
1403
1424
|
exports.CanaryStateReasonCode = CanaryStateReasonCode;
|
|
1404
|
-
exports.
|
|
1425
|
+
exports.CanaryStatus$ = CanaryStatus$;
|
|
1426
|
+
exports.CanaryTimeline$ = CanaryTimeline$;
|
|
1427
|
+
exports.ConflictException = ConflictException;
|
|
1428
|
+
exports.ConflictException$ = ConflictException$;
|
|
1429
|
+
exports.CreateCanary$ = CreateCanary$;
|
|
1405
1430
|
exports.CreateCanaryCommand = CreateCanaryCommand;
|
|
1431
|
+
exports.CreateCanaryRequest$ = CreateCanaryRequest$;
|
|
1432
|
+
exports.CreateCanaryResponse$ = CreateCanaryResponse$;
|
|
1433
|
+
exports.CreateGroup$ = CreateGroup$;
|
|
1406
1434
|
exports.CreateGroupCommand = CreateGroupCommand;
|
|
1435
|
+
exports.CreateGroupRequest$ = CreateGroupRequest$;
|
|
1436
|
+
exports.CreateGroupResponse$ = CreateGroupResponse$;
|
|
1437
|
+
exports.DeleteCanary$ = DeleteCanary$;
|
|
1407
1438
|
exports.DeleteCanaryCommand = DeleteCanaryCommand;
|
|
1439
|
+
exports.DeleteCanaryRequest$ = DeleteCanaryRequest$;
|
|
1440
|
+
exports.DeleteCanaryResponse$ = DeleteCanaryResponse$;
|
|
1441
|
+
exports.DeleteGroup$ = DeleteGroup$;
|
|
1408
1442
|
exports.DeleteGroupCommand = DeleteGroupCommand;
|
|
1443
|
+
exports.DeleteGroupRequest$ = DeleteGroupRequest$;
|
|
1444
|
+
exports.DeleteGroupResponse$ = DeleteGroupResponse$;
|
|
1445
|
+
exports.Dependency$ = Dependency$;
|
|
1409
1446
|
exports.DependencyType = DependencyType;
|
|
1447
|
+
exports.DescribeCanaries$ = DescribeCanaries$;
|
|
1410
1448
|
exports.DescribeCanariesCommand = DescribeCanariesCommand;
|
|
1449
|
+
exports.DescribeCanariesLastRun$ = DescribeCanariesLastRun$;
|
|
1411
1450
|
exports.DescribeCanariesLastRunCommand = DescribeCanariesLastRunCommand;
|
|
1451
|
+
exports.DescribeCanariesLastRunRequest$ = DescribeCanariesLastRunRequest$;
|
|
1452
|
+
exports.DescribeCanariesLastRunResponse$ = DescribeCanariesLastRunResponse$;
|
|
1453
|
+
exports.DescribeCanariesRequest$ = DescribeCanariesRequest$;
|
|
1454
|
+
exports.DescribeCanariesResponse$ = DescribeCanariesResponse$;
|
|
1455
|
+
exports.DescribeRuntimeVersions$ = DescribeRuntimeVersions$;
|
|
1412
1456
|
exports.DescribeRuntimeVersionsCommand = DescribeRuntimeVersionsCommand;
|
|
1457
|
+
exports.DescribeRuntimeVersionsRequest$ = DescribeRuntimeVersionsRequest$;
|
|
1458
|
+
exports.DescribeRuntimeVersionsResponse$ = DescribeRuntimeVersionsResponse$;
|
|
1459
|
+
exports.DisassociateResource$ = DisassociateResource$;
|
|
1413
1460
|
exports.DisassociateResourceCommand = DisassociateResourceCommand;
|
|
1461
|
+
exports.DisassociateResourceRequest$ = DisassociateResourceRequest$;
|
|
1462
|
+
exports.DisassociateResourceResponse$ = DisassociateResourceResponse$;
|
|
1463
|
+
exports.DryRunConfigOutput$ = DryRunConfigOutput$;
|
|
1414
1464
|
exports.EncryptionMode = EncryptionMode;
|
|
1465
|
+
exports.EngineConfig$ = EngineConfig$;
|
|
1466
|
+
exports.GetCanary$ = GetCanary$;
|
|
1415
1467
|
exports.GetCanaryCommand = GetCanaryCommand;
|
|
1468
|
+
exports.GetCanaryRequest$ = GetCanaryRequest$;
|
|
1469
|
+
exports.GetCanaryResponse$ = GetCanaryResponse$;
|
|
1470
|
+
exports.GetCanaryRuns$ = GetCanaryRuns$;
|
|
1416
1471
|
exports.GetCanaryRunsCommand = GetCanaryRunsCommand;
|
|
1472
|
+
exports.GetCanaryRunsRequest$ = GetCanaryRunsRequest$;
|
|
1473
|
+
exports.GetCanaryRunsResponse$ = GetCanaryRunsResponse$;
|
|
1474
|
+
exports.GetGroup$ = GetGroup$;
|
|
1417
1475
|
exports.GetGroupCommand = GetGroupCommand;
|
|
1418
|
-
exports.
|
|
1419
|
-
exports.
|
|
1476
|
+
exports.GetGroupRequest$ = GetGroupRequest$;
|
|
1477
|
+
exports.GetGroupResponse$ = GetGroupResponse$;
|
|
1478
|
+
exports.Group$ = Group$;
|
|
1479
|
+
exports.GroupSummary$ = GroupSummary$;
|
|
1480
|
+
exports.InternalFailureException = InternalFailureException;
|
|
1481
|
+
exports.InternalFailureException$ = InternalFailureException$;
|
|
1482
|
+
exports.InternalServerException = InternalServerException;
|
|
1483
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1484
|
+
exports.ListAssociatedGroups$ = ListAssociatedGroups$;
|
|
1420
1485
|
exports.ListAssociatedGroupsCommand = ListAssociatedGroupsCommand;
|
|
1486
|
+
exports.ListAssociatedGroupsRequest$ = ListAssociatedGroupsRequest$;
|
|
1487
|
+
exports.ListAssociatedGroupsResponse$ = ListAssociatedGroupsResponse$;
|
|
1488
|
+
exports.ListGroupResources$ = ListGroupResources$;
|
|
1421
1489
|
exports.ListGroupResourcesCommand = ListGroupResourcesCommand;
|
|
1490
|
+
exports.ListGroupResourcesRequest$ = ListGroupResourcesRequest$;
|
|
1491
|
+
exports.ListGroupResourcesResponse$ = ListGroupResourcesResponse$;
|
|
1492
|
+
exports.ListGroups$ = ListGroups$;
|
|
1422
1493
|
exports.ListGroupsCommand = ListGroupsCommand;
|
|
1494
|
+
exports.ListGroupsRequest$ = ListGroupsRequest$;
|
|
1495
|
+
exports.ListGroupsResponse$ = ListGroupsResponse$;
|
|
1496
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1423
1497
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1424
|
-
exports.
|
|
1498
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1499
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1500
|
+
exports.NotFoundException = NotFoundException;
|
|
1501
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
1425
1502
|
exports.ProvisionedResourceCleanupSetting = ProvisionedResourceCleanupSetting;
|
|
1426
|
-
exports.RequestEntityTooLargeException = RequestEntityTooLargeException
|
|
1427
|
-
exports.
|
|
1503
|
+
exports.RequestEntityTooLargeException = RequestEntityTooLargeException;
|
|
1504
|
+
exports.RequestEntityTooLargeException$ = RequestEntityTooLargeException$;
|
|
1505
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1506
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1428
1507
|
exports.ResourceToTag = ResourceToTag;
|
|
1508
|
+
exports.RetryConfigInput$ = RetryConfigInput$;
|
|
1509
|
+
exports.RetryConfigOutput$ = RetryConfigOutput$;
|
|
1429
1510
|
exports.RunType = RunType;
|
|
1430
|
-
exports.
|
|
1511
|
+
exports.RuntimeVersion$ = RuntimeVersion$;
|
|
1512
|
+
exports.S3EncryptionConfig$ = S3EncryptionConfig$;
|
|
1513
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1514
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1515
|
+
exports.StartCanary$ = StartCanary$;
|
|
1431
1516
|
exports.StartCanaryCommand = StartCanaryCommand;
|
|
1517
|
+
exports.StartCanaryDryRun$ = StartCanaryDryRun$;
|
|
1432
1518
|
exports.StartCanaryDryRunCommand = StartCanaryDryRunCommand;
|
|
1519
|
+
exports.StartCanaryDryRunRequest$ = StartCanaryDryRunRequest$;
|
|
1520
|
+
exports.StartCanaryDryRunResponse$ = StartCanaryDryRunResponse$;
|
|
1521
|
+
exports.StartCanaryRequest$ = StartCanaryRequest$;
|
|
1522
|
+
exports.StartCanaryResponse$ = StartCanaryResponse$;
|
|
1523
|
+
exports.StopCanary$ = StopCanary$;
|
|
1433
1524
|
exports.StopCanaryCommand = StopCanaryCommand;
|
|
1525
|
+
exports.StopCanaryRequest$ = StopCanaryRequest$;
|
|
1526
|
+
exports.StopCanaryResponse$ = StopCanaryResponse$;
|
|
1434
1527
|
exports.Synthetics = Synthetics;
|
|
1435
1528
|
exports.SyntheticsClient = SyntheticsClient;
|
|
1436
|
-
exports.SyntheticsServiceException = SyntheticsServiceException
|
|
1529
|
+
exports.SyntheticsServiceException = SyntheticsServiceException;
|
|
1530
|
+
exports.SyntheticsServiceException$ = SyntheticsServiceException$;
|
|
1531
|
+
exports.TagResource$ = TagResource$;
|
|
1437
1532
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1438
|
-
exports.
|
|
1533
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1534
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1535
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1536
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1537
|
+
exports.UntagResource$ = UntagResource$;
|
|
1439
1538
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1539
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1540
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1541
|
+
exports.UpdateCanary$ = UpdateCanary$;
|
|
1440
1542
|
exports.UpdateCanaryCommand = UpdateCanaryCommand;
|
|
1441
|
-
exports.
|
|
1543
|
+
exports.UpdateCanaryRequest$ = UpdateCanaryRequest$;
|
|
1544
|
+
exports.UpdateCanaryResponse$ = UpdateCanaryResponse$;
|
|
1545
|
+
exports.ValidationException = ValidationException;
|
|
1546
|
+
exports.ValidationException$ = ValidationException$;
|
|
1547
|
+
exports.VisualReferenceInput$ = VisualReferenceInput$;
|
|
1548
|
+
exports.VisualReferenceOutput$ = VisualReferenceOutput$;
|
|
1549
|
+
exports.VpcConfigInput$ = VpcConfigInput$;
|
|
1550
|
+
exports.VpcConfigOutput$ = VpcConfigOutput$;
|
|
1442
1551
|
exports.paginateDescribeCanaries = paginateDescribeCanaries;
|
|
1443
1552
|
exports.paginateDescribeCanariesLastRun = paginateDescribeCanariesLastRun;
|
|
1444
1553
|
exports.paginateDescribeRuntimeVersions = paginateDescribeRuntimeVersions;
|