@aws-sdk/client-ssm-contacts 3.948.0 → 3.953.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 +493 -327
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AcceptPageCommand.js +2 -2
- package/dist-es/commands/ActivateContactChannelCommand.js +2 -2
- package/dist-es/commands/CreateContactChannelCommand.js +2 -2
- package/dist-es/commands/CreateContactCommand.js +2 -2
- package/dist-es/commands/CreateRotationCommand.js +2 -2
- package/dist-es/commands/CreateRotationOverrideCommand.js +2 -2
- package/dist-es/commands/DeactivateContactChannelCommand.js +2 -2
- package/dist-es/commands/DeleteContactChannelCommand.js +2 -2
- package/dist-es/commands/DeleteContactCommand.js +2 -2
- package/dist-es/commands/DeleteRotationCommand.js +2 -2
- package/dist-es/commands/DeleteRotationOverrideCommand.js +2 -2
- package/dist-es/commands/DescribeEngagementCommand.js +2 -2
- package/dist-es/commands/DescribePageCommand.js +2 -2
- package/dist-es/commands/GetContactChannelCommand.js +2 -2
- package/dist-es/commands/GetContactCommand.js +2 -2
- package/dist-es/commands/GetContactPolicyCommand.js +2 -2
- package/dist-es/commands/GetRotationCommand.js +2 -2
- package/dist-es/commands/GetRotationOverrideCommand.js +2 -2
- package/dist-es/commands/ListContactChannelsCommand.js +2 -2
- package/dist-es/commands/ListContactsCommand.js +2 -2
- package/dist-es/commands/ListEngagementsCommand.js +2 -2
- package/dist-es/commands/ListPageReceiptsCommand.js +2 -2
- package/dist-es/commands/ListPageResolutionsCommand.js +2 -2
- package/dist-es/commands/ListPagesByContactCommand.js +2 -2
- package/dist-es/commands/ListPagesByEngagementCommand.js +2 -2
- package/dist-es/commands/ListPreviewRotationShiftsCommand.js +2 -2
- package/dist-es/commands/ListRotationOverridesCommand.js +2 -2
- package/dist-es/commands/ListRotationShiftsCommand.js +2 -2
- package/dist-es/commands/ListRotationsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutContactPolicyCommand.js +2 -2
- package/dist-es/commands/SendActivationCodeCommand.js +2 -2
- package/dist-es/commands/StartEngagementCommand.js +2 -2
- package/dist-es/commands/StopEngagementCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateContactChannelCommand.js +2 -2
- package/dist-es/commands/UpdateContactCommand.js +2 -2
- package/dist-es/commands/UpdateRotationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +284 -270
- package/dist-types/SSMContactsClient.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 +153 -179
- package/dist-types/ts3.4/SSMContactsClient.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 +152 -180
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class SSMContactsClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class SSMContactsServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, SSMContactsServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends SSMContactsServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends SSMContactsSer
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class InternalServerException extends SSMContactsServiceException {
|
|
135
135
|
name = "InternalServerException";
|
|
136
136
|
$fault = "server";
|
|
137
137
|
Message;
|
|
@@ -146,8 +146,8 @@ let InternalServerException$1 = class InternalServerException extends SSMContact
|
|
|
146
146
|
this.Message = opts.Message;
|
|
147
147
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
148
148
|
}
|
|
149
|
-
}
|
|
150
|
-
|
|
149
|
+
}
|
|
150
|
+
class ResourceNotFoundException extends SSMContactsServiceException {
|
|
151
151
|
name = "ResourceNotFoundException";
|
|
152
152
|
$fault = "client";
|
|
153
153
|
Message;
|
|
@@ -164,8 +164,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends SSMCon
|
|
|
164
164
|
this.ResourceId = opts.ResourceId;
|
|
165
165
|
this.ResourceType = opts.ResourceType;
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
167
|
+
}
|
|
168
|
+
class ThrottlingException extends SSMContactsServiceException {
|
|
169
169
|
name = "ThrottlingException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
Message;
|
|
@@ -184,8 +184,8 @@ let ThrottlingException$1 = class ThrottlingException extends SSMContactsService
|
|
|
184
184
|
this.ServiceCode = opts.ServiceCode;
|
|
185
185
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
186
186
|
}
|
|
187
|
-
}
|
|
188
|
-
|
|
187
|
+
}
|
|
188
|
+
class ValidationException extends SSMContactsServiceException {
|
|
189
189
|
name = "ValidationException";
|
|
190
190
|
$fault = "client";
|
|
191
191
|
Message;
|
|
@@ -202,8 +202,8 @@ let ValidationException$1 = class ValidationException extends SSMContactsService
|
|
|
202
202
|
this.Reason = opts.Reason;
|
|
203
203
|
this.Fields = opts.Fields;
|
|
204
204
|
}
|
|
205
|
-
}
|
|
206
|
-
|
|
205
|
+
}
|
|
206
|
+
class ConflictException extends SSMContactsServiceException {
|
|
207
207
|
name = "ConflictException";
|
|
208
208
|
$fault = "client";
|
|
209
209
|
Message;
|
|
@@ -222,8 +222,8 @@ let ConflictException$1 = class ConflictException extends SSMContactsServiceExce
|
|
|
222
222
|
this.ResourceType = opts.ResourceType;
|
|
223
223
|
this.DependentEntities = opts.DependentEntities;
|
|
224
224
|
}
|
|
225
|
-
}
|
|
226
|
-
|
|
225
|
+
}
|
|
226
|
+
class DataEncryptionException extends SSMContactsServiceException {
|
|
227
227
|
name = "DataEncryptionException";
|
|
228
228
|
$fault = "client";
|
|
229
229
|
Message;
|
|
@@ -236,8 +236,8 @@ let DataEncryptionException$1 = class DataEncryptionException extends SSMContact
|
|
|
236
236
|
Object.setPrototypeOf(this, DataEncryptionException.prototype);
|
|
237
237
|
this.Message = opts.Message;
|
|
238
238
|
}
|
|
239
|
-
}
|
|
240
|
-
|
|
239
|
+
}
|
|
240
|
+
class ServiceQuotaExceededException extends SSMContactsServiceException {
|
|
241
241
|
name = "ServiceQuotaExceededException";
|
|
242
242
|
$fault = "client";
|
|
243
243
|
Message;
|
|
@@ -258,7 +258,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
258
258
|
this.QuotaCode = opts.QuotaCode;
|
|
259
259
|
this.ServiceCode = opts.ServiceCode;
|
|
260
260
|
}
|
|
261
|
-
}
|
|
261
|
+
}
|
|
262
262
|
|
|
263
263
|
const _A = "Alias";
|
|
264
264
|
const _AC = "AcceptCode";
|
|
@@ -533,7 +533,7 @@ const _hH = "httpHeader";
|
|
|
533
533
|
const _s = "server";
|
|
534
534
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ssmcontacts";
|
|
535
535
|
const n0 = "com.amazonaws.ssmcontacts";
|
|
536
|
-
var AcceptPageRequest = [
|
|
536
|
+
var AcceptPageRequest$ = [
|
|
537
537
|
3,
|
|
538
538
|
n0,
|
|
539
539
|
_APR,
|
|
@@ -541,13 +541,13 @@ var AcceptPageRequest = [
|
|
|
541
541
|
[_PI, _CCI, _AT, _N, _AC, _ACV],
|
|
542
542
|
[0, 0, 0, 0, 0, 0],
|
|
543
543
|
];
|
|
544
|
-
var AcceptPageResult = [3, n0, _APRc, 0, [], []];
|
|
545
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
546
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
547
|
-
var ActivateContactChannelRequest = [3, n0, _ACCR, 0, [_CCI, _ACc], [0, 0]];
|
|
548
|
-
var ActivateContactChannelResult = [3, n0, _ACCRc, 0, [], []];
|
|
549
|
-
var ChannelTargetInfo = [3, n0, _CTI, 0, [_CCI, _RIIM], [0, 1]];
|
|
550
|
-
var ConflictException = [
|
|
544
|
+
var AcceptPageResult$ = [3, n0, _APRc, 0, [], []];
|
|
545
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
546
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
547
|
+
var ActivateContactChannelRequest$ = [3, n0, _ACCR, 0, [_CCI, _ACc], [0, 0]];
|
|
548
|
+
var ActivateContactChannelResult$ = [3, n0, _ACCRc, 0, [], []];
|
|
549
|
+
var ChannelTargetInfo$ = [3, n0, _CTI, 0, [_CCI, _RIIM], [0, 1]];
|
|
550
|
+
var ConflictException$ = [
|
|
551
551
|
-3,
|
|
552
552
|
n0,
|
|
553
553
|
_CE,
|
|
@@ -555,38 +555,38 @@ var ConflictException = [
|
|
|
555
555
|
[_M, _RI, _RT, _DE],
|
|
556
556
|
[0, 0, 0, () => DependentEntityList],
|
|
557
557
|
];
|
|
558
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
559
|
-
var Contact = [3, n0, _C, 0, [_CA, _A, _DN, _T], [0, 0, 0, 0]];
|
|
560
|
-
var ContactChannel = [
|
|
558
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
559
|
+
var Contact$ = [3, n0, _C, 0, [_CA, _A, _DN, _T], [0, 0, 0, 0]];
|
|
560
|
+
var ContactChannel$ = [
|
|
561
561
|
3,
|
|
562
562
|
n0,
|
|
563
563
|
_CC,
|
|
564
564
|
0,
|
|
565
565
|
[_CCA, _CA, _Na, _T, _DA, _AS],
|
|
566
|
-
[0, 0, 0, 0, () => ContactChannelAddress
|
|
566
|
+
[0, 0, 0, 0, () => ContactChannelAddress$, 0],
|
|
567
567
|
];
|
|
568
|
-
var ContactChannelAddress = [3, n0, _CCAo, 0, [_SA], [0]];
|
|
569
|
-
var ContactTargetInfo = [3, n0, _CTIo, 0, [_CI, _IE], [0, 2]];
|
|
570
|
-
var CoverageTime = [3, n0, _CT, 0, [_S, _E], [() => HandOffTime
|
|
571
|
-
var CreateContactChannelRequest = [
|
|
568
|
+
var ContactChannelAddress$ = [3, n0, _CCAo, 0, [_SA], [0]];
|
|
569
|
+
var ContactTargetInfo$ = [3, n0, _CTIo, 0, [_CI, _IE], [0, 2]];
|
|
570
|
+
var CoverageTime$ = [3, n0, _CT, 0, [_S, _E], [() => HandOffTime$, () => HandOffTime$]];
|
|
571
|
+
var CreateContactChannelRequest$ = [
|
|
572
572
|
3,
|
|
573
573
|
n0,
|
|
574
574
|
_CCCR,
|
|
575
575
|
0,
|
|
576
576
|
[_CI, _Na, _T, _DA, _DAe, _IT],
|
|
577
|
-
[0, 0, 0, () => ContactChannelAddress
|
|
577
|
+
[0, 0, 0, () => ContactChannelAddress$, 2, [0, 4]],
|
|
578
578
|
];
|
|
579
|
-
var CreateContactChannelResult = [3, n0, _CCCRr, 0, [_CCA], [0]];
|
|
580
|
-
var CreateContactRequest = [
|
|
579
|
+
var CreateContactChannelResult$ = [3, n0, _CCCRr, 0, [_CCA], [0]];
|
|
580
|
+
var CreateContactRequest$ = [
|
|
581
581
|
3,
|
|
582
582
|
n0,
|
|
583
583
|
_CCR,
|
|
584
584
|
0,
|
|
585
585
|
[_A, _DN, _T, _P, _Ta, _IT],
|
|
586
|
-
[0, 0, 0, () => Plan
|
|
586
|
+
[0, 0, 0, () => Plan$, () => TagsList, [0, 4]],
|
|
587
587
|
];
|
|
588
|
-
var CreateContactResult = [3, n0, _CCRr, 0, [_CA], [0]];
|
|
589
|
-
var CreateRotationOverrideRequest = [
|
|
588
|
+
var CreateContactResult$ = [3, n0, _CCRr, 0, [_CA], [0]];
|
|
589
|
+
var CreateRotationOverrideRequest$ = [
|
|
590
590
|
3,
|
|
591
591
|
n0,
|
|
592
592
|
_CROR,
|
|
@@ -594,31 +594,31 @@ var CreateRotationOverrideRequest = [
|
|
|
594
594
|
[_RIo, _NCI, _ST, _ET, _IT],
|
|
595
595
|
[0, 64 | 0, 4, 4, 0],
|
|
596
596
|
];
|
|
597
|
-
var CreateRotationOverrideResult = [3, n0, _CRORr, 0, [_ROI], [0]];
|
|
598
|
-
var CreateRotationRequest = [
|
|
597
|
+
var CreateRotationOverrideResult$ = [3, n0, _CRORr, 0, [_ROI], [0]];
|
|
598
|
+
var CreateRotationRequest$ = [
|
|
599
599
|
3,
|
|
600
600
|
n0,
|
|
601
601
|
_CRR,
|
|
602
602
|
0,
|
|
603
603
|
[_Na, _CIo, _ST, _TZI, _R, _Ta, _IT],
|
|
604
|
-
[0, 64 | 0, 4, 0, () => RecurrenceSettings
|
|
605
|
-
];
|
|
606
|
-
var CreateRotationResult = [3, n0, _CRRr, 0, [_RA], [0]];
|
|
607
|
-
var DataEncryptionException = [-3, n0, _DEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
608
|
-
schema.TypeRegistry.for(n0).registerError(DataEncryptionException
|
|
609
|
-
var DeactivateContactChannelRequest = [3, n0, _DCCR, 0, [_CCI], [0]];
|
|
610
|
-
var DeactivateContactChannelResult = [3, n0, _DCCRe, 0, [], []];
|
|
611
|
-
var DeleteContactChannelRequest = [3, n0, _DCCRel, 0, [_CCI], [0]];
|
|
612
|
-
var DeleteContactChannelResult = [3, n0, _DCCRele, 0, [], []];
|
|
613
|
-
var DeleteContactRequest = [3, n0, _DCR, 0, [_CI], [0]];
|
|
614
|
-
var DeleteContactResult = [3, n0, _DCRe, 0, [], []];
|
|
615
|
-
var DeleteRotationOverrideRequest = [3, n0, _DROR, 0, [_RIo, _ROI], [0, 0]];
|
|
616
|
-
var DeleteRotationOverrideResult = [3, n0, _DRORe, 0, [], []];
|
|
617
|
-
var DeleteRotationRequest = [3, n0, _DRR, 0, [_RIo], [0]];
|
|
618
|
-
var DeleteRotationResult = [3, n0, _DRRe, 0, [], []];
|
|
619
|
-
var DependentEntity = [3, n0, _DEe, 0, [_RTe, _DRI], [0, 64 | 0]];
|
|
620
|
-
var DescribeEngagementRequest = [3, n0, _DER, 0, [_EI], [0]];
|
|
621
|
-
var DescribeEngagementResult = [
|
|
604
|
+
[0, 64 | 0, 4, 0, () => RecurrenceSettings$, () => TagsList, 0],
|
|
605
|
+
];
|
|
606
|
+
var CreateRotationResult$ = [3, n0, _CRRr, 0, [_RA], [0]];
|
|
607
|
+
var DataEncryptionException$ = [-3, n0, _DEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
608
|
+
schema.TypeRegistry.for(n0).registerError(DataEncryptionException$, DataEncryptionException);
|
|
609
|
+
var DeactivateContactChannelRequest$ = [3, n0, _DCCR, 0, [_CCI], [0]];
|
|
610
|
+
var DeactivateContactChannelResult$ = [3, n0, _DCCRe, 0, [], []];
|
|
611
|
+
var DeleteContactChannelRequest$ = [3, n0, _DCCRel, 0, [_CCI], [0]];
|
|
612
|
+
var DeleteContactChannelResult$ = [3, n0, _DCCRele, 0, [], []];
|
|
613
|
+
var DeleteContactRequest$ = [3, n0, _DCR, 0, [_CI], [0]];
|
|
614
|
+
var DeleteContactResult$ = [3, n0, _DCRe, 0, [], []];
|
|
615
|
+
var DeleteRotationOverrideRequest$ = [3, n0, _DROR, 0, [_RIo, _ROI], [0, 0]];
|
|
616
|
+
var DeleteRotationOverrideResult$ = [3, n0, _DRORe, 0, [], []];
|
|
617
|
+
var DeleteRotationRequest$ = [3, n0, _DRR, 0, [_RIo], [0]];
|
|
618
|
+
var DeleteRotationResult$ = [3, n0, _DRRe, 0, [], []];
|
|
619
|
+
var DependentEntity$ = [3, n0, _DEe, 0, [_RTe, _DRI], [0, 64 | 0]];
|
|
620
|
+
var DescribeEngagementRequest$ = [3, n0, _DER, 0, [_EI], [0]];
|
|
621
|
+
var DescribeEngagementResult$ = [
|
|
622
622
|
3,
|
|
623
623
|
n0,
|
|
624
624
|
_DERe,
|
|
@@ -626,8 +626,8 @@ var DescribeEngagementResult = [
|
|
|
626
626
|
[_CA, _EA, _Se, _Su, _Co, _PS, _PC, _II, _ST, _STt],
|
|
627
627
|
[0, 0, 0, 0, 0, 0, 0, 0, 4, 4],
|
|
628
628
|
];
|
|
629
|
-
var DescribePageRequest = [3, n0, _DPR, 0, [_PI], [0]];
|
|
630
|
-
var DescribePageResult = [
|
|
629
|
+
var DescribePageRequest$ = [3, n0, _DPR, 0, [_PI], [0]];
|
|
630
|
+
var DescribePageResult$ = [
|
|
631
631
|
3,
|
|
632
632
|
n0,
|
|
633
633
|
_DPRe,
|
|
@@ -635,29 +635,29 @@ var DescribePageResult = [
|
|
|
635
635
|
[_PA, _EA, _CA, _Se, _Su, _Co, _PS, _PC, _II, _STe, _RTea, _DT],
|
|
636
636
|
[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4],
|
|
637
637
|
];
|
|
638
|
-
var Engagement = [3, n0, _En, 0, [_EA, _CA, _Se, _II, _ST, _STt], [0, 0, 0, 0, 4, 4]];
|
|
639
|
-
var GetContactChannelRequest = [3, n0, _GCCR, 0, [_CCI], [0]];
|
|
640
|
-
var GetContactChannelResult = [
|
|
638
|
+
var Engagement$ = [3, n0, _En, 0, [_EA, _CA, _Se, _II, _ST, _STt], [0, 0, 0, 0, 4, 4]];
|
|
639
|
+
var GetContactChannelRequest$ = [3, n0, _GCCR, 0, [_CCI], [0]];
|
|
640
|
+
var GetContactChannelResult$ = [
|
|
641
641
|
3,
|
|
642
642
|
n0,
|
|
643
643
|
_GCCRe,
|
|
644
644
|
0,
|
|
645
645
|
[_CA, _CCA, _Na, _T, _DA, _AS],
|
|
646
|
-
[0, 0, 0, 0, () => ContactChannelAddress
|
|
646
|
+
[0, 0, 0, 0, () => ContactChannelAddress$, 0],
|
|
647
647
|
];
|
|
648
|
-
var GetContactPolicyRequest = [3, n0, _GCPR, 0, [_CA], [0]];
|
|
649
|
-
var GetContactPolicyResult = [3, n0, _GCPRe, 0, [_CA, _Po], [0, 0]];
|
|
650
|
-
var GetContactRequest = [3, n0, _GCR, 0, [_CI], [0]];
|
|
651
|
-
var GetContactResult = [
|
|
648
|
+
var GetContactPolicyRequest$ = [3, n0, _GCPR, 0, [_CA], [0]];
|
|
649
|
+
var GetContactPolicyResult$ = [3, n0, _GCPRe, 0, [_CA, _Po], [0, 0]];
|
|
650
|
+
var GetContactRequest$ = [3, n0, _GCR, 0, [_CI], [0]];
|
|
651
|
+
var GetContactResult$ = [
|
|
652
652
|
3,
|
|
653
653
|
n0,
|
|
654
654
|
_GCRe,
|
|
655
655
|
0,
|
|
656
656
|
[_CA, _A, _DN, _T, _P],
|
|
657
|
-
[0, 0, 0, 0, () => Plan],
|
|
657
|
+
[0, 0, 0, 0, () => Plan$],
|
|
658
658
|
];
|
|
659
|
-
var GetRotationOverrideRequest = [3, n0, _GROR, 0, [_RIo, _ROI], [0, 0]];
|
|
660
|
-
var GetRotationOverrideResult = [
|
|
659
|
+
var GetRotationOverrideRequest$ = [3, n0, _GROR, 0, [_RIo, _ROI], [0, 0]];
|
|
660
|
+
var GetRotationOverrideResult$ = [
|
|
661
661
|
3,
|
|
662
662
|
n0,
|
|
663
663
|
_GRORe,
|
|
@@ -665,17 +665,17 @@ var GetRotationOverrideResult = [
|
|
|
665
665
|
[_ROI, _RA, _NCI, _ST, _ET, _CTr],
|
|
666
666
|
[0, 0, 64 | 0, 4, 4, 4],
|
|
667
667
|
];
|
|
668
|
-
var GetRotationRequest = [3, n0, _GRR, 0, [_RIo], [0]];
|
|
669
|
-
var GetRotationResult = [
|
|
668
|
+
var GetRotationRequest$ = [3, n0, _GRR, 0, [_RIo], [0]];
|
|
669
|
+
var GetRotationResult$ = [
|
|
670
670
|
3,
|
|
671
671
|
n0,
|
|
672
672
|
_GRRe,
|
|
673
673
|
0,
|
|
674
674
|
[_RA, _Na, _CIo, _ST, _TZI, _R],
|
|
675
|
-
[0, 0, 64 | 0, 4, 0, () => RecurrenceSettings],
|
|
675
|
+
[0, 0, 64 | 0, 4, 0, () => RecurrenceSettings$],
|
|
676
676
|
];
|
|
677
|
-
var HandOffTime = [3, n0, _HOT, 0, [_HOD, _MOH], [1, 1]];
|
|
678
|
-
var InternalServerException = [
|
|
677
|
+
var HandOffTime$ = [3, n0, _HOT, 0, [_HOD, _MOH], [1, 1]];
|
|
678
|
+
var InternalServerException$ = [
|
|
679
679
|
-3,
|
|
680
680
|
n0,
|
|
681
681
|
_ISE,
|
|
@@ -683,9 +683,9 @@ var InternalServerException = [
|
|
|
683
683
|
[_M, _RAS],
|
|
684
684
|
[0, [1, { [_hH]: _RA_ }]],
|
|
685
685
|
];
|
|
686
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
687
|
-
var ListContactChannelsRequest = [3, n0, _LCCR, 0, [_CI, _NT, _MR], [0, 0, 1]];
|
|
688
|
-
var ListContactChannelsResult = [
|
|
686
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
687
|
+
var ListContactChannelsRequest$ = [3, n0, _LCCR, 0, [_CI, _NT, _MR], [0, 0, 1]];
|
|
688
|
+
var ListContactChannelsResult$ = [
|
|
689
689
|
3,
|
|
690
690
|
n0,
|
|
691
691
|
_LCCRi,
|
|
@@ -693,21 +693,21 @@ var ListContactChannelsResult = [
|
|
|
693
693
|
[_NT, _CCo],
|
|
694
694
|
[0, () => ContactChannelList],
|
|
695
695
|
];
|
|
696
|
-
var ListContactsRequest = [3, n0, _LCR, 0, [_NT, _MR, _AP, _T], [0, 1, 0, 0]];
|
|
697
|
-
var ListContactsResult = [3, n0, _LCRi, 0, [_NT, _Con], [0, () => ContactsList]];
|
|
698
|
-
var ListEngagementsRequest = [
|
|
696
|
+
var ListContactsRequest$ = [3, n0, _LCR, 0, [_NT, _MR, _AP, _T], [0, 1, 0, 0]];
|
|
697
|
+
var ListContactsResult$ = [3, n0, _LCRi, 0, [_NT, _Con], [0, () => ContactsList]];
|
|
698
|
+
var ListEngagementsRequest$ = [
|
|
699
699
|
3,
|
|
700
700
|
n0,
|
|
701
701
|
_LER,
|
|
702
702
|
0,
|
|
703
703
|
[_NT, _MR, _II, _TRV],
|
|
704
|
-
[0, 1, 0, () => TimeRange],
|
|
704
|
+
[0, 1, 0, () => TimeRange$],
|
|
705
705
|
];
|
|
706
|
-
var ListEngagementsResult = [3, n0, _LERi, 0, [_NT, _Eng], [0, () => EngagementsList]];
|
|
707
|
-
var ListPageReceiptsRequest = [3, n0, _LPRR, 0, [_PI, _NT, _MR], [0, 0, 1]];
|
|
708
|
-
var ListPageReceiptsResult = [3, n0, _LPRRi, 0, [_NT, _Re], [0, () => ReceiptsList]];
|
|
709
|
-
var ListPageResolutionsRequest = [3, n0, _LPRRis, 0, [_NT, _PI], [0, 0]];
|
|
710
|
-
var ListPageResolutionsResult = [
|
|
706
|
+
var ListEngagementsResult$ = [3, n0, _LERi, 0, [_NT, _Eng], [0, () => EngagementsList]];
|
|
707
|
+
var ListPageReceiptsRequest$ = [3, n0, _LPRR, 0, [_PI, _NT, _MR], [0, 0, 1]];
|
|
708
|
+
var ListPageReceiptsResult$ = [3, n0, _LPRRi, 0, [_NT, _Re], [0, () => ReceiptsList]];
|
|
709
|
+
var ListPageResolutionsRequest$ = [3, n0, _LPRRis, 0, [_NT, _PI], [0, 0]];
|
|
710
|
+
var ListPageResolutionsResult$ = [
|
|
711
711
|
3,
|
|
712
712
|
n0,
|
|
713
713
|
_LPRRist,
|
|
@@ -715,19 +715,19 @@ var ListPageResolutionsResult = [
|
|
|
715
715
|
[_NT, _PR],
|
|
716
716
|
[0, () => ResolutionList],
|
|
717
717
|
];
|
|
718
|
-
var ListPagesByContactRequest = [3, n0, _LPBCR, 0, [_CI, _NT, _MR], [0, 0, 1]];
|
|
719
|
-
var ListPagesByContactResult = [3, n0, _LPBCRi, 0, [_NT, _Pa], [0, () => PagesList]];
|
|
720
|
-
var ListPagesByEngagementRequest = [3, n0, _LPBER, 0, [_EI, _NT, _MR], [0, 0, 1]];
|
|
721
|
-
var ListPagesByEngagementResult = [3, n0, _LPBERi, 0, [_NT, _Pa], [0, () => PagesList]];
|
|
722
|
-
var ListPreviewRotationShiftsRequest = [
|
|
718
|
+
var ListPagesByContactRequest$ = [3, n0, _LPBCR, 0, [_CI, _NT, _MR], [0, 0, 1]];
|
|
719
|
+
var ListPagesByContactResult$ = [3, n0, _LPBCRi, 0, [_NT, _Pa], [0, () => PagesList]];
|
|
720
|
+
var ListPagesByEngagementRequest$ = [3, n0, _LPBER, 0, [_EI, _NT, _MR], [0, 0, 1]];
|
|
721
|
+
var ListPagesByEngagementResult$ = [3, n0, _LPBERi, 0, [_NT, _Pa], [0, () => PagesList]];
|
|
722
|
+
var ListPreviewRotationShiftsRequest$ = [
|
|
723
723
|
3,
|
|
724
724
|
n0,
|
|
725
725
|
_LPRSR,
|
|
726
726
|
0,
|
|
727
727
|
[_RST, _ST, _ET, _Me, _TZI, _R, _O, _NT, _MR],
|
|
728
|
-
[4, 4, 4, 64 | 0, 0, () => RecurrenceSettings
|
|
728
|
+
[4, 4, 4, 64 | 0, 0, () => RecurrenceSettings$, () => OverrideList, 0, 1],
|
|
729
729
|
];
|
|
730
|
-
var ListPreviewRotationShiftsResult = [
|
|
730
|
+
var ListPreviewRotationShiftsResult$ = [
|
|
731
731
|
3,
|
|
732
732
|
n0,
|
|
733
733
|
_LPRSRi,
|
|
@@ -735,7 +735,7 @@ var ListPreviewRotationShiftsResult = [
|
|
|
735
735
|
[_RS, _NT],
|
|
736
736
|
[() => RotationShifts, 0],
|
|
737
737
|
];
|
|
738
|
-
var ListRotationOverridesRequest = [
|
|
738
|
+
var ListRotationOverridesRequest$ = [
|
|
739
739
|
3,
|
|
740
740
|
n0,
|
|
741
741
|
_LROR,
|
|
@@ -743,7 +743,7 @@ var ListRotationOverridesRequest = [
|
|
|
743
743
|
[_RIo, _ST, _ET, _NT, _MR],
|
|
744
744
|
[0, 4, 4, 0, 1],
|
|
745
745
|
];
|
|
746
|
-
var ListRotationOverridesResult = [
|
|
746
|
+
var ListRotationOverridesResult$ = [
|
|
747
747
|
3,
|
|
748
748
|
n0,
|
|
749
749
|
_LRORi,
|
|
@@ -751,7 +751,7 @@ var ListRotationOverridesResult = [
|
|
|
751
751
|
[_RO, _NT],
|
|
752
752
|
[() => RotationOverrides, 0],
|
|
753
753
|
];
|
|
754
|
-
var ListRotationShiftsRequest = [
|
|
754
|
+
var ListRotationShiftsRequest$ = [
|
|
755
755
|
3,
|
|
756
756
|
n0,
|
|
757
757
|
_LRSR,
|
|
@@ -759,13 +759,13 @@ var ListRotationShiftsRequest = [
|
|
|
759
759
|
[_RIo, _ST, _ET, _NT, _MR],
|
|
760
760
|
[0, 4, 4, 0, 1],
|
|
761
761
|
];
|
|
762
|
-
var ListRotationShiftsResult = [3, n0, _LRSRi, 0, [_RS, _NT], [() => RotationShifts, 0]];
|
|
763
|
-
var ListRotationsRequest = [3, n0, _LRR, 0, [_RNP, _NT, _MR], [0, 0, 1]];
|
|
764
|
-
var ListRotationsResult = [3, n0, _LRRi, 0, [_NT, _Ro], [0, () => Rotations]];
|
|
765
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [0]];
|
|
766
|
-
var ListTagsForResourceResult = [3, n0, _LTFRRi, 0, [_Ta], [() => TagsList]];
|
|
767
|
-
var MonthlySetting = [3, n0, _MS, 0, [_DOM, _HOT], [1, () => HandOffTime]];
|
|
768
|
-
var Page = [
|
|
762
|
+
var ListRotationShiftsResult$ = [3, n0, _LRSRi, 0, [_RS, _NT], [() => RotationShifts, 0]];
|
|
763
|
+
var ListRotationsRequest$ = [3, n0, _LRR, 0, [_RNP, _NT, _MR], [0, 0, 1]];
|
|
764
|
+
var ListRotationsResult$ = [3, n0, _LRRi, 0, [_NT, _Ro], [0, () => Rotations]];
|
|
765
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RARN], [0]];
|
|
766
|
+
var ListTagsForResourceResult$ = [3, n0, _LTFRRi, 0, [_Ta], [() => TagsList]];
|
|
767
|
+
var MonthlySetting$ = [3, n0, _MS, 0, [_DOM, _HOT], [1, () => HandOffTime$]];
|
|
768
|
+
var Page$ = [
|
|
769
769
|
3,
|
|
770
770
|
n0,
|
|
771
771
|
_Pag,
|
|
@@ -773,12 +773,12 @@ var Page = [
|
|
|
773
773
|
[_PA, _EA, _CA, _Se, _II, _STe, _DT, _RTea],
|
|
774
774
|
[0, 0, 0, 0, 0, 4, 4, 4],
|
|
775
775
|
];
|
|
776
|
-
var Plan = [3, n0, _P, 0, [_St, _RIot], [() => StagesList, 64 | 0]];
|
|
777
|
-
var PreviewOverride = [3, n0, _PO, 0, [_NM, _ST, _ET], [64 | 0, 4, 4]];
|
|
778
|
-
var PutContactPolicyRequest = [3, n0, _PCPR, 0, [_CA, _Po], [0, 0]];
|
|
779
|
-
var PutContactPolicyResult = [3, n0, _PCPRu, 0, [], []];
|
|
780
|
-
var Receipt = [3, n0, _Rec, 0, [_CCA, _RTec, _RIe, _RTece], [0, 0, 0, 4]];
|
|
781
|
-
var RecurrenceSettings = [
|
|
776
|
+
var Plan$ = [3, n0, _P, 0, [_St, _RIot], [() => StagesList, 64 | 0]];
|
|
777
|
+
var PreviewOverride$ = [3, n0, _PO, 0, [_NM, _ST, _ET], [64 | 0, 4, 4]];
|
|
778
|
+
var PutContactPolicyRequest$ = [3, n0, _PCPR, 0, [_CA, _Po], [0, 0]];
|
|
779
|
+
var PutContactPolicyResult$ = [3, n0, _PCPRu, 0, [], []];
|
|
780
|
+
var Receipt$ = [3, n0, _Rec, 0, [_CCA, _RTec, _RIe, _RTece], [0, 0, 0, 4]];
|
|
781
|
+
var RecurrenceSettings$ = [
|
|
782
782
|
3,
|
|
783
783
|
n0,
|
|
784
784
|
_RSe,
|
|
@@ -786,8 +786,8 @@ var RecurrenceSettings = [
|
|
|
786
786
|
[_MSo, _WS, _DS, _NOOC, _SC, _RM],
|
|
787
787
|
[() => MonthlySettings, () => WeeklySettings, () => DailySettings, 1, () => ShiftCoveragesMap, 1],
|
|
788
788
|
];
|
|
789
|
-
var ResolutionContact = [3, n0, _RC, 0, [_CA, _T, _SI], [0, 0, 1]];
|
|
790
|
-
var ResourceNotFoundException = [
|
|
789
|
+
var ResolutionContact$ = [3, n0, _RC, 0, [_CA, _T, _SI], [0, 0, 1]];
|
|
790
|
+
var ResourceNotFoundException$ = [
|
|
791
791
|
-3,
|
|
792
792
|
n0,
|
|
793
793
|
_RNFE,
|
|
@@ -795,16 +795,16 @@ var ResourceNotFoundException = [
|
|
|
795
795
|
[_M, _RI, _RT],
|
|
796
796
|
[0, 0, 0],
|
|
797
797
|
];
|
|
798
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
799
|
-
var Rotation = [
|
|
798
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
799
|
+
var Rotation$ = [
|
|
800
800
|
3,
|
|
801
801
|
n0,
|
|
802
802
|
_Rot,
|
|
803
803
|
0,
|
|
804
804
|
[_RA, _Na, _CIo, _ST, _TZI, _R],
|
|
805
|
-
[0, 0, 64 | 0, 4, 0, () => RecurrenceSettings],
|
|
805
|
+
[0, 0, 64 | 0, 4, 0, () => RecurrenceSettings$],
|
|
806
806
|
];
|
|
807
|
-
var RotationOverride = [
|
|
807
|
+
var RotationOverride$ = [
|
|
808
808
|
3,
|
|
809
809
|
n0,
|
|
810
810
|
_ROo,
|
|
@@ -812,17 +812,17 @@ var RotationOverride = [
|
|
|
812
812
|
[_ROI, _NCI, _ST, _ET, _CTr],
|
|
813
813
|
[0, 64 | 0, 4, 4, 4],
|
|
814
814
|
];
|
|
815
|
-
var RotationShift = [
|
|
815
|
+
var RotationShift$ = [
|
|
816
816
|
3,
|
|
817
817
|
n0,
|
|
818
818
|
_RSo,
|
|
819
819
|
0,
|
|
820
820
|
[_CIo, _ST, _ET, _T, _SD],
|
|
821
|
-
[64 | 0, 4, 4, 0, () => ShiftDetails],
|
|
821
|
+
[64 | 0, 4, 4, 0, () => ShiftDetails$],
|
|
822
822
|
];
|
|
823
|
-
var SendActivationCodeRequest = [3, n0, _SACR, 0, [_CCI], [0]];
|
|
824
|
-
var SendActivationCodeResult = [3, n0, _SACRe, 0, [], []];
|
|
825
|
-
var ServiceQuotaExceededException = [
|
|
823
|
+
var SendActivationCodeRequest$ = [3, n0, _SACR, 0, [_CCI], [0]];
|
|
824
|
+
var SendActivationCodeResult$ = [3, n0, _SACRe, 0, [], []];
|
|
825
|
+
var ServiceQuotaExceededException$ = [
|
|
826
826
|
-3,
|
|
827
827
|
n0,
|
|
828
828
|
_SQEE,
|
|
@@ -830,10 +830,10 @@ var ServiceQuotaExceededException = [
|
|
|
830
830
|
[_M, _RI, _RT, _QC, _SCe],
|
|
831
831
|
[0, 0, 0, 0, 0],
|
|
832
832
|
];
|
|
833
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
834
|
-
var ShiftDetails = [3, n0, _SD, 0, [_OCI], [64 | 0]];
|
|
835
|
-
var Stage = [3, n0, _Sta, 0, [_DIM, _Tar], [1, () => TargetsList]];
|
|
836
|
-
var StartEngagementRequest = [
|
|
833
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
834
|
+
var ShiftDetails$ = [3, n0, _SD, 0, [_OCI], [64 | 0]];
|
|
835
|
+
var Stage$ = [3, n0, _Sta, 0, [_DIM, _Tar], [1, () => TargetsList]];
|
|
836
|
+
var StartEngagementRequest$ = [
|
|
837
837
|
3,
|
|
838
838
|
n0,
|
|
839
839
|
_SER,
|
|
@@ -841,21 +841,21 @@ var StartEngagementRequest = [
|
|
|
841
841
|
[_CI, _Se, _Su, _Co, _PS, _PC, _II, _IT],
|
|
842
842
|
[0, 0, 0, 0, 0, 0, 0, [0, 4]],
|
|
843
843
|
];
|
|
844
|
-
var StartEngagementResult = [3, n0, _SERt, 0, [_EA], [0]];
|
|
845
|
-
var StopEngagementRequest = [3, n0, _SERto, 0, [_EI, _Rea], [0, 0]];
|
|
846
|
-
var StopEngagementResult = [3, n0, _SERtop, 0, [], []];
|
|
847
|
-
var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
848
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _Ta], [0, () => TagsList]];
|
|
849
|
-
var TagResourceResult = [3, n0, _TRRa, 0, [], []];
|
|
850
|
-
var Target = [
|
|
844
|
+
var StartEngagementResult$ = [3, n0, _SERt, 0, [_EA], [0]];
|
|
845
|
+
var StopEngagementRequest$ = [3, n0, _SERto, 0, [_EI, _Rea], [0, 0]];
|
|
846
|
+
var StopEngagementResult$ = [3, n0, _SERtop, 0, [], []];
|
|
847
|
+
var Tag$ = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
848
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RARN, _Ta], [0, () => TagsList]];
|
|
849
|
+
var TagResourceResult$ = [3, n0, _TRRa, 0, [], []];
|
|
850
|
+
var Target$ = [
|
|
851
851
|
3,
|
|
852
852
|
n0,
|
|
853
853
|
_Targ,
|
|
854
854
|
0,
|
|
855
855
|
[_CTI, _CTIo],
|
|
856
|
-
[() => ChannelTargetInfo
|
|
856
|
+
[() => ChannelTargetInfo$, () => ContactTargetInfo$],
|
|
857
857
|
];
|
|
858
|
-
var ThrottlingException = [
|
|
858
|
+
var ThrottlingException$ = [
|
|
859
859
|
-3,
|
|
860
860
|
n0,
|
|
861
861
|
_TE,
|
|
@@ -863,31 +863,31 @@ var ThrottlingException = [
|
|
|
863
863
|
[_M, _QC, _SCe, _RAS],
|
|
864
864
|
[0, 0, 0, [1, { [_hH]: _RA_ }]],
|
|
865
865
|
];
|
|
866
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
867
|
-
var TimeRange = [3, n0, _TR, 0, [_ST, _ET], [4, 4]];
|
|
868
|
-
var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
|
|
869
|
-
var UntagResourceResult = [3, n0, _URRn, 0, [], []];
|
|
870
|
-
var UpdateContactChannelRequest = [
|
|
866
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
867
|
+
var TimeRange$ = [3, n0, _TR, 0, [_ST, _ET], [4, 4]];
|
|
868
|
+
var UntagResourceRequest$ = [3, n0, _URR, 0, [_RARN, _TK], [0, 64 | 0]];
|
|
869
|
+
var UntagResourceResult$ = [3, n0, _URRn, 0, [], []];
|
|
870
|
+
var UpdateContactChannelRequest$ = [
|
|
871
871
|
3,
|
|
872
872
|
n0,
|
|
873
873
|
_UCCR,
|
|
874
874
|
0,
|
|
875
875
|
[_CCI, _Na, _DA],
|
|
876
|
-
[0, 0, () => ContactChannelAddress],
|
|
876
|
+
[0, 0, () => ContactChannelAddress$],
|
|
877
877
|
];
|
|
878
|
-
var UpdateContactChannelResult = [3, n0, _UCCRp, 0, [], []];
|
|
879
|
-
var UpdateContactRequest = [3, n0, _UCR, 0, [_CI, _DN, _P], [0, 0, () => Plan]];
|
|
880
|
-
var UpdateContactResult = [3, n0, _UCRp, 0, [], []];
|
|
881
|
-
var UpdateRotationRequest = [
|
|
878
|
+
var UpdateContactChannelResult$ = [3, n0, _UCCRp, 0, [], []];
|
|
879
|
+
var UpdateContactRequest$ = [3, n0, _UCR, 0, [_CI, _DN, _P], [0, 0, () => Plan$]];
|
|
880
|
+
var UpdateContactResult$ = [3, n0, _UCRp, 0, [], []];
|
|
881
|
+
var UpdateRotationRequest$ = [
|
|
882
882
|
3,
|
|
883
883
|
n0,
|
|
884
884
|
_URRp,
|
|
885
885
|
0,
|
|
886
886
|
[_RIo, _CIo, _ST, _TZI, _R],
|
|
887
|
-
[0, 64 | 0, 4, 0, () => RecurrenceSettings],
|
|
887
|
+
[0, 64 | 0, 4, 0, () => RecurrenceSettings$],
|
|
888
888
|
];
|
|
889
|
-
var UpdateRotationResult = [3, n0, _URRpd, 0, [], []];
|
|
890
|
-
var ValidationException = [
|
|
889
|
+
var UpdateRotationResult$ = [3, n0, _URRpd, 0, [], []];
|
|
890
|
+
var ValidationException$ = [
|
|
891
891
|
-3,
|
|
892
892
|
n0,
|
|
893
893
|
_VE,
|
|
@@ -895,300 +895,314 @@ var ValidationException = [
|
|
|
895
895
|
[_M, _Rea, _F],
|
|
896
896
|
[0, 0, () => ValidationExceptionFieldList],
|
|
897
897
|
];
|
|
898
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
899
|
-
var ValidationExceptionField = [3, n0, _VEF, 0, [_Na, _M], [0, 0]];
|
|
900
|
-
var WeeklySetting = [3, n0, _WSe, 0, [_DOW, _HOT], [0, () => HandOffTime]];
|
|
901
|
-
var SSMContactsServiceException = [-3, _sm, "SSMContactsServiceException", 0, [], []];
|
|
902
|
-
schema.TypeRegistry.for(_sm).registerError(SSMContactsServiceException
|
|
903
|
-
var ContactChannelList = [1, n0, _CCL, 0, () => ContactChannel];
|
|
904
|
-
var ContactsList = [1, n0, _CL, 0, () => Contact];
|
|
905
|
-
var CoverageTimes = [1, n0, _CTo, 0, () => CoverageTime];
|
|
906
|
-
var DailySettings = [1, n0, _DS, 0, () => HandOffTime];
|
|
907
|
-
var DependentEntityList = [1, n0, _DEL, 0, () => DependentEntity];
|
|
908
|
-
var EngagementsList = [1, n0, _EL, 0, () => Engagement];
|
|
909
|
-
var MonthlySettings = [1, n0, _MSo, 0, () => MonthlySetting];
|
|
910
|
-
var OverrideList = [1, n0, _OL, 0, () => PreviewOverride];
|
|
911
|
-
var PagesList = [1, n0, _PL, 0, () => Page];
|
|
912
|
-
var ReceiptsList = [1, n0, _RL, 0, () => Receipt];
|
|
913
|
-
var ResolutionList = [1, n0, _RLe, 0, () => ResolutionContact];
|
|
914
|
-
var RotationOverrides = [1, n0, _RO, 0, () => RotationOverride];
|
|
915
|
-
var Rotations = [1, n0, _Ro, 0, () => Rotation];
|
|
916
|
-
var RotationShifts = [1, n0, _RS, 0, () => RotationShift];
|
|
917
|
-
var StagesList = [1, n0, _SL, 0, () => Stage];
|
|
918
|
-
var TagsList = [1, n0, _TL, 0, () => Tag];
|
|
919
|
-
var TargetsList = [1, n0, _TLa, 0, () => Target];
|
|
920
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
921
|
-
var WeeklySettings = [1, n0, _WS, 0, () => WeeklySetting];
|
|
898
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
899
|
+
var ValidationExceptionField$ = [3, n0, _VEF, 0, [_Na, _M], [0, 0]];
|
|
900
|
+
var WeeklySetting$ = [3, n0, _WSe, 0, [_DOW, _HOT], [0, () => HandOffTime$]];
|
|
901
|
+
var SSMContactsServiceException$ = [-3, _sm, "SSMContactsServiceException", 0, [], []];
|
|
902
|
+
schema.TypeRegistry.for(_sm).registerError(SSMContactsServiceException$, SSMContactsServiceException);
|
|
903
|
+
var ContactChannelList = [1, n0, _CCL, 0, () => ContactChannel$];
|
|
904
|
+
var ContactsList = [1, n0, _CL, 0, () => Contact$];
|
|
905
|
+
var CoverageTimes = [1, n0, _CTo, 0, () => CoverageTime$];
|
|
906
|
+
var DailySettings = [1, n0, _DS, 0, () => HandOffTime$];
|
|
907
|
+
var DependentEntityList = [1, n0, _DEL, 0, () => DependentEntity$];
|
|
908
|
+
var EngagementsList = [1, n0, _EL, 0, () => Engagement$];
|
|
909
|
+
var MonthlySettings = [1, n0, _MSo, 0, () => MonthlySetting$];
|
|
910
|
+
var OverrideList = [1, n0, _OL, 0, () => PreviewOverride$];
|
|
911
|
+
var PagesList = [1, n0, _PL, 0, () => Page$];
|
|
912
|
+
var ReceiptsList = [1, n0, _RL, 0, () => Receipt$];
|
|
913
|
+
var ResolutionList = [1, n0, _RLe, 0, () => ResolutionContact$];
|
|
914
|
+
var RotationOverrides = [1, n0, _RO, 0, () => RotationOverride$];
|
|
915
|
+
var Rotations = [1, n0, _Ro, 0, () => Rotation$];
|
|
916
|
+
var RotationShifts = [1, n0, _RS, 0, () => RotationShift$];
|
|
917
|
+
var StagesList = [1, n0, _SL, 0, () => Stage$];
|
|
918
|
+
var TagsList = [1, n0, _TL, 0, () => Tag$];
|
|
919
|
+
var TargetsList = [1, n0, _TLa, 0, () => Target$];
|
|
920
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
|
|
921
|
+
var WeeklySettings = [1, n0, _WS, 0, () => WeeklySetting$];
|
|
922
922
|
var ShiftCoveragesMap = [2, n0, _SCM, 0, 0, () => CoverageTimes];
|
|
923
|
-
var AcceptPage = [9, n0, _APc, 0, () => AcceptPageRequest
|
|
924
|
-
var ActivateContactChannel = [
|
|
923
|
+
var AcceptPage$ = [9, n0, _APc, 0, () => AcceptPageRequest$, () => AcceptPageResult$];
|
|
924
|
+
var ActivateContactChannel$ = [
|
|
925
925
|
9,
|
|
926
926
|
n0,
|
|
927
927
|
_ACC,
|
|
928
928
|
0,
|
|
929
|
-
() => ActivateContactChannelRequest
|
|
930
|
-
() => ActivateContactChannelResult
|
|
929
|
+
() => ActivateContactChannelRequest$,
|
|
930
|
+
() => ActivateContactChannelResult$,
|
|
931
931
|
];
|
|
932
|
-
var CreateContact = [
|
|
932
|
+
var CreateContact$ = [
|
|
933
933
|
9,
|
|
934
934
|
n0,
|
|
935
935
|
_CCr,
|
|
936
936
|
0,
|
|
937
|
-
() => CreateContactRequest
|
|
938
|
-
() => CreateContactResult
|
|
937
|
+
() => CreateContactRequest$,
|
|
938
|
+
() => CreateContactResult$,
|
|
939
939
|
];
|
|
940
|
-
var CreateContactChannel = [
|
|
940
|
+
var CreateContactChannel$ = [
|
|
941
941
|
9,
|
|
942
942
|
n0,
|
|
943
943
|
_CCC,
|
|
944
944
|
0,
|
|
945
|
-
() => CreateContactChannelRequest
|
|
946
|
-
() => CreateContactChannelResult
|
|
945
|
+
() => CreateContactChannelRequest$,
|
|
946
|
+
() => CreateContactChannelResult$,
|
|
947
947
|
];
|
|
948
|
-
var CreateRotation = [
|
|
948
|
+
var CreateRotation$ = [
|
|
949
949
|
9,
|
|
950
950
|
n0,
|
|
951
951
|
_CR,
|
|
952
952
|
0,
|
|
953
|
-
() => CreateRotationRequest
|
|
954
|
-
() => CreateRotationResult
|
|
953
|
+
() => CreateRotationRequest$,
|
|
954
|
+
() => CreateRotationResult$,
|
|
955
955
|
];
|
|
956
|
-
var CreateRotationOverride = [
|
|
956
|
+
var CreateRotationOverride$ = [
|
|
957
957
|
9,
|
|
958
958
|
n0,
|
|
959
959
|
_CRO,
|
|
960
960
|
0,
|
|
961
|
-
() => CreateRotationOverrideRequest
|
|
962
|
-
() => CreateRotationOverrideResult
|
|
961
|
+
() => CreateRotationOverrideRequest$,
|
|
962
|
+
() => CreateRotationOverrideResult$,
|
|
963
963
|
];
|
|
964
|
-
var DeactivateContactChannel = [
|
|
964
|
+
var DeactivateContactChannel$ = [
|
|
965
965
|
9,
|
|
966
966
|
n0,
|
|
967
967
|
_DCC,
|
|
968
968
|
0,
|
|
969
|
-
() => DeactivateContactChannelRequest
|
|
970
|
-
() => DeactivateContactChannelResult
|
|
969
|
+
() => DeactivateContactChannelRequest$,
|
|
970
|
+
() => DeactivateContactChannelResult$,
|
|
971
971
|
];
|
|
972
|
-
var DeleteContact = [
|
|
972
|
+
var DeleteContact$ = [
|
|
973
973
|
9,
|
|
974
974
|
n0,
|
|
975
975
|
_DC,
|
|
976
976
|
0,
|
|
977
|
-
() => DeleteContactRequest
|
|
978
|
-
() => DeleteContactResult
|
|
977
|
+
() => DeleteContactRequest$,
|
|
978
|
+
() => DeleteContactResult$,
|
|
979
979
|
];
|
|
980
|
-
var DeleteContactChannel = [
|
|
980
|
+
var DeleteContactChannel$ = [
|
|
981
981
|
9,
|
|
982
982
|
n0,
|
|
983
983
|
_DCCe,
|
|
984
984
|
0,
|
|
985
|
-
() => DeleteContactChannelRequest
|
|
986
|
-
() => DeleteContactChannelResult
|
|
985
|
+
() => DeleteContactChannelRequest$,
|
|
986
|
+
() => DeleteContactChannelResult$,
|
|
987
987
|
];
|
|
988
|
-
var DeleteRotation = [
|
|
988
|
+
var DeleteRotation$ = [
|
|
989
989
|
9,
|
|
990
990
|
n0,
|
|
991
991
|
_DR,
|
|
992
992
|
0,
|
|
993
|
-
() => DeleteRotationRequest
|
|
994
|
-
() => DeleteRotationResult
|
|
993
|
+
() => DeleteRotationRequest$,
|
|
994
|
+
() => DeleteRotationResult$,
|
|
995
995
|
];
|
|
996
|
-
var DeleteRotationOverride = [
|
|
996
|
+
var DeleteRotationOverride$ = [
|
|
997
997
|
9,
|
|
998
998
|
n0,
|
|
999
999
|
_DRO,
|
|
1000
1000
|
0,
|
|
1001
|
-
() => DeleteRotationOverrideRequest
|
|
1002
|
-
() => DeleteRotationOverrideResult
|
|
1001
|
+
() => DeleteRotationOverrideRequest$,
|
|
1002
|
+
() => DeleteRotationOverrideResult$,
|
|
1003
1003
|
];
|
|
1004
|
-
var DescribeEngagement = [
|
|
1004
|
+
var DescribeEngagement$ = [
|
|
1005
1005
|
9,
|
|
1006
1006
|
n0,
|
|
1007
1007
|
_DEes,
|
|
1008
1008
|
0,
|
|
1009
|
-
() => DescribeEngagementRequest
|
|
1010
|
-
() => DescribeEngagementResult
|
|
1009
|
+
() => DescribeEngagementRequest$,
|
|
1010
|
+
() => DescribeEngagementResult$,
|
|
1011
1011
|
];
|
|
1012
|
-
var DescribePage = [
|
|
1013
|
-
|
|
1014
|
-
|
|
1012
|
+
var DescribePage$ = [
|
|
1013
|
+
9,
|
|
1014
|
+
n0,
|
|
1015
|
+
_DP,
|
|
1016
|
+
0,
|
|
1017
|
+
() => DescribePageRequest$,
|
|
1018
|
+
() => DescribePageResult$,
|
|
1019
|
+
];
|
|
1020
|
+
var GetContact$ = [9, n0, _GC, 0, () => GetContactRequest$, () => GetContactResult$];
|
|
1021
|
+
var GetContactChannel$ = [
|
|
1015
1022
|
9,
|
|
1016
1023
|
n0,
|
|
1017
1024
|
_GCC,
|
|
1018
1025
|
0,
|
|
1019
|
-
() => GetContactChannelRequest
|
|
1020
|
-
() => GetContactChannelResult
|
|
1026
|
+
() => GetContactChannelRequest$,
|
|
1027
|
+
() => GetContactChannelResult$,
|
|
1021
1028
|
];
|
|
1022
|
-
var GetContactPolicy = [
|
|
1029
|
+
var GetContactPolicy$ = [
|
|
1023
1030
|
9,
|
|
1024
1031
|
n0,
|
|
1025
1032
|
_GCP,
|
|
1026
1033
|
0,
|
|
1027
|
-
() => GetContactPolicyRequest
|
|
1028
|
-
() => GetContactPolicyResult
|
|
1034
|
+
() => GetContactPolicyRequest$,
|
|
1035
|
+
() => GetContactPolicyResult$,
|
|
1029
1036
|
];
|
|
1030
|
-
var GetRotation = [9, n0, _GR, 0, () => GetRotationRequest
|
|
1031
|
-
var GetRotationOverride = [
|
|
1037
|
+
var GetRotation$ = [9, n0, _GR, 0, () => GetRotationRequest$, () => GetRotationResult$];
|
|
1038
|
+
var GetRotationOverride$ = [
|
|
1032
1039
|
9,
|
|
1033
1040
|
n0,
|
|
1034
1041
|
_GRO,
|
|
1035
1042
|
0,
|
|
1036
|
-
() => GetRotationOverrideRequest
|
|
1037
|
-
() => GetRotationOverrideResult
|
|
1043
|
+
() => GetRotationOverrideRequest$,
|
|
1044
|
+
() => GetRotationOverrideResult$,
|
|
1038
1045
|
];
|
|
1039
|
-
var ListContactChannels = [
|
|
1046
|
+
var ListContactChannels$ = [
|
|
1040
1047
|
9,
|
|
1041
1048
|
n0,
|
|
1042
1049
|
_LCC,
|
|
1043
1050
|
0,
|
|
1044
|
-
() => ListContactChannelsRequest
|
|
1045
|
-
() => ListContactChannelsResult
|
|
1051
|
+
() => ListContactChannelsRequest$,
|
|
1052
|
+
() => ListContactChannelsResult$,
|
|
1053
|
+
];
|
|
1054
|
+
var ListContacts$ = [
|
|
1055
|
+
9,
|
|
1056
|
+
n0,
|
|
1057
|
+
_LC,
|
|
1058
|
+
0,
|
|
1059
|
+
() => ListContactsRequest$,
|
|
1060
|
+
() => ListContactsResult$,
|
|
1046
1061
|
];
|
|
1047
|
-
var
|
|
1048
|
-
var ListEngagements = [
|
|
1062
|
+
var ListEngagements$ = [
|
|
1049
1063
|
9,
|
|
1050
1064
|
n0,
|
|
1051
1065
|
_LE,
|
|
1052
1066
|
0,
|
|
1053
|
-
() => ListEngagementsRequest
|
|
1054
|
-
() => ListEngagementsResult
|
|
1067
|
+
() => ListEngagementsRequest$,
|
|
1068
|
+
() => ListEngagementsResult$,
|
|
1055
1069
|
];
|
|
1056
|
-
var ListPageReceipts = [
|
|
1070
|
+
var ListPageReceipts$ = [
|
|
1057
1071
|
9,
|
|
1058
1072
|
n0,
|
|
1059
1073
|
_LPR,
|
|
1060
1074
|
0,
|
|
1061
|
-
() => ListPageReceiptsRequest
|
|
1062
|
-
() => ListPageReceiptsResult
|
|
1075
|
+
() => ListPageReceiptsRequest$,
|
|
1076
|
+
() => ListPageReceiptsResult$,
|
|
1063
1077
|
];
|
|
1064
|
-
var ListPageResolutions = [
|
|
1078
|
+
var ListPageResolutions$ = [
|
|
1065
1079
|
9,
|
|
1066
1080
|
n0,
|
|
1067
1081
|
_LPRi,
|
|
1068
1082
|
0,
|
|
1069
|
-
() => ListPageResolutionsRequest
|
|
1070
|
-
() => ListPageResolutionsResult
|
|
1083
|
+
() => ListPageResolutionsRequest$,
|
|
1084
|
+
() => ListPageResolutionsResult$,
|
|
1071
1085
|
];
|
|
1072
|
-
var ListPagesByContact = [
|
|
1086
|
+
var ListPagesByContact$ = [
|
|
1073
1087
|
9,
|
|
1074
1088
|
n0,
|
|
1075
1089
|
_LPBC,
|
|
1076
1090
|
0,
|
|
1077
|
-
() => ListPagesByContactRequest
|
|
1078
|
-
() => ListPagesByContactResult
|
|
1091
|
+
() => ListPagesByContactRequest$,
|
|
1092
|
+
() => ListPagesByContactResult$,
|
|
1079
1093
|
];
|
|
1080
|
-
var ListPagesByEngagement = [
|
|
1094
|
+
var ListPagesByEngagement$ = [
|
|
1081
1095
|
9,
|
|
1082
1096
|
n0,
|
|
1083
1097
|
_LPBE,
|
|
1084
1098
|
0,
|
|
1085
|
-
() => ListPagesByEngagementRequest
|
|
1086
|
-
() => ListPagesByEngagementResult
|
|
1099
|
+
() => ListPagesByEngagementRequest$,
|
|
1100
|
+
() => ListPagesByEngagementResult$,
|
|
1087
1101
|
];
|
|
1088
|
-
var ListPreviewRotationShifts = [
|
|
1102
|
+
var ListPreviewRotationShifts$ = [
|
|
1089
1103
|
9,
|
|
1090
1104
|
n0,
|
|
1091
1105
|
_LPRS,
|
|
1092
1106
|
0,
|
|
1093
|
-
() => ListPreviewRotationShiftsRequest
|
|
1094
|
-
() => ListPreviewRotationShiftsResult
|
|
1107
|
+
() => ListPreviewRotationShiftsRequest$,
|
|
1108
|
+
() => ListPreviewRotationShiftsResult$,
|
|
1095
1109
|
];
|
|
1096
|
-
var ListRotationOverrides = [
|
|
1110
|
+
var ListRotationOverrides$ = [
|
|
1097
1111
|
9,
|
|
1098
1112
|
n0,
|
|
1099
1113
|
_LRO,
|
|
1100
1114
|
0,
|
|
1101
|
-
() => ListRotationOverridesRequest
|
|
1102
|
-
() => ListRotationOverridesResult
|
|
1115
|
+
() => ListRotationOverridesRequest$,
|
|
1116
|
+
() => ListRotationOverridesResult$,
|
|
1103
1117
|
];
|
|
1104
|
-
var ListRotations = [
|
|
1118
|
+
var ListRotations$ = [
|
|
1105
1119
|
9,
|
|
1106
1120
|
n0,
|
|
1107
1121
|
_LR,
|
|
1108
1122
|
0,
|
|
1109
|
-
() => ListRotationsRequest
|
|
1110
|
-
() => ListRotationsResult
|
|
1123
|
+
() => ListRotationsRequest$,
|
|
1124
|
+
() => ListRotationsResult$,
|
|
1111
1125
|
];
|
|
1112
|
-
var ListRotationShifts = [
|
|
1126
|
+
var ListRotationShifts$ = [
|
|
1113
1127
|
9,
|
|
1114
1128
|
n0,
|
|
1115
1129
|
_LRS,
|
|
1116
1130
|
0,
|
|
1117
|
-
() => ListRotationShiftsRequest
|
|
1118
|
-
() => ListRotationShiftsResult
|
|
1131
|
+
() => ListRotationShiftsRequest$,
|
|
1132
|
+
() => ListRotationShiftsResult$,
|
|
1119
1133
|
];
|
|
1120
|
-
var ListTagsForResource = [
|
|
1134
|
+
var ListTagsForResource$ = [
|
|
1121
1135
|
9,
|
|
1122
1136
|
n0,
|
|
1123
1137
|
_LTFR,
|
|
1124
1138
|
0,
|
|
1125
|
-
() => ListTagsForResourceRequest
|
|
1126
|
-
() => ListTagsForResourceResult
|
|
1139
|
+
() => ListTagsForResourceRequest$,
|
|
1140
|
+
() => ListTagsForResourceResult$,
|
|
1127
1141
|
];
|
|
1128
|
-
var PutContactPolicy = [
|
|
1142
|
+
var PutContactPolicy$ = [
|
|
1129
1143
|
9,
|
|
1130
1144
|
n0,
|
|
1131
1145
|
_PCP,
|
|
1132
1146
|
0,
|
|
1133
|
-
() => PutContactPolicyRequest
|
|
1134
|
-
() => PutContactPolicyResult
|
|
1147
|
+
() => PutContactPolicyRequest$,
|
|
1148
|
+
() => PutContactPolicyResult$,
|
|
1135
1149
|
];
|
|
1136
|
-
var SendActivationCode = [
|
|
1150
|
+
var SendActivationCode$ = [
|
|
1137
1151
|
9,
|
|
1138
1152
|
n0,
|
|
1139
1153
|
_SAC,
|
|
1140
1154
|
0,
|
|
1141
|
-
() => SendActivationCodeRequest
|
|
1142
|
-
() => SendActivationCodeResult
|
|
1155
|
+
() => SendActivationCodeRequest$,
|
|
1156
|
+
() => SendActivationCodeResult$,
|
|
1143
1157
|
];
|
|
1144
|
-
var StartEngagement = [
|
|
1158
|
+
var StartEngagement$ = [
|
|
1145
1159
|
9,
|
|
1146
1160
|
n0,
|
|
1147
1161
|
_SE,
|
|
1148
1162
|
0,
|
|
1149
|
-
() => StartEngagementRequest
|
|
1150
|
-
() => StartEngagementResult
|
|
1163
|
+
() => StartEngagementRequest$,
|
|
1164
|
+
() => StartEngagementResult$,
|
|
1151
1165
|
];
|
|
1152
|
-
var StopEngagement = [
|
|
1166
|
+
var StopEngagement$ = [
|
|
1153
1167
|
9,
|
|
1154
1168
|
n0,
|
|
1155
1169
|
_SEt,
|
|
1156
1170
|
0,
|
|
1157
|
-
() => StopEngagementRequest
|
|
1158
|
-
() => StopEngagementResult
|
|
1171
|
+
() => StopEngagementRequest$,
|
|
1172
|
+
() => StopEngagementResult$,
|
|
1159
1173
|
];
|
|
1160
|
-
var TagResource = [9, n0, _TRa, 0, () => TagResourceRequest
|
|
1161
|
-
var UntagResource = [
|
|
1174
|
+
var TagResource$ = [9, n0, _TRa, 0, () => TagResourceRequest$, () => TagResourceResult$];
|
|
1175
|
+
var UntagResource$ = [
|
|
1162
1176
|
9,
|
|
1163
1177
|
n0,
|
|
1164
1178
|
_UR,
|
|
1165
1179
|
0,
|
|
1166
|
-
() => UntagResourceRequest
|
|
1167
|
-
() => UntagResourceResult
|
|
1180
|
+
() => UntagResourceRequest$,
|
|
1181
|
+
() => UntagResourceResult$,
|
|
1168
1182
|
];
|
|
1169
|
-
var UpdateContact = [
|
|
1183
|
+
var UpdateContact$ = [
|
|
1170
1184
|
9,
|
|
1171
1185
|
n0,
|
|
1172
1186
|
_UC,
|
|
1173
1187
|
0,
|
|
1174
|
-
() => UpdateContactRequest
|
|
1175
|
-
() => UpdateContactResult
|
|
1188
|
+
() => UpdateContactRequest$,
|
|
1189
|
+
() => UpdateContactResult$,
|
|
1176
1190
|
];
|
|
1177
|
-
var UpdateContactChannel = [
|
|
1191
|
+
var UpdateContactChannel$ = [
|
|
1178
1192
|
9,
|
|
1179
1193
|
n0,
|
|
1180
1194
|
_UCC,
|
|
1181
1195
|
0,
|
|
1182
|
-
() => UpdateContactChannelRequest
|
|
1183
|
-
() => UpdateContactChannelResult
|
|
1196
|
+
() => UpdateContactChannelRequest$,
|
|
1197
|
+
() => UpdateContactChannelResult$,
|
|
1184
1198
|
];
|
|
1185
|
-
var UpdateRotation = [
|
|
1199
|
+
var UpdateRotation$ = [
|
|
1186
1200
|
9,
|
|
1187
1201
|
n0,
|
|
1188
1202
|
_URp,
|
|
1189
1203
|
0,
|
|
1190
|
-
() => UpdateRotationRequest
|
|
1191
|
-
() => UpdateRotationResult
|
|
1204
|
+
() => UpdateRotationRequest$,
|
|
1205
|
+
() => UpdateRotationResult$,
|
|
1192
1206
|
];
|
|
1193
1207
|
|
|
1194
1208
|
class AcceptPageCommand extends smithyClient.Command
|
|
@@ -1199,7 +1213,7 @@ class AcceptPageCommand extends smithyClient.Command
|
|
|
1199
1213
|
})
|
|
1200
1214
|
.s("SSMContacts", "AcceptPage", {})
|
|
1201
1215
|
.n("SSMContactsClient", "AcceptPageCommand")
|
|
1202
|
-
.sc(AcceptPage)
|
|
1216
|
+
.sc(AcceptPage$)
|
|
1203
1217
|
.build() {
|
|
1204
1218
|
}
|
|
1205
1219
|
|
|
@@ -1211,7 +1225,7 @@ class ActivateContactChannelCommand extends smithyClient.Command
|
|
|
1211
1225
|
})
|
|
1212
1226
|
.s("SSMContacts", "ActivateContactChannel", {})
|
|
1213
1227
|
.n("SSMContactsClient", "ActivateContactChannelCommand")
|
|
1214
|
-
.sc(ActivateContactChannel)
|
|
1228
|
+
.sc(ActivateContactChannel$)
|
|
1215
1229
|
.build() {
|
|
1216
1230
|
}
|
|
1217
1231
|
|
|
@@ -1223,7 +1237,7 @@ class CreateContactChannelCommand extends smithyClient.Command
|
|
|
1223
1237
|
})
|
|
1224
1238
|
.s("SSMContacts", "CreateContactChannel", {})
|
|
1225
1239
|
.n("SSMContactsClient", "CreateContactChannelCommand")
|
|
1226
|
-
.sc(CreateContactChannel)
|
|
1240
|
+
.sc(CreateContactChannel$)
|
|
1227
1241
|
.build() {
|
|
1228
1242
|
}
|
|
1229
1243
|
|
|
@@ -1235,7 +1249,7 @@ class CreateContactCommand extends smithyClient.Command
|
|
|
1235
1249
|
})
|
|
1236
1250
|
.s("SSMContacts", "CreateContact", {})
|
|
1237
1251
|
.n("SSMContactsClient", "CreateContactCommand")
|
|
1238
|
-
.sc(CreateContact)
|
|
1252
|
+
.sc(CreateContact$)
|
|
1239
1253
|
.build() {
|
|
1240
1254
|
}
|
|
1241
1255
|
|
|
@@ -1247,7 +1261,7 @@ class CreateRotationCommand extends smithyClient.Command
|
|
|
1247
1261
|
})
|
|
1248
1262
|
.s("SSMContacts", "CreateRotation", {})
|
|
1249
1263
|
.n("SSMContactsClient", "CreateRotationCommand")
|
|
1250
|
-
.sc(CreateRotation)
|
|
1264
|
+
.sc(CreateRotation$)
|
|
1251
1265
|
.build() {
|
|
1252
1266
|
}
|
|
1253
1267
|
|
|
@@ -1259,7 +1273,7 @@ class CreateRotationOverrideCommand extends smithyClient.Command
|
|
|
1259
1273
|
})
|
|
1260
1274
|
.s("SSMContacts", "CreateRotationOverride", {})
|
|
1261
1275
|
.n("SSMContactsClient", "CreateRotationOverrideCommand")
|
|
1262
|
-
.sc(CreateRotationOverride)
|
|
1276
|
+
.sc(CreateRotationOverride$)
|
|
1263
1277
|
.build() {
|
|
1264
1278
|
}
|
|
1265
1279
|
|
|
@@ -1271,7 +1285,7 @@ class DeactivateContactChannelCommand extends smithyClient.Command
|
|
|
1271
1285
|
})
|
|
1272
1286
|
.s("SSMContacts", "DeactivateContactChannel", {})
|
|
1273
1287
|
.n("SSMContactsClient", "DeactivateContactChannelCommand")
|
|
1274
|
-
.sc(DeactivateContactChannel)
|
|
1288
|
+
.sc(DeactivateContactChannel$)
|
|
1275
1289
|
.build() {
|
|
1276
1290
|
}
|
|
1277
1291
|
|
|
@@ -1283,7 +1297,7 @@ class DeleteContactChannelCommand extends smithyClient.Command
|
|
|
1283
1297
|
})
|
|
1284
1298
|
.s("SSMContacts", "DeleteContactChannel", {})
|
|
1285
1299
|
.n("SSMContactsClient", "DeleteContactChannelCommand")
|
|
1286
|
-
.sc(DeleteContactChannel)
|
|
1300
|
+
.sc(DeleteContactChannel$)
|
|
1287
1301
|
.build() {
|
|
1288
1302
|
}
|
|
1289
1303
|
|
|
@@ -1295,7 +1309,7 @@ class DeleteContactCommand extends smithyClient.Command
|
|
|
1295
1309
|
})
|
|
1296
1310
|
.s("SSMContacts", "DeleteContact", {})
|
|
1297
1311
|
.n("SSMContactsClient", "DeleteContactCommand")
|
|
1298
|
-
.sc(DeleteContact)
|
|
1312
|
+
.sc(DeleteContact$)
|
|
1299
1313
|
.build() {
|
|
1300
1314
|
}
|
|
1301
1315
|
|
|
@@ -1307,7 +1321,7 @@ class DeleteRotationCommand extends smithyClient.Command
|
|
|
1307
1321
|
})
|
|
1308
1322
|
.s("SSMContacts", "DeleteRotation", {})
|
|
1309
1323
|
.n("SSMContactsClient", "DeleteRotationCommand")
|
|
1310
|
-
.sc(DeleteRotation)
|
|
1324
|
+
.sc(DeleteRotation$)
|
|
1311
1325
|
.build() {
|
|
1312
1326
|
}
|
|
1313
1327
|
|
|
@@ -1319,7 +1333,7 @@ class DeleteRotationOverrideCommand extends smithyClient.Command
|
|
|
1319
1333
|
})
|
|
1320
1334
|
.s("SSMContacts", "DeleteRotationOverride", {})
|
|
1321
1335
|
.n("SSMContactsClient", "DeleteRotationOverrideCommand")
|
|
1322
|
-
.sc(DeleteRotationOverride)
|
|
1336
|
+
.sc(DeleteRotationOverride$)
|
|
1323
1337
|
.build() {
|
|
1324
1338
|
}
|
|
1325
1339
|
|
|
@@ -1331,7 +1345,7 @@ class DescribeEngagementCommand extends smithyClient.Command
|
|
|
1331
1345
|
})
|
|
1332
1346
|
.s("SSMContacts", "DescribeEngagement", {})
|
|
1333
1347
|
.n("SSMContactsClient", "DescribeEngagementCommand")
|
|
1334
|
-
.sc(DescribeEngagement)
|
|
1348
|
+
.sc(DescribeEngagement$)
|
|
1335
1349
|
.build() {
|
|
1336
1350
|
}
|
|
1337
1351
|
|
|
@@ -1343,7 +1357,7 @@ class DescribePageCommand extends smithyClient.Command
|
|
|
1343
1357
|
})
|
|
1344
1358
|
.s("SSMContacts", "DescribePage", {})
|
|
1345
1359
|
.n("SSMContactsClient", "DescribePageCommand")
|
|
1346
|
-
.sc(DescribePage)
|
|
1360
|
+
.sc(DescribePage$)
|
|
1347
1361
|
.build() {
|
|
1348
1362
|
}
|
|
1349
1363
|
|
|
@@ -1355,7 +1369,7 @@ class GetContactChannelCommand extends smithyClient.Command
|
|
|
1355
1369
|
})
|
|
1356
1370
|
.s("SSMContacts", "GetContactChannel", {})
|
|
1357
1371
|
.n("SSMContactsClient", "GetContactChannelCommand")
|
|
1358
|
-
.sc(GetContactChannel)
|
|
1372
|
+
.sc(GetContactChannel$)
|
|
1359
1373
|
.build() {
|
|
1360
1374
|
}
|
|
1361
1375
|
|
|
@@ -1367,7 +1381,7 @@ class GetContactCommand extends smithyClient.Command
|
|
|
1367
1381
|
})
|
|
1368
1382
|
.s("SSMContacts", "GetContact", {})
|
|
1369
1383
|
.n("SSMContactsClient", "GetContactCommand")
|
|
1370
|
-
.sc(GetContact)
|
|
1384
|
+
.sc(GetContact$)
|
|
1371
1385
|
.build() {
|
|
1372
1386
|
}
|
|
1373
1387
|
|
|
@@ -1379,7 +1393,7 @@ class GetContactPolicyCommand extends smithyClient.Command
|
|
|
1379
1393
|
})
|
|
1380
1394
|
.s("SSMContacts", "GetContactPolicy", {})
|
|
1381
1395
|
.n("SSMContactsClient", "GetContactPolicyCommand")
|
|
1382
|
-
.sc(GetContactPolicy)
|
|
1396
|
+
.sc(GetContactPolicy$)
|
|
1383
1397
|
.build() {
|
|
1384
1398
|
}
|
|
1385
1399
|
|
|
@@ -1391,7 +1405,7 @@ class GetRotationCommand extends smithyClient.Command
|
|
|
1391
1405
|
})
|
|
1392
1406
|
.s("SSMContacts", "GetRotation", {})
|
|
1393
1407
|
.n("SSMContactsClient", "GetRotationCommand")
|
|
1394
|
-
.sc(GetRotation)
|
|
1408
|
+
.sc(GetRotation$)
|
|
1395
1409
|
.build() {
|
|
1396
1410
|
}
|
|
1397
1411
|
|
|
@@ -1403,7 +1417,7 @@ class GetRotationOverrideCommand extends smithyClient.Command
|
|
|
1403
1417
|
})
|
|
1404
1418
|
.s("SSMContacts", "GetRotationOverride", {})
|
|
1405
1419
|
.n("SSMContactsClient", "GetRotationOverrideCommand")
|
|
1406
|
-
.sc(GetRotationOverride)
|
|
1420
|
+
.sc(GetRotationOverride$)
|
|
1407
1421
|
.build() {
|
|
1408
1422
|
}
|
|
1409
1423
|
|
|
@@ -1415,7 +1429,7 @@ class ListContactChannelsCommand extends smithyClient.Command
|
|
|
1415
1429
|
})
|
|
1416
1430
|
.s("SSMContacts", "ListContactChannels", {})
|
|
1417
1431
|
.n("SSMContactsClient", "ListContactChannelsCommand")
|
|
1418
|
-
.sc(ListContactChannels)
|
|
1432
|
+
.sc(ListContactChannels$)
|
|
1419
1433
|
.build() {
|
|
1420
1434
|
}
|
|
1421
1435
|
|
|
@@ -1427,7 +1441,7 @@ class ListContactsCommand extends smithyClient.Command
|
|
|
1427
1441
|
})
|
|
1428
1442
|
.s("SSMContacts", "ListContacts", {})
|
|
1429
1443
|
.n("SSMContactsClient", "ListContactsCommand")
|
|
1430
|
-
.sc(ListContacts)
|
|
1444
|
+
.sc(ListContacts$)
|
|
1431
1445
|
.build() {
|
|
1432
1446
|
}
|
|
1433
1447
|
|
|
@@ -1439,7 +1453,7 @@ class ListEngagementsCommand extends smithyClient.Command
|
|
|
1439
1453
|
})
|
|
1440
1454
|
.s("SSMContacts", "ListEngagements", {})
|
|
1441
1455
|
.n("SSMContactsClient", "ListEngagementsCommand")
|
|
1442
|
-
.sc(ListEngagements)
|
|
1456
|
+
.sc(ListEngagements$)
|
|
1443
1457
|
.build() {
|
|
1444
1458
|
}
|
|
1445
1459
|
|
|
@@ -1451,7 +1465,7 @@ class ListPageReceiptsCommand extends smithyClient.Command
|
|
|
1451
1465
|
})
|
|
1452
1466
|
.s("SSMContacts", "ListPageReceipts", {})
|
|
1453
1467
|
.n("SSMContactsClient", "ListPageReceiptsCommand")
|
|
1454
|
-
.sc(ListPageReceipts)
|
|
1468
|
+
.sc(ListPageReceipts$)
|
|
1455
1469
|
.build() {
|
|
1456
1470
|
}
|
|
1457
1471
|
|
|
@@ -1463,7 +1477,7 @@ class ListPageResolutionsCommand extends smithyClient.Command
|
|
|
1463
1477
|
})
|
|
1464
1478
|
.s("SSMContacts", "ListPageResolutions", {})
|
|
1465
1479
|
.n("SSMContactsClient", "ListPageResolutionsCommand")
|
|
1466
|
-
.sc(ListPageResolutions)
|
|
1480
|
+
.sc(ListPageResolutions$)
|
|
1467
1481
|
.build() {
|
|
1468
1482
|
}
|
|
1469
1483
|
|
|
@@ -1475,7 +1489,7 @@ class ListPagesByContactCommand extends smithyClient.Command
|
|
|
1475
1489
|
})
|
|
1476
1490
|
.s("SSMContacts", "ListPagesByContact", {})
|
|
1477
1491
|
.n("SSMContactsClient", "ListPagesByContactCommand")
|
|
1478
|
-
.sc(ListPagesByContact)
|
|
1492
|
+
.sc(ListPagesByContact$)
|
|
1479
1493
|
.build() {
|
|
1480
1494
|
}
|
|
1481
1495
|
|
|
@@ -1487,7 +1501,7 @@ class ListPagesByEngagementCommand extends smithyClient.Command
|
|
|
1487
1501
|
})
|
|
1488
1502
|
.s("SSMContacts", "ListPagesByEngagement", {})
|
|
1489
1503
|
.n("SSMContactsClient", "ListPagesByEngagementCommand")
|
|
1490
|
-
.sc(ListPagesByEngagement)
|
|
1504
|
+
.sc(ListPagesByEngagement$)
|
|
1491
1505
|
.build() {
|
|
1492
1506
|
}
|
|
1493
1507
|
|
|
@@ -1499,7 +1513,7 @@ class ListPreviewRotationShiftsCommand extends smithyClient.Command
|
|
|
1499
1513
|
})
|
|
1500
1514
|
.s("SSMContacts", "ListPreviewRotationShifts", {})
|
|
1501
1515
|
.n("SSMContactsClient", "ListPreviewRotationShiftsCommand")
|
|
1502
|
-
.sc(ListPreviewRotationShifts)
|
|
1516
|
+
.sc(ListPreviewRotationShifts$)
|
|
1503
1517
|
.build() {
|
|
1504
1518
|
}
|
|
1505
1519
|
|
|
@@ -1511,7 +1525,7 @@ class ListRotationOverridesCommand extends smithyClient.Command
|
|
|
1511
1525
|
})
|
|
1512
1526
|
.s("SSMContacts", "ListRotationOverrides", {})
|
|
1513
1527
|
.n("SSMContactsClient", "ListRotationOverridesCommand")
|
|
1514
|
-
.sc(ListRotationOverrides)
|
|
1528
|
+
.sc(ListRotationOverrides$)
|
|
1515
1529
|
.build() {
|
|
1516
1530
|
}
|
|
1517
1531
|
|
|
@@ -1523,7 +1537,7 @@ class ListRotationsCommand extends smithyClient.Command
|
|
|
1523
1537
|
})
|
|
1524
1538
|
.s("SSMContacts", "ListRotations", {})
|
|
1525
1539
|
.n("SSMContactsClient", "ListRotationsCommand")
|
|
1526
|
-
.sc(ListRotations)
|
|
1540
|
+
.sc(ListRotations$)
|
|
1527
1541
|
.build() {
|
|
1528
1542
|
}
|
|
1529
1543
|
|
|
@@ -1535,7 +1549,7 @@ class ListRotationShiftsCommand extends smithyClient.Command
|
|
|
1535
1549
|
})
|
|
1536
1550
|
.s("SSMContacts", "ListRotationShifts", {})
|
|
1537
1551
|
.n("SSMContactsClient", "ListRotationShiftsCommand")
|
|
1538
|
-
.sc(ListRotationShifts)
|
|
1552
|
+
.sc(ListRotationShifts$)
|
|
1539
1553
|
.build() {
|
|
1540
1554
|
}
|
|
1541
1555
|
|
|
@@ -1547,7 +1561,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1547
1561
|
})
|
|
1548
1562
|
.s("SSMContacts", "ListTagsForResource", {})
|
|
1549
1563
|
.n("SSMContactsClient", "ListTagsForResourceCommand")
|
|
1550
|
-
.sc(ListTagsForResource)
|
|
1564
|
+
.sc(ListTagsForResource$)
|
|
1551
1565
|
.build() {
|
|
1552
1566
|
}
|
|
1553
1567
|
|
|
@@ -1559,7 +1573,7 @@ class PutContactPolicyCommand extends smithyClient.Command
|
|
|
1559
1573
|
})
|
|
1560
1574
|
.s("SSMContacts", "PutContactPolicy", {})
|
|
1561
1575
|
.n("SSMContactsClient", "PutContactPolicyCommand")
|
|
1562
|
-
.sc(PutContactPolicy)
|
|
1576
|
+
.sc(PutContactPolicy$)
|
|
1563
1577
|
.build() {
|
|
1564
1578
|
}
|
|
1565
1579
|
|
|
@@ -1571,7 +1585,7 @@ class SendActivationCodeCommand extends smithyClient.Command
|
|
|
1571
1585
|
})
|
|
1572
1586
|
.s("SSMContacts", "SendActivationCode", {})
|
|
1573
1587
|
.n("SSMContactsClient", "SendActivationCodeCommand")
|
|
1574
|
-
.sc(SendActivationCode)
|
|
1588
|
+
.sc(SendActivationCode$)
|
|
1575
1589
|
.build() {
|
|
1576
1590
|
}
|
|
1577
1591
|
|
|
@@ -1583,7 +1597,7 @@ class StartEngagementCommand extends smithyClient.Command
|
|
|
1583
1597
|
})
|
|
1584
1598
|
.s("SSMContacts", "StartEngagement", {})
|
|
1585
1599
|
.n("SSMContactsClient", "StartEngagementCommand")
|
|
1586
|
-
.sc(StartEngagement)
|
|
1600
|
+
.sc(StartEngagement$)
|
|
1587
1601
|
.build() {
|
|
1588
1602
|
}
|
|
1589
1603
|
|
|
@@ -1595,7 +1609,7 @@ class StopEngagementCommand extends smithyClient.Command
|
|
|
1595
1609
|
})
|
|
1596
1610
|
.s("SSMContacts", "StopEngagement", {})
|
|
1597
1611
|
.n("SSMContactsClient", "StopEngagementCommand")
|
|
1598
|
-
.sc(StopEngagement)
|
|
1612
|
+
.sc(StopEngagement$)
|
|
1599
1613
|
.build() {
|
|
1600
1614
|
}
|
|
1601
1615
|
|
|
@@ -1607,7 +1621,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1607
1621
|
})
|
|
1608
1622
|
.s("SSMContacts", "TagResource", {})
|
|
1609
1623
|
.n("SSMContactsClient", "TagResourceCommand")
|
|
1610
|
-
.sc(TagResource)
|
|
1624
|
+
.sc(TagResource$)
|
|
1611
1625
|
.build() {
|
|
1612
1626
|
}
|
|
1613
1627
|
|
|
@@ -1619,7 +1633,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1619
1633
|
})
|
|
1620
1634
|
.s("SSMContacts", "UntagResource", {})
|
|
1621
1635
|
.n("SSMContactsClient", "UntagResourceCommand")
|
|
1622
|
-
.sc(UntagResource)
|
|
1636
|
+
.sc(UntagResource$)
|
|
1623
1637
|
.build() {
|
|
1624
1638
|
}
|
|
1625
1639
|
|
|
@@ -1631,7 +1645,7 @@ class UpdateContactChannelCommand extends smithyClient.Command
|
|
|
1631
1645
|
})
|
|
1632
1646
|
.s("SSMContacts", "UpdateContactChannel", {})
|
|
1633
1647
|
.n("SSMContactsClient", "UpdateContactChannelCommand")
|
|
1634
|
-
.sc(UpdateContactChannel)
|
|
1648
|
+
.sc(UpdateContactChannel$)
|
|
1635
1649
|
.build() {
|
|
1636
1650
|
}
|
|
1637
1651
|
|
|
@@ -1643,7 +1657,7 @@ class UpdateContactCommand extends smithyClient.Command
|
|
|
1643
1657
|
})
|
|
1644
1658
|
.s("SSMContacts", "UpdateContact", {})
|
|
1645
1659
|
.n("SSMContactsClient", "UpdateContactCommand")
|
|
1646
|
-
.sc(UpdateContact)
|
|
1660
|
+
.sc(UpdateContact$)
|
|
1647
1661
|
.build() {
|
|
1648
1662
|
}
|
|
1649
1663
|
|
|
@@ -1655,7 +1669,7 @@ class UpdateRotationCommand extends smithyClient.Command
|
|
|
1655
1669
|
})
|
|
1656
1670
|
.s("SSMContacts", "UpdateRotation", {})
|
|
1657
1671
|
.n("SSMContactsClient", "UpdateRotationCommand")
|
|
1658
|
-
.sc(UpdateRotation)
|
|
1672
|
+
.sc(UpdateRotation$)
|
|
1659
1673
|
.build() {
|
|
1660
1674
|
}
|
|
1661
1675
|
|
|
@@ -1784,64 +1798,216 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1784
1798
|
get: function () { return smithyClient.Client; }
|
|
1785
1799
|
});
|
|
1786
1800
|
exports.AcceptCodeValidation = AcceptCodeValidation;
|
|
1801
|
+
exports.AcceptPage$ = AcceptPage$;
|
|
1787
1802
|
exports.AcceptPageCommand = AcceptPageCommand;
|
|
1803
|
+
exports.AcceptPageRequest$ = AcceptPageRequest$;
|
|
1804
|
+
exports.AcceptPageResult$ = AcceptPageResult$;
|
|
1788
1805
|
exports.AcceptType = AcceptType;
|
|
1789
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1806
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1807
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1808
|
+
exports.ActivateContactChannel$ = ActivateContactChannel$;
|
|
1790
1809
|
exports.ActivateContactChannelCommand = ActivateContactChannelCommand;
|
|
1810
|
+
exports.ActivateContactChannelRequest$ = ActivateContactChannelRequest$;
|
|
1811
|
+
exports.ActivateContactChannelResult$ = ActivateContactChannelResult$;
|
|
1791
1812
|
exports.ActivationStatus = ActivationStatus;
|
|
1813
|
+
exports.ChannelTargetInfo$ = ChannelTargetInfo$;
|
|
1792
1814
|
exports.ChannelType = ChannelType;
|
|
1793
|
-
exports.ConflictException = ConflictException
|
|
1815
|
+
exports.ConflictException = ConflictException;
|
|
1816
|
+
exports.ConflictException$ = ConflictException$;
|
|
1817
|
+
exports.Contact$ = Contact$;
|
|
1818
|
+
exports.ContactChannel$ = ContactChannel$;
|
|
1819
|
+
exports.ContactChannelAddress$ = ContactChannelAddress$;
|
|
1820
|
+
exports.ContactTargetInfo$ = ContactTargetInfo$;
|
|
1794
1821
|
exports.ContactType = ContactType;
|
|
1822
|
+
exports.CoverageTime$ = CoverageTime$;
|
|
1823
|
+
exports.CreateContact$ = CreateContact$;
|
|
1824
|
+
exports.CreateContactChannel$ = CreateContactChannel$;
|
|
1795
1825
|
exports.CreateContactChannelCommand = CreateContactChannelCommand;
|
|
1826
|
+
exports.CreateContactChannelRequest$ = CreateContactChannelRequest$;
|
|
1827
|
+
exports.CreateContactChannelResult$ = CreateContactChannelResult$;
|
|
1796
1828
|
exports.CreateContactCommand = CreateContactCommand;
|
|
1829
|
+
exports.CreateContactRequest$ = CreateContactRequest$;
|
|
1830
|
+
exports.CreateContactResult$ = CreateContactResult$;
|
|
1831
|
+
exports.CreateRotation$ = CreateRotation$;
|
|
1797
1832
|
exports.CreateRotationCommand = CreateRotationCommand;
|
|
1833
|
+
exports.CreateRotationOverride$ = CreateRotationOverride$;
|
|
1798
1834
|
exports.CreateRotationOverrideCommand = CreateRotationOverrideCommand;
|
|
1799
|
-
exports.
|
|
1835
|
+
exports.CreateRotationOverrideRequest$ = CreateRotationOverrideRequest$;
|
|
1836
|
+
exports.CreateRotationOverrideResult$ = CreateRotationOverrideResult$;
|
|
1837
|
+
exports.CreateRotationRequest$ = CreateRotationRequest$;
|
|
1838
|
+
exports.CreateRotationResult$ = CreateRotationResult$;
|
|
1839
|
+
exports.DataEncryptionException = DataEncryptionException;
|
|
1840
|
+
exports.DataEncryptionException$ = DataEncryptionException$;
|
|
1800
1841
|
exports.DayOfWeek = DayOfWeek;
|
|
1842
|
+
exports.DeactivateContactChannel$ = DeactivateContactChannel$;
|
|
1801
1843
|
exports.DeactivateContactChannelCommand = DeactivateContactChannelCommand;
|
|
1844
|
+
exports.DeactivateContactChannelRequest$ = DeactivateContactChannelRequest$;
|
|
1845
|
+
exports.DeactivateContactChannelResult$ = DeactivateContactChannelResult$;
|
|
1846
|
+
exports.DeleteContact$ = DeleteContact$;
|
|
1847
|
+
exports.DeleteContactChannel$ = DeleteContactChannel$;
|
|
1802
1848
|
exports.DeleteContactChannelCommand = DeleteContactChannelCommand;
|
|
1849
|
+
exports.DeleteContactChannelRequest$ = DeleteContactChannelRequest$;
|
|
1850
|
+
exports.DeleteContactChannelResult$ = DeleteContactChannelResult$;
|
|
1803
1851
|
exports.DeleteContactCommand = DeleteContactCommand;
|
|
1852
|
+
exports.DeleteContactRequest$ = DeleteContactRequest$;
|
|
1853
|
+
exports.DeleteContactResult$ = DeleteContactResult$;
|
|
1854
|
+
exports.DeleteRotation$ = DeleteRotation$;
|
|
1804
1855
|
exports.DeleteRotationCommand = DeleteRotationCommand;
|
|
1856
|
+
exports.DeleteRotationOverride$ = DeleteRotationOverride$;
|
|
1805
1857
|
exports.DeleteRotationOverrideCommand = DeleteRotationOverrideCommand;
|
|
1858
|
+
exports.DeleteRotationOverrideRequest$ = DeleteRotationOverrideRequest$;
|
|
1859
|
+
exports.DeleteRotationOverrideResult$ = DeleteRotationOverrideResult$;
|
|
1860
|
+
exports.DeleteRotationRequest$ = DeleteRotationRequest$;
|
|
1861
|
+
exports.DeleteRotationResult$ = DeleteRotationResult$;
|
|
1862
|
+
exports.DependentEntity$ = DependentEntity$;
|
|
1863
|
+
exports.DescribeEngagement$ = DescribeEngagement$;
|
|
1806
1864
|
exports.DescribeEngagementCommand = DescribeEngagementCommand;
|
|
1865
|
+
exports.DescribeEngagementRequest$ = DescribeEngagementRequest$;
|
|
1866
|
+
exports.DescribeEngagementResult$ = DescribeEngagementResult$;
|
|
1867
|
+
exports.DescribePage$ = DescribePage$;
|
|
1807
1868
|
exports.DescribePageCommand = DescribePageCommand;
|
|
1869
|
+
exports.DescribePageRequest$ = DescribePageRequest$;
|
|
1870
|
+
exports.DescribePageResult$ = DescribePageResult$;
|
|
1871
|
+
exports.Engagement$ = Engagement$;
|
|
1872
|
+
exports.GetContact$ = GetContact$;
|
|
1873
|
+
exports.GetContactChannel$ = GetContactChannel$;
|
|
1808
1874
|
exports.GetContactChannelCommand = GetContactChannelCommand;
|
|
1875
|
+
exports.GetContactChannelRequest$ = GetContactChannelRequest$;
|
|
1876
|
+
exports.GetContactChannelResult$ = GetContactChannelResult$;
|
|
1809
1877
|
exports.GetContactCommand = GetContactCommand;
|
|
1878
|
+
exports.GetContactPolicy$ = GetContactPolicy$;
|
|
1810
1879
|
exports.GetContactPolicyCommand = GetContactPolicyCommand;
|
|
1880
|
+
exports.GetContactPolicyRequest$ = GetContactPolicyRequest$;
|
|
1881
|
+
exports.GetContactPolicyResult$ = GetContactPolicyResult$;
|
|
1882
|
+
exports.GetContactRequest$ = GetContactRequest$;
|
|
1883
|
+
exports.GetContactResult$ = GetContactResult$;
|
|
1884
|
+
exports.GetRotation$ = GetRotation$;
|
|
1811
1885
|
exports.GetRotationCommand = GetRotationCommand;
|
|
1886
|
+
exports.GetRotationOverride$ = GetRotationOverride$;
|
|
1812
1887
|
exports.GetRotationOverrideCommand = GetRotationOverrideCommand;
|
|
1813
|
-
exports.
|
|
1888
|
+
exports.GetRotationOverrideRequest$ = GetRotationOverrideRequest$;
|
|
1889
|
+
exports.GetRotationOverrideResult$ = GetRotationOverrideResult$;
|
|
1890
|
+
exports.GetRotationRequest$ = GetRotationRequest$;
|
|
1891
|
+
exports.GetRotationResult$ = GetRotationResult$;
|
|
1892
|
+
exports.HandOffTime$ = HandOffTime$;
|
|
1893
|
+
exports.InternalServerException = InternalServerException;
|
|
1894
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1895
|
+
exports.ListContactChannels$ = ListContactChannels$;
|
|
1814
1896
|
exports.ListContactChannelsCommand = ListContactChannelsCommand;
|
|
1897
|
+
exports.ListContactChannelsRequest$ = ListContactChannelsRequest$;
|
|
1898
|
+
exports.ListContactChannelsResult$ = ListContactChannelsResult$;
|
|
1899
|
+
exports.ListContacts$ = ListContacts$;
|
|
1815
1900
|
exports.ListContactsCommand = ListContactsCommand;
|
|
1901
|
+
exports.ListContactsRequest$ = ListContactsRequest$;
|
|
1902
|
+
exports.ListContactsResult$ = ListContactsResult$;
|
|
1903
|
+
exports.ListEngagements$ = ListEngagements$;
|
|
1816
1904
|
exports.ListEngagementsCommand = ListEngagementsCommand;
|
|
1905
|
+
exports.ListEngagementsRequest$ = ListEngagementsRequest$;
|
|
1906
|
+
exports.ListEngagementsResult$ = ListEngagementsResult$;
|
|
1907
|
+
exports.ListPageReceipts$ = ListPageReceipts$;
|
|
1817
1908
|
exports.ListPageReceiptsCommand = ListPageReceiptsCommand;
|
|
1909
|
+
exports.ListPageReceiptsRequest$ = ListPageReceiptsRequest$;
|
|
1910
|
+
exports.ListPageReceiptsResult$ = ListPageReceiptsResult$;
|
|
1911
|
+
exports.ListPageResolutions$ = ListPageResolutions$;
|
|
1818
1912
|
exports.ListPageResolutionsCommand = ListPageResolutionsCommand;
|
|
1913
|
+
exports.ListPageResolutionsRequest$ = ListPageResolutionsRequest$;
|
|
1914
|
+
exports.ListPageResolutionsResult$ = ListPageResolutionsResult$;
|
|
1915
|
+
exports.ListPagesByContact$ = ListPagesByContact$;
|
|
1819
1916
|
exports.ListPagesByContactCommand = ListPagesByContactCommand;
|
|
1917
|
+
exports.ListPagesByContactRequest$ = ListPagesByContactRequest$;
|
|
1918
|
+
exports.ListPagesByContactResult$ = ListPagesByContactResult$;
|
|
1919
|
+
exports.ListPagesByEngagement$ = ListPagesByEngagement$;
|
|
1820
1920
|
exports.ListPagesByEngagementCommand = ListPagesByEngagementCommand;
|
|
1921
|
+
exports.ListPagesByEngagementRequest$ = ListPagesByEngagementRequest$;
|
|
1922
|
+
exports.ListPagesByEngagementResult$ = ListPagesByEngagementResult$;
|
|
1923
|
+
exports.ListPreviewRotationShifts$ = ListPreviewRotationShifts$;
|
|
1821
1924
|
exports.ListPreviewRotationShiftsCommand = ListPreviewRotationShiftsCommand;
|
|
1925
|
+
exports.ListPreviewRotationShiftsRequest$ = ListPreviewRotationShiftsRequest$;
|
|
1926
|
+
exports.ListPreviewRotationShiftsResult$ = ListPreviewRotationShiftsResult$;
|
|
1927
|
+
exports.ListRotationOverrides$ = ListRotationOverrides$;
|
|
1822
1928
|
exports.ListRotationOverridesCommand = ListRotationOverridesCommand;
|
|
1929
|
+
exports.ListRotationOverridesRequest$ = ListRotationOverridesRequest$;
|
|
1930
|
+
exports.ListRotationOverridesResult$ = ListRotationOverridesResult$;
|
|
1931
|
+
exports.ListRotationShifts$ = ListRotationShifts$;
|
|
1823
1932
|
exports.ListRotationShiftsCommand = ListRotationShiftsCommand;
|
|
1933
|
+
exports.ListRotationShiftsRequest$ = ListRotationShiftsRequest$;
|
|
1934
|
+
exports.ListRotationShiftsResult$ = ListRotationShiftsResult$;
|
|
1935
|
+
exports.ListRotations$ = ListRotations$;
|
|
1824
1936
|
exports.ListRotationsCommand = ListRotationsCommand;
|
|
1937
|
+
exports.ListRotationsRequest$ = ListRotationsRequest$;
|
|
1938
|
+
exports.ListRotationsResult$ = ListRotationsResult$;
|
|
1939
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1825
1940
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1941
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1942
|
+
exports.ListTagsForResourceResult$ = ListTagsForResourceResult$;
|
|
1943
|
+
exports.MonthlySetting$ = MonthlySetting$;
|
|
1944
|
+
exports.Page$ = Page$;
|
|
1945
|
+
exports.Plan$ = Plan$;
|
|
1946
|
+
exports.PreviewOverride$ = PreviewOverride$;
|
|
1947
|
+
exports.PutContactPolicy$ = PutContactPolicy$;
|
|
1826
1948
|
exports.PutContactPolicyCommand = PutContactPolicyCommand;
|
|
1949
|
+
exports.PutContactPolicyRequest$ = PutContactPolicyRequest$;
|
|
1950
|
+
exports.PutContactPolicyResult$ = PutContactPolicyResult$;
|
|
1951
|
+
exports.Receipt$ = Receipt$;
|
|
1827
1952
|
exports.ReceiptType = ReceiptType;
|
|
1828
|
-
exports.
|
|
1953
|
+
exports.RecurrenceSettings$ = RecurrenceSettings$;
|
|
1954
|
+
exports.ResolutionContact$ = ResolutionContact$;
|
|
1955
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1956
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1957
|
+
exports.Rotation$ = Rotation$;
|
|
1958
|
+
exports.RotationOverride$ = RotationOverride$;
|
|
1959
|
+
exports.RotationShift$ = RotationShift$;
|
|
1829
1960
|
exports.SSMContacts = SSMContacts;
|
|
1830
1961
|
exports.SSMContactsClient = SSMContactsClient;
|
|
1831
|
-
exports.SSMContactsServiceException = SSMContactsServiceException
|
|
1962
|
+
exports.SSMContactsServiceException = SSMContactsServiceException;
|
|
1963
|
+
exports.SSMContactsServiceException$ = SSMContactsServiceException$;
|
|
1964
|
+
exports.SendActivationCode$ = SendActivationCode$;
|
|
1832
1965
|
exports.SendActivationCodeCommand = SendActivationCodeCommand;
|
|
1833
|
-
exports.
|
|
1966
|
+
exports.SendActivationCodeRequest$ = SendActivationCodeRequest$;
|
|
1967
|
+
exports.SendActivationCodeResult$ = SendActivationCodeResult$;
|
|
1968
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1969
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1970
|
+
exports.ShiftDetails$ = ShiftDetails$;
|
|
1834
1971
|
exports.ShiftType = ShiftType;
|
|
1972
|
+
exports.Stage$ = Stage$;
|
|
1973
|
+
exports.StartEngagement$ = StartEngagement$;
|
|
1835
1974
|
exports.StartEngagementCommand = StartEngagementCommand;
|
|
1975
|
+
exports.StartEngagementRequest$ = StartEngagementRequest$;
|
|
1976
|
+
exports.StartEngagementResult$ = StartEngagementResult$;
|
|
1977
|
+
exports.StopEngagement$ = StopEngagement$;
|
|
1836
1978
|
exports.StopEngagementCommand = StopEngagementCommand;
|
|
1979
|
+
exports.StopEngagementRequest$ = StopEngagementRequest$;
|
|
1980
|
+
exports.StopEngagementResult$ = StopEngagementResult$;
|
|
1981
|
+
exports.Tag$ = Tag$;
|
|
1982
|
+
exports.TagResource$ = TagResource$;
|
|
1837
1983
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1838
|
-
exports.
|
|
1984
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1985
|
+
exports.TagResourceResult$ = TagResourceResult$;
|
|
1986
|
+
exports.Target$ = Target$;
|
|
1987
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1988
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1989
|
+
exports.TimeRange$ = TimeRange$;
|
|
1990
|
+
exports.UntagResource$ = UntagResource$;
|
|
1839
1991
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1992
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1993
|
+
exports.UntagResourceResult$ = UntagResourceResult$;
|
|
1994
|
+
exports.UpdateContact$ = UpdateContact$;
|
|
1995
|
+
exports.UpdateContactChannel$ = UpdateContactChannel$;
|
|
1840
1996
|
exports.UpdateContactChannelCommand = UpdateContactChannelCommand;
|
|
1997
|
+
exports.UpdateContactChannelRequest$ = UpdateContactChannelRequest$;
|
|
1998
|
+
exports.UpdateContactChannelResult$ = UpdateContactChannelResult$;
|
|
1841
1999
|
exports.UpdateContactCommand = UpdateContactCommand;
|
|
2000
|
+
exports.UpdateContactRequest$ = UpdateContactRequest$;
|
|
2001
|
+
exports.UpdateContactResult$ = UpdateContactResult$;
|
|
2002
|
+
exports.UpdateRotation$ = UpdateRotation$;
|
|
1842
2003
|
exports.UpdateRotationCommand = UpdateRotationCommand;
|
|
1843
|
-
exports.
|
|
2004
|
+
exports.UpdateRotationRequest$ = UpdateRotationRequest$;
|
|
2005
|
+
exports.UpdateRotationResult$ = UpdateRotationResult$;
|
|
2006
|
+
exports.ValidationException = ValidationException;
|
|
2007
|
+
exports.ValidationException$ = ValidationException$;
|
|
2008
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1844
2009
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2010
|
+
exports.WeeklySetting$ = WeeklySetting$;
|
|
1845
2011
|
exports.paginateListContactChannels = paginateListContactChannels;
|
|
1846
2012
|
exports.paginateListContacts = paginateListContacts;
|
|
1847
2013
|
exports.paginateListEngagements = paginateListEngagements;
|