@aws-sdk/client-notifications 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 +514 -355
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateChannelCommand.js +2 -2
- package/dist-es/commands/AssociateManagedNotificationAccountContactCommand.js +2 -2
- package/dist-es/commands/AssociateManagedNotificationAdditionalChannelCommand.js +2 -2
- package/dist-es/commands/AssociateOrganizationalUnitCommand.js +2 -2
- package/dist-es/commands/CreateEventRuleCommand.js +2 -2
- package/dist-es/commands/CreateNotificationConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteEventRuleCommand.js +2 -2
- package/dist-es/commands/DeleteNotificationConfigurationCommand.js +2 -2
- package/dist-es/commands/DeregisterNotificationHubCommand.js +2 -2
- package/dist-es/commands/DisableNotificationsAccessForOrganizationCommand.js +2 -2
- package/dist-es/commands/DisassociateChannelCommand.js +2 -2
- package/dist-es/commands/DisassociateManagedNotificationAccountContactCommand.js +2 -2
- package/dist-es/commands/DisassociateManagedNotificationAdditionalChannelCommand.js +2 -2
- package/dist-es/commands/DisassociateOrganizationalUnitCommand.js +2 -2
- package/dist-es/commands/EnableNotificationsAccessForOrganizationCommand.js +2 -2
- package/dist-es/commands/GetEventRuleCommand.js +2 -2
- package/dist-es/commands/GetManagedNotificationChildEventCommand.js +2 -2
- package/dist-es/commands/GetManagedNotificationConfigurationCommand.js +2 -2
- package/dist-es/commands/GetManagedNotificationEventCommand.js +2 -2
- package/dist-es/commands/GetNotificationConfigurationCommand.js +2 -2
- package/dist-es/commands/GetNotificationEventCommand.js +2 -2
- package/dist-es/commands/GetNotificationsAccessForOrganizationCommand.js +2 -2
- package/dist-es/commands/ListChannelsCommand.js +2 -2
- package/dist-es/commands/ListEventRulesCommand.js +2 -2
- package/dist-es/commands/ListManagedNotificationChannelAssociationsCommand.js +2 -2
- package/dist-es/commands/ListManagedNotificationChildEventsCommand.js +2 -2
- package/dist-es/commands/ListManagedNotificationConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListManagedNotificationEventsCommand.js +2 -2
- package/dist-es/commands/ListMemberAccountsCommand.js +2 -2
- package/dist-es/commands/ListNotificationConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListNotificationEventsCommand.js +2 -2
- package/dist-es/commands/ListNotificationHubsCommand.js +2 -2
- package/dist-es/commands/ListOrganizationalUnitsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RegisterNotificationHubCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateEventRuleCommand.js +2 -2
- package/dist-es/commands/UpdateNotificationConfigurationCommand.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 +307 -306
- package/dist-types/NotificationsClient.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 +159 -187
- package/dist-types/ts3.4/NotificationsClient.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 +158 -188
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -108,14 +108,14 @@ class NotificationsClient extends smithyClient.Client {
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
|
|
111
|
+
class NotificationsServiceException extends smithyClient.ServiceException {
|
|
112
112
|
constructor(options) {
|
|
113
113
|
super(options);
|
|
114
114
|
Object.setPrototypeOf(this, NotificationsServiceException.prototype);
|
|
115
115
|
}
|
|
116
|
-
}
|
|
116
|
+
}
|
|
117
117
|
|
|
118
|
-
|
|
118
|
+
class AccessDeniedException extends NotificationsServiceException {
|
|
119
119
|
name = "AccessDeniedException";
|
|
120
120
|
$fault = "client";
|
|
121
121
|
constructor(opts) {
|
|
@@ -126,8 +126,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends NotificationsS
|
|
|
126
126
|
});
|
|
127
127
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
128
128
|
}
|
|
129
|
-
}
|
|
130
|
-
|
|
129
|
+
}
|
|
130
|
+
class ConflictException extends NotificationsServiceException {
|
|
131
131
|
name = "ConflictException";
|
|
132
132
|
$fault = "client";
|
|
133
133
|
resourceId;
|
|
@@ -140,8 +140,8 @@ let ConflictException$1 = class ConflictException extends NotificationsServiceEx
|
|
|
140
140
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
141
141
|
this.resourceId = opts.resourceId;
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
|
|
143
|
+
}
|
|
144
|
+
class InternalServerException extends NotificationsServiceException {
|
|
145
145
|
name = "InternalServerException";
|
|
146
146
|
$fault = "server";
|
|
147
147
|
$retryable = {};
|
|
@@ -153,8 +153,8 @@ let InternalServerException$1 = class InternalServerException extends Notificati
|
|
|
153
153
|
});
|
|
154
154
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
155
155
|
}
|
|
156
|
-
}
|
|
157
|
-
|
|
156
|
+
}
|
|
157
|
+
class ResourceNotFoundException extends NotificationsServiceException {
|
|
158
158
|
name = "ResourceNotFoundException";
|
|
159
159
|
$fault = "client";
|
|
160
160
|
resourceId;
|
|
@@ -167,8 +167,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Notifi
|
|
|
167
167
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
168
168
|
this.resourceId = opts.resourceId;
|
|
169
169
|
}
|
|
170
|
-
}
|
|
171
|
-
|
|
170
|
+
}
|
|
171
|
+
class ServiceQuotaExceededException extends NotificationsServiceException {
|
|
172
172
|
name = "ServiceQuotaExceededException";
|
|
173
173
|
$fault = "client";
|
|
174
174
|
resourceType;
|
|
@@ -187,8 +187,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
187
187
|
this.serviceCode = opts.serviceCode;
|
|
188
188
|
this.quotaCode = opts.quotaCode;
|
|
189
189
|
}
|
|
190
|
-
}
|
|
191
|
-
|
|
190
|
+
}
|
|
191
|
+
class ThrottlingException extends NotificationsServiceException {
|
|
192
192
|
name = "ThrottlingException";
|
|
193
193
|
$fault = "client";
|
|
194
194
|
$retryable = {
|
|
@@ -208,8 +208,8 @@ let ThrottlingException$1 = class ThrottlingException extends NotificationsServi
|
|
|
208
208
|
this.quotaCode = opts.quotaCode;
|
|
209
209
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
210
210
|
}
|
|
211
|
-
}
|
|
212
|
-
|
|
211
|
+
}
|
|
212
|
+
class ValidationException extends NotificationsServiceException {
|
|
213
213
|
name = "ValidationException";
|
|
214
214
|
$fault = "client";
|
|
215
215
|
reason;
|
|
@@ -224,7 +224,7 @@ let ValidationException$1 = class ValidationException extends NotificationsServi
|
|
|
224
224
|
this.reason = opts.reason;
|
|
225
225
|
this.fieldList = opts.fieldList;
|
|
226
226
|
}
|
|
227
|
-
}
|
|
227
|
+
}
|
|
228
228
|
|
|
229
229
|
const _AC = "AssociateChannel";
|
|
230
230
|
const _ACR = "AssociateChannelRequest";
|
|
@@ -516,11 +516,11 @@ const _ty = "type";
|
|
|
516
516
|
const _u = "url";
|
|
517
517
|
const _v = "value";
|
|
518
518
|
const n0 = "com.amazonaws.notifications";
|
|
519
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
520
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
521
|
-
var AggregationDetail = [3, n0, _AD, 0, [_sD], [() => SummarizationDimensionDetails]];
|
|
522
|
-
var AggregationKey = [3, n0, _AK, 0, [_n, _v], [0, 0]];
|
|
523
|
-
var AggregationSummary = [
|
|
519
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
520
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
521
|
+
var AggregationDetail$ = [3, n0, _AD, 0, [_sD], [() => SummarizationDimensionDetails]];
|
|
522
|
+
var AggregationKey$ = [3, n0, _AK, 0, [_n, _v], [0, 0]];
|
|
523
|
+
var AggregationSummary$ = [
|
|
524
524
|
3,
|
|
525
525
|
n0,
|
|
526
526
|
_AS,
|
|
@@ -529,15 +529,15 @@ var AggregationSummary = [
|
|
|
529
529
|
[
|
|
530
530
|
1,
|
|
531
531
|
() => AggregationKeys,
|
|
532
|
-
() => SummarizationDimensionOverview
|
|
533
|
-
() => SummarizationDimensionOverview
|
|
534
|
-
() => SummarizationDimensionOverview
|
|
532
|
+
() => SummarizationDimensionOverview$,
|
|
533
|
+
() => SummarizationDimensionOverview$,
|
|
534
|
+
() => SummarizationDimensionOverview$,
|
|
535
535
|
() => SummarizationDimensionOverviews,
|
|
536
536
|
],
|
|
537
537
|
];
|
|
538
|
-
var AssociateChannelRequest = [3, n0, _ACR, 0, [_a, _nCA], [[0, 1], 0]];
|
|
539
|
-
var AssociateChannelResponse = [3, n0, _ACRs, 0, [], []];
|
|
540
|
-
var AssociateManagedNotificationAccountContactRequest = [
|
|
538
|
+
var AssociateChannelRequest$ = [3, n0, _ACR, 0, [_a, _nCA], [[0, 1], 0]];
|
|
539
|
+
var AssociateChannelResponse$ = [3, n0, _ACRs, 0, [], []];
|
|
540
|
+
var AssociateManagedNotificationAccountContactRequest$ = [
|
|
541
541
|
3,
|
|
542
542
|
n0,
|
|
543
543
|
_AMNACR,
|
|
@@ -545,8 +545,8 @@ var AssociateManagedNotificationAccountContactRequest = [
|
|
|
545
545
|
[_cI, _mNCA],
|
|
546
546
|
[[0, 1], 0],
|
|
547
547
|
];
|
|
548
|
-
var AssociateManagedNotificationAccountContactResponse = [3, n0, _AMNACRs, 0, [], []];
|
|
549
|
-
var AssociateManagedNotificationAdditionalChannelRequest = [
|
|
548
|
+
var AssociateManagedNotificationAccountContactResponse$ = [3, n0, _AMNACRs, 0, [], []];
|
|
549
|
+
var AssociateManagedNotificationAdditionalChannelRequest$ = [
|
|
550
550
|
3,
|
|
551
551
|
n0,
|
|
552
552
|
_AMNACRss,
|
|
@@ -554,7 +554,7 @@ var AssociateManagedNotificationAdditionalChannelRequest = [
|
|
|
554
554
|
[_cA, _mNCA],
|
|
555
555
|
[[0, 1], 0],
|
|
556
556
|
];
|
|
557
|
-
var AssociateManagedNotificationAdditionalChannelResponse = [
|
|
557
|
+
var AssociateManagedNotificationAdditionalChannelResponse$ = [
|
|
558
558
|
3,
|
|
559
559
|
n0,
|
|
560
560
|
_AMNACRsso,
|
|
@@ -562,11 +562,11 @@ var AssociateManagedNotificationAdditionalChannelResponse = [
|
|
|
562
562
|
[],
|
|
563
563
|
[],
|
|
564
564
|
];
|
|
565
|
-
var AssociateOrganizationalUnitRequest = [3, n0, _AOUR, 0, [_oUI, _nCA], [[0, 1], 0]];
|
|
566
|
-
var AssociateOrganizationalUnitResponse = [3, n0, _AOURs, 0, [], []];
|
|
567
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI], [0, 0]];
|
|
568
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
569
|
-
var CreateEventRuleRequest = [
|
|
565
|
+
var AssociateOrganizationalUnitRequest$ = [3, n0, _AOUR, 0, [_oUI, _nCA], [[0, 1], 0]];
|
|
566
|
+
var AssociateOrganizationalUnitResponse$ = [3, n0, _AOURs, 0, [], []];
|
|
567
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI], [0, 0]];
|
|
568
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
569
|
+
var CreateEventRuleRequest$ = [
|
|
570
570
|
3,
|
|
571
571
|
n0,
|
|
572
572
|
_CERR,
|
|
@@ -574,7 +574,7 @@ var CreateEventRuleRequest = [
|
|
|
574
574
|
[_nCA, _s, _eT, _eP, _r],
|
|
575
575
|
[0, 0, 0, 0, 64 | 0],
|
|
576
576
|
];
|
|
577
|
-
var CreateEventRuleResponse = [
|
|
577
|
+
var CreateEventRuleResponse$ = [
|
|
578
578
|
3,
|
|
579
579
|
n0,
|
|
580
580
|
_CERRr,
|
|
@@ -582,7 +582,7 @@ var CreateEventRuleResponse = [
|
|
|
582
582
|
[_a, _nCA, _sSBR],
|
|
583
583
|
[0, 0, () => StatusSummaryByRegion],
|
|
584
584
|
];
|
|
585
|
-
var CreateNotificationConfigurationRequest = [
|
|
585
|
+
var CreateNotificationConfigurationRequest$ = [
|
|
586
586
|
3,
|
|
587
587
|
n0,
|
|
588
588
|
_CNCR,
|
|
@@ -590,26 +590,26 @@ var CreateNotificationConfigurationRequest = [
|
|
|
590
590
|
[_n, _d, _aD, _t],
|
|
591
591
|
[0, 0, 0, 128 | 0],
|
|
592
592
|
];
|
|
593
|
-
var CreateNotificationConfigurationResponse = [3, n0, _CNCRr, 0, [_a, _st], [0, 0]];
|
|
594
|
-
var DeleteEventRuleRequest = [3, n0, _DERR, 0, [_a], [[0, 1]]];
|
|
595
|
-
var DeleteEventRuleResponse = [3, n0, _DERRe, 0, [], []];
|
|
596
|
-
var DeleteNotificationConfigurationRequest = [3, n0, _DNCR, 0, [_a], [[0, 1]]];
|
|
597
|
-
var DeleteNotificationConfigurationResponse = [3, n0, _DNCRe, 0, [], []];
|
|
598
|
-
var DeregisterNotificationHubRequest = [3, n0, _DNHR, 0, [_nHR], [[0, 1]]];
|
|
599
|
-
var DeregisterNotificationHubResponse = [
|
|
593
|
+
var CreateNotificationConfigurationResponse$ = [3, n0, _CNCRr, 0, [_a, _st], [0, 0]];
|
|
594
|
+
var DeleteEventRuleRequest$ = [3, n0, _DERR, 0, [_a], [[0, 1]]];
|
|
595
|
+
var DeleteEventRuleResponse$ = [3, n0, _DERRe, 0, [], []];
|
|
596
|
+
var DeleteNotificationConfigurationRequest$ = [3, n0, _DNCR, 0, [_a], [[0, 1]]];
|
|
597
|
+
var DeleteNotificationConfigurationResponse$ = [3, n0, _DNCRe, 0, [], []];
|
|
598
|
+
var DeregisterNotificationHubRequest$ = [3, n0, _DNHR, 0, [_nHR], [[0, 1]]];
|
|
599
|
+
var DeregisterNotificationHubResponse$ = [
|
|
600
600
|
3,
|
|
601
601
|
n0,
|
|
602
602
|
_DNHRe,
|
|
603
603
|
0,
|
|
604
604
|
[_nHR, _sS],
|
|
605
|
-
[0, () => NotificationHubStatusSummary],
|
|
606
|
-
];
|
|
607
|
-
var Dimension = [3, n0, _D, 0, [_n, _v], [0, 0]];
|
|
608
|
-
var DisableNotificationsAccessForOrganizationRequest = [3, n0, _DNAFOR, 0, [], []];
|
|
609
|
-
var DisableNotificationsAccessForOrganizationResponse = [3, n0, _DNAFORi, 0, [], []];
|
|
610
|
-
var DisassociateChannelRequest = [3, n0, _DCR, 0, [_a, _nCA], [[0, 1], 0]];
|
|
611
|
-
var DisassociateChannelResponse = [3, n0, _DCRi, 0, [], []];
|
|
612
|
-
var DisassociateManagedNotificationAccountContactRequest = [
|
|
605
|
+
[0, () => NotificationHubStatusSummary$],
|
|
606
|
+
];
|
|
607
|
+
var Dimension$ = [3, n0, _D, 0, [_n, _v], [0, 0]];
|
|
608
|
+
var DisableNotificationsAccessForOrganizationRequest$ = [3, n0, _DNAFOR, 0, [], []];
|
|
609
|
+
var DisableNotificationsAccessForOrganizationResponse$ = [3, n0, _DNAFORi, 0, [], []];
|
|
610
|
+
var DisassociateChannelRequest$ = [3, n0, _DCR, 0, [_a, _nCA], [[0, 1], 0]];
|
|
611
|
+
var DisassociateChannelResponse$ = [3, n0, _DCRi, 0, [], []];
|
|
612
|
+
var DisassociateManagedNotificationAccountContactRequest$ = [
|
|
613
613
|
3,
|
|
614
614
|
n0,
|
|
615
615
|
_DMNACR,
|
|
@@ -617,8 +617,8 @@ var DisassociateManagedNotificationAccountContactRequest = [
|
|
|
617
617
|
[_cI, _mNCA],
|
|
618
618
|
[[0, 1], 0],
|
|
619
619
|
];
|
|
620
|
-
var DisassociateManagedNotificationAccountContactResponse = [3, n0, _DMNACRi, 0, [], []];
|
|
621
|
-
var DisassociateManagedNotificationAdditionalChannelRequest = [
|
|
620
|
+
var DisassociateManagedNotificationAccountContactResponse$ = [3, n0, _DMNACRi, 0, [], []];
|
|
621
|
+
var DisassociateManagedNotificationAdditionalChannelRequest$ = [
|
|
622
622
|
3,
|
|
623
623
|
n0,
|
|
624
624
|
_DMNACRis,
|
|
@@ -626,7 +626,7 @@ var DisassociateManagedNotificationAdditionalChannelRequest = [
|
|
|
626
626
|
[_cA, _mNCA],
|
|
627
627
|
[[0, 1], 0],
|
|
628
628
|
];
|
|
629
|
-
var DisassociateManagedNotificationAdditionalChannelResponse = [
|
|
629
|
+
var DisassociateManagedNotificationAdditionalChannelResponse$ = [
|
|
630
630
|
3,
|
|
631
631
|
n0,
|
|
632
632
|
_DMNACRisa,
|
|
@@ -634,12 +634,12 @@ var DisassociateManagedNotificationAdditionalChannelResponse = [
|
|
|
634
634
|
[],
|
|
635
635
|
[],
|
|
636
636
|
];
|
|
637
|
-
var DisassociateOrganizationalUnitRequest = [3, n0, _DOUR, 0, [_oUI, _nCA], [[0, 1], 0]];
|
|
638
|
-
var DisassociateOrganizationalUnitResponse = [3, n0, _DOURi, 0, [], []];
|
|
639
|
-
var EnableNotificationsAccessForOrganizationRequest = [3, n0, _ENAFOR, 0, [], []];
|
|
640
|
-
var EnableNotificationsAccessForOrganizationResponse = [3, n0, _ENAFORn, 0, [], []];
|
|
641
|
-
var EventRuleStatusSummary = [3, n0, _ERSS, 0, [_st, _re], [0, 0]];
|
|
642
|
-
var EventRuleStructure = [
|
|
637
|
+
var DisassociateOrganizationalUnitRequest$ = [3, n0, _DOUR, 0, [_oUI, _nCA], [[0, 1], 0]];
|
|
638
|
+
var DisassociateOrganizationalUnitResponse$ = [3, n0, _DOURi, 0, [], []];
|
|
639
|
+
var EnableNotificationsAccessForOrganizationRequest$ = [3, n0, _ENAFOR, 0, [], []];
|
|
640
|
+
var EnableNotificationsAccessForOrganizationResponse$ = [3, n0, _ENAFORn, 0, [], []];
|
|
641
|
+
var EventRuleStatusSummary$ = [3, n0, _ERSS, 0, [_st, _re], [0, 0]];
|
|
642
|
+
var EventRuleStructure$ = [
|
|
643
643
|
3,
|
|
644
644
|
n0,
|
|
645
645
|
_ERS,
|
|
@@ -647,8 +647,8 @@ var EventRuleStructure = [
|
|
|
647
647
|
[_a, _nCA, _cT, _s, _eT, _eP, _r, _mR, _sSBR],
|
|
648
648
|
[0, 0, 5, 0, 0, 0, 64 | 0, 64 | 0, () => StatusSummaryByRegion],
|
|
649
649
|
];
|
|
650
|
-
var GetEventRuleRequest = [3, n0, _GERR, 0, [_a], [[0, 1]]];
|
|
651
|
-
var GetEventRuleResponse = [
|
|
650
|
+
var GetEventRuleRequest$ = [3, n0, _GERR, 0, [_a], [[0, 1]]];
|
|
651
|
+
var GetEventRuleResponse$ = [
|
|
652
652
|
3,
|
|
653
653
|
n0,
|
|
654
654
|
_GERRe,
|
|
@@ -656,7 +656,7 @@ var GetEventRuleResponse = [
|
|
|
656
656
|
[_a, _nCA, _cT, _s, _eT, _eP, _r, _mR, _sSBR],
|
|
657
657
|
[0, 0, 5, 0, 0, 0, 64 | 0, 64 | 0, () => StatusSummaryByRegion],
|
|
658
658
|
];
|
|
659
|
-
var GetManagedNotificationChildEventRequest = [
|
|
659
|
+
var GetManagedNotificationChildEventRequest$ = [
|
|
660
660
|
3,
|
|
661
661
|
n0,
|
|
662
662
|
_GMNCER,
|
|
@@ -667,16 +667,16 @@ var GetManagedNotificationChildEventRequest = [
|
|
|
667
667
|
[0, { [_hQ]: _l }],
|
|
668
668
|
],
|
|
669
669
|
];
|
|
670
|
-
var GetManagedNotificationChildEventResponse = [
|
|
670
|
+
var GetManagedNotificationChildEventResponse$ = [
|
|
671
671
|
3,
|
|
672
672
|
n0,
|
|
673
673
|
_GMNCERe,
|
|
674
674
|
0,
|
|
675
675
|
[_a, _mNCA, _cT, _co],
|
|
676
|
-
[0, 0, 5, () => ManagedNotificationChildEvent],
|
|
676
|
+
[0, 0, 5, () => ManagedNotificationChildEvent$],
|
|
677
677
|
];
|
|
678
|
-
var GetManagedNotificationConfigurationRequest = [3, n0, _GMNCR, 0, [_a], [[0, 1]]];
|
|
679
|
-
var GetManagedNotificationConfigurationResponse = [
|
|
678
|
+
var GetManagedNotificationConfigurationRequest$ = [3, n0, _GMNCR, 0, [_a], [[0, 1]]];
|
|
679
|
+
var GetManagedNotificationConfigurationResponse$ = [
|
|
680
680
|
3,
|
|
681
681
|
n0,
|
|
682
682
|
_GMNCRe,
|
|
@@ -684,7 +684,7 @@ var GetManagedNotificationConfigurationResponse = [
|
|
|
684
684
|
[_a, _n, _d, _ca, _sC],
|
|
685
685
|
[0, 0, 0, 0, 0],
|
|
686
686
|
];
|
|
687
|
-
var GetManagedNotificationEventRequest = [
|
|
687
|
+
var GetManagedNotificationEventRequest$ = [
|
|
688
688
|
3,
|
|
689
689
|
n0,
|
|
690
690
|
_GMNER,
|
|
@@ -695,16 +695,16 @@ var GetManagedNotificationEventRequest = [
|
|
|
695
695
|
[0, { [_hQ]: _l }],
|
|
696
696
|
],
|
|
697
697
|
];
|
|
698
|
-
var GetManagedNotificationEventResponse = [
|
|
698
|
+
var GetManagedNotificationEventResponse$ = [
|
|
699
699
|
3,
|
|
700
700
|
n0,
|
|
701
701
|
_GMNERe,
|
|
702
702
|
0,
|
|
703
703
|
[_a, _mNCA, _cT, _co],
|
|
704
|
-
[0, 0, 5, () => ManagedNotificationEvent],
|
|
704
|
+
[0, 0, 5, () => ManagedNotificationEvent$],
|
|
705
705
|
];
|
|
706
|
-
var GetNotificationConfigurationRequest = [3, n0, _GNCR, 0, [_a], [[0, 1]]];
|
|
707
|
-
var GetNotificationConfigurationResponse = [
|
|
706
|
+
var GetNotificationConfigurationRequest$ = [3, n0, _GNCR, 0, [_a], [[0, 1]]];
|
|
707
|
+
var GetNotificationConfigurationResponse$ = [
|
|
708
708
|
3,
|
|
709
709
|
n0,
|
|
710
710
|
_GNCRe,
|
|
@@ -712,7 +712,7 @@ var GetNotificationConfigurationResponse = [
|
|
|
712
712
|
[_a, _n, _d, _st, _cT, _aD, _su],
|
|
713
713
|
[0, 0, 0, 0, 5, 0, 0],
|
|
714
714
|
];
|
|
715
|
-
var GetNotificationEventRequest = [
|
|
715
|
+
var GetNotificationEventRequest$ = [
|
|
716
716
|
3,
|
|
717
717
|
n0,
|
|
718
718
|
_GNER,
|
|
@@ -723,26 +723,26 @@ var GetNotificationEventRequest = [
|
|
|
723
723
|
[0, { [_hQ]: _l }],
|
|
724
724
|
],
|
|
725
725
|
];
|
|
726
|
-
var GetNotificationEventResponse = [
|
|
726
|
+
var GetNotificationEventResponse$ = [
|
|
727
727
|
3,
|
|
728
728
|
n0,
|
|
729
729
|
_GNERe,
|
|
730
730
|
0,
|
|
731
731
|
[_a, _nCA, _cT, _co],
|
|
732
|
-
[0, 0, 5, () => NotificationEventSchema],
|
|
732
|
+
[0, 0, 5, () => NotificationEventSchema$],
|
|
733
733
|
];
|
|
734
|
-
var GetNotificationsAccessForOrganizationRequest = [3, n0, _GNAFOR, 0, [], []];
|
|
735
|
-
var GetNotificationsAccessForOrganizationResponse = [
|
|
734
|
+
var GetNotificationsAccessForOrganizationRequest$ = [3, n0, _GNAFOR, 0, [], []];
|
|
735
|
+
var GetNotificationsAccessForOrganizationResponse$ = [
|
|
736
736
|
3,
|
|
737
737
|
n0,
|
|
738
738
|
_GNAFORe,
|
|
739
739
|
0,
|
|
740
740
|
[_nAFO],
|
|
741
|
-
[() => NotificationsAccessForOrganization],
|
|
741
|
+
[() => NotificationsAccessForOrganization$],
|
|
742
742
|
];
|
|
743
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
744
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
745
|
-
var ListChannelsRequest = [
|
|
743
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
744
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
745
|
+
var ListChannelsRequest$ = [
|
|
746
746
|
3,
|
|
747
747
|
n0,
|
|
748
748
|
_LCR,
|
|
@@ -754,8 +754,8 @@ var ListChannelsRequest = [
|
|
|
754
754
|
[0, { [_hQ]: _nT }],
|
|
755
755
|
],
|
|
756
756
|
];
|
|
757
|
-
var ListChannelsResponse = [3, n0, _LCRi, 0, [_nT, _ch], [0, 64 | 0]];
|
|
758
|
-
var ListEventRulesRequest = [
|
|
757
|
+
var ListChannelsResponse$ = [3, n0, _LCRi, 0, [_nT, _ch], [0, 64 | 0]];
|
|
758
|
+
var ListEventRulesRequest$ = [
|
|
759
759
|
3,
|
|
760
760
|
n0,
|
|
761
761
|
_LERR,
|
|
@@ -767,8 +767,8 @@ var ListEventRulesRequest = [
|
|
|
767
767
|
[0, { [_hQ]: _nT }],
|
|
768
768
|
],
|
|
769
769
|
];
|
|
770
|
-
var ListEventRulesResponse = [3, n0, _LERRi, 0, [_nT, _eR], [0, () => EventRules]];
|
|
771
|
-
var ListManagedNotificationChannelAssociationsRequest = [
|
|
770
|
+
var ListEventRulesResponse$ = [3, n0, _LERRi, 0, [_nT, _eR], [0, () => EventRules]];
|
|
771
|
+
var ListManagedNotificationChannelAssociationsRequest$ = [
|
|
772
772
|
3,
|
|
773
773
|
n0,
|
|
774
774
|
_LMNCAR,
|
|
@@ -780,7 +780,7 @@ var ListManagedNotificationChannelAssociationsRequest = [
|
|
|
780
780
|
[0, { [_hQ]: _nT }],
|
|
781
781
|
],
|
|
782
782
|
];
|
|
783
|
-
var ListManagedNotificationChannelAssociationsResponse = [
|
|
783
|
+
var ListManagedNotificationChannelAssociationsResponse$ = [
|
|
784
784
|
3,
|
|
785
785
|
n0,
|
|
786
786
|
_LMNCARi,
|
|
@@ -788,7 +788,7 @@ var ListManagedNotificationChannelAssociationsResponse = [
|
|
|
788
788
|
[_nT, _cAh],
|
|
789
789
|
[0, () => ManagedNotificationChannelAssociations],
|
|
790
790
|
];
|
|
791
|
-
var ListManagedNotificationChildEventsRequest = [
|
|
791
|
+
var ListManagedNotificationChildEventsRequest$ = [
|
|
792
792
|
3,
|
|
793
793
|
n0,
|
|
794
794
|
_LMNCER,
|
|
@@ -805,7 +805,7 @@ var ListManagedNotificationChildEventsRequest = [
|
|
|
805
805
|
[0, { [_hQ]: _nT }],
|
|
806
806
|
],
|
|
807
807
|
];
|
|
808
|
-
var ListManagedNotificationChildEventsResponse = [
|
|
808
|
+
var ListManagedNotificationChildEventsResponse$ = [
|
|
809
809
|
3,
|
|
810
810
|
n0,
|
|
811
811
|
_LMNCERi,
|
|
@@ -813,7 +813,7 @@ var ListManagedNotificationChildEventsResponse = [
|
|
|
813
813
|
[_nT, _mNCE],
|
|
814
814
|
[0, () => ManagedNotificationChildEvents],
|
|
815
815
|
];
|
|
816
|
-
var ListManagedNotificationConfigurationsRequest = [
|
|
816
|
+
var ListManagedNotificationConfigurationsRequest$ = [
|
|
817
817
|
3,
|
|
818
818
|
n0,
|
|
819
819
|
_LMNCR,
|
|
@@ -825,7 +825,7 @@ var ListManagedNotificationConfigurationsRequest = [
|
|
|
825
825
|
[0, { [_hQ]: _nT }],
|
|
826
826
|
],
|
|
827
827
|
];
|
|
828
|
-
var ListManagedNotificationConfigurationsResponse = [
|
|
828
|
+
var ListManagedNotificationConfigurationsResponse$ = [
|
|
829
829
|
3,
|
|
830
830
|
n0,
|
|
831
831
|
_LMNCRi,
|
|
@@ -833,7 +833,7 @@ var ListManagedNotificationConfigurationsResponse = [
|
|
|
833
833
|
[_nT, _mNC],
|
|
834
834
|
[0, () => ManagedNotificationConfigurations],
|
|
835
835
|
];
|
|
836
|
-
var ListManagedNotificationEventsRequest = [
|
|
836
|
+
var ListManagedNotificationEventsRequest$ = [
|
|
837
837
|
3,
|
|
838
838
|
n0,
|
|
839
839
|
_LMNER,
|
|
@@ -850,7 +850,7 @@ var ListManagedNotificationEventsRequest = [
|
|
|
850
850
|
[0, { [_hQ]: _rA }],
|
|
851
851
|
],
|
|
852
852
|
];
|
|
853
|
-
var ListManagedNotificationEventsResponse = [
|
|
853
|
+
var ListManagedNotificationEventsResponse$ = [
|
|
854
854
|
3,
|
|
855
855
|
n0,
|
|
856
856
|
_LMNERi,
|
|
@@ -858,7 +858,7 @@ var ListManagedNotificationEventsResponse = [
|
|
|
858
858
|
[_nT, _mNE],
|
|
859
859
|
[0, () => ManagedNotificationEvents],
|
|
860
860
|
];
|
|
861
|
-
var ListMemberAccountsRequest = [
|
|
861
|
+
var ListMemberAccountsRequest$ = [
|
|
862
862
|
3,
|
|
863
863
|
n0,
|
|
864
864
|
_LMAR,
|
|
@@ -873,7 +873,7 @@ var ListMemberAccountsRequest = [
|
|
|
873
873
|
[0, { [_hQ]: _oUI }],
|
|
874
874
|
],
|
|
875
875
|
];
|
|
876
|
-
var ListMemberAccountsResponse = [
|
|
876
|
+
var ListMemberAccountsResponse$ = [
|
|
877
877
|
3,
|
|
878
878
|
n0,
|
|
879
879
|
_LMARi,
|
|
@@ -881,7 +881,7 @@ var ListMemberAccountsResponse = [
|
|
|
881
881
|
[_mAe, _nT],
|
|
882
882
|
[() => MemberAccounts, 0],
|
|
883
883
|
];
|
|
884
|
-
var ListNotificationConfigurationsRequest = [
|
|
884
|
+
var ListNotificationConfigurationsRequest$ = [
|
|
885
885
|
3,
|
|
886
886
|
n0,
|
|
887
887
|
_LNCR,
|
|
@@ -896,7 +896,7 @@ var ListNotificationConfigurationsRequest = [
|
|
|
896
896
|
[0, { [_hQ]: _nT }],
|
|
897
897
|
],
|
|
898
898
|
];
|
|
899
|
-
var ListNotificationConfigurationsResponse = [
|
|
899
|
+
var ListNotificationConfigurationsResponse$ = [
|
|
900
900
|
3,
|
|
901
901
|
n0,
|
|
902
902
|
_LNCRi,
|
|
@@ -904,7 +904,7 @@ var ListNotificationConfigurationsResponse = [
|
|
|
904
904
|
[_nT, _nC],
|
|
905
905
|
[0, () => NotificationConfigurations],
|
|
906
906
|
];
|
|
907
|
-
var ListNotificationEventsRequest = [
|
|
907
|
+
var ListNotificationEventsRequest$ = [
|
|
908
908
|
3,
|
|
909
909
|
n0,
|
|
910
910
|
_LNER,
|
|
@@ -922,7 +922,7 @@ var ListNotificationEventsRequest = [
|
|
|
922
922
|
[0, { [_hQ]: _oUI }],
|
|
923
923
|
],
|
|
924
924
|
];
|
|
925
|
-
var ListNotificationEventsResponse = [
|
|
925
|
+
var ListNotificationEventsResponse$ = [
|
|
926
926
|
3,
|
|
927
927
|
n0,
|
|
928
928
|
_LNERi,
|
|
@@ -930,7 +930,7 @@ var ListNotificationEventsResponse = [
|
|
|
930
930
|
[_nT, _nE],
|
|
931
931
|
[0, () => NotificationEvents],
|
|
932
932
|
];
|
|
933
|
-
var ListNotificationHubsRequest = [
|
|
933
|
+
var ListNotificationHubsRequest$ = [
|
|
934
934
|
3,
|
|
935
935
|
n0,
|
|
936
936
|
_LNHR,
|
|
@@ -941,7 +941,7 @@ var ListNotificationHubsRequest = [
|
|
|
941
941
|
[0, { [_hQ]: _nT }],
|
|
942
942
|
],
|
|
943
943
|
];
|
|
944
|
-
var ListNotificationHubsResponse = [
|
|
944
|
+
var ListNotificationHubsResponse$ = [
|
|
945
945
|
3,
|
|
946
946
|
n0,
|
|
947
947
|
_LNHRi,
|
|
@@ -949,7 +949,7 @@ var ListNotificationHubsResponse = [
|
|
|
949
949
|
[_nH, _nT],
|
|
950
950
|
[() => NotificationHubs, 0],
|
|
951
951
|
];
|
|
952
|
-
var ListOrganizationalUnitsRequest = [
|
|
952
|
+
var ListOrganizationalUnitsRequest$ = [
|
|
953
953
|
3,
|
|
954
954
|
n0,
|
|
955
955
|
_LOUR,
|
|
@@ -961,10 +961,10 @@ var ListOrganizationalUnitsRequest = [
|
|
|
961
961
|
[0, { [_hQ]: _nT }],
|
|
962
962
|
],
|
|
963
963
|
];
|
|
964
|
-
var ListOrganizationalUnitsResponse = [3, n0, _LOURi, 0, [_oU, _nT], [64 | 0, 0]];
|
|
965
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_a], [[0, 1]]];
|
|
966
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
967
|
-
var ManagedNotificationChannelAssociationSummary = [
|
|
964
|
+
var ListOrganizationalUnitsResponse$ = [3, n0, _LOURi, 0, [_oU, _nT], [64 | 0, 0]];
|
|
965
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_a], [[0, 1]]];
|
|
966
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
967
|
+
var ManagedNotificationChannelAssociationSummary$ = [
|
|
968
968
|
3,
|
|
969
969
|
n0,
|
|
970
970
|
_MNCAS,
|
|
@@ -972,31 +972,31 @@ var ManagedNotificationChannelAssociationSummary = [
|
|
|
972
972
|
[_cIh, _cTh, _oO],
|
|
973
973
|
[0, 0, 0],
|
|
974
974
|
];
|
|
975
|
-
var ManagedNotificationChildEvent = [
|
|
975
|
+
var ManagedNotificationChildEvent$ = [
|
|
976
976
|
3,
|
|
977
977
|
n0,
|
|
978
978
|
_MNCE,
|
|
979
979
|
0,
|
|
980
980
|
[_sV, _i, _mC, _sEDU, _sEDUDT, _nTo, _eS, _aMNEA, _sT, _eTn, _tP, _oUI, _aDg],
|
|
981
|
-
[0, 0, () => MessageComponents
|
|
981
|
+
[0, 0, () => MessageComponents$, 0, 0, 0, 0, 0, 5, 5, () => TextParts, 0, () => AggregationDetail$],
|
|
982
982
|
];
|
|
983
|
-
var ManagedNotificationChildEventOverview = [
|
|
983
|
+
var ManagedNotificationChildEventOverview$ = [
|
|
984
984
|
3,
|
|
985
985
|
n0,
|
|
986
986
|
_MNCEO,
|
|
987
987
|
0,
|
|
988
988
|
[_a, _mNCA, _rA, _cT, _cE, _aMNEA, _oUI],
|
|
989
|
-
[0, 0, 0, 5, () => ManagedNotificationChildEventSummary
|
|
989
|
+
[0, 0, 0, 5, () => ManagedNotificationChildEventSummary$, 0, 0],
|
|
990
990
|
];
|
|
991
|
-
var ManagedNotificationChildEventSummary = [
|
|
991
|
+
var ManagedNotificationChildEventSummary$ = [
|
|
992
992
|
3,
|
|
993
993
|
n0,
|
|
994
994
|
_MNCES,
|
|
995
995
|
0,
|
|
996
996
|
[_sV, _sEM, _mC, _aDg, _eS, _nTo],
|
|
997
|
-
[0, () => ManagedSourceEventMetadataSummary
|
|
997
|
+
[0, () => ManagedSourceEventMetadataSummary$, () => MessageComponentsSummary$, () => AggregationDetail$, 0, 0],
|
|
998
998
|
];
|
|
999
|
-
var ManagedNotificationConfigurationStructure = [
|
|
999
|
+
var ManagedNotificationConfigurationStructure$ = [
|
|
1000
1000
|
3,
|
|
1001
1001
|
n0,
|
|
1002
1002
|
_MNCS,
|
|
@@ -1004,36 +1004,43 @@ var ManagedNotificationConfigurationStructure = [
|
|
|
1004
1004
|
[_a, _n, _d],
|
|
1005
1005
|
[0, 0, 0],
|
|
1006
1006
|
];
|
|
1007
|
-
var ManagedNotificationEvent = [
|
|
1007
|
+
var ManagedNotificationEvent$ = [
|
|
1008
1008
|
3,
|
|
1009
1009
|
n0,
|
|
1010
1010
|
_MNE,
|
|
1011
1011
|
0,
|
|
1012
1012
|
[_sV, _i, _mC, _sEDU, _sEDUDT, _nTo, _eS, _aET, _aS, _sT, _eTn, _tP, _oUI],
|
|
1013
|
-
[0, 0, () => MessageComponents
|
|
1013
|
+
[0, 0, () => MessageComponents$, 0, 0, 0, 0, 0, () => AggregationSummary$, 5, 5, () => TextParts, 0],
|
|
1014
1014
|
];
|
|
1015
|
-
var ManagedNotificationEventOverview = [
|
|
1015
|
+
var ManagedNotificationEventOverview$ = [
|
|
1016
1016
|
3,
|
|
1017
1017
|
n0,
|
|
1018
1018
|
_MNEO,
|
|
1019
1019
|
0,
|
|
1020
1020
|
[_a, _mNCA, _rA, _cT, _nEo, _aET, _oUI, _aS, _aNR],
|
|
1021
|
-
[0, 0, 0, 5, () => ManagedNotificationEventSummary
|
|
1021
|
+
[0, 0, 0, 5, () => ManagedNotificationEventSummary$, 0, 0, () => AggregationSummary$, 64 | 0],
|
|
1022
1022
|
];
|
|
1023
|
-
var ManagedNotificationEventSummary = [
|
|
1023
|
+
var ManagedNotificationEventSummary$ = [
|
|
1024
1024
|
3,
|
|
1025
1025
|
n0,
|
|
1026
1026
|
_MNES,
|
|
1027
1027
|
0,
|
|
1028
1028
|
[_sV, _sEM, _mC, _eS, _nTo],
|
|
1029
|
-
[0, () => ManagedSourceEventMetadataSummary
|
|
1030
|
-
];
|
|
1031
|
-
var ManagedSourceEventMetadataSummary = [3, n0, _MSEMS, 0, [_eOR, _s, _eT], [0, 0, 0]];
|
|
1032
|
-
var MediaElement = [3, n0, _ME, 0, [_mI, _ty, _u, _cap], [0, 0, 0, 0]];
|
|
1033
|
-
var MemberAccount = [3, n0, _MA, 0, [_nCA, _aI, _st, _sR, _oUI], [0, 0, 0, 0, 0]];
|
|
1034
|
-
var MessageComponents = [
|
|
1035
|
-
|
|
1036
|
-
|
|
1029
|
+
[0, () => ManagedSourceEventMetadataSummary$, () => MessageComponentsSummary$, 0, 0],
|
|
1030
|
+
];
|
|
1031
|
+
var ManagedSourceEventMetadataSummary$ = [3, n0, _MSEMS, 0, [_eOR, _s, _eT], [0, 0, 0]];
|
|
1032
|
+
var MediaElement$ = [3, n0, _ME, 0, [_mI, _ty, _u, _cap], [0, 0, 0, 0]];
|
|
1033
|
+
var MemberAccount$ = [3, n0, _MA, 0, [_nCA, _aI, _st, _sR, _oUI], [0, 0, 0, 0, 0]];
|
|
1034
|
+
var MessageComponents$ = [
|
|
1035
|
+
3,
|
|
1036
|
+
n0,
|
|
1037
|
+
_MC,
|
|
1038
|
+
0,
|
|
1039
|
+
[_h, _pS, _cD, _di],
|
|
1040
|
+
[0, 0, 0, () => Dimensions],
|
|
1041
|
+
];
|
|
1042
|
+
var MessageComponentsSummary$ = [3, n0, _MCS, 0, [_h], [0]];
|
|
1043
|
+
var NotificationConfigurationStructure$ = [
|
|
1037
1044
|
3,
|
|
1038
1045
|
n0,
|
|
1039
1046
|
_NCS,
|
|
@@ -1041,15 +1048,15 @@ var NotificationConfigurationStructure = [
|
|
|
1041
1048
|
[_a, _n, _d, _st, _cT, _aD, _su],
|
|
1042
1049
|
[0, 0, 0, 0, 5, 0, 0],
|
|
1043
1050
|
];
|
|
1044
|
-
var NotificationEventOverview = [
|
|
1051
|
+
var NotificationEventOverview$ = [
|
|
1045
1052
|
3,
|
|
1046
1053
|
n0,
|
|
1047
1054
|
_NEO,
|
|
1048
1055
|
0,
|
|
1049
1056
|
[_a, _nCA, _rA, _cT, _nEo, _aET, _aNEA, _aS, _oUI],
|
|
1050
|
-
[0, 0, 0, 5, () => NotificationEventSummary
|
|
1057
|
+
[0, 0, 0, 5, () => NotificationEventSummary$, 0, 0, () => AggregationSummary$, 0],
|
|
1051
1058
|
];
|
|
1052
|
-
var NotificationEventSchema = [
|
|
1059
|
+
var NotificationEventSchema$ = [
|
|
1053
1060
|
3,
|
|
1054
1061
|
n0,
|
|
1055
1062
|
_NES,
|
|
@@ -1058,15 +1065,15 @@ var NotificationEventSchema = [
|
|
|
1058
1065
|
[
|
|
1059
1066
|
0,
|
|
1060
1067
|
0,
|
|
1061
|
-
() => SourceEventMetadata
|
|
1062
|
-
() => MessageComponents
|
|
1068
|
+
() => SourceEventMetadata$,
|
|
1069
|
+
() => MessageComponents$,
|
|
1063
1070
|
0,
|
|
1064
1071
|
0,
|
|
1065
1072
|
0,
|
|
1066
1073
|
0,
|
|
1067
1074
|
0,
|
|
1068
1075
|
0,
|
|
1069
|
-
() => AggregationSummary
|
|
1076
|
+
() => AggregationSummary$,
|
|
1070
1077
|
5,
|
|
1071
1078
|
5,
|
|
1072
1079
|
() => TextParts,
|
|
@@ -1074,37 +1081,37 @@ var NotificationEventSchema = [
|
|
|
1074
1081
|
0,
|
|
1075
1082
|
],
|
|
1076
1083
|
];
|
|
1077
|
-
var NotificationEventSummary = [
|
|
1084
|
+
var NotificationEventSummary$ = [
|
|
1078
1085
|
3,
|
|
1079
1086
|
n0,
|
|
1080
1087
|
_NESo,
|
|
1081
1088
|
0,
|
|
1082
1089
|
[_sV, _sEM, _mC, _eS, _nTo],
|
|
1083
|
-
[0, () => SourceEventMetadataSummary
|
|
1090
|
+
[0, () => SourceEventMetadataSummary$, () => MessageComponentsSummary$, 0, 0],
|
|
1084
1091
|
];
|
|
1085
|
-
var NotificationHubOverview = [
|
|
1092
|
+
var NotificationHubOverview$ = [
|
|
1086
1093
|
3,
|
|
1087
1094
|
n0,
|
|
1088
1095
|
_NHO,
|
|
1089
1096
|
0,
|
|
1090
1097
|
[_nHR, _sS, _cT, _lAT],
|
|
1091
|
-
[0, () => NotificationHubStatusSummary
|
|
1098
|
+
[0, () => NotificationHubStatusSummary$, 5, 5],
|
|
1092
1099
|
];
|
|
1093
|
-
var NotificationHubStatusSummary = [3, n0, _NHSS, 0, [_st, _re], [0, 0]];
|
|
1094
|
-
var NotificationsAccessForOrganization = [3, n0, _NAFO, 0, [_aSc], [0]];
|
|
1095
|
-
var RegisterNotificationHubRequest = [3, n0, _RNHR, 0, [_nHR], [0]];
|
|
1096
|
-
var RegisterNotificationHubResponse = [
|
|
1100
|
+
var NotificationHubStatusSummary$ = [3, n0, _NHSS, 0, [_st, _re], [0, 0]];
|
|
1101
|
+
var NotificationsAccessForOrganization$ = [3, n0, _NAFO, 0, [_aSc], [0]];
|
|
1102
|
+
var RegisterNotificationHubRequest$ = [3, n0, _RNHR, 0, [_nHR], [0]];
|
|
1103
|
+
var RegisterNotificationHubResponse$ = [
|
|
1097
1104
|
3,
|
|
1098
1105
|
n0,
|
|
1099
1106
|
_RNHRe,
|
|
1100
1107
|
0,
|
|
1101
1108
|
[_nHR, _sS, _cT, _lAT],
|
|
1102
|
-
[0, () => NotificationHubStatusSummary
|
|
1109
|
+
[0, () => NotificationHubStatusSummary$, 5, 5],
|
|
1103
1110
|
];
|
|
1104
|
-
var Resource = [3, n0, _R, 0, [_i, _a, _dU, _t], [0, 0, 0, 64 | 0]];
|
|
1105
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m, _rI], [0, 0]];
|
|
1106
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
1107
|
-
var ServiceQuotaExceededException = [
|
|
1111
|
+
var Resource$ = [3, n0, _R, 0, [_i, _a, _dU, _t], [0, 0, 0, 64 | 0]];
|
|
1112
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m, _rI], [0, 0]];
|
|
1113
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1114
|
+
var ServiceQuotaExceededException$ = [
|
|
1108
1115
|
-3,
|
|
1109
1116
|
n0,
|
|
1110
1117
|
_SQEE,
|
|
@@ -1112,8 +1119,8 @@ var ServiceQuotaExceededException = [
|
|
|
1112
1119
|
[_m, _rT, _rI, _sCe, _qC],
|
|
1113
1120
|
[0, 0, 0, 0, 0],
|
|
1114
1121
|
];
|
|
1115
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
1116
|
-
var SourceEventMetadata = [
|
|
1122
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1123
|
+
var SourceEventMetadata$ = [
|
|
1117
1124
|
3,
|
|
1118
1125
|
n0,
|
|
1119
1126
|
_SEM,
|
|
@@ -1121,13 +1128,13 @@ var SourceEventMetadata = [
|
|
|
1121
1128
|
[_eTV, _sEI, _eOR, _rA, _s, _eOT, _eT, _rR],
|
|
1122
1129
|
[0, 0, 0, 0, 0, 5, 0, () => Resources],
|
|
1123
1130
|
];
|
|
1124
|
-
var SourceEventMetadataSummary = [3, n0, _SEMS, 0, [_eOR, _s, _eT], [0, 0, 0]];
|
|
1125
|
-
var SummarizationDimensionDetail = [3, n0, _SDD, 0, [_n, _v], [0, 0]];
|
|
1126
|
-
var SummarizationDimensionOverview = [3, n0, _SDO, 0, [_n, _cou, _sVa], [0, 1, 64 | 0]];
|
|
1127
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_a, _t], [[0, 1], 128 | 0]];
|
|
1128
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1129
|
-
var TextPartValue = [3, n0, _TPV, 0, [_ty, _dT, _tBL, _u], [0, 0, 128 | 0, 0]];
|
|
1130
|
-
var ThrottlingException = [
|
|
1131
|
+
var SourceEventMetadataSummary$ = [3, n0, _SEMS, 0, [_eOR, _s, _eT], [0, 0, 0]];
|
|
1132
|
+
var SummarizationDimensionDetail$ = [3, n0, _SDD, 0, [_n, _v], [0, 0]];
|
|
1133
|
+
var SummarizationDimensionOverview$ = [3, n0, _SDO, 0, [_n, _cou, _sVa], [0, 1, 64 | 0]];
|
|
1134
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_a, _t], [[0, 1], 128 | 0]];
|
|
1135
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
1136
|
+
var TextPartValue$ = [3, n0, _TPV, 0, [_ty, _dT, _tBL, _u], [0, 0, 128 | 0, 0]];
|
|
1137
|
+
var ThrottlingException$ = [
|
|
1131
1138
|
-3,
|
|
1132
1139
|
n0,
|
|
1133
1140
|
_TE,
|
|
@@ -1135,8 +1142,8 @@ var ThrottlingException = [
|
|
|
1135
1142
|
[_m, _sCe, _qC, _rAS],
|
|
1136
1143
|
[0, 0, 0, [1, { [_hH]: _RA }]],
|
|
1137
1144
|
];
|
|
1138
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
1139
|
-
var UntagResourceRequest = [
|
|
1145
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1146
|
+
var UntagResourceRequest$ = [
|
|
1140
1147
|
3,
|
|
1141
1148
|
n0,
|
|
1142
1149
|
_URR,
|
|
@@ -1147,9 +1154,9 @@ var UntagResourceRequest = [
|
|
|
1147
1154
|
[64 | 0, { [_hQ]: _tK }],
|
|
1148
1155
|
],
|
|
1149
1156
|
];
|
|
1150
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1151
|
-
var UpdateEventRuleRequest = [3, n0, _UERR, 0, [_a, _eP, _r], [[0, 1], 0, 64 | 0]];
|
|
1152
|
-
var UpdateEventRuleResponse = [
|
|
1157
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
1158
|
+
var UpdateEventRuleRequest$ = [3, n0, _UERR, 0, [_a, _eP, _r], [[0, 1], 0, 64 | 0]];
|
|
1159
|
+
var UpdateEventRuleResponse$ = [
|
|
1153
1160
|
3,
|
|
1154
1161
|
n0,
|
|
1155
1162
|
_UERRp,
|
|
@@ -1157,7 +1164,7 @@ var UpdateEventRuleResponse = [
|
|
|
1157
1164
|
[_a, _nCA, _sSBR],
|
|
1158
1165
|
[0, 0, () => StatusSummaryByRegion],
|
|
1159
1166
|
];
|
|
1160
|
-
var UpdateNotificationConfigurationRequest = [
|
|
1167
|
+
var UpdateNotificationConfigurationRequest$ = [
|
|
1161
1168
|
3,
|
|
1162
1169
|
n0,
|
|
1163
1170
|
_UNCR,
|
|
@@ -1165,8 +1172,8 @@ var UpdateNotificationConfigurationRequest = [
|
|
|
1165
1172
|
[_a, _n, _d, _aD],
|
|
1166
1173
|
[[0, 1], 0, 0, 0],
|
|
1167
1174
|
];
|
|
1168
|
-
var UpdateNotificationConfigurationResponse = [3, n0, _UNCRp, 0, [_a], [0]];
|
|
1169
|
-
var ValidationException = [
|
|
1175
|
+
var UpdateNotificationConfigurationResponse$ = [3, n0, _UNCRp, 0, [_a], [0]];
|
|
1176
|
+
var ValidationException$ = [
|
|
1170
1177
|
-3,
|
|
1171
1178
|
n0,
|
|
1172
1179
|
_VE,
|
|
@@ -1174,357 +1181,351 @@ var ValidationException = [
|
|
|
1174
1181
|
[_m, _re, _fL],
|
|
1175
1182
|
[0, 0, () => ValidationExceptionFieldList],
|
|
1176
1183
|
];
|
|
1177
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
1178
|
-
var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1179
|
-
var NotificationsServiceException = [-3, _sm, "NotificationsServiceException", 0, [], []];
|
|
1180
|
-
schema.TypeRegistry.for(_sm).registerError(NotificationsServiceException
|
|
1181
|
-
var AggregationKeys = [1, n0, _AKg, 0, () => AggregationKey];
|
|
1182
|
-
var Dimensions = [1, n0, _Di, 0, () => Dimension];
|
|
1183
|
-
var EventRules = [1, n0, _ER, 0, () => EventRuleStructure];
|
|
1184
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1185
|
+
var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1186
|
+
var NotificationsServiceException$ = [-3, _sm, "NotificationsServiceException", 0, [], []];
|
|
1187
|
+
schema.TypeRegistry.for(_sm).registerError(NotificationsServiceException$, NotificationsServiceException);
|
|
1188
|
+
var AggregationKeys = [1, n0, _AKg, 0, () => AggregationKey$];
|
|
1189
|
+
var Dimensions = [1, n0, _Di, 0, () => Dimension$];
|
|
1190
|
+
var EventRules = [1, n0, _ER, 0, () => EventRuleStructure$];
|
|
1184
1191
|
var ManagedNotificationChannelAssociations = [
|
|
1185
1192
|
1,
|
|
1186
1193
|
n0,
|
|
1187
1194
|
_MNCA,
|
|
1188
1195
|
0,
|
|
1189
|
-
() => ManagedNotificationChannelAssociationSummary
|
|
1190
|
-
];
|
|
1191
|
-
var ManagedNotificationChildEvents = [
|
|
1192
|
-
1,
|
|
1193
|
-
n0,
|
|
1194
|
-
_MNCEa,
|
|
1195
|
-
0,
|
|
1196
|
-
() => ManagedNotificationChildEventOverview,
|
|
1196
|
+
() => ManagedNotificationChannelAssociationSummary$,
|
|
1197
1197
|
];
|
|
1198
|
+
var ManagedNotificationChildEvents = [1, n0, _MNCEa, 0, () => ManagedNotificationChildEventOverview$];
|
|
1198
1199
|
var ManagedNotificationConfigurations = [
|
|
1199
1200
|
1,
|
|
1200
1201
|
n0,
|
|
1201
1202
|
_MNC,
|
|
1202
1203
|
0,
|
|
1203
|
-
() => ManagedNotificationConfigurationStructure
|
|
1204
|
-
];
|
|
1205
|
-
var ManagedNotificationEvents = [1, n0, _MNEa, 0, () => ManagedNotificationEventOverview];
|
|
1206
|
-
var Media = [1, n0, _M, 0, () => MediaElement];
|
|
1207
|
-
var MemberAccounts = [1, n0, _MAe, 0, () => MemberAccount];
|
|
1208
|
-
var NotificationConfigurations = [1, n0, _NC, 0, () => NotificationConfigurationStructure];
|
|
1209
|
-
var NotificationEvents = [1, n0, _NE, 0, () => NotificationEventOverview];
|
|
1210
|
-
var NotificationHubs = [1, n0, _NH, 0, () => NotificationHubOverview];
|
|
1211
|
-
var Resources = [1, n0, _Re, 0, () => Resource];
|
|
1212
|
-
var SummarizationDimensionDetails = [1, n0, _SDDu, 0, () => SummarizationDimensionDetail];
|
|
1213
|
-
var SummarizationDimensionOverviews = [1, n0, _SDOu, 0, () => SummarizationDimensionOverview];
|
|
1214
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1215
|
-
var StatusSummaryByRegion = [2, n0, _SSBR, 0, 0, () => EventRuleStatusSummary];
|
|
1216
|
-
var TextParts = [2, n0, _TP, 0, 0, () => TextPartValue];
|
|
1217
|
-
var AssociateChannel = [
|
|
1204
|
+
() => ManagedNotificationConfigurationStructure$,
|
|
1205
|
+
];
|
|
1206
|
+
var ManagedNotificationEvents = [1, n0, _MNEa, 0, () => ManagedNotificationEventOverview$];
|
|
1207
|
+
var Media = [1, n0, _M, 0, () => MediaElement$];
|
|
1208
|
+
var MemberAccounts = [1, n0, _MAe, 0, () => MemberAccount$];
|
|
1209
|
+
var NotificationConfigurations = [1, n0, _NC, 0, () => NotificationConfigurationStructure$];
|
|
1210
|
+
var NotificationEvents = [1, n0, _NE, 0, () => NotificationEventOverview$];
|
|
1211
|
+
var NotificationHubs = [1, n0, _NH, 0, () => NotificationHubOverview$];
|
|
1212
|
+
var Resources = [1, n0, _Re, 0, () => Resource$];
|
|
1213
|
+
var SummarizationDimensionDetails = [1, n0, _SDDu, 0, () => SummarizationDimensionDetail$];
|
|
1214
|
+
var SummarizationDimensionOverviews = [1, n0, _SDOu, 0, () => SummarizationDimensionOverview$];
|
|
1215
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
|
|
1216
|
+
var StatusSummaryByRegion = [2, n0, _SSBR, 0, 0, () => EventRuleStatusSummary$];
|
|
1217
|
+
var TextParts = [2, n0, _TP, 0, 0, () => TextPartValue$];
|
|
1218
|
+
var AssociateChannel$ = [
|
|
1218
1219
|
9,
|
|
1219
1220
|
n0,
|
|
1220
1221
|
_AC,
|
|
1221
1222
|
{ [_ht]: ["POST", "/channels/associate/{arn}", 201] },
|
|
1222
|
-
() => AssociateChannelRequest
|
|
1223
|
-
() => AssociateChannelResponse
|
|
1223
|
+
() => AssociateChannelRequest$,
|
|
1224
|
+
() => AssociateChannelResponse$,
|
|
1224
1225
|
];
|
|
1225
|
-
var AssociateManagedNotificationAccountContact = [
|
|
1226
|
+
var AssociateManagedNotificationAccountContact$ = [
|
|
1226
1227
|
9,
|
|
1227
1228
|
n0,
|
|
1228
1229
|
_AMNAC,
|
|
1229
1230
|
{ [_ht]: ["PUT", "/contacts/associate-managed-notification/{contactIdentifier}", 201] },
|
|
1230
|
-
() => AssociateManagedNotificationAccountContactRequest
|
|
1231
|
-
() => AssociateManagedNotificationAccountContactResponse
|
|
1231
|
+
() => AssociateManagedNotificationAccountContactRequest$,
|
|
1232
|
+
() => AssociateManagedNotificationAccountContactResponse$,
|
|
1232
1233
|
];
|
|
1233
|
-
var AssociateManagedNotificationAdditionalChannel = [
|
|
1234
|
+
var AssociateManagedNotificationAdditionalChannel$ = [
|
|
1234
1235
|
9,
|
|
1235
1236
|
n0,
|
|
1236
1237
|
_AMNACs,
|
|
1237
1238
|
{ [_ht]: ["PUT", "/channels/associate-managed-notification/{channelArn}", 201] },
|
|
1238
|
-
() => AssociateManagedNotificationAdditionalChannelRequest
|
|
1239
|
-
() => AssociateManagedNotificationAdditionalChannelResponse
|
|
1239
|
+
() => AssociateManagedNotificationAdditionalChannelRequest$,
|
|
1240
|
+
() => AssociateManagedNotificationAdditionalChannelResponse$,
|
|
1240
1241
|
];
|
|
1241
|
-
var AssociateOrganizationalUnit = [
|
|
1242
|
+
var AssociateOrganizationalUnit$ = [
|
|
1242
1243
|
9,
|
|
1243
1244
|
n0,
|
|
1244
1245
|
_AOU,
|
|
1245
1246
|
{ [_ht]: ["POST", "/organizational-units/associate/{organizationalUnitId}", 201] },
|
|
1246
|
-
() => AssociateOrganizationalUnitRequest
|
|
1247
|
-
() => AssociateOrganizationalUnitResponse
|
|
1247
|
+
() => AssociateOrganizationalUnitRequest$,
|
|
1248
|
+
() => AssociateOrganizationalUnitResponse$,
|
|
1248
1249
|
];
|
|
1249
|
-
var CreateEventRule = [
|
|
1250
|
+
var CreateEventRule$ = [
|
|
1250
1251
|
9,
|
|
1251
1252
|
n0,
|
|
1252
1253
|
_CER,
|
|
1253
1254
|
{ [_ht]: ["POST", "/event-rules", 201] },
|
|
1254
|
-
() => CreateEventRuleRequest
|
|
1255
|
-
() => CreateEventRuleResponse
|
|
1255
|
+
() => CreateEventRuleRequest$,
|
|
1256
|
+
() => CreateEventRuleResponse$,
|
|
1256
1257
|
];
|
|
1257
|
-
var CreateNotificationConfiguration = [
|
|
1258
|
+
var CreateNotificationConfiguration$ = [
|
|
1258
1259
|
9,
|
|
1259
1260
|
n0,
|
|
1260
1261
|
_CNC,
|
|
1261
1262
|
{ [_ht]: ["POST", "/notification-configurations", 201] },
|
|
1262
|
-
() => CreateNotificationConfigurationRequest
|
|
1263
|
-
() => CreateNotificationConfigurationResponse
|
|
1263
|
+
() => CreateNotificationConfigurationRequest$,
|
|
1264
|
+
() => CreateNotificationConfigurationResponse$,
|
|
1264
1265
|
];
|
|
1265
|
-
var DeleteEventRule = [
|
|
1266
|
+
var DeleteEventRule$ = [
|
|
1266
1267
|
9,
|
|
1267
1268
|
n0,
|
|
1268
1269
|
_DER,
|
|
1269
1270
|
{ [_ht]: ["DELETE", "/event-rules/{arn}", 200] },
|
|
1270
|
-
() => DeleteEventRuleRequest
|
|
1271
|
-
() => DeleteEventRuleResponse
|
|
1271
|
+
() => DeleteEventRuleRequest$,
|
|
1272
|
+
() => DeleteEventRuleResponse$,
|
|
1272
1273
|
];
|
|
1273
|
-
var DeleteNotificationConfiguration = [
|
|
1274
|
+
var DeleteNotificationConfiguration$ = [
|
|
1274
1275
|
9,
|
|
1275
1276
|
n0,
|
|
1276
1277
|
_DNC,
|
|
1277
1278
|
{ [_ht]: ["DELETE", "/notification-configurations/{arn}", 200] },
|
|
1278
|
-
() => DeleteNotificationConfigurationRequest
|
|
1279
|
-
() => DeleteNotificationConfigurationResponse
|
|
1279
|
+
() => DeleteNotificationConfigurationRequest$,
|
|
1280
|
+
() => DeleteNotificationConfigurationResponse$,
|
|
1280
1281
|
];
|
|
1281
|
-
var DeregisterNotificationHub = [
|
|
1282
|
+
var DeregisterNotificationHub$ = [
|
|
1282
1283
|
9,
|
|
1283
1284
|
n0,
|
|
1284
1285
|
_DNH,
|
|
1285
1286
|
{ [_ht]: ["DELETE", "/notification-hubs/{notificationHubRegion}", 200] },
|
|
1286
|
-
() => DeregisterNotificationHubRequest
|
|
1287
|
-
() => DeregisterNotificationHubResponse
|
|
1287
|
+
() => DeregisterNotificationHubRequest$,
|
|
1288
|
+
() => DeregisterNotificationHubResponse$,
|
|
1288
1289
|
];
|
|
1289
|
-
var DisableNotificationsAccessForOrganization = [
|
|
1290
|
+
var DisableNotificationsAccessForOrganization$ = [
|
|
1290
1291
|
9,
|
|
1291
1292
|
n0,
|
|
1292
1293
|
_DNAFO,
|
|
1293
1294
|
{ [_ht]: ["DELETE", "/organization/access", 200] },
|
|
1294
|
-
() => DisableNotificationsAccessForOrganizationRequest
|
|
1295
|
-
() => DisableNotificationsAccessForOrganizationResponse
|
|
1295
|
+
() => DisableNotificationsAccessForOrganizationRequest$,
|
|
1296
|
+
() => DisableNotificationsAccessForOrganizationResponse$,
|
|
1296
1297
|
];
|
|
1297
|
-
var DisassociateChannel = [
|
|
1298
|
+
var DisassociateChannel$ = [
|
|
1298
1299
|
9,
|
|
1299
1300
|
n0,
|
|
1300
1301
|
_DC,
|
|
1301
1302
|
{ [_ht]: ["POST", "/channels/disassociate/{arn}", 200] },
|
|
1302
|
-
() => DisassociateChannelRequest
|
|
1303
|
-
() => DisassociateChannelResponse
|
|
1303
|
+
() => DisassociateChannelRequest$,
|
|
1304
|
+
() => DisassociateChannelResponse$,
|
|
1304
1305
|
];
|
|
1305
|
-
var DisassociateManagedNotificationAccountContact = [
|
|
1306
|
+
var DisassociateManagedNotificationAccountContact$ = [
|
|
1306
1307
|
9,
|
|
1307
1308
|
n0,
|
|
1308
1309
|
_DMNAC,
|
|
1309
1310
|
{ [_ht]: ["PUT", "/contacts/disassociate-managed-notification/{contactIdentifier}", 200] },
|
|
1310
|
-
() => DisassociateManagedNotificationAccountContactRequest
|
|
1311
|
-
() => DisassociateManagedNotificationAccountContactResponse
|
|
1311
|
+
() => DisassociateManagedNotificationAccountContactRequest$,
|
|
1312
|
+
() => DisassociateManagedNotificationAccountContactResponse$,
|
|
1312
1313
|
];
|
|
1313
|
-
var DisassociateManagedNotificationAdditionalChannel = [
|
|
1314
|
+
var DisassociateManagedNotificationAdditionalChannel$ = [
|
|
1314
1315
|
9,
|
|
1315
1316
|
n0,
|
|
1316
1317
|
_DMNACi,
|
|
1317
1318
|
{ [_ht]: ["PUT", "/channels/disassociate-managed-notification/{channelArn}", 200] },
|
|
1318
|
-
() => DisassociateManagedNotificationAdditionalChannelRequest
|
|
1319
|
-
() => DisassociateManagedNotificationAdditionalChannelResponse
|
|
1319
|
+
() => DisassociateManagedNotificationAdditionalChannelRequest$,
|
|
1320
|
+
() => DisassociateManagedNotificationAdditionalChannelResponse$,
|
|
1320
1321
|
];
|
|
1321
|
-
var DisassociateOrganizationalUnit = [
|
|
1322
|
+
var DisassociateOrganizationalUnit$ = [
|
|
1322
1323
|
9,
|
|
1323
1324
|
n0,
|
|
1324
1325
|
_DOU,
|
|
1325
1326
|
{ [_ht]: ["POST", "/organizational-units/disassociate/{organizationalUnitId}", 200] },
|
|
1326
|
-
() => DisassociateOrganizationalUnitRequest
|
|
1327
|
-
() => DisassociateOrganizationalUnitResponse
|
|
1327
|
+
() => DisassociateOrganizationalUnitRequest$,
|
|
1328
|
+
() => DisassociateOrganizationalUnitResponse$,
|
|
1328
1329
|
];
|
|
1329
|
-
var EnableNotificationsAccessForOrganization = [
|
|
1330
|
+
var EnableNotificationsAccessForOrganization$ = [
|
|
1330
1331
|
9,
|
|
1331
1332
|
n0,
|
|
1332
1333
|
_ENAFO,
|
|
1333
1334
|
{ [_ht]: ["POST", "/organization/access", 200] },
|
|
1334
|
-
() => EnableNotificationsAccessForOrganizationRequest
|
|
1335
|
-
() => EnableNotificationsAccessForOrganizationResponse
|
|
1335
|
+
() => EnableNotificationsAccessForOrganizationRequest$,
|
|
1336
|
+
() => EnableNotificationsAccessForOrganizationResponse$,
|
|
1336
1337
|
];
|
|
1337
|
-
var GetEventRule = [
|
|
1338
|
+
var GetEventRule$ = [
|
|
1338
1339
|
9,
|
|
1339
1340
|
n0,
|
|
1340
1341
|
_GER,
|
|
1341
1342
|
{ [_ht]: ["GET", "/event-rules/{arn}", 200] },
|
|
1342
|
-
() => GetEventRuleRequest
|
|
1343
|
-
() => GetEventRuleResponse
|
|
1343
|
+
() => GetEventRuleRequest$,
|
|
1344
|
+
() => GetEventRuleResponse$,
|
|
1344
1345
|
];
|
|
1345
|
-
var GetManagedNotificationChildEvent = [
|
|
1346
|
+
var GetManagedNotificationChildEvent$ = [
|
|
1346
1347
|
9,
|
|
1347
1348
|
n0,
|
|
1348
1349
|
_GMNCE,
|
|
1349
1350
|
{ [_ht]: ["GET", "/managed-notification-child-events/{arn}", 200] },
|
|
1350
|
-
() => GetManagedNotificationChildEventRequest
|
|
1351
|
-
() => GetManagedNotificationChildEventResponse
|
|
1351
|
+
() => GetManagedNotificationChildEventRequest$,
|
|
1352
|
+
() => GetManagedNotificationChildEventResponse$,
|
|
1352
1353
|
];
|
|
1353
|
-
var GetManagedNotificationConfiguration = [
|
|
1354
|
+
var GetManagedNotificationConfiguration$ = [
|
|
1354
1355
|
9,
|
|
1355
1356
|
n0,
|
|
1356
1357
|
_GMNC,
|
|
1357
1358
|
{ [_ht]: ["GET", "/managed-notification-configurations/{arn}", 200] },
|
|
1358
|
-
() => GetManagedNotificationConfigurationRequest
|
|
1359
|
-
() => GetManagedNotificationConfigurationResponse
|
|
1359
|
+
() => GetManagedNotificationConfigurationRequest$,
|
|
1360
|
+
() => GetManagedNotificationConfigurationResponse$,
|
|
1360
1361
|
];
|
|
1361
|
-
var GetManagedNotificationEvent = [
|
|
1362
|
+
var GetManagedNotificationEvent$ = [
|
|
1362
1363
|
9,
|
|
1363
1364
|
n0,
|
|
1364
1365
|
_GMNE,
|
|
1365
1366
|
{ [_ht]: ["GET", "/managed-notification-events/{arn}", 200] },
|
|
1366
|
-
() => GetManagedNotificationEventRequest
|
|
1367
|
-
() => GetManagedNotificationEventResponse
|
|
1367
|
+
() => GetManagedNotificationEventRequest$,
|
|
1368
|
+
() => GetManagedNotificationEventResponse$,
|
|
1368
1369
|
];
|
|
1369
|
-
var GetNotificationConfiguration = [
|
|
1370
|
+
var GetNotificationConfiguration$ = [
|
|
1370
1371
|
9,
|
|
1371
1372
|
n0,
|
|
1372
1373
|
_GNC,
|
|
1373
1374
|
{ [_ht]: ["GET", "/notification-configurations/{arn}", 200] },
|
|
1374
|
-
() => GetNotificationConfigurationRequest
|
|
1375
|
-
() => GetNotificationConfigurationResponse
|
|
1375
|
+
() => GetNotificationConfigurationRequest$,
|
|
1376
|
+
() => GetNotificationConfigurationResponse$,
|
|
1376
1377
|
];
|
|
1377
|
-
var GetNotificationEvent = [
|
|
1378
|
+
var GetNotificationEvent$ = [
|
|
1378
1379
|
9,
|
|
1379
1380
|
n0,
|
|
1380
1381
|
_GNE,
|
|
1381
1382
|
{ [_ht]: ["GET", "/notification-events/{arn}", 200] },
|
|
1382
|
-
() => GetNotificationEventRequest
|
|
1383
|
-
() => GetNotificationEventResponse
|
|
1383
|
+
() => GetNotificationEventRequest$,
|
|
1384
|
+
() => GetNotificationEventResponse$,
|
|
1384
1385
|
];
|
|
1385
|
-
var GetNotificationsAccessForOrganization = [
|
|
1386
|
+
var GetNotificationsAccessForOrganization$ = [
|
|
1386
1387
|
9,
|
|
1387
1388
|
n0,
|
|
1388
1389
|
_GNAFO,
|
|
1389
1390
|
{ [_ht]: ["GET", "/organization/access", 200] },
|
|
1390
|
-
() => GetNotificationsAccessForOrganizationRequest
|
|
1391
|
-
() => GetNotificationsAccessForOrganizationResponse
|
|
1391
|
+
() => GetNotificationsAccessForOrganizationRequest$,
|
|
1392
|
+
() => GetNotificationsAccessForOrganizationResponse$,
|
|
1392
1393
|
];
|
|
1393
|
-
var ListChannels = [
|
|
1394
|
+
var ListChannels$ = [
|
|
1394
1395
|
9,
|
|
1395
1396
|
n0,
|
|
1396
1397
|
_LC,
|
|
1397
1398
|
{ [_ht]: ["GET", "/channels", 200] },
|
|
1398
|
-
() => ListChannelsRequest
|
|
1399
|
-
() => ListChannelsResponse
|
|
1399
|
+
() => ListChannelsRequest$,
|
|
1400
|
+
() => ListChannelsResponse$,
|
|
1400
1401
|
];
|
|
1401
|
-
var ListEventRules = [
|
|
1402
|
+
var ListEventRules$ = [
|
|
1402
1403
|
9,
|
|
1403
1404
|
n0,
|
|
1404
1405
|
_LER,
|
|
1405
1406
|
{ [_ht]: ["GET", "/event-rules", 200] },
|
|
1406
|
-
() => ListEventRulesRequest
|
|
1407
|
-
() => ListEventRulesResponse
|
|
1407
|
+
() => ListEventRulesRequest$,
|
|
1408
|
+
() => ListEventRulesResponse$,
|
|
1408
1409
|
];
|
|
1409
|
-
var ListManagedNotificationChannelAssociations = [
|
|
1410
|
+
var ListManagedNotificationChannelAssociations$ = [
|
|
1410
1411
|
9,
|
|
1411
1412
|
n0,
|
|
1412
1413
|
_LMNCA,
|
|
1413
1414
|
{ [_ht]: ["GET", "/channels/list-managed-notification-channel-associations", 200] },
|
|
1414
|
-
() => ListManagedNotificationChannelAssociationsRequest
|
|
1415
|
-
() => ListManagedNotificationChannelAssociationsResponse
|
|
1415
|
+
() => ListManagedNotificationChannelAssociationsRequest$,
|
|
1416
|
+
() => ListManagedNotificationChannelAssociationsResponse$,
|
|
1416
1417
|
];
|
|
1417
|
-
var ListManagedNotificationChildEvents = [
|
|
1418
|
+
var ListManagedNotificationChildEvents$ = [
|
|
1418
1419
|
9,
|
|
1419
1420
|
n0,
|
|
1420
1421
|
_LMNCE,
|
|
1421
1422
|
{ [_ht]: ["GET", "/list-managed-notification-child-events/{aggregateManagedNotificationEventArn}", 200] },
|
|
1422
|
-
() => ListManagedNotificationChildEventsRequest
|
|
1423
|
-
() => ListManagedNotificationChildEventsResponse
|
|
1423
|
+
() => ListManagedNotificationChildEventsRequest$,
|
|
1424
|
+
() => ListManagedNotificationChildEventsResponse$,
|
|
1424
1425
|
];
|
|
1425
|
-
var ListManagedNotificationConfigurations = [
|
|
1426
|
+
var ListManagedNotificationConfigurations$ = [
|
|
1426
1427
|
9,
|
|
1427
1428
|
n0,
|
|
1428
1429
|
_LMNC,
|
|
1429
1430
|
{ [_ht]: ["GET", "/managed-notification-configurations", 200] },
|
|
1430
|
-
() => ListManagedNotificationConfigurationsRequest
|
|
1431
|
-
() => ListManagedNotificationConfigurationsResponse
|
|
1431
|
+
() => ListManagedNotificationConfigurationsRequest$,
|
|
1432
|
+
() => ListManagedNotificationConfigurationsResponse$,
|
|
1432
1433
|
];
|
|
1433
|
-
var ListManagedNotificationEvents = [
|
|
1434
|
+
var ListManagedNotificationEvents$ = [
|
|
1434
1435
|
9,
|
|
1435
1436
|
n0,
|
|
1436
1437
|
_LMNE,
|
|
1437
1438
|
{ [_ht]: ["GET", "/managed-notification-events", 200] },
|
|
1438
|
-
() => ListManagedNotificationEventsRequest
|
|
1439
|
-
() => ListManagedNotificationEventsResponse
|
|
1439
|
+
() => ListManagedNotificationEventsRequest$,
|
|
1440
|
+
() => ListManagedNotificationEventsResponse$,
|
|
1440
1441
|
];
|
|
1441
|
-
var ListMemberAccounts = [
|
|
1442
|
+
var ListMemberAccounts$ = [
|
|
1442
1443
|
9,
|
|
1443
1444
|
n0,
|
|
1444
1445
|
_LMA,
|
|
1445
1446
|
{ [_ht]: ["GET", "/list-member-accounts", 200] },
|
|
1446
|
-
() => ListMemberAccountsRequest
|
|
1447
|
-
() => ListMemberAccountsResponse
|
|
1447
|
+
() => ListMemberAccountsRequest$,
|
|
1448
|
+
() => ListMemberAccountsResponse$,
|
|
1448
1449
|
];
|
|
1449
|
-
var ListNotificationConfigurations = [
|
|
1450
|
+
var ListNotificationConfigurations$ = [
|
|
1450
1451
|
9,
|
|
1451
1452
|
n0,
|
|
1452
1453
|
_LNC,
|
|
1453
1454
|
{ [_ht]: ["GET", "/notification-configurations", 200] },
|
|
1454
|
-
() => ListNotificationConfigurationsRequest
|
|
1455
|
-
() => ListNotificationConfigurationsResponse
|
|
1455
|
+
() => ListNotificationConfigurationsRequest$,
|
|
1456
|
+
() => ListNotificationConfigurationsResponse$,
|
|
1456
1457
|
];
|
|
1457
|
-
var ListNotificationEvents = [
|
|
1458
|
+
var ListNotificationEvents$ = [
|
|
1458
1459
|
9,
|
|
1459
1460
|
n0,
|
|
1460
1461
|
_LNE,
|
|
1461
1462
|
{ [_ht]: ["GET", "/notification-events", 200] },
|
|
1462
|
-
() => ListNotificationEventsRequest
|
|
1463
|
-
() => ListNotificationEventsResponse
|
|
1463
|
+
() => ListNotificationEventsRequest$,
|
|
1464
|
+
() => ListNotificationEventsResponse$,
|
|
1464
1465
|
];
|
|
1465
|
-
var ListNotificationHubs = [
|
|
1466
|
+
var ListNotificationHubs$ = [
|
|
1466
1467
|
9,
|
|
1467
1468
|
n0,
|
|
1468
1469
|
_LNH,
|
|
1469
1470
|
{ [_ht]: ["GET", "/notification-hubs", 200] },
|
|
1470
|
-
() => ListNotificationHubsRequest
|
|
1471
|
-
() => ListNotificationHubsResponse
|
|
1471
|
+
() => ListNotificationHubsRequest$,
|
|
1472
|
+
() => ListNotificationHubsResponse$,
|
|
1472
1473
|
];
|
|
1473
|
-
var ListOrganizationalUnits = [
|
|
1474
|
+
var ListOrganizationalUnits$ = [
|
|
1474
1475
|
9,
|
|
1475
1476
|
n0,
|
|
1476
1477
|
_LOU,
|
|
1477
1478
|
{ [_ht]: ["GET", "/organizational-units", 200] },
|
|
1478
|
-
() => ListOrganizationalUnitsRequest
|
|
1479
|
-
() => ListOrganizationalUnitsResponse
|
|
1479
|
+
() => ListOrganizationalUnitsRequest$,
|
|
1480
|
+
() => ListOrganizationalUnitsResponse$,
|
|
1480
1481
|
];
|
|
1481
|
-
var ListTagsForResource = [
|
|
1482
|
+
var ListTagsForResource$ = [
|
|
1482
1483
|
9,
|
|
1483
1484
|
n0,
|
|
1484
1485
|
_LTFR,
|
|
1485
1486
|
{ [_ht]: ["GET", "/tags/{arn}", 200] },
|
|
1486
|
-
() => ListTagsForResourceRequest
|
|
1487
|
-
() => ListTagsForResourceResponse
|
|
1487
|
+
() => ListTagsForResourceRequest$,
|
|
1488
|
+
() => ListTagsForResourceResponse$,
|
|
1488
1489
|
];
|
|
1489
|
-
var RegisterNotificationHub = [
|
|
1490
|
+
var RegisterNotificationHub$ = [
|
|
1490
1491
|
9,
|
|
1491
1492
|
n0,
|
|
1492
1493
|
_RNH,
|
|
1493
1494
|
{ [_ht]: ["POST", "/notification-hubs", 201] },
|
|
1494
|
-
() => RegisterNotificationHubRequest
|
|
1495
|
-
() => RegisterNotificationHubResponse
|
|
1495
|
+
() => RegisterNotificationHubRequest$,
|
|
1496
|
+
() => RegisterNotificationHubResponse$,
|
|
1496
1497
|
];
|
|
1497
|
-
var TagResource = [
|
|
1498
|
+
var TagResource$ = [
|
|
1498
1499
|
9,
|
|
1499
1500
|
n0,
|
|
1500
1501
|
_TR,
|
|
1501
1502
|
{ [_ht]: ["POST", "/tags/{arn}", 200] },
|
|
1502
|
-
() => TagResourceRequest
|
|
1503
|
-
() => TagResourceResponse
|
|
1503
|
+
() => TagResourceRequest$,
|
|
1504
|
+
() => TagResourceResponse$,
|
|
1504
1505
|
];
|
|
1505
|
-
var UntagResource = [
|
|
1506
|
+
var UntagResource$ = [
|
|
1506
1507
|
9,
|
|
1507
1508
|
n0,
|
|
1508
1509
|
_UR,
|
|
1509
1510
|
{ [_ht]: ["DELETE", "/tags/{arn}", 200] },
|
|
1510
|
-
() => UntagResourceRequest
|
|
1511
|
-
() => UntagResourceResponse
|
|
1511
|
+
() => UntagResourceRequest$,
|
|
1512
|
+
() => UntagResourceResponse$,
|
|
1512
1513
|
];
|
|
1513
|
-
var UpdateEventRule = [
|
|
1514
|
+
var UpdateEventRule$ = [
|
|
1514
1515
|
9,
|
|
1515
1516
|
n0,
|
|
1516
1517
|
_UER,
|
|
1517
1518
|
{ [_ht]: ["PUT", "/event-rules/{arn}", 200] },
|
|
1518
|
-
() => UpdateEventRuleRequest
|
|
1519
|
-
() => UpdateEventRuleResponse
|
|
1519
|
+
() => UpdateEventRuleRequest$,
|
|
1520
|
+
() => UpdateEventRuleResponse$,
|
|
1520
1521
|
];
|
|
1521
|
-
var UpdateNotificationConfiguration = [
|
|
1522
|
+
var UpdateNotificationConfiguration$ = [
|
|
1522
1523
|
9,
|
|
1523
1524
|
n0,
|
|
1524
1525
|
_UNC,
|
|
1525
1526
|
{ [_ht]: ["PUT", "/notification-configurations/{arn}", 200] },
|
|
1526
|
-
() => UpdateNotificationConfigurationRequest
|
|
1527
|
-
() => UpdateNotificationConfigurationResponse
|
|
1527
|
+
() => UpdateNotificationConfigurationRequest$,
|
|
1528
|
+
() => UpdateNotificationConfigurationResponse$,
|
|
1528
1529
|
];
|
|
1529
1530
|
|
|
1530
1531
|
class AssociateChannelCommand extends smithyClient.Command
|
|
@@ -1535,7 +1536,7 @@ class AssociateChannelCommand extends smithyClient.Command
|
|
|
1535
1536
|
})
|
|
1536
1537
|
.s("Notifications", "AssociateChannel", {})
|
|
1537
1538
|
.n("NotificationsClient", "AssociateChannelCommand")
|
|
1538
|
-
.sc(AssociateChannel)
|
|
1539
|
+
.sc(AssociateChannel$)
|
|
1539
1540
|
.build() {
|
|
1540
1541
|
}
|
|
1541
1542
|
|
|
@@ -1547,7 +1548,7 @@ class AssociateManagedNotificationAccountContactCommand extends smithyClient.Com
|
|
|
1547
1548
|
})
|
|
1548
1549
|
.s("Notifications", "AssociateManagedNotificationAccountContact", {})
|
|
1549
1550
|
.n("NotificationsClient", "AssociateManagedNotificationAccountContactCommand")
|
|
1550
|
-
.sc(AssociateManagedNotificationAccountContact)
|
|
1551
|
+
.sc(AssociateManagedNotificationAccountContact$)
|
|
1551
1552
|
.build() {
|
|
1552
1553
|
}
|
|
1553
1554
|
|
|
@@ -1559,7 +1560,7 @@ class AssociateManagedNotificationAdditionalChannelCommand extends smithyClient.
|
|
|
1559
1560
|
})
|
|
1560
1561
|
.s("Notifications", "AssociateManagedNotificationAdditionalChannel", {})
|
|
1561
1562
|
.n("NotificationsClient", "AssociateManagedNotificationAdditionalChannelCommand")
|
|
1562
|
-
.sc(AssociateManagedNotificationAdditionalChannel)
|
|
1563
|
+
.sc(AssociateManagedNotificationAdditionalChannel$)
|
|
1563
1564
|
.build() {
|
|
1564
1565
|
}
|
|
1565
1566
|
|
|
@@ -1571,7 +1572,7 @@ class AssociateOrganizationalUnitCommand extends smithyClient.Command
|
|
|
1571
1572
|
})
|
|
1572
1573
|
.s("Notifications", "AssociateOrganizationalUnit", {})
|
|
1573
1574
|
.n("NotificationsClient", "AssociateOrganizationalUnitCommand")
|
|
1574
|
-
.sc(AssociateOrganizationalUnit)
|
|
1575
|
+
.sc(AssociateOrganizationalUnit$)
|
|
1575
1576
|
.build() {
|
|
1576
1577
|
}
|
|
1577
1578
|
|
|
@@ -1583,7 +1584,7 @@ class CreateEventRuleCommand extends smithyClient.Command
|
|
|
1583
1584
|
})
|
|
1584
1585
|
.s("Notifications", "CreateEventRule", {})
|
|
1585
1586
|
.n("NotificationsClient", "CreateEventRuleCommand")
|
|
1586
|
-
.sc(CreateEventRule)
|
|
1587
|
+
.sc(CreateEventRule$)
|
|
1587
1588
|
.build() {
|
|
1588
1589
|
}
|
|
1589
1590
|
|
|
@@ -1595,7 +1596,7 @@ class CreateNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1595
1596
|
})
|
|
1596
1597
|
.s("Notifications", "CreateNotificationConfiguration", {})
|
|
1597
1598
|
.n("NotificationsClient", "CreateNotificationConfigurationCommand")
|
|
1598
|
-
.sc(CreateNotificationConfiguration)
|
|
1599
|
+
.sc(CreateNotificationConfiguration$)
|
|
1599
1600
|
.build() {
|
|
1600
1601
|
}
|
|
1601
1602
|
|
|
@@ -1607,7 +1608,7 @@ class DeleteEventRuleCommand extends smithyClient.Command
|
|
|
1607
1608
|
})
|
|
1608
1609
|
.s("Notifications", "DeleteEventRule", {})
|
|
1609
1610
|
.n("NotificationsClient", "DeleteEventRuleCommand")
|
|
1610
|
-
.sc(DeleteEventRule)
|
|
1611
|
+
.sc(DeleteEventRule$)
|
|
1611
1612
|
.build() {
|
|
1612
1613
|
}
|
|
1613
1614
|
|
|
@@ -1619,7 +1620,7 @@ class DeleteNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1619
1620
|
})
|
|
1620
1621
|
.s("Notifications", "DeleteNotificationConfiguration", {})
|
|
1621
1622
|
.n("NotificationsClient", "DeleteNotificationConfigurationCommand")
|
|
1622
|
-
.sc(DeleteNotificationConfiguration)
|
|
1623
|
+
.sc(DeleteNotificationConfiguration$)
|
|
1623
1624
|
.build() {
|
|
1624
1625
|
}
|
|
1625
1626
|
|
|
@@ -1631,7 +1632,7 @@ class DeregisterNotificationHubCommand extends smithyClient.Command
|
|
|
1631
1632
|
})
|
|
1632
1633
|
.s("Notifications", "DeregisterNotificationHub", {})
|
|
1633
1634
|
.n("NotificationsClient", "DeregisterNotificationHubCommand")
|
|
1634
|
-
.sc(DeregisterNotificationHub)
|
|
1635
|
+
.sc(DeregisterNotificationHub$)
|
|
1635
1636
|
.build() {
|
|
1636
1637
|
}
|
|
1637
1638
|
|
|
@@ -1643,7 +1644,7 @@ class DisableNotificationsAccessForOrganizationCommand extends smithyClient.Comm
|
|
|
1643
1644
|
})
|
|
1644
1645
|
.s("Notifications", "DisableNotificationsAccessForOrganization", {})
|
|
1645
1646
|
.n("NotificationsClient", "DisableNotificationsAccessForOrganizationCommand")
|
|
1646
|
-
.sc(DisableNotificationsAccessForOrganization)
|
|
1647
|
+
.sc(DisableNotificationsAccessForOrganization$)
|
|
1647
1648
|
.build() {
|
|
1648
1649
|
}
|
|
1649
1650
|
|
|
@@ -1655,7 +1656,7 @@ class DisassociateChannelCommand extends smithyClient.Command
|
|
|
1655
1656
|
})
|
|
1656
1657
|
.s("Notifications", "DisassociateChannel", {})
|
|
1657
1658
|
.n("NotificationsClient", "DisassociateChannelCommand")
|
|
1658
|
-
.sc(DisassociateChannel)
|
|
1659
|
+
.sc(DisassociateChannel$)
|
|
1659
1660
|
.build() {
|
|
1660
1661
|
}
|
|
1661
1662
|
|
|
@@ -1667,7 +1668,7 @@ class DisassociateManagedNotificationAccountContactCommand extends smithyClient.
|
|
|
1667
1668
|
})
|
|
1668
1669
|
.s("Notifications", "DisassociateManagedNotificationAccountContact", {})
|
|
1669
1670
|
.n("NotificationsClient", "DisassociateManagedNotificationAccountContactCommand")
|
|
1670
|
-
.sc(DisassociateManagedNotificationAccountContact)
|
|
1671
|
+
.sc(DisassociateManagedNotificationAccountContact$)
|
|
1671
1672
|
.build() {
|
|
1672
1673
|
}
|
|
1673
1674
|
|
|
@@ -1679,7 +1680,7 @@ class DisassociateManagedNotificationAdditionalChannelCommand extends smithyClie
|
|
|
1679
1680
|
})
|
|
1680
1681
|
.s("Notifications", "DisassociateManagedNotificationAdditionalChannel", {})
|
|
1681
1682
|
.n("NotificationsClient", "DisassociateManagedNotificationAdditionalChannelCommand")
|
|
1682
|
-
.sc(DisassociateManagedNotificationAdditionalChannel)
|
|
1683
|
+
.sc(DisassociateManagedNotificationAdditionalChannel$)
|
|
1683
1684
|
.build() {
|
|
1684
1685
|
}
|
|
1685
1686
|
|
|
@@ -1691,7 +1692,7 @@ class DisassociateOrganizationalUnitCommand extends smithyClient.Command
|
|
|
1691
1692
|
})
|
|
1692
1693
|
.s("Notifications", "DisassociateOrganizationalUnit", {})
|
|
1693
1694
|
.n("NotificationsClient", "DisassociateOrganizationalUnitCommand")
|
|
1694
|
-
.sc(DisassociateOrganizationalUnit)
|
|
1695
|
+
.sc(DisassociateOrganizationalUnit$)
|
|
1695
1696
|
.build() {
|
|
1696
1697
|
}
|
|
1697
1698
|
|
|
@@ -1703,7 +1704,7 @@ class EnableNotificationsAccessForOrganizationCommand extends smithyClient.Comma
|
|
|
1703
1704
|
})
|
|
1704
1705
|
.s("Notifications", "EnableNotificationsAccessForOrganization", {})
|
|
1705
1706
|
.n("NotificationsClient", "EnableNotificationsAccessForOrganizationCommand")
|
|
1706
|
-
.sc(EnableNotificationsAccessForOrganization)
|
|
1707
|
+
.sc(EnableNotificationsAccessForOrganization$)
|
|
1707
1708
|
.build() {
|
|
1708
1709
|
}
|
|
1709
1710
|
|
|
@@ -1715,7 +1716,7 @@ class GetEventRuleCommand extends smithyClient.Command
|
|
|
1715
1716
|
})
|
|
1716
1717
|
.s("Notifications", "GetEventRule", {})
|
|
1717
1718
|
.n("NotificationsClient", "GetEventRuleCommand")
|
|
1718
|
-
.sc(GetEventRule)
|
|
1719
|
+
.sc(GetEventRule$)
|
|
1719
1720
|
.build() {
|
|
1720
1721
|
}
|
|
1721
1722
|
|
|
@@ -1727,7 +1728,7 @@ class GetManagedNotificationChildEventCommand extends smithyClient.Command
|
|
|
1727
1728
|
})
|
|
1728
1729
|
.s("Notifications", "GetManagedNotificationChildEvent", {})
|
|
1729
1730
|
.n("NotificationsClient", "GetManagedNotificationChildEventCommand")
|
|
1730
|
-
.sc(GetManagedNotificationChildEvent)
|
|
1731
|
+
.sc(GetManagedNotificationChildEvent$)
|
|
1731
1732
|
.build() {
|
|
1732
1733
|
}
|
|
1733
1734
|
|
|
@@ -1739,7 +1740,7 @@ class GetManagedNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1739
1740
|
})
|
|
1740
1741
|
.s("Notifications", "GetManagedNotificationConfiguration", {})
|
|
1741
1742
|
.n("NotificationsClient", "GetManagedNotificationConfigurationCommand")
|
|
1742
|
-
.sc(GetManagedNotificationConfiguration)
|
|
1743
|
+
.sc(GetManagedNotificationConfiguration$)
|
|
1743
1744
|
.build() {
|
|
1744
1745
|
}
|
|
1745
1746
|
|
|
@@ -1751,7 +1752,7 @@ class GetManagedNotificationEventCommand extends smithyClient.Command
|
|
|
1751
1752
|
})
|
|
1752
1753
|
.s("Notifications", "GetManagedNotificationEvent", {})
|
|
1753
1754
|
.n("NotificationsClient", "GetManagedNotificationEventCommand")
|
|
1754
|
-
.sc(GetManagedNotificationEvent)
|
|
1755
|
+
.sc(GetManagedNotificationEvent$)
|
|
1755
1756
|
.build() {
|
|
1756
1757
|
}
|
|
1757
1758
|
|
|
@@ -1763,7 +1764,7 @@ class GetNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1763
1764
|
})
|
|
1764
1765
|
.s("Notifications", "GetNotificationConfiguration", {})
|
|
1765
1766
|
.n("NotificationsClient", "GetNotificationConfigurationCommand")
|
|
1766
|
-
.sc(GetNotificationConfiguration)
|
|
1767
|
+
.sc(GetNotificationConfiguration$)
|
|
1767
1768
|
.build() {
|
|
1768
1769
|
}
|
|
1769
1770
|
|
|
@@ -1775,7 +1776,7 @@ class GetNotificationEventCommand extends smithyClient.Command
|
|
|
1775
1776
|
})
|
|
1776
1777
|
.s("Notifications", "GetNotificationEvent", {})
|
|
1777
1778
|
.n("NotificationsClient", "GetNotificationEventCommand")
|
|
1778
|
-
.sc(GetNotificationEvent)
|
|
1779
|
+
.sc(GetNotificationEvent$)
|
|
1779
1780
|
.build() {
|
|
1780
1781
|
}
|
|
1781
1782
|
|
|
@@ -1787,7 +1788,7 @@ class GetNotificationsAccessForOrganizationCommand extends smithyClient.Command
|
|
|
1787
1788
|
})
|
|
1788
1789
|
.s("Notifications", "GetNotificationsAccessForOrganization", {})
|
|
1789
1790
|
.n("NotificationsClient", "GetNotificationsAccessForOrganizationCommand")
|
|
1790
|
-
.sc(GetNotificationsAccessForOrganization)
|
|
1791
|
+
.sc(GetNotificationsAccessForOrganization$)
|
|
1791
1792
|
.build() {
|
|
1792
1793
|
}
|
|
1793
1794
|
|
|
@@ -1799,7 +1800,7 @@ class ListChannelsCommand extends smithyClient.Command
|
|
|
1799
1800
|
})
|
|
1800
1801
|
.s("Notifications", "ListChannels", {})
|
|
1801
1802
|
.n("NotificationsClient", "ListChannelsCommand")
|
|
1802
|
-
.sc(ListChannels)
|
|
1803
|
+
.sc(ListChannels$)
|
|
1803
1804
|
.build() {
|
|
1804
1805
|
}
|
|
1805
1806
|
|
|
@@ -1811,7 +1812,7 @@ class ListEventRulesCommand extends smithyClient.Command
|
|
|
1811
1812
|
})
|
|
1812
1813
|
.s("Notifications", "ListEventRules", {})
|
|
1813
1814
|
.n("NotificationsClient", "ListEventRulesCommand")
|
|
1814
|
-
.sc(ListEventRules)
|
|
1815
|
+
.sc(ListEventRules$)
|
|
1815
1816
|
.build() {
|
|
1816
1817
|
}
|
|
1817
1818
|
|
|
@@ -1823,7 +1824,7 @@ class ListManagedNotificationChannelAssociationsCommand extends smithyClient.Com
|
|
|
1823
1824
|
})
|
|
1824
1825
|
.s("Notifications", "ListManagedNotificationChannelAssociations", {})
|
|
1825
1826
|
.n("NotificationsClient", "ListManagedNotificationChannelAssociationsCommand")
|
|
1826
|
-
.sc(ListManagedNotificationChannelAssociations)
|
|
1827
|
+
.sc(ListManagedNotificationChannelAssociations$)
|
|
1827
1828
|
.build() {
|
|
1828
1829
|
}
|
|
1829
1830
|
|
|
@@ -1835,7 +1836,7 @@ class ListManagedNotificationChildEventsCommand extends smithyClient.Command
|
|
|
1835
1836
|
})
|
|
1836
1837
|
.s("Notifications", "ListManagedNotificationChildEvents", {})
|
|
1837
1838
|
.n("NotificationsClient", "ListManagedNotificationChildEventsCommand")
|
|
1838
|
-
.sc(ListManagedNotificationChildEvents)
|
|
1839
|
+
.sc(ListManagedNotificationChildEvents$)
|
|
1839
1840
|
.build() {
|
|
1840
1841
|
}
|
|
1841
1842
|
|
|
@@ -1847,7 +1848,7 @@ class ListManagedNotificationConfigurationsCommand extends smithyClient.Command
|
|
|
1847
1848
|
})
|
|
1848
1849
|
.s("Notifications", "ListManagedNotificationConfigurations", {})
|
|
1849
1850
|
.n("NotificationsClient", "ListManagedNotificationConfigurationsCommand")
|
|
1850
|
-
.sc(ListManagedNotificationConfigurations)
|
|
1851
|
+
.sc(ListManagedNotificationConfigurations$)
|
|
1851
1852
|
.build() {
|
|
1852
1853
|
}
|
|
1853
1854
|
|
|
@@ -1859,7 +1860,7 @@ class ListManagedNotificationEventsCommand extends smithyClient.Command
|
|
|
1859
1860
|
})
|
|
1860
1861
|
.s("Notifications", "ListManagedNotificationEvents", {})
|
|
1861
1862
|
.n("NotificationsClient", "ListManagedNotificationEventsCommand")
|
|
1862
|
-
.sc(ListManagedNotificationEvents)
|
|
1863
|
+
.sc(ListManagedNotificationEvents$)
|
|
1863
1864
|
.build() {
|
|
1864
1865
|
}
|
|
1865
1866
|
|
|
@@ -1871,7 +1872,7 @@ class ListMemberAccountsCommand extends smithyClient.Command
|
|
|
1871
1872
|
})
|
|
1872
1873
|
.s("Notifications", "ListMemberAccounts", {})
|
|
1873
1874
|
.n("NotificationsClient", "ListMemberAccountsCommand")
|
|
1874
|
-
.sc(ListMemberAccounts)
|
|
1875
|
+
.sc(ListMemberAccounts$)
|
|
1875
1876
|
.build() {
|
|
1876
1877
|
}
|
|
1877
1878
|
|
|
@@ -1883,7 +1884,7 @@ class ListNotificationConfigurationsCommand extends smithyClient.Command
|
|
|
1883
1884
|
})
|
|
1884
1885
|
.s("Notifications", "ListNotificationConfigurations", {})
|
|
1885
1886
|
.n("NotificationsClient", "ListNotificationConfigurationsCommand")
|
|
1886
|
-
.sc(ListNotificationConfigurations)
|
|
1887
|
+
.sc(ListNotificationConfigurations$)
|
|
1887
1888
|
.build() {
|
|
1888
1889
|
}
|
|
1889
1890
|
|
|
@@ -1895,7 +1896,7 @@ class ListNotificationEventsCommand extends smithyClient.Command
|
|
|
1895
1896
|
})
|
|
1896
1897
|
.s("Notifications", "ListNotificationEvents", {})
|
|
1897
1898
|
.n("NotificationsClient", "ListNotificationEventsCommand")
|
|
1898
|
-
.sc(ListNotificationEvents)
|
|
1899
|
+
.sc(ListNotificationEvents$)
|
|
1899
1900
|
.build() {
|
|
1900
1901
|
}
|
|
1901
1902
|
|
|
@@ -1907,7 +1908,7 @@ class ListNotificationHubsCommand extends smithyClient.Command
|
|
|
1907
1908
|
})
|
|
1908
1909
|
.s("Notifications", "ListNotificationHubs", {})
|
|
1909
1910
|
.n("NotificationsClient", "ListNotificationHubsCommand")
|
|
1910
|
-
.sc(ListNotificationHubs)
|
|
1911
|
+
.sc(ListNotificationHubs$)
|
|
1911
1912
|
.build() {
|
|
1912
1913
|
}
|
|
1913
1914
|
|
|
@@ -1919,7 +1920,7 @@ class ListOrganizationalUnitsCommand extends smithyClient.Command
|
|
|
1919
1920
|
})
|
|
1920
1921
|
.s("Notifications", "ListOrganizationalUnits", {})
|
|
1921
1922
|
.n("NotificationsClient", "ListOrganizationalUnitsCommand")
|
|
1922
|
-
.sc(ListOrganizationalUnits)
|
|
1923
|
+
.sc(ListOrganizationalUnits$)
|
|
1923
1924
|
.build() {
|
|
1924
1925
|
}
|
|
1925
1926
|
|
|
@@ -1931,7 +1932,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1931
1932
|
})
|
|
1932
1933
|
.s("Notifications", "ListTagsForResource", {})
|
|
1933
1934
|
.n("NotificationsClient", "ListTagsForResourceCommand")
|
|
1934
|
-
.sc(ListTagsForResource)
|
|
1935
|
+
.sc(ListTagsForResource$)
|
|
1935
1936
|
.build() {
|
|
1936
1937
|
}
|
|
1937
1938
|
|
|
@@ -1943,7 +1944,7 @@ class RegisterNotificationHubCommand extends smithyClient.Command
|
|
|
1943
1944
|
})
|
|
1944
1945
|
.s("Notifications", "RegisterNotificationHub", {})
|
|
1945
1946
|
.n("NotificationsClient", "RegisterNotificationHubCommand")
|
|
1946
|
-
.sc(RegisterNotificationHub)
|
|
1947
|
+
.sc(RegisterNotificationHub$)
|
|
1947
1948
|
.build() {
|
|
1948
1949
|
}
|
|
1949
1950
|
|
|
@@ -1955,7 +1956,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1955
1956
|
})
|
|
1956
1957
|
.s("Notifications", "TagResource", {})
|
|
1957
1958
|
.n("NotificationsClient", "TagResourceCommand")
|
|
1958
|
-
.sc(TagResource)
|
|
1959
|
+
.sc(TagResource$)
|
|
1959
1960
|
.build() {
|
|
1960
1961
|
}
|
|
1961
1962
|
|
|
@@ -1967,7 +1968,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1967
1968
|
})
|
|
1968
1969
|
.s("Notifications", "UntagResource", {})
|
|
1969
1970
|
.n("NotificationsClient", "UntagResourceCommand")
|
|
1970
|
-
.sc(UntagResource)
|
|
1971
|
+
.sc(UntagResource$)
|
|
1971
1972
|
.build() {
|
|
1972
1973
|
}
|
|
1973
1974
|
|
|
@@ -1979,7 +1980,7 @@ class UpdateEventRuleCommand extends smithyClient.Command
|
|
|
1979
1980
|
})
|
|
1980
1981
|
.s("Notifications", "UpdateEventRule", {})
|
|
1981
1982
|
.n("NotificationsClient", "UpdateEventRuleCommand")
|
|
1982
|
-
.sc(UpdateEventRule)
|
|
1983
|
+
.sc(UpdateEventRule$)
|
|
1983
1984
|
.build() {
|
|
1984
1985
|
}
|
|
1985
1986
|
|
|
@@ -1991,7 +1992,7 @@ class UpdateNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1991
1992
|
})
|
|
1992
1993
|
.s("Notifications", "UpdateNotificationConfiguration", {})
|
|
1993
1994
|
.n("NotificationsClient", "UpdateNotificationConfigurationCommand")
|
|
1994
|
-
.sc(UpdateNotificationConfiguration)
|
|
1995
|
+
.sc(UpdateNotificationConfiguration$)
|
|
1995
1996
|
.build() {
|
|
1996
1997
|
}
|
|
1997
1998
|
|
|
@@ -2175,72 +2176,230 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2175
2176
|
enumerable: true,
|
|
2176
2177
|
get: function () { return smithyClient.Client; }
|
|
2177
2178
|
});
|
|
2178
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
2179
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2180
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2179
2181
|
exports.AccessStatus = AccessStatus;
|
|
2180
2182
|
exports.AccountContactType = AccountContactType;
|
|
2183
|
+
exports.AggregationDetail$ = AggregationDetail$;
|
|
2181
2184
|
exports.AggregationDuration = AggregationDuration;
|
|
2182
2185
|
exports.AggregationEventType = AggregationEventType;
|
|
2186
|
+
exports.AggregationKey$ = AggregationKey$;
|
|
2187
|
+
exports.AggregationSummary$ = AggregationSummary$;
|
|
2188
|
+
exports.AssociateChannel$ = AssociateChannel$;
|
|
2183
2189
|
exports.AssociateChannelCommand = AssociateChannelCommand;
|
|
2190
|
+
exports.AssociateChannelRequest$ = AssociateChannelRequest$;
|
|
2191
|
+
exports.AssociateChannelResponse$ = AssociateChannelResponse$;
|
|
2192
|
+
exports.AssociateManagedNotificationAccountContact$ = AssociateManagedNotificationAccountContact$;
|
|
2184
2193
|
exports.AssociateManagedNotificationAccountContactCommand = AssociateManagedNotificationAccountContactCommand;
|
|
2194
|
+
exports.AssociateManagedNotificationAccountContactRequest$ = AssociateManagedNotificationAccountContactRequest$;
|
|
2195
|
+
exports.AssociateManagedNotificationAccountContactResponse$ = AssociateManagedNotificationAccountContactResponse$;
|
|
2196
|
+
exports.AssociateManagedNotificationAdditionalChannel$ = AssociateManagedNotificationAdditionalChannel$;
|
|
2185
2197
|
exports.AssociateManagedNotificationAdditionalChannelCommand = AssociateManagedNotificationAdditionalChannelCommand;
|
|
2198
|
+
exports.AssociateManagedNotificationAdditionalChannelRequest$ = AssociateManagedNotificationAdditionalChannelRequest$;
|
|
2199
|
+
exports.AssociateManagedNotificationAdditionalChannelResponse$ = AssociateManagedNotificationAdditionalChannelResponse$;
|
|
2200
|
+
exports.AssociateOrganizationalUnit$ = AssociateOrganizationalUnit$;
|
|
2186
2201
|
exports.AssociateOrganizationalUnitCommand = AssociateOrganizationalUnitCommand;
|
|
2202
|
+
exports.AssociateOrganizationalUnitRequest$ = AssociateOrganizationalUnitRequest$;
|
|
2203
|
+
exports.AssociateOrganizationalUnitResponse$ = AssociateOrganizationalUnitResponse$;
|
|
2187
2204
|
exports.ChannelAssociationOverrideOption = ChannelAssociationOverrideOption;
|
|
2188
2205
|
exports.ChannelType = ChannelType;
|
|
2189
|
-
exports.ConflictException = ConflictException
|
|
2206
|
+
exports.ConflictException = ConflictException;
|
|
2207
|
+
exports.ConflictException$ = ConflictException$;
|
|
2208
|
+
exports.CreateEventRule$ = CreateEventRule$;
|
|
2190
2209
|
exports.CreateEventRuleCommand = CreateEventRuleCommand;
|
|
2210
|
+
exports.CreateEventRuleRequest$ = CreateEventRuleRequest$;
|
|
2211
|
+
exports.CreateEventRuleResponse$ = CreateEventRuleResponse$;
|
|
2212
|
+
exports.CreateNotificationConfiguration$ = CreateNotificationConfiguration$;
|
|
2191
2213
|
exports.CreateNotificationConfigurationCommand = CreateNotificationConfigurationCommand;
|
|
2214
|
+
exports.CreateNotificationConfigurationRequest$ = CreateNotificationConfigurationRequest$;
|
|
2215
|
+
exports.CreateNotificationConfigurationResponse$ = CreateNotificationConfigurationResponse$;
|
|
2216
|
+
exports.DeleteEventRule$ = DeleteEventRule$;
|
|
2192
2217
|
exports.DeleteEventRuleCommand = DeleteEventRuleCommand;
|
|
2218
|
+
exports.DeleteEventRuleRequest$ = DeleteEventRuleRequest$;
|
|
2219
|
+
exports.DeleteEventRuleResponse$ = DeleteEventRuleResponse$;
|
|
2220
|
+
exports.DeleteNotificationConfiguration$ = DeleteNotificationConfiguration$;
|
|
2193
2221
|
exports.DeleteNotificationConfigurationCommand = DeleteNotificationConfigurationCommand;
|
|
2222
|
+
exports.DeleteNotificationConfigurationRequest$ = DeleteNotificationConfigurationRequest$;
|
|
2223
|
+
exports.DeleteNotificationConfigurationResponse$ = DeleteNotificationConfigurationResponse$;
|
|
2224
|
+
exports.DeregisterNotificationHub$ = DeregisterNotificationHub$;
|
|
2194
2225
|
exports.DeregisterNotificationHubCommand = DeregisterNotificationHubCommand;
|
|
2226
|
+
exports.DeregisterNotificationHubRequest$ = DeregisterNotificationHubRequest$;
|
|
2227
|
+
exports.DeregisterNotificationHubResponse$ = DeregisterNotificationHubResponse$;
|
|
2228
|
+
exports.Dimension$ = Dimension$;
|
|
2229
|
+
exports.DisableNotificationsAccessForOrganization$ = DisableNotificationsAccessForOrganization$;
|
|
2195
2230
|
exports.DisableNotificationsAccessForOrganizationCommand = DisableNotificationsAccessForOrganizationCommand;
|
|
2231
|
+
exports.DisableNotificationsAccessForOrganizationRequest$ = DisableNotificationsAccessForOrganizationRequest$;
|
|
2232
|
+
exports.DisableNotificationsAccessForOrganizationResponse$ = DisableNotificationsAccessForOrganizationResponse$;
|
|
2233
|
+
exports.DisassociateChannel$ = DisassociateChannel$;
|
|
2196
2234
|
exports.DisassociateChannelCommand = DisassociateChannelCommand;
|
|
2235
|
+
exports.DisassociateChannelRequest$ = DisassociateChannelRequest$;
|
|
2236
|
+
exports.DisassociateChannelResponse$ = DisassociateChannelResponse$;
|
|
2237
|
+
exports.DisassociateManagedNotificationAccountContact$ = DisassociateManagedNotificationAccountContact$;
|
|
2197
2238
|
exports.DisassociateManagedNotificationAccountContactCommand = DisassociateManagedNotificationAccountContactCommand;
|
|
2239
|
+
exports.DisassociateManagedNotificationAccountContactRequest$ = DisassociateManagedNotificationAccountContactRequest$;
|
|
2240
|
+
exports.DisassociateManagedNotificationAccountContactResponse$ = DisassociateManagedNotificationAccountContactResponse$;
|
|
2241
|
+
exports.DisassociateManagedNotificationAdditionalChannel$ = DisassociateManagedNotificationAdditionalChannel$;
|
|
2198
2242
|
exports.DisassociateManagedNotificationAdditionalChannelCommand = DisassociateManagedNotificationAdditionalChannelCommand;
|
|
2243
|
+
exports.DisassociateManagedNotificationAdditionalChannelRequest$ = DisassociateManagedNotificationAdditionalChannelRequest$;
|
|
2244
|
+
exports.DisassociateManagedNotificationAdditionalChannelResponse$ = DisassociateManagedNotificationAdditionalChannelResponse$;
|
|
2245
|
+
exports.DisassociateOrganizationalUnit$ = DisassociateOrganizationalUnit$;
|
|
2199
2246
|
exports.DisassociateOrganizationalUnitCommand = DisassociateOrganizationalUnitCommand;
|
|
2247
|
+
exports.DisassociateOrganizationalUnitRequest$ = DisassociateOrganizationalUnitRequest$;
|
|
2248
|
+
exports.DisassociateOrganizationalUnitResponse$ = DisassociateOrganizationalUnitResponse$;
|
|
2249
|
+
exports.EnableNotificationsAccessForOrganization$ = EnableNotificationsAccessForOrganization$;
|
|
2200
2250
|
exports.EnableNotificationsAccessForOrganizationCommand = EnableNotificationsAccessForOrganizationCommand;
|
|
2251
|
+
exports.EnableNotificationsAccessForOrganizationRequest$ = EnableNotificationsAccessForOrganizationRequest$;
|
|
2252
|
+
exports.EnableNotificationsAccessForOrganizationResponse$ = EnableNotificationsAccessForOrganizationResponse$;
|
|
2201
2253
|
exports.EventRuleStatus = EventRuleStatus;
|
|
2254
|
+
exports.EventRuleStatusSummary$ = EventRuleStatusSummary$;
|
|
2255
|
+
exports.EventRuleStructure$ = EventRuleStructure$;
|
|
2202
2256
|
exports.EventStatus = EventStatus;
|
|
2257
|
+
exports.GetEventRule$ = GetEventRule$;
|
|
2203
2258
|
exports.GetEventRuleCommand = GetEventRuleCommand;
|
|
2259
|
+
exports.GetEventRuleRequest$ = GetEventRuleRequest$;
|
|
2260
|
+
exports.GetEventRuleResponse$ = GetEventRuleResponse$;
|
|
2261
|
+
exports.GetManagedNotificationChildEvent$ = GetManagedNotificationChildEvent$;
|
|
2204
2262
|
exports.GetManagedNotificationChildEventCommand = GetManagedNotificationChildEventCommand;
|
|
2263
|
+
exports.GetManagedNotificationChildEventRequest$ = GetManagedNotificationChildEventRequest$;
|
|
2264
|
+
exports.GetManagedNotificationChildEventResponse$ = GetManagedNotificationChildEventResponse$;
|
|
2265
|
+
exports.GetManagedNotificationConfiguration$ = GetManagedNotificationConfiguration$;
|
|
2205
2266
|
exports.GetManagedNotificationConfigurationCommand = GetManagedNotificationConfigurationCommand;
|
|
2267
|
+
exports.GetManagedNotificationConfigurationRequest$ = GetManagedNotificationConfigurationRequest$;
|
|
2268
|
+
exports.GetManagedNotificationConfigurationResponse$ = GetManagedNotificationConfigurationResponse$;
|
|
2269
|
+
exports.GetManagedNotificationEvent$ = GetManagedNotificationEvent$;
|
|
2206
2270
|
exports.GetManagedNotificationEventCommand = GetManagedNotificationEventCommand;
|
|
2271
|
+
exports.GetManagedNotificationEventRequest$ = GetManagedNotificationEventRequest$;
|
|
2272
|
+
exports.GetManagedNotificationEventResponse$ = GetManagedNotificationEventResponse$;
|
|
2273
|
+
exports.GetNotificationConfiguration$ = GetNotificationConfiguration$;
|
|
2207
2274
|
exports.GetNotificationConfigurationCommand = GetNotificationConfigurationCommand;
|
|
2275
|
+
exports.GetNotificationConfigurationRequest$ = GetNotificationConfigurationRequest$;
|
|
2276
|
+
exports.GetNotificationConfigurationResponse$ = GetNotificationConfigurationResponse$;
|
|
2277
|
+
exports.GetNotificationEvent$ = GetNotificationEvent$;
|
|
2208
2278
|
exports.GetNotificationEventCommand = GetNotificationEventCommand;
|
|
2279
|
+
exports.GetNotificationEventRequest$ = GetNotificationEventRequest$;
|
|
2280
|
+
exports.GetNotificationEventResponse$ = GetNotificationEventResponse$;
|
|
2281
|
+
exports.GetNotificationsAccessForOrganization$ = GetNotificationsAccessForOrganization$;
|
|
2209
2282
|
exports.GetNotificationsAccessForOrganizationCommand = GetNotificationsAccessForOrganizationCommand;
|
|
2210
|
-
exports.
|
|
2283
|
+
exports.GetNotificationsAccessForOrganizationRequest$ = GetNotificationsAccessForOrganizationRequest$;
|
|
2284
|
+
exports.GetNotificationsAccessForOrganizationResponse$ = GetNotificationsAccessForOrganizationResponse$;
|
|
2285
|
+
exports.InternalServerException = InternalServerException;
|
|
2286
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2287
|
+
exports.ListChannels$ = ListChannels$;
|
|
2211
2288
|
exports.ListChannelsCommand = ListChannelsCommand;
|
|
2289
|
+
exports.ListChannelsRequest$ = ListChannelsRequest$;
|
|
2290
|
+
exports.ListChannelsResponse$ = ListChannelsResponse$;
|
|
2291
|
+
exports.ListEventRules$ = ListEventRules$;
|
|
2212
2292
|
exports.ListEventRulesCommand = ListEventRulesCommand;
|
|
2293
|
+
exports.ListEventRulesRequest$ = ListEventRulesRequest$;
|
|
2294
|
+
exports.ListEventRulesResponse$ = ListEventRulesResponse$;
|
|
2295
|
+
exports.ListManagedNotificationChannelAssociations$ = ListManagedNotificationChannelAssociations$;
|
|
2213
2296
|
exports.ListManagedNotificationChannelAssociationsCommand = ListManagedNotificationChannelAssociationsCommand;
|
|
2297
|
+
exports.ListManagedNotificationChannelAssociationsRequest$ = ListManagedNotificationChannelAssociationsRequest$;
|
|
2298
|
+
exports.ListManagedNotificationChannelAssociationsResponse$ = ListManagedNotificationChannelAssociationsResponse$;
|
|
2299
|
+
exports.ListManagedNotificationChildEvents$ = ListManagedNotificationChildEvents$;
|
|
2214
2300
|
exports.ListManagedNotificationChildEventsCommand = ListManagedNotificationChildEventsCommand;
|
|
2301
|
+
exports.ListManagedNotificationChildEventsRequest$ = ListManagedNotificationChildEventsRequest$;
|
|
2302
|
+
exports.ListManagedNotificationChildEventsResponse$ = ListManagedNotificationChildEventsResponse$;
|
|
2303
|
+
exports.ListManagedNotificationConfigurations$ = ListManagedNotificationConfigurations$;
|
|
2215
2304
|
exports.ListManagedNotificationConfigurationsCommand = ListManagedNotificationConfigurationsCommand;
|
|
2305
|
+
exports.ListManagedNotificationConfigurationsRequest$ = ListManagedNotificationConfigurationsRequest$;
|
|
2306
|
+
exports.ListManagedNotificationConfigurationsResponse$ = ListManagedNotificationConfigurationsResponse$;
|
|
2307
|
+
exports.ListManagedNotificationEvents$ = ListManagedNotificationEvents$;
|
|
2216
2308
|
exports.ListManagedNotificationEventsCommand = ListManagedNotificationEventsCommand;
|
|
2309
|
+
exports.ListManagedNotificationEventsRequest$ = ListManagedNotificationEventsRequest$;
|
|
2310
|
+
exports.ListManagedNotificationEventsResponse$ = ListManagedNotificationEventsResponse$;
|
|
2311
|
+
exports.ListMemberAccounts$ = ListMemberAccounts$;
|
|
2217
2312
|
exports.ListMemberAccountsCommand = ListMemberAccountsCommand;
|
|
2313
|
+
exports.ListMemberAccountsRequest$ = ListMemberAccountsRequest$;
|
|
2314
|
+
exports.ListMemberAccountsResponse$ = ListMemberAccountsResponse$;
|
|
2315
|
+
exports.ListNotificationConfigurations$ = ListNotificationConfigurations$;
|
|
2218
2316
|
exports.ListNotificationConfigurationsCommand = ListNotificationConfigurationsCommand;
|
|
2317
|
+
exports.ListNotificationConfigurationsRequest$ = ListNotificationConfigurationsRequest$;
|
|
2318
|
+
exports.ListNotificationConfigurationsResponse$ = ListNotificationConfigurationsResponse$;
|
|
2319
|
+
exports.ListNotificationEvents$ = ListNotificationEvents$;
|
|
2219
2320
|
exports.ListNotificationEventsCommand = ListNotificationEventsCommand;
|
|
2321
|
+
exports.ListNotificationEventsRequest$ = ListNotificationEventsRequest$;
|
|
2322
|
+
exports.ListNotificationEventsResponse$ = ListNotificationEventsResponse$;
|
|
2323
|
+
exports.ListNotificationHubs$ = ListNotificationHubs$;
|
|
2220
2324
|
exports.ListNotificationHubsCommand = ListNotificationHubsCommand;
|
|
2325
|
+
exports.ListNotificationHubsRequest$ = ListNotificationHubsRequest$;
|
|
2326
|
+
exports.ListNotificationHubsResponse$ = ListNotificationHubsResponse$;
|
|
2327
|
+
exports.ListOrganizationalUnits$ = ListOrganizationalUnits$;
|
|
2221
2328
|
exports.ListOrganizationalUnitsCommand = ListOrganizationalUnitsCommand;
|
|
2329
|
+
exports.ListOrganizationalUnitsRequest$ = ListOrganizationalUnitsRequest$;
|
|
2330
|
+
exports.ListOrganizationalUnitsResponse$ = ListOrganizationalUnitsResponse$;
|
|
2331
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2222
2332
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2333
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2334
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2223
2335
|
exports.LocaleCode = LocaleCode;
|
|
2336
|
+
exports.ManagedNotificationChannelAssociationSummary$ = ManagedNotificationChannelAssociationSummary$;
|
|
2337
|
+
exports.ManagedNotificationChildEvent$ = ManagedNotificationChildEvent$;
|
|
2338
|
+
exports.ManagedNotificationChildEventOverview$ = ManagedNotificationChildEventOverview$;
|
|
2339
|
+
exports.ManagedNotificationChildEventSummary$ = ManagedNotificationChildEventSummary$;
|
|
2340
|
+
exports.ManagedNotificationConfigurationStructure$ = ManagedNotificationConfigurationStructure$;
|
|
2341
|
+
exports.ManagedNotificationEvent$ = ManagedNotificationEvent$;
|
|
2342
|
+
exports.ManagedNotificationEventOverview$ = ManagedNotificationEventOverview$;
|
|
2343
|
+
exports.ManagedNotificationEventSummary$ = ManagedNotificationEventSummary$;
|
|
2344
|
+
exports.ManagedSourceEventMetadataSummary$ = ManagedSourceEventMetadataSummary$;
|
|
2345
|
+
exports.MediaElement$ = MediaElement$;
|
|
2224
2346
|
exports.MediaElementType = MediaElementType;
|
|
2347
|
+
exports.MemberAccount$ = MemberAccount$;
|
|
2225
2348
|
exports.MemberAccountNotificationConfigurationStatus = MemberAccountNotificationConfigurationStatus;
|
|
2349
|
+
exports.MessageComponents$ = MessageComponents$;
|
|
2350
|
+
exports.MessageComponentsSummary$ = MessageComponentsSummary$;
|
|
2226
2351
|
exports.NotificationConfigurationStatus = NotificationConfigurationStatus;
|
|
2352
|
+
exports.NotificationConfigurationStructure$ = NotificationConfigurationStructure$;
|
|
2227
2353
|
exports.NotificationConfigurationSubtype = NotificationConfigurationSubtype;
|
|
2354
|
+
exports.NotificationEventOverview$ = NotificationEventOverview$;
|
|
2355
|
+
exports.NotificationEventSchema$ = NotificationEventSchema$;
|
|
2356
|
+
exports.NotificationEventSummary$ = NotificationEventSummary$;
|
|
2357
|
+
exports.NotificationHubOverview$ = NotificationHubOverview$;
|
|
2228
2358
|
exports.NotificationHubStatus = NotificationHubStatus;
|
|
2359
|
+
exports.NotificationHubStatusSummary$ = NotificationHubStatusSummary$;
|
|
2229
2360
|
exports.NotificationType = NotificationType;
|
|
2230
2361
|
exports.Notifications = Notifications;
|
|
2362
|
+
exports.NotificationsAccessForOrganization$ = NotificationsAccessForOrganization$;
|
|
2231
2363
|
exports.NotificationsClient = NotificationsClient;
|
|
2232
|
-
exports.NotificationsServiceException = NotificationsServiceException
|
|
2364
|
+
exports.NotificationsServiceException = NotificationsServiceException;
|
|
2365
|
+
exports.NotificationsServiceException$ = NotificationsServiceException$;
|
|
2366
|
+
exports.RegisterNotificationHub$ = RegisterNotificationHub$;
|
|
2233
2367
|
exports.RegisterNotificationHubCommand = RegisterNotificationHubCommand;
|
|
2234
|
-
exports.
|
|
2368
|
+
exports.RegisterNotificationHubRequest$ = RegisterNotificationHubRequest$;
|
|
2369
|
+
exports.RegisterNotificationHubResponse$ = RegisterNotificationHubResponse$;
|
|
2370
|
+
exports.Resource$ = Resource$;
|
|
2371
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2372
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2235
2373
|
exports.SchemaVersion = SchemaVersion;
|
|
2236
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException
|
|
2374
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2375
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2376
|
+
exports.SourceEventMetadata$ = SourceEventMetadata$;
|
|
2377
|
+
exports.SourceEventMetadataSummary$ = SourceEventMetadataSummary$;
|
|
2378
|
+
exports.SummarizationDimensionDetail$ = SummarizationDimensionDetail$;
|
|
2379
|
+
exports.SummarizationDimensionOverview$ = SummarizationDimensionOverview$;
|
|
2380
|
+
exports.TagResource$ = TagResource$;
|
|
2237
2381
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2382
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2383
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2238
2384
|
exports.TextPartType = TextPartType;
|
|
2239
|
-
exports.
|
|
2385
|
+
exports.TextPartValue$ = TextPartValue$;
|
|
2386
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2387
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2388
|
+
exports.UntagResource$ = UntagResource$;
|
|
2240
2389
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2390
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2391
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2392
|
+
exports.UpdateEventRule$ = UpdateEventRule$;
|
|
2241
2393
|
exports.UpdateEventRuleCommand = UpdateEventRuleCommand;
|
|
2394
|
+
exports.UpdateEventRuleRequest$ = UpdateEventRuleRequest$;
|
|
2395
|
+
exports.UpdateEventRuleResponse$ = UpdateEventRuleResponse$;
|
|
2396
|
+
exports.UpdateNotificationConfiguration$ = UpdateNotificationConfiguration$;
|
|
2242
2397
|
exports.UpdateNotificationConfigurationCommand = UpdateNotificationConfigurationCommand;
|
|
2243
|
-
exports.
|
|
2398
|
+
exports.UpdateNotificationConfigurationRequest$ = UpdateNotificationConfigurationRequest$;
|
|
2399
|
+
exports.UpdateNotificationConfigurationResponse$ = UpdateNotificationConfigurationResponse$;
|
|
2400
|
+
exports.ValidationException = ValidationException;
|
|
2401
|
+
exports.ValidationException$ = ValidationException$;
|
|
2402
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2244
2403
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2245
2404
|
exports.paginateListChannels = paginateListChannels;
|
|
2246
2405
|
exports.paginateListEventRules = paginateListEventRules;
|