@aws-sdk/client-notifications 3.1075.0 → 3.1077.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 +1515 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -29
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/NotificationsServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -111
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1198
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultNotificationsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "notifications",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultNotificationsHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -29,6 +66,1302 @@ const commonParams = {
|
|
|
29
66
|
Region: { type: "builtInParams", name: "region" },
|
|
30
67
|
};
|
|
31
68
|
|
|
69
|
+
var version = "3.1076.0";
|
|
70
|
+
var packageInfo = {
|
|
71
|
+
version: version};
|
|
72
|
+
|
|
73
|
+
const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
|
|
74
|
+
const _data = {
|
|
75
|
+
conditions: [
|
|
76
|
+
[a, [b]],
|
|
77
|
+
[a, c],
|
|
78
|
+
["aws.partition", c, "PartitionResult"],
|
|
79
|
+
["booleanEquals", [{ ref: "UseFIPS" }, true]]
|
|
80
|
+
],
|
|
81
|
+
results: [
|
|
82
|
+
[-1],
|
|
83
|
+
[-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
84
|
+
[b, {}],
|
|
85
|
+
["https://notifications-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
86
|
+
["https://notifications.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
87
|
+
[-1, "Invalid Configuration: Missing Region"]
|
|
88
|
+
]
|
|
89
|
+
};
|
|
90
|
+
const root = 2;
|
|
91
|
+
const r = 100_000_000;
|
|
92
|
+
const nodes = new Int32Array([
|
|
93
|
+
-1, 1, -1,
|
|
94
|
+
0, 6, 3,
|
|
95
|
+
1, 4, r + 5,
|
|
96
|
+
2, 5, r + 5,
|
|
97
|
+
3, r + 3, r + 4,
|
|
98
|
+
3, r + 1, r + 2,
|
|
99
|
+
]);
|
|
100
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
101
|
+
|
|
102
|
+
const cache = new EndpointCache({
|
|
103
|
+
size: 50,
|
|
104
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
105
|
+
});
|
|
106
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
107
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
108
|
+
endpointParams: endpointParams,
|
|
109
|
+
logger: context.logger,
|
|
110
|
+
}));
|
|
111
|
+
};
|
|
112
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
113
|
+
|
|
114
|
+
class NotificationsServiceException extends ServiceException {
|
|
115
|
+
constructor(options) {
|
|
116
|
+
super(options);
|
|
117
|
+
Object.setPrototypeOf(this, NotificationsServiceException.prototype);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
class AccessDeniedException extends NotificationsServiceException {
|
|
122
|
+
name = "AccessDeniedException";
|
|
123
|
+
$fault = "client";
|
|
124
|
+
constructor(opts) {
|
|
125
|
+
super({
|
|
126
|
+
name: "AccessDeniedException",
|
|
127
|
+
$fault: "client",
|
|
128
|
+
...opts,
|
|
129
|
+
});
|
|
130
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
class ConflictException extends NotificationsServiceException {
|
|
134
|
+
name = "ConflictException";
|
|
135
|
+
$fault = "client";
|
|
136
|
+
resourceId;
|
|
137
|
+
constructor(opts) {
|
|
138
|
+
super({
|
|
139
|
+
name: "ConflictException",
|
|
140
|
+
$fault: "client",
|
|
141
|
+
...opts,
|
|
142
|
+
});
|
|
143
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
144
|
+
this.resourceId = opts.resourceId;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
class InternalServerException extends NotificationsServiceException {
|
|
148
|
+
name = "InternalServerException";
|
|
149
|
+
$fault = "server";
|
|
150
|
+
$retryable = {};
|
|
151
|
+
constructor(opts) {
|
|
152
|
+
super({
|
|
153
|
+
name: "InternalServerException",
|
|
154
|
+
$fault: "server",
|
|
155
|
+
...opts,
|
|
156
|
+
});
|
|
157
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
class ResourceNotFoundException extends NotificationsServiceException {
|
|
161
|
+
name = "ResourceNotFoundException";
|
|
162
|
+
$fault = "client";
|
|
163
|
+
resourceId;
|
|
164
|
+
constructor(opts) {
|
|
165
|
+
super({
|
|
166
|
+
name: "ResourceNotFoundException",
|
|
167
|
+
$fault: "client",
|
|
168
|
+
...opts,
|
|
169
|
+
});
|
|
170
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
171
|
+
this.resourceId = opts.resourceId;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
class ServiceQuotaExceededException extends NotificationsServiceException {
|
|
175
|
+
name = "ServiceQuotaExceededException";
|
|
176
|
+
$fault = "client";
|
|
177
|
+
resourceType;
|
|
178
|
+
resourceId;
|
|
179
|
+
serviceCode;
|
|
180
|
+
quotaCode;
|
|
181
|
+
constructor(opts) {
|
|
182
|
+
super({
|
|
183
|
+
name: "ServiceQuotaExceededException",
|
|
184
|
+
$fault: "client",
|
|
185
|
+
...opts,
|
|
186
|
+
});
|
|
187
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
188
|
+
this.resourceType = opts.resourceType;
|
|
189
|
+
this.resourceId = opts.resourceId;
|
|
190
|
+
this.serviceCode = opts.serviceCode;
|
|
191
|
+
this.quotaCode = opts.quotaCode;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
class ThrottlingException extends NotificationsServiceException {
|
|
195
|
+
name = "ThrottlingException";
|
|
196
|
+
$fault = "client";
|
|
197
|
+
$retryable = {
|
|
198
|
+
throttling: true,
|
|
199
|
+
};
|
|
200
|
+
serviceCode;
|
|
201
|
+
quotaCode;
|
|
202
|
+
retryAfterSeconds;
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "ThrottlingException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
210
|
+
this.serviceCode = opts.serviceCode;
|
|
211
|
+
this.quotaCode = opts.quotaCode;
|
|
212
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class ValidationException extends NotificationsServiceException {
|
|
216
|
+
name = "ValidationException";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
reason;
|
|
219
|
+
fieldList;
|
|
220
|
+
constructor(opts) {
|
|
221
|
+
super({
|
|
222
|
+
name: "ValidationException",
|
|
223
|
+
$fault: "client",
|
|
224
|
+
...opts,
|
|
225
|
+
});
|
|
226
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
227
|
+
this.reason = opts.reason;
|
|
228
|
+
this.fieldList = opts.fieldList;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
const _AC = "AssociateChannel";
|
|
233
|
+
const _ACR = "AssociateChannelRequest";
|
|
234
|
+
const _ACRs = "AssociateChannelResponse";
|
|
235
|
+
const _AD = "AggregationDetail";
|
|
236
|
+
const _ADE = "AccessDeniedException";
|
|
237
|
+
const _AK = "AggregationKey";
|
|
238
|
+
const _AKg = "AggregationKeys";
|
|
239
|
+
const _AMNAC = "AssociateManagedNotificationAccountContact";
|
|
240
|
+
const _AMNACR = "AssociateManagedNotificationAccountContactRequest";
|
|
241
|
+
const _AMNACRs = "AssociateManagedNotificationAccountContactResponse";
|
|
242
|
+
const _AMNACRss = "AssociateManagedNotificationAdditionalChannelRequest";
|
|
243
|
+
const _AMNACRsso = "AssociateManagedNotificationAdditionalChannelResponse";
|
|
244
|
+
const _AMNACs = "AssociateManagedNotificationAdditionalChannel";
|
|
245
|
+
const _AOU = "AssociateOrganizationalUnit";
|
|
246
|
+
const _AOUR = "AssociateOrganizationalUnitRequest";
|
|
247
|
+
const _AOURs = "AssociateOrganizationalUnitResponse";
|
|
248
|
+
const _AS = "AggregationSummary";
|
|
249
|
+
const _CE = "ConflictException";
|
|
250
|
+
const _CER = "CreateEventRule";
|
|
251
|
+
const _CERR = "CreateEventRuleRequest";
|
|
252
|
+
const _CERRr = "CreateEventRuleResponse";
|
|
253
|
+
const _CNC = "CreateNotificationConfiguration";
|
|
254
|
+
const _CNCR = "CreateNotificationConfigurationRequest";
|
|
255
|
+
const _CNCRr = "CreateNotificationConfigurationResponse";
|
|
256
|
+
const _D = "Dimension";
|
|
257
|
+
const _DC = "DisassociateChannel";
|
|
258
|
+
const _DCR = "DisassociateChannelRequest";
|
|
259
|
+
const _DCRi = "DisassociateChannelResponse";
|
|
260
|
+
const _DER = "DeleteEventRule";
|
|
261
|
+
const _DERR = "DeleteEventRuleRequest";
|
|
262
|
+
const _DERRe = "DeleteEventRuleResponse";
|
|
263
|
+
const _DMNAC = "DisassociateManagedNotificationAccountContact";
|
|
264
|
+
const _DMNACR = "DisassociateManagedNotificationAccountContactRequest";
|
|
265
|
+
const _DMNACRi = "DisassociateManagedNotificationAccountContactResponse";
|
|
266
|
+
const _DMNACRis = "DisassociateManagedNotificationAdditionalChannelRequest";
|
|
267
|
+
const _DMNACRisa = "DisassociateManagedNotificationAdditionalChannelResponse";
|
|
268
|
+
const _DMNACi = "DisassociateManagedNotificationAdditionalChannel";
|
|
269
|
+
const _DNAFO = "DisableNotificationsAccessForOrganization";
|
|
270
|
+
const _DNAFOR = "DisableNotificationsAccessForOrganizationRequest";
|
|
271
|
+
const _DNAFORi = "DisableNotificationsAccessForOrganizationResponse";
|
|
272
|
+
const _DNC = "DeleteNotificationConfiguration";
|
|
273
|
+
const _DNCR = "DeleteNotificationConfigurationRequest";
|
|
274
|
+
const _DNCRe = "DeleteNotificationConfigurationResponse";
|
|
275
|
+
const _DNH = "DeregisterNotificationHub";
|
|
276
|
+
const _DNHR = "DeregisterNotificationHubRequest";
|
|
277
|
+
const _DNHRe = "DeregisterNotificationHubResponse";
|
|
278
|
+
const _DOU = "DisassociateOrganizationalUnit";
|
|
279
|
+
const _DOUR = "DisassociateOrganizationalUnitRequest";
|
|
280
|
+
const _DOURi = "DisassociateOrganizationalUnitResponse";
|
|
281
|
+
const _Di = "Dimensions";
|
|
282
|
+
const _ENAFO = "EnableNotificationsAccessForOrganization";
|
|
283
|
+
const _ENAFOR = "EnableNotificationsAccessForOrganizationRequest";
|
|
284
|
+
const _ENAFORn = "EnableNotificationsAccessForOrganizationResponse";
|
|
285
|
+
const _ER = "EventRules";
|
|
286
|
+
const _ERS = "EventRuleStructure";
|
|
287
|
+
const _ERSS = "EventRuleStatusSummary";
|
|
288
|
+
const _GER = "GetEventRule";
|
|
289
|
+
const _GERR = "GetEventRuleRequest";
|
|
290
|
+
const _GERRe = "GetEventRuleResponse";
|
|
291
|
+
const _GMNC = "GetManagedNotificationConfiguration";
|
|
292
|
+
const _GMNCE = "GetManagedNotificationChildEvent";
|
|
293
|
+
const _GMNCER = "GetManagedNotificationChildEventRequest";
|
|
294
|
+
const _GMNCERe = "GetManagedNotificationChildEventResponse";
|
|
295
|
+
const _GMNCR = "GetManagedNotificationConfigurationRequest";
|
|
296
|
+
const _GMNCRe = "GetManagedNotificationConfigurationResponse";
|
|
297
|
+
const _GMNE = "GetManagedNotificationEvent";
|
|
298
|
+
const _GMNER = "GetManagedNotificationEventRequest";
|
|
299
|
+
const _GMNERe = "GetManagedNotificationEventResponse";
|
|
300
|
+
const _GNAFO = "GetNotificationsAccessForOrganization";
|
|
301
|
+
const _GNAFOR = "GetNotificationsAccessForOrganizationRequest";
|
|
302
|
+
const _GNAFORe = "GetNotificationsAccessForOrganizationResponse";
|
|
303
|
+
const _GNC = "GetNotificationConfiguration";
|
|
304
|
+
const _GNCR = "GetNotificationConfigurationRequest";
|
|
305
|
+
const _GNCRe = "GetNotificationConfigurationResponse";
|
|
306
|
+
const _GNE = "GetNotificationEvent";
|
|
307
|
+
const _GNER = "GetNotificationEventRequest";
|
|
308
|
+
const _GNERe = "GetNotificationEventResponse";
|
|
309
|
+
const _ISE = "InternalServerException";
|
|
310
|
+
const _LC = "ListChannels";
|
|
311
|
+
const _LCR = "ListChannelsRequest";
|
|
312
|
+
const _LCRi = "ListChannelsResponse";
|
|
313
|
+
const _LER = "ListEventRules";
|
|
314
|
+
const _LERR = "ListEventRulesRequest";
|
|
315
|
+
const _LERRi = "ListEventRulesResponse";
|
|
316
|
+
const _LMA = "ListMemberAccounts";
|
|
317
|
+
const _LMAR = "ListMemberAccountsRequest";
|
|
318
|
+
const _LMARi = "ListMemberAccountsResponse";
|
|
319
|
+
const _LMNC = "ListManagedNotificationConfigurations";
|
|
320
|
+
const _LMNCA = "ListManagedNotificationChannelAssociations";
|
|
321
|
+
const _LMNCAR = "ListManagedNotificationChannelAssociationsRequest";
|
|
322
|
+
const _LMNCARi = "ListManagedNotificationChannelAssociationsResponse";
|
|
323
|
+
const _LMNCE = "ListManagedNotificationChildEvents";
|
|
324
|
+
const _LMNCER = "ListManagedNotificationChildEventsRequest";
|
|
325
|
+
const _LMNCERi = "ListManagedNotificationChildEventsResponse";
|
|
326
|
+
const _LMNCR = "ListManagedNotificationConfigurationsRequest";
|
|
327
|
+
const _LMNCRi = "ListManagedNotificationConfigurationsResponse";
|
|
328
|
+
const _LMNE = "ListManagedNotificationEvents";
|
|
329
|
+
const _LMNER = "ListManagedNotificationEventsRequest";
|
|
330
|
+
const _LMNERi = "ListManagedNotificationEventsResponse";
|
|
331
|
+
const _LNC = "ListNotificationConfigurations";
|
|
332
|
+
const _LNCR = "ListNotificationConfigurationsRequest";
|
|
333
|
+
const _LNCRi = "ListNotificationConfigurationsResponse";
|
|
334
|
+
const _LNE = "ListNotificationEvents";
|
|
335
|
+
const _LNER = "ListNotificationEventsRequest";
|
|
336
|
+
const _LNERi = "ListNotificationEventsResponse";
|
|
337
|
+
const _LNH = "ListNotificationHubs";
|
|
338
|
+
const _LNHR = "ListNotificationHubsRequest";
|
|
339
|
+
const _LNHRi = "ListNotificationHubsResponse";
|
|
340
|
+
const _LOU = "ListOrganizationalUnits";
|
|
341
|
+
const _LOUR = "ListOrganizationalUnitsRequest";
|
|
342
|
+
const _LOURi = "ListOrganizationalUnitsResponse";
|
|
343
|
+
const _LTFR = "ListTagsForResource";
|
|
344
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
345
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
346
|
+
const _M = "Media";
|
|
347
|
+
const _MA = "MemberAccount";
|
|
348
|
+
const _MAe = "MemberAccounts";
|
|
349
|
+
const _MC = "MessageComponents";
|
|
350
|
+
const _MCS = "MessageComponentsSummary";
|
|
351
|
+
const _ME = "MediaElement";
|
|
352
|
+
const _MNC = "ManagedNotificationConfigurations";
|
|
353
|
+
const _MNCA = "ManagedNotificationChannelAssociations";
|
|
354
|
+
const _MNCAS = "ManagedNotificationChannelAssociationSummary";
|
|
355
|
+
const _MNCE = "ManagedNotificationChildEvent";
|
|
356
|
+
const _MNCEO = "ManagedNotificationChildEventOverview";
|
|
357
|
+
const _MNCES = "ManagedNotificationChildEventSummary";
|
|
358
|
+
const _MNCEa = "ManagedNotificationChildEvents";
|
|
359
|
+
const _MNCS = "ManagedNotificationConfigurationStructure";
|
|
360
|
+
const _MNE = "ManagedNotificationEvent";
|
|
361
|
+
const _MNEO = "ManagedNotificationEventOverview";
|
|
362
|
+
const _MNES = "ManagedNotificationEventSummary";
|
|
363
|
+
const _MNEa = "ManagedNotificationEvents";
|
|
364
|
+
const _MSEMS = "ManagedSourceEventMetadataSummary";
|
|
365
|
+
const _NAFO = "NotificationsAccessForOrganization";
|
|
366
|
+
const _NC = "NotificationConfigurations";
|
|
367
|
+
const _NCS = "NotificationConfigurationStructure";
|
|
368
|
+
const _NE = "NotificationEvents";
|
|
369
|
+
const _NEO = "NotificationEventOverview";
|
|
370
|
+
const _NES = "NotificationEventSchema";
|
|
371
|
+
const _NESo = "NotificationEventSummary";
|
|
372
|
+
const _NH = "NotificationHubs";
|
|
373
|
+
const _NHO = "NotificationHubOverview";
|
|
374
|
+
const _NHSS = "NotificationHubStatusSummary";
|
|
375
|
+
const _R = "Resource";
|
|
376
|
+
const _RA = "Retry-After";
|
|
377
|
+
const _RNFE = "ResourceNotFoundException";
|
|
378
|
+
const _RNH = "RegisterNotificationHub";
|
|
379
|
+
const _RNHR = "RegisterNotificationHubRequest";
|
|
380
|
+
const _RNHRe = "RegisterNotificationHubResponse";
|
|
381
|
+
const _Re = "Resources";
|
|
382
|
+
const _SDD = "SummarizationDimensionDetail";
|
|
383
|
+
const _SDDu = "SummarizationDimensionDetails";
|
|
384
|
+
const _SDO = "SummarizationDimensionOverview";
|
|
385
|
+
const _SDOu = "SummarizationDimensionOverviews";
|
|
386
|
+
const _SEM = "SourceEventMetadata";
|
|
387
|
+
const _SEMS = "SourceEventMetadataSummary";
|
|
388
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
389
|
+
const _SSBR = "StatusSummaryByRegion";
|
|
390
|
+
const _TE = "ThrottlingException";
|
|
391
|
+
const _TP = "TextParts";
|
|
392
|
+
const _TPV = "TextPartValue";
|
|
393
|
+
const _TR = "TagResource";
|
|
394
|
+
const _TRR = "TagResourceRequest";
|
|
395
|
+
const _TRRa = "TagResourceResponse";
|
|
396
|
+
const _UER = "UpdateEventRule";
|
|
397
|
+
const _UERR = "UpdateEventRuleRequest";
|
|
398
|
+
const _UERRp = "UpdateEventRuleResponse";
|
|
399
|
+
const _UNC = "UpdateNotificationConfiguration";
|
|
400
|
+
const _UNCR = "UpdateNotificationConfigurationRequest";
|
|
401
|
+
const _UNCRp = "UpdateNotificationConfigurationResponse";
|
|
402
|
+
const _UR = "UntagResource";
|
|
403
|
+
const _URR = "UntagResourceRequest";
|
|
404
|
+
const _URRn = "UntagResourceResponse";
|
|
405
|
+
const _VE = "ValidationException";
|
|
406
|
+
const _VEF = "ValidationExceptionField";
|
|
407
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
408
|
+
const _a = "arn";
|
|
409
|
+
const _aA = "aggregatedAccounts";
|
|
410
|
+
const _aB = "aggregatedBy";
|
|
411
|
+
const _aD = "aggregationDuration";
|
|
412
|
+
const _aDg = "aggregationDetail";
|
|
413
|
+
const _aET = "aggregationEventType";
|
|
414
|
+
const _aI = "accountId";
|
|
415
|
+
const _aMNEA = "aggregateManagedNotificationEventArn";
|
|
416
|
+
const _aNEA = "aggregateNotificationEventArn";
|
|
417
|
+
const _aNR = "aggregatedNotificationRegions";
|
|
418
|
+
const _aOU = "aggregatedOrganizationalUnits";
|
|
419
|
+
const _aR = "aggregatedRegions";
|
|
420
|
+
const _aS = "aggregationSummary";
|
|
421
|
+
const _aSD = "additionalSummarizationDimensions";
|
|
422
|
+
const _aSc = "accessStatus";
|
|
423
|
+
const _c = "client";
|
|
424
|
+
const _cA = "channelArn";
|
|
425
|
+
const _cAh = "channelAssociations";
|
|
426
|
+
const _cD = "completeDescription";
|
|
427
|
+
const _cE = "childEvent";
|
|
428
|
+
const _cI = "contactIdentifier";
|
|
429
|
+
const _cIh = "channelIdentifier";
|
|
430
|
+
const _cT = "creationTime";
|
|
431
|
+
const _cTh = "channelType";
|
|
432
|
+
const _ca = "category";
|
|
433
|
+
const _cap = "caption";
|
|
434
|
+
const _ch = "channels";
|
|
435
|
+
const _co = "content";
|
|
436
|
+
const _cou = "count";
|
|
437
|
+
const _d = "description";
|
|
438
|
+
const _dT = "displayText";
|
|
439
|
+
const _dU = "detailUrl";
|
|
440
|
+
const _di = "dimensions";
|
|
441
|
+
const _e = "error";
|
|
442
|
+
const _eC = "eventCount";
|
|
443
|
+
const _eOR = "eventOriginRegion";
|
|
444
|
+
const _eOT = "eventOccurrenceTime";
|
|
445
|
+
const _eP = "eventPattern";
|
|
446
|
+
const _eR = "eventRules";
|
|
447
|
+
const _eRS = "eventRuleSource";
|
|
448
|
+
const _eS = "eventStatus";
|
|
449
|
+
const _eT = "eventType";
|
|
450
|
+
const _eTV = "eventTypeVersion";
|
|
451
|
+
const _eTn = "endTime";
|
|
452
|
+
const _fL = "fieldList";
|
|
453
|
+
const _h = "headline";
|
|
454
|
+
const _hE = "httpError";
|
|
455
|
+
const _hH = "httpHeader";
|
|
456
|
+
const _hQ = "httpQuery";
|
|
457
|
+
const _ht = "http";
|
|
458
|
+
const _i = "id";
|
|
459
|
+
const _iCE = "includeChildEvents";
|
|
460
|
+
const _l = "locale";
|
|
461
|
+
const _lAT = "lastActivationTime";
|
|
462
|
+
const _m = "message";
|
|
463
|
+
const _mA = "memberAccount";
|
|
464
|
+
const _mAe = "memberAccounts";
|
|
465
|
+
const _mC = "messageComponents";
|
|
466
|
+
const _mI = "mediaId";
|
|
467
|
+
const _mNC = "managedNotificationConfigurations";
|
|
468
|
+
const _mNCA = "managedNotificationConfigurationArn";
|
|
469
|
+
const _mNCE = "managedNotificationChildEvents";
|
|
470
|
+
const _mNE = "managedNotificationEvents";
|
|
471
|
+
const _mR = "managedRules";
|
|
472
|
+
const _mRa = "maxResults";
|
|
473
|
+
const _me = "media";
|
|
474
|
+
const _n = "name";
|
|
475
|
+
const _nAFO = "notificationsAccessForOrganization";
|
|
476
|
+
const _nC = "notificationConfigurations";
|
|
477
|
+
const _nCA = "notificationConfigurationArn";
|
|
478
|
+
const _nE = "notificationEvents";
|
|
479
|
+
const _nEo = "notificationEvent";
|
|
480
|
+
const _nH = "notificationHubs";
|
|
481
|
+
const _nHR = "notificationHubRegion";
|
|
482
|
+
const _nT = "nextToken";
|
|
483
|
+
const _nTo = "notificationType";
|
|
484
|
+
const _oO = "overrideOption";
|
|
485
|
+
const _oU = "organizationalUnits";
|
|
486
|
+
const _oUI = "organizationalUnitId";
|
|
487
|
+
const _pS = "paragraphSummary";
|
|
488
|
+
const _qC = "quotaCode";
|
|
489
|
+
const _r = "reason";
|
|
490
|
+
const _rA = "relatedAccount";
|
|
491
|
+
const _rAS = "retryAfterSeconds";
|
|
492
|
+
const _rI = "resourceId";
|
|
493
|
+
const _rR = "relatedResources";
|
|
494
|
+
const _rT = "resourceType";
|
|
495
|
+
const _re = "regions";
|
|
496
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.notifications";
|
|
497
|
+
const _sC = "serviceCode";
|
|
498
|
+
const _sCu = "subCategory";
|
|
499
|
+
const _sD = "summarizationDimensions";
|
|
500
|
+
const _sEDU = "sourceEventDetailUrl";
|
|
501
|
+
const _sEDUDT = "sourceEventDetailUrlDisplayText";
|
|
502
|
+
const _sEI = "sourceEventId";
|
|
503
|
+
const _sEM = "sourceEventMetadata";
|
|
504
|
+
const _sR = "statusReason";
|
|
505
|
+
const _sS = "statusSummary";
|
|
506
|
+
const _sSBR = "statusSummaryByRegion";
|
|
507
|
+
const _sT = "startTime";
|
|
508
|
+
const _sV = "schemaVersion";
|
|
509
|
+
const _sVa = "sampleValues";
|
|
510
|
+
const _se = "server";
|
|
511
|
+
const _so = "source";
|
|
512
|
+
const _st = "status";
|
|
513
|
+
const _su = "subtype";
|
|
514
|
+
const _t = "tags";
|
|
515
|
+
const _tBL = "textByLocale";
|
|
516
|
+
const _tK = "tagKeys";
|
|
517
|
+
const _tP = "textParts";
|
|
518
|
+
const _ty = "type";
|
|
519
|
+
const _u = "url";
|
|
520
|
+
const _v = "value";
|
|
521
|
+
const n0 = "com.amazonaws.notifications";
|
|
522
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
523
|
+
var NotificationsServiceException$ = [-3, _s, "NotificationsServiceException", 0, [], []];
|
|
524
|
+
_s_registry.registerError(NotificationsServiceException$, NotificationsServiceException);
|
|
525
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
526
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
527
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
528
|
+
[_m],
|
|
529
|
+
[0], 1
|
|
530
|
+
];
|
|
531
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
532
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
533
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
534
|
+
[_m, _rI],
|
|
535
|
+
[0, 0], 2
|
|
536
|
+
];
|
|
537
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
538
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
539
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
540
|
+
[_m],
|
|
541
|
+
[0], 1
|
|
542
|
+
];
|
|
543
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
544
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
545
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
546
|
+
[_m, _rI],
|
|
547
|
+
[0, 0], 2
|
|
548
|
+
];
|
|
549
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
550
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
551
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
552
|
+
[_m, _rT, _rI, _sC, _qC],
|
|
553
|
+
[0, 0, 0, 0, 0], 2
|
|
554
|
+
];
|
|
555
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
556
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
557
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
558
|
+
[_m, _sC, _qC, _rAS],
|
|
559
|
+
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
560
|
+
];
|
|
561
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
562
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
563
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
564
|
+
[_m, _r, _fL],
|
|
565
|
+
[0, 0, () => ValidationExceptionFieldList], 1
|
|
566
|
+
];
|
|
567
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
568
|
+
const errorTypeRegistries = [
|
|
569
|
+
_s_registry,
|
|
570
|
+
n0_registry,
|
|
571
|
+
];
|
|
572
|
+
var AggregationDetail$ = [3, n0, _AD,
|
|
573
|
+
0,
|
|
574
|
+
[_sD],
|
|
575
|
+
[() => SummarizationDimensionDetails]
|
|
576
|
+
];
|
|
577
|
+
var AggregationKey$ = [3, n0, _AK,
|
|
578
|
+
0,
|
|
579
|
+
[_n, _v],
|
|
580
|
+
[0, 0], 2
|
|
581
|
+
];
|
|
582
|
+
var AggregationSummary$ = [3, n0, _AS,
|
|
583
|
+
0,
|
|
584
|
+
[_eC, _aB, _aA, _aR, _aOU, _aSD],
|
|
585
|
+
[1, () => AggregationKeys, () => SummarizationDimensionOverview$, () => SummarizationDimensionOverview$, () => SummarizationDimensionOverview$, () => SummarizationDimensionOverviews], 4
|
|
586
|
+
];
|
|
587
|
+
var AssociateChannelRequest$ = [3, n0, _ACR,
|
|
588
|
+
0,
|
|
589
|
+
[_a, _nCA],
|
|
590
|
+
[[0, 1], 0], 2
|
|
591
|
+
];
|
|
592
|
+
var AssociateChannelResponse$ = [3, n0, _ACRs,
|
|
593
|
+
0,
|
|
594
|
+
[],
|
|
595
|
+
[]
|
|
596
|
+
];
|
|
597
|
+
var AssociateManagedNotificationAccountContactRequest$ = [3, n0, _AMNACR,
|
|
598
|
+
0,
|
|
599
|
+
[_cI, _mNCA],
|
|
600
|
+
[[0, 1], 0], 2
|
|
601
|
+
];
|
|
602
|
+
var AssociateManagedNotificationAccountContactResponse$ = [3, n0, _AMNACRs,
|
|
603
|
+
0,
|
|
604
|
+
[],
|
|
605
|
+
[]
|
|
606
|
+
];
|
|
607
|
+
var AssociateManagedNotificationAdditionalChannelRequest$ = [3, n0, _AMNACRss,
|
|
608
|
+
0,
|
|
609
|
+
[_cA, _mNCA],
|
|
610
|
+
[[0, 1], 0], 2
|
|
611
|
+
];
|
|
612
|
+
var AssociateManagedNotificationAdditionalChannelResponse$ = [3, n0, _AMNACRsso,
|
|
613
|
+
0,
|
|
614
|
+
[],
|
|
615
|
+
[]
|
|
616
|
+
];
|
|
617
|
+
var AssociateOrganizationalUnitRequest$ = [3, n0, _AOUR,
|
|
618
|
+
0,
|
|
619
|
+
[_oUI, _nCA],
|
|
620
|
+
[[0, 1], 0], 2
|
|
621
|
+
];
|
|
622
|
+
var AssociateOrganizationalUnitResponse$ = [3, n0, _AOURs,
|
|
623
|
+
0,
|
|
624
|
+
[],
|
|
625
|
+
[]
|
|
626
|
+
];
|
|
627
|
+
var CreateEventRuleRequest$ = [3, n0, _CERR,
|
|
628
|
+
0,
|
|
629
|
+
[_nCA, _so, _eT, _re, _eP],
|
|
630
|
+
[0, 0, 0, 64 | 0, 0], 4
|
|
631
|
+
];
|
|
632
|
+
var CreateEventRuleResponse$ = [3, n0, _CERRr,
|
|
633
|
+
0,
|
|
634
|
+
[_a, _nCA, _sSBR],
|
|
635
|
+
[0, 0, () => StatusSummaryByRegion], 3
|
|
636
|
+
];
|
|
637
|
+
var CreateNotificationConfigurationRequest$ = [3, n0, _CNCR,
|
|
638
|
+
0,
|
|
639
|
+
[_n, _d, _aD, _t],
|
|
640
|
+
[0, 0, 0, 128 | 0], 2
|
|
641
|
+
];
|
|
642
|
+
var CreateNotificationConfigurationResponse$ = [3, n0, _CNCRr,
|
|
643
|
+
0,
|
|
644
|
+
[_a, _st],
|
|
645
|
+
[0, 0], 2
|
|
646
|
+
];
|
|
647
|
+
var DeleteEventRuleRequest$ = [3, n0, _DERR,
|
|
648
|
+
0,
|
|
649
|
+
[_a],
|
|
650
|
+
[[0, 1]], 1
|
|
651
|
+
];
|
|
652
|
+
var DeleteEventRuleResponse$ = [3, n0, _DERRe,
|
|
653
|
+
0,
|
|
654
|
+
[],
|
|
655
|
+
[]
|
|
656
|
+
];
|
|
657
|
+
var DeleteNotificationConfigurationRequest$ = [3, n0, _DNCR,
|
|
658
|
+
0,
|
|
659
|
+
[_a],
|
|
660
|
+
[[0, 1]], 1
|
|
661
|
+
];
|
|
662
|
+
var DeleteNotificationConfigurationResponse$ = [3, n0, _DNCRe,
|
|
663
|
+
0,
|
|
664
|
+
[],
|
|
665
|
+
[]
|
|
666
|
+
];
|
|
667
|
+
var DeregisterNotificationHubRequest$ = [3, n0, _DNHR,
|
|
668
|
+
0,
|
|
669
|
+
[_nHR],
|
|
670
|
+
[[0, 1]], 1
|
|
671
|
+
];
|
|
672
|
+
var DeregisterNotificationHubResponse$ = [3, n0, _DNHRe,
|
|
673
|
+
0,
|
|
674
|
+
[_nHR, _sS],
|
|
675
|
+
[0, () => NotificationHubStatusSummary$], 2
|
|
676
|
+
];
|
|
677
|
+
var Dimension$ = [3, n0, _D,
|
|
678
|
+
0,
|
|
679
|
+
[_n, _v],
|
|
680
|
+
[0, 0], 2
|
|
681
|
+
];
|
|
682
|
+
var DisableNotificationsAccessForOrganizationRequest$ = [3, n0, _DNAFOR,
|
|
683
|
+
0,
|
|
684
|
+
[],
|
|
685
|
+
[]
|
|
686
|
+
];
|
|
687
|
+
var DisableNotificationsAccessForOrganizationResponse$ = [3, n0, _DNAFORi,
|
|
688
|
+
0,
|
|
689
|
+
[],
|
|
690
|
+
[]
|
|
691
|
+
];
|
|
692
|
+
var DisassociateChannelRequest$ = [3, n0, _DCR,
|
|
693
|
+
0,
|
|
694
|
+
[_a, _nCA],
|
|
695
|
+
[[0, 1], 0], 2
|
|
696
|
+
];
|
|
697
|
+
var DisassociateChannelResponse$ = [3, n0, _DCRi,
|
|
698
|
+
0,
|
|
699
|
+
[],
|
|
700
|
+
[]
|
|
701
|
+
];
|
|
702
|
+
var DisassociateManagedNotificationAccountContactRequest$ = [3, n0, _DMNACR,
|
|
703
|
+
0,
|
|
704
|
+
[_cI, _mNCA],
|
|
705
|
+
[[0, 1], 0], 2
|
|
706
|
+
];
|
|
707
|
+
var DisassociateManagedNotificationAccountContactResponse$ = [3, n0, _DMNACRi,
|
|
708
|
+
0,
|
|
709
|
+
[],
|
|
710
|
+
[]
|
|
711
|
+
];
|
|
712
|
+
var DisassociateManagedNotificationAdditionalChannelRequest$ = [3, n0, _DMNACRis,
|
|
713
|
+
0,
|
|
714
|
+
[_cA, _mNCA],
|
|
715
|
+
[[0, 1], 0], 2
|
|
716
|
+
];
|
|
717
|
+
var DisassociateManagedNotificationAdditionalChannelResponse$ = [3, n0, _DMNACRisa,
|
|
718
|
+
0,
|
|
719
|
+
[],
|
|
720
|
+
[]
|
|
721
|
+
];
|
|
722
|
+
var DisassociateOrganizationalUnitRequest$ = [3, n0, _DOUR,
|
|
723
|
+
0,
|
|
724
|
+
[_oUI, _nCA],
|
|
725
|
+
[[0, 1], 0], 2
|
|
726
|
+
];
|
|
727
|
+
var DisassociateOrganizationalUnitResponse$ = [3, n0, _DOURi,
|
|
728
|
+
0,
|
|
729
|
+
[],
|
|
730
|
+
[]
|
|
731
|
+
];
|
|
732
|
+
var EnableNotificationsAccessForOrganizationRequest$ = [3, n0, _ENAFOR,
|
|
733
|
+
0,
|
|
734
|
+
[],
|
|
735
|
+
[]
|
|
736
|
+
];
|
|
737
|
+
var EnableNotificationsAccessForOrganizationResponse$ = [3, n0, _ENAFORn,
|
|
738
|
+
0,
|
|
739
|
+
[],
|
|
740
|
+
[]
|
|
741
|
+
];
|
|
742
|
+
var EventRuleStatusSummary$ = [3, n0, _ERSS,
|
|
743
|
+
0,
|
|
744
|
+
[_st, _r],
|
|
745
|
+
[0, 0], 2
|
|
746
|
+
];
|
|
747
|
+
var EventRuleStructure$ = [3, n0, _ERS,
|
|
748
|
+
0,
|
|
749
|
+
[_a, _nCA, _cT, _so, _eT, _eP, _re, _mR, _sSBR],
|
|
750
|
+
[0, 0, 5, 0, 0, 0, 64 | 0, 64 | 0, () => StatusSummaryByRegion], 9
|
|
751
|
+
];
|
|
752
|
+
var GetEventRuleRequest$ = [3, n0, _GERR,
|
|
753
|
+
0,
|
|
754
|
+
[_a],
|
|
755
|
+
[[0, 1]], 1
|
|
756
|
+
];
|
|
757
|
+
var GetEventRuleResponse$ = [3, n0, _GERRe,
|
|
758
|
+
0,
|
|
759
|
+
[_a, _nCA, _cT, _so, _eT, _eP, _re, _mR, _sSBR],
|
|
760
|
+
[0, 0, 5, 0, 0, 0, 64 | 0, 64 | 0, () => StatusSummaryByRegion], 9
|
|
761
|
+
];
|
|
762
|
+
var GetManagedNotificationChildEventRequest$ = [3, n0, _GMNCER,
|
|
763
|
+
0,
|
|
764
|
+
[_a, _l],
|
|
765
|
+
[[0, 1], [0, { [_hQ]: _l }]], 1
|
|
766
|
+
];
|
|
767
|
+
var GetManagedNotificationChildEventResponse$ = [3, n0, _GMNCERe,
|
|
768
|
+
0,
|
|
769
|
+
[_a, _mNCA, _cT, _co],
|
|
770
|
+
[0, 0, 5, () => ManagedNotificationChildEvent$], 4
|
|
771
|
+
];
|
|
772
|
+
var GetManagedNotificationConfigurationRequest$ = [3, n0, _GMNCR,
|
|
773
|
+
0,
|
|
774
|
+
[_a],
|
|
775
|
+
[[0, 1]], 1
|
|
776
|
+
];
|
|
777
|
+
var GetManagedNotificationConfigurationResponse$ = [3, n0, _GMNCRe,
|
|
778
|
+
0,
|
|
779
|
+
[_a, _n, _d, _ca, _sCu],
|
|
780
|
+
[0, 0, 0, 0, 0], 5
|
|
781
|
+
];
|
|
782
|
+
var GetManagedNotificationEventRequest$ = [3, n0, _GMNER,
|
|
783
|
+
0,
|
|
784
|
+
[_a, _l],
|
|
785
|
+
[[0, 1], [0, { [_hQ]: _l }]], 1
|
|
786
|
+
];
|
|
787
|
+
var GetManagedNotificationEventResponse$ = [3, n0, _GMNERe,
|
|
788
|
+
0,
|
|
789
|
+
[_a, _mNCA, _cT, _co],
|
|
790
|
+
[0, 0, 5, () => ManagedNotificationEvent$], 4
|
|
791
|
+
];
|
|
792
|
+
var GetNotificationConfigurationRequest$ = [3, n0, _GNCR,
|
|
793
|
+
0,
|
|
794
|
+
[_a],
|
|
795
|
+
[[0, 1]], 1
|
|
796
|
+
];
|
|
797
|
+
var GetNotificationConfigurationResponse$ = [3, n0, _GNCRe,
|
|
798
|
+
0,
|
|
799
|
+
[_a, _n, _d, _st, _cT, _aD, _su],
|
|
800
|
+
[0, 0, 0, 0, 5, 0, 0], 5
|
|
801
|
+
];
|
|
802
|
+
var GetNotificationEventRequest$ = [3, n0, _GNER,
|
|
803
|
+
0,
|
|
804
|
+
[_a, _l],
|
|
805
|
+
[[0, 1], [0, { [_hQ]: _l }]], 1
|
|
806
|
+
];
|
|
807
|
+
var GetNotificationEventResponse$ = [3, n0, _GNERe,
|
|
808
|
+
0,
|
|
809
|
+
[_a, _nCA, _cT, _co],
|
|
810
|
+
[0, 0, 5, () => NotificationEventSchema$], 4
|
|
811
|
+
];
|
|
812
|
+
var GetNotificationsAccessForOrganizationRequest$ = [3, n0, _GNAFOR,
|
|
813
|
+
0,
|
|
814
|
+
[],
|
|
815
|
+
[]
|
|
816
|
+
];
|
|
817
|
+
var GetNotificationsAccessForOrganizationResponse$ = [3, n0, _GNAFORe,
|
|
818
|
+
0,
|
|
819
|
+
[_nAFO],
|
|
820
|
+
[() => NotificationsAccessForOrganization$], 1
|
|
821
|
+
];
|
|
822
|
+
var ListChannelsRequest$ = [3, n0, _LCR,
|
|
823
|
+
0,
|
|
824
|
+
[_nCA, _mRa, _nT],
|
|
825
|
+
[[0, { [_hQ]: _nCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
826
|
+
];
|
|
827
|
+
var ListChannelsResponse$ = [3, n0, _LCRi,
|
|
828
|
+
0,
|
|
829
|
+
[_ch, _nT],
|
|
830
|
+
[64 | 0, 0], 1
|
|
831
|
+
];
|
|
832
|
+
var ListEventRulesRequest$ = [3, n0, _LERR,
|
|
833
|
+
0,
|
|
834
|
+
[_nCA, _mRa, _nT],
|
|
835
|
+
[[0, { [_hQ]: _nCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
836
|
+
];
|
|
837
|
+
var ListEventRulesResponse$ = [3, n0, _LERRi,
|
|
838
|
+
0,
|
|
839
|
+
[_eR, _nT],
|
|
840
|
+
[() => EventRules, 0], 1
|
|
841
|
+
];
|
|
842
|
+
var ListManagedNotificationChannelAssociationsRequest$ = [3, n0, _LMNCAR,
|
|
843
|
+
0,
|
|
844
|
+
[_mNCA, _mRa, _nT],
|
|
845
|
+
[[0, { [_hQ]: _mNCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
846
|
+
];
|
|
847
|
+
var ListManagedNotificationChannelAssociationsResponse$ = [3, n0, _LMNCARi,
|
|
848
|
+
0,
|
|
849
|
+
[_cAh, _nT],
|
|
850
|
+
[() => ManagedNotificationChannelAssociations, 0], 1
|
|
851
|
+
];
|
|
852
|
+
var ListManagedNotificationChildEventsRequest$ = [3, n0, _LMNCER,
|
|
853
|
+
0,
|
|
854
|
+
[_aMNEA, _sT, _eTn, _l, _mRa, _rA, _oUI, _nT],
|
|
855
|
+
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eTn }], [0, { [_hQ]: _l }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _rA }], [0, { [_hQ]: _oUI }], [0, { [_hQ]: _nT }]], 1
|
|
856
|
+
];
|
|
857
|
+
var ListManagedNotificationChildEventsResponse$ = [3, n0, _LMNCERi,
|
|
858
|
+
0,
|
|
859
|
+
[_mNCE, _nT],
|
|
860
|
+
[() => ManagedNotificationChildEvents, 0], 1
|
|
861
|
+
];
|
|
862
|
+
var ListManagedNotificationConfigurationsRequest$ = [3, n0, _LMNCR,
|
|
863
|
+
0,
|
|
864
|
+
[_cIh, _mRa, _nT],
|
|
865
|
+
[[0, { [_hQ]: _cIh }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
866
|
+
];
|
|
867
|
+
var ListManagedNotificationConfigurationsResponse$ = [3, n0, _LMNCRi,
|
|
868
|
+
0,
|
|
869
|
+
[_mNC, _nT],
|
|
870
|
+
[() => ManagedNotificationConfigurations, 0], 1
|
|
871
|
+
];
|
|
872
|
+
var ListManagedNotificationEventsRequest$ = [3, n0, _LMNER,
|
|
873
|
+
0,
|
|
874
|
+
[_sT, _eTn, _l, _so, _mRa, _nT, _oUI, _rA],
|
|
875
|
+
[[5, { [_hQ]: _sT }], [5, { [_hQ]: _eTn }], [0, { [_hQ]: _l }], [0, { [_hQ]: _so }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _oUI }], [0, { [_hQ]: _rA }]]
|
|
876
|
+
];
|
|
877
|
+
var ListManagedNotificationEventsResponse$ = [3, n0, _LMNERi,
|
|
878
|
+
0,
|
|
879
|
+
[_mNE, _nT],
|
|
880
|
+
[() => ManagedNotificationEvents, 0], 1
|
|
881
|
+
];
|
|
882
|
+
var ListMemberAccountsRequest$ = [3, n0, _LMAR,
|
|
883
|
+
0,
|
|
884
|
+
[_nCA, _mRa, _nT, _mA, _st, _oUI],
|
|
885
|
+
[[0, { [_hQ]: _nCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _mA }], [0, { [_hQ]: _st }], [0, { [_hQ]: _oUI }]], 1
|
|
886
|
+
];
|
|
887
|
+
var ListMemberAccountsResponse$ = [3, n0, _LMARi,
|
|
888
|
+
0,
|
|
889
|
+
[_mAe, _nT],
|
|
890
|
+
[() => MemberAccounts, 0], 1
|
|
891
|
+
];
|
|
892
|
+
var ListNotificationConfigurationsRequest$ = [3, n0, _LNCR,
|
|
893
|
+
0,
|
|
894
|
+
[_eRS, _cA, _st, _su, _mRa, _nT],
|
|
895
|
+
[[0, { [_hQ]: _eRS }], [0, { [_hQ]: _cA }], [0, { [_hQ]: _st }], [0, { [_hQ]: _su }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
896
|
+
];
|
|
897
|
+
var ListNotificationConfigurationsResponse$ = [3, n0, _LNCRi,
|
|
898
|
+
0,
|
|
899
|
+
[_nC, _nT],
|
|
900
|
+
[() => NotificationConfigurations, 0], 1
|
|
901
|
+
];
|
|
902
|
+
var ListNotificationEventsRequest$ = [3, n0, _LNER,
|
|
903
|
+
0,
|
|
904
|
+
[_sT, _eTn, _l, _so, _iCE, _aNEA, _mRa, _nT, _oUI],
|
|
905
|
+
[[5, { [_hQ]: _sT }], [5, { [_hQ]: _eTn }], [0, { [_hQ]: _l }], [0, { [_hQ]: _so }], [2, { [_hQ]: _iCE }], [0, { [_hQ]: _aNEA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _oUI }]]
|
|
906
|
+
];
|
|
907
|
+
var ListNotificationEventsResponse$ = [3, n0, _LNERi,
|
|
908
|
+
0,
|
|
909
|
+
[_nE, _nT],
|
|
910
|
+
[() => NotificationEvents, 0], 1
|
|
911
|
+
];
|
|
912
|
+
var ListNotificationHubsRequest$ = [3, n0, _LNHR,
|
|
913
|
+
0,
|
|
914
|
+
[_mRa, _nT],
|
|
915
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
916
|
+
];
|
|
917
|
+
var ListNotificationHubsResponse$ = [3, n0, _LNHRi,
|
|
918
|
+
0,
|
|
919
|
+
[_nH, _nT],
|
|
920
|
+
[() => NotificationHubs, 0], 1
|
|
921
|
+
];
|
|
922
|
+
var ListOrganizationalUnitsRequest$ = [3, n0, _LOUR,
|
|
923
|
+
0,
|
|
924
|
+
[_nCA, _mRa, _nT],
|
|
925
|
+
[[0, { [_hQ]: _nCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
926
|
+
];
|
|
927
|
+
var ListOrganizationalUnitsResponse$ = [3, n0, _LOURi,
|
|
928
|
+
0,
|
|
929
|
+
[_oU, _nT],
|
|
930
|
+
[64 | 0, 0], 1
|
|
931
|
+
];
|
|
932
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
933
|
+
0,
|
|
934
|
+
[_a],
|
|
935
|
+
[[0, 1]], 1
|
|
936
|
+
];
|
|
937
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
938
|
+
0,
|
|
939
|
+
[_t],
|
|
940
|
+
[128 | 0]
|
|
941
|
+
];
|
|
942
|
+
var ManagedNotificationChannelAssociationSummary$ = [3, n0, _MNCAS,
|
|
943
|
+
0,
|
|
944
|
+
[_cIh, _cTh, _oO],
|
|
945
|
+
[0, 0, 0], 2
|
|
946
|
+
];
|
|
947
|
+
var ManagedNotificationChildEvent$ = [3, n0, _MNCE,
|
|
948
|
+
0,
|
|
949
|
+
[_sV, _i, _mC, _nTo, _aMNEA, _tP, _sEDU, _sEDUDT, _eS, _sT, _eTn, _oUI, _aDg],
|
|
950
|
+
[0, 0, () => MessageComponents$, 0, 0, () => TextParts, 0, 0, 0, 5, 5, 0, () => AggregationDetail$], 6
|
|
951
|
+
];
|
|
952
|
+
var ManagedNotificationChildEventOverview$ = [3, n0, _MNCEO,
|
|
953
|
+
0,
|
|
954
|
+
[_a, _mNCA, _rA, _cT, _cE, _aMNEA, _oUI],
|
|
955
|
+
[0, 0, 0, 5, () => ManagedNotificationChildEventSummary$, 0, 0], 6
|
|
956
|
+
];
|
|
957
|
+
var ManagedNotificationChildEventSummary$ = [3, n0, _MNCES,
|
|
958
|
+
0,
|
|
959
|
+
[_sV, _sEM, _mC, _aDg, _eS, _nTo],
|
|
960
|
+
[0, () => ManagedSourceEventMetadataSummary$, () => MessageComponentsSummary$, () => AggregationDetail$, 0, 0], 6
|
|
961
|
+
];
|
|
962
|
+
var ManagedNotificationConfigurationStructure$ = [3, n0, _MNCS,
|
|
963
|
+
0,
|
|
964
|
+
[_a, _n, _d],
|
|
965
|
+
[0, 0, 0], 3
|
|
966
|
+
];
|
|
967
|
+
var ManagedNotificationEvent$ = [3, n0, _MNE,
|
|
968
|
+
0,
|
|
969
|
+
[_sV, _i, _mC, _nTo, _tP, _sEDU, _sEDUDT, _eS, _aET, _aS, _sT, _eTn, _oUI],
|
|
970
|
+
[0, 0, () => MessageComponents$, 0, () => TextParts, 0, 0, 0, 0, () => AggregationSummary$, 5, 5, 0], 5
|
|
971
|
+
];
|
|
972
|
+
var ManagedNotificationEventOverview$ = [3, n0, _MNEO,
|
|
973
|
+
0,
|
|
974
|
+
[_a, _mNCA, _rA, _cT, _nEo, _aET, _oUI, _aS, _aNR],
|
|
975
|
+
[0, 0, 0, 5, () => ManagedNotificationEventSummary$, 0, 0, () => AggregationSummary$, 64 | 0], 5
|
|
976
|
+
];
|
|
977
|
+
var ManagedNotificationEventSummary$ = [3, n0, _MNES,
|
|
978
|
+
0,
|
|
979
|
+
[_sV, _sEM, _mC, _eS, _nTo],
|
|
980
|
+
[0, () => ManagedSourceEventMetadataSummary$, () => MessageComponentsSummary$, 0, 0], 5
|
|
981
|
+
];
|
|
982
|
+
var ManagedSourceEventMetadataSummary$ = [3, n0, _MSEMS,
|
|
983
|
+
0,
|
|
984
|
+
[_so, _eT, _eOR],
|
|
985
|
+
[0, 0, 0], 2
|
|
986
|
+
];
|
|
987
|
+
var MediaElement$ = [3, n0, _ME,
|
|
988
|
+
0,
|
|
989
|
+
[_mI, _ty, _u, _cap],
|
|
990
|
+
[0, 0, 0, 0], 4
|
|
991
|
+
];
|
|
992
|
+
var MemberAccount$ = [3, n0, _MA,
|
|
993
|
+
0,
|
|
994
|
+
[_aI, _st, _sR, _oUI, _nCA],
|
|
995
|
+
[0, 0, 0, 0, 0], 4
|
|
996
|
+
];
|
|
997
|
+
var MessageComponents$ = [3, n0, _MC,
|
|
998
|
+
0,
|
|
999
|
+
[_h, _pS, _cD, _di],
|
|
1000
|
+
[0, 0, 0, () => Dimensions]
|
|
1001
|
+
];
|
|
1002
|
+
var MessageComponentsSummary$ = [3, n0, _MCS,
|
|
1003
|
+
0,
|
|
1004
|
+
[_h],
|
|
1005
|
+
[0], 1
|
|
1006
|
+
];
|
|
1007
|
+
var NotificationConfigurationStructure$ = [3, n0, _NCS,
|
|
1008
|
+
0,
|
|
1009
|
+
[_a, _n, _d, _st, _cT, _aD, _su],
|
|
1010
|
+
[0, 0, 0, 0, 5, 0, 0], 5
|
|
1011
|
+
];
|
|
1012
|
+
var NotificationEventOverview$ = [3, n0, _NEO,
|
|
1013
|
+
0,
|
|
1014
|
+
[_a, _nCA, _rA, _cT, _nEo, _aET, _aNEA, _aS, _oUI],
|
|
1015
|
+
[0, 0, 0, 5, () => NotificationEventSummary$, 0, 0, () => AggregationSummary$, 0], 5
|
|
1016
|
+
];
|
|
1017
|
+
var NotificationEventSchema$ = [3, n0, _NES,
|
|
1018
|
+
0,
|
|
1019
|
+
[_sV, _i, _sEM, _mC, _nTo, _tP, _me, _sEDU, _sEDUDT, _eS, _aET, _aNEA, _aS, _sT, _eTn, _oUI],
|
|
1020
|
+
[0, 0, () => SourceEventMetadata$, () => MessageComponents$, 0, () => TextParts, () => Media, 0, 0, 0, 0, 0, () => AggregationSummary$, 5, 5, 0], 7
|
|
1021
|
+
];
|
|
1022
|
+
var NotificationEventSummary$ = [3, n0, _NESo,
|
|
1023
|
+
0,
|
|
1024
|
+
[_sV, _sEM, _mC, _eS, _nTo],
|
|
1025
|
+
[0, () => SourceEventMetadataSummary$, () => MessageComponentsSummary$, 0, 0], 5
|
|
1026
|
+
];
|
|
1027
|
+
var NotificationHubOverview$ = [3, n0, _NHO,
|
|
1028
|
+
0,
|
|
1029
|
+
[_nHR, _sS, _cT, _lAT],
|
|
1030
|
+
[0, () => NotificationHubStatusSummary$, 5, 5], 3
|
|
1031
|
+
];
|
|
1032
|
+
var NotificationHubStatusSummary$ = [3, n0, _NHSS,
|
|
1033
|
+
0,
|
|
1034
|
+
[_st, _r],
|
|
1035
|
+
[0, 0], 2
|
|
1036
|
+
];
|
|
1037
|
+
var NotificationsAccessForOrganization$ = [3, n0, _NAFO,
|
|
1038
|
+
0,
|
|
1039
|
+
[_aSc],
|
|
1040
|
+
[0], 1
|
|
1041
|
+
];
|
|
1042
|
+
var RegisterNotificationHubRequest$ = [3, n0, _RNHR,
|
|
1043
|
+
0,
|
|
1044
|
+
[_nHR],
|
|
1045
|
+
[0], 1
|
|
1046
|
+
];
|
|
1047
|
+
var RegisterNotificationHubResponse$ = [3, n0, _RNHRe,
|
|
1048
|
+
0,
|
|
1049
|
+
[_nHR, _sS, _cT, _lAT],
|
|
1050
|
+
[0, () => NotificationHubStatusSummary$, 5, 5], 3
|
|
1051
|
+
];
|
|
1052
|
+
var Resource$ = [3, n0, _R,
|
|
1053
|
+
0,
|
|
1054
|
+
[_i, _a, _dU, _t],
|
|
1055
|
+
[0, 0, 0, 64 | 0]
|
|
1056
|
+
];
|
|
1057
|
+
var SourceEventMetadata$ = [3, n0, _SEM,
|
|
1058
|
+
0,
|
|
1059
|
+
[_eTV, _sEI, _rA, _so, _eOT, _eT, _rR, _eOR],
|
|
1060
|
+
[0, 0, 0, 0, 5, 0, () => Resources, 0], 7
|
|
1061
|
+
];
|
|
1062
|
+
var SourceEventMetadataSummary$ = [3, n0, _SEMS,
|
|
1063
|
+
0,
|
|
1064
|
+
[_so, _eT, _eOR],
|
|
1065
|
+
[0, 0, 0], 2
|
|
1066
|
+
];
|
|
1067
|
+
var SummarizationDimensionDetail$ = [3, n0, _SDD,
|
|
1068
|
+
0,
|
|
1069
|
+
[_n, _v],
|
|
1070
|
+
[0, 0], 2
|
|
1071
|
+
];
|
|
1072
|
+
var SummarizationDimensionOverview$ = [3, n0, _SDO,
|
|
1073
|
+
0,
|
|
1074
|
+
[_n, _cou, _sVa],
|
|
1075
|
+
[0, 1, 64 | 0], 2
|
|
1076
|
+
];
|
|
1077
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1078
|
+
0,
|
|
1079
|
+
[_a, _t],
|
|
1080
|
+
[[0, 1], 128 | 0], 2
|
|
1081
|
+
];
|
|
1082
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1083
|
+
0,
|
|
1084
|
+
[],
|
|
1085
|
+
[]
|
|
1086
|
+
];
|
|
1087
|
+
var TextPartValue$ = [3, n0, _TPV,
|
|
1088
|
+
0,
|
|
1089
|
+
[_ty, _dT, _tBL, _u],
|
|
1090
|
+
[0, 0, 128 | 0, 0], 1
|
|
1091
|
+
];
|
|
1092
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1093
|
+
0,
|
|
1094
|
+
[_a, _tK],
|
|
1095
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1096
|
+
];
|
|
1097
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1098
|
+
0,
|
|
1099
|
+
[],
|
|
1100
|
+
[]
|
|
1101
|
+
];
|
|
1102
|
+
var UpdateEventRuleRequest$ = [3, n0, _UERR,
|
|
1103
|
+
0,
|
|
1104
|
+
[_a, _eP, _re],
|
|
1105
|
+
[[0, 1], 0, 64 | 0], 1
|
|
1106
|
+
];
|
|
1107
|
+
var UpdateEventRuleResponse$ = [3, n0, _UERRp,
|
|
1108
|
+
0,
|
|
1109
|
+
[_a, _nCA, _sSBR],
|
|
1110
|
+
[0, 0, () => StatusSummaryByRegion], 3
|
|
1111
|
+
];
|
|
1112
|
+
var UpdateNotificationConfigurationRequest$ = [3, n0, _UNCR,
|
|
1113
|
+
0,
|
|
1114
|
+
[_a, _n, _d, _aD],
|
|
1115
|
+
[[0, 1], 0, 0, 0], 1
|
|
1116
|
+
];
|
|
1117
|
+
var UpdateNotificationConfigurationResponse$ = [3, n0, _UNCRp,
|
|
1118
|
+
0,
|
|
1119
|
+
[_a],
|
|
1120
|
+
[0], 1
|
|
1121
|
+
];
|
|
1122
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1123
|
+
0,
|
|
1124
|
+
[_n, _m],
|
|
1125
|
+
[0, 0], 2
|
|
1126
|
+
];
|
|
1127
|
+
var AggregationKeys = [1, n0, _AKg,
|
|
1128
|
+
0, () => AggregationKey$
|
|
1129
|
+
];
|
|
1130
|
+
var Dimensions = [1, n0, _Di,
|
|
1131
|
+
0, () => Dimension$
|
|
1132
|
+
];
|
|
1133
|
+
var EventRules = [1, n0, _ER,
|
|
1134
|
+
0, () => EventRuleStructure$
|
|
1135
|
+
];
|
|
1136
|
+
var ManagedNotificationChannelAssociations = [1, n0, _MNCA,
|
|
1137
|
+
0, () => ManagedNotificationChannelAssociationSummary$
|
|
1138
|
+
];
|
|
1139
|
+
var ManagedNotificationChildEvents = [1, n0, _MNCEa,
|
|
1140
|
+
0, () => ManagedNotificationChildEventOverview$
|
|
1141
|
+
];
|
|
1142
|
+
var ManagedNotificationConfigurations = [1, n0, _MNC,
|
|
1143
|
+
0, () => ManagedNotificationConfigurationStructure$
|
|
1144
|
+
];
|
|
1145
|
+
var ManagedNotificationEvents = [1, n0, _MNEa,
|
|
1146
|
+
0, () => ManagedNotificationEventOverview$
|
|
1147
|
+
];
|
|
1148
|
+
var Media = [1, n0, _M,
|
|
1149
|
+
0, () => MediaElement$
|
|
1150
|
+
];
|
|
1151
|
+
var MemberAccounts = [1, n0, _MAe,
|
|
1152
|
+
0, () => MemberAccount$
|
|
1153
|
+
];
|
|
1154
|
+
var NotificationConfigurations = [1, n0, _NC,
|
|
1155
|
+
0, () => NotificationConfigurationStructure$
|
|
1156
|
+
];
|
|
1157
|
+
var NotificationEvents = [1, n0, _NE,
|
|
1158
|
+
0, () => NotificationEventOverview$
|
|
1159
|
+
];
|
|
1160
|
+
var NotificationHubs = [1, n0, _NH,
|
|
1161
|
+
0, () => NotificationHubOverview$
|
|
1162
|
+
];
|
|
1163
|
+
var Resources = [1, n0, _Re,
|
|
1164
|
+
0, () => Resource$
|
|
1165
|
+
];
|
|
1166
|
+
var SummarizationDimensionDetails = [1, n0, _SDDu,
|
|
1167
|
+
0, () => SummarizationDimensionDetail$
|
|
1168
|
+
];
|
|
1169
|
+
var SummarizationDimensionOverviews = [1, n0, _SDOu,
|
|
1170
|
+
0, () => SummarizationDimensionOverview$
|
|
1171
|
+
];
|
|
1172
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1173
|
+
0, () => ValidationExceptionField$
|
|
1174
|
+
];
|
|
1175
|
+
var StatusSummaryByRegion = [2, n0, _SSBR,
|
|
1176
|
+
0, 0, () => EventRuleStatusSummary$
|
|
1177
|
+
];
|
|
1178
|
+
var TextParts = [2, n0, _TP,
|
|
1179
|
+
0, 0, () => TextPartValue$
|
|
1180
|
+
];
|
|
1181
|
+
var AssociateChannel$ = [9, n0, _AC,
|
|
1182
|
+
{ [_ht]: ["POST", "/channels/associate/{arn}", 201] }, () => AssociateChannelRequest$, () => AssociateChannelResponse$
|
|
1183
|
+
];
|
|
1184
|
+
var AssociateManagedNotificationAccountContact$ = [9, n0, _AMNAC,
|
|
1185
|
+
{ [_ht]: ["PUT", "/contacts/associate-managed-notification/{contactIdentifier}", 201] }, () => AssociateManagedNotificationAccountContactRequest$, () => AssociateManagedNotificationAccountContactResponse$
|
|
1186
|
+
];
|
|
1187
|
+
var AssociateManagedNotificationAdditionalChannel$ = [9, n0, _AMNACs,
|
|
1188
|
+
{ [_ht]: ["PUT", "/channels/associate-managed-notification/{channelArn}", 201] }, () => AssociateManagedNotificationAdditionalChannelRequest$, () => AssociateManagedNotificationAdditionalChannelResponse$
|
|
1189
|
+
];
|
|
1190
|
+
var AssociateOrganizationalUnit$ = [9, n0, _AOU,
|
|
1191
|
+
{ [_ht]: ["POST", "/organizational-units/associate/{organizationalUnitId}", 201] }, () => AssociateOrganizationalUnitRequest$, () => AssociateOrganizationalUnitResponse$
|
|
1192
|
+
];
|
|
1193
|
+
var CreateEventRule$ = [9, n0, _CER,
|
|
1194
|
+
{ [_ht]: ["POST", "/event-rules", 201] }, () => CreateEventRuleRequest$, () => CreateEventRuleResponse$
|
|
1195
|
+
];
|
|
1196
|
+
var CreateNotificationConfiguration$ = [9, n0, _CNC,
|
|
1197
|
+
{ [_ht]: ["POST", "/notification-configurations", 201] }, () => CreateNotificationConfigurationRequest$, () => CreateNotificationConfigurationResponse$
|
|
1198
|
+
];
|
|
1199
|
+
var DeleteEventRule$ = [9, n0, _DER,
|
|
1200
|
+
{ [_ht]: ["DELETE", "/event-rules/{arn}", 200] }, () => DeleteEventRuleRequest$, () => DeleteEventRuleResponse$
|
|
1201
|
+
];
|
|
1202
|
+
var DeleteNotificationConfiguration$ = [9, n0, _DNC,
|
|
1203
|
+
{ [_ht]: ["DELETE", "/notification-configurations/{arn}", 200] }, () => DeleteNotificationConfigurationRequest$, () => DeleteNotificationConfigurationResponse$
|
|
1204
|
+
];
|
|
1205
|
+
var DeregisterNotificationHub$ = [9, n0, _DNH,
|
|
1206
|
+
{ [_ht]: ["DELETE", "/notification-hubs/{notificationHubRegion}", 200] }, () => DeregisterNotificationHubRequest$, () => DeregisterNotificationHubResponse$
|
|
1207
|
+
];
|
|
1208
|
+
var DisableNotificationsAccessForOrganization$ = [9, n0, _DNAFO,
|
|
1209
|
+
{ [_ht]: ["DELETE", "/organization/access", 200] }, () => DisableNotificationsAccessForOrganizationRequest$, () => DisableNotificationsAccessForOrganizationResponse$
|
|
1210
|
+
];
|
|
1211
|
+
var DisassociateChannel$ = [9, n0, _DC,
|
|
1212
|
+
{ [_ht]: ["POST", "/channels/disassociate/{arn}", 200] }, () => DisassociateChannelRequest$, () => DisassociateChannelResponse$
|
|
1213
|
+
];
|
|
1214
|
+
var DisassociateManagedNotificationAccountContact$ = [9, n0, _DMNAC,
|
|
1215
|
+
{ [_ht]: ["PUT", "/contacts/disassociate-managed-notification/{contactIdentifier}", 200] }, () => DisassociateManagedNotificationAccountContactRequest$, () => DisassociateManagedNotificationAccountContactResponse$
|
|
1216
|
+
];
|
|
1217
|
+
var DisassociateManagedNotificationAdditionalChannel$ = [9, n0, _DMNACi,
|
|
1218
|
+
{ [_ht]: ["PUT", "/channels/disassociate-managed-notification/{channelArn}", 200] }, () => DisassociateManagedNotificationAdditionalChannelRequest$, () => DisassociateManagedNotificationAdditionalChannelResponse$
|
|
1219
|
+
];
|
|
1220
|
+
var DisassociateOrganizationalUnit$ = [9, n0, _DOU,
|
|
1221
|
+
{ [_ht]: ["POST", "/organizational-units/disassociate/{organizationalUnitId}", 200] }, () => DisassociateOrganizationalUnitRequest$, () => DisassociateOrganizationalUnitResponse$
|
|
1222
|
+
];
|
|
1223
|
+
var EnableNotificationsAccessForOrganization$ = [9, n0, _ENAFO,
|
|
1224
|
+
{ [_ht]: ["POST", "/organization/access", 200] }, () => EnableNotificationsAccessForOrganizationRequest$, () => EnableNotificationsAccessForOrganizationResponse$
|
|
1225
|
+
];
|
|
1226
|
+
var GetEventRule$ = [9, n0, _GER,
|
|
1227
|
+
{ [_ht]: ["GET", "/event-rules/{arn}", 200] }, () => GetEventRuleRequest$, () => GetEventRuleResponse$
|
|
1228
|
+
];
|
|
1229
|
+
var GetManagedNotificationChildEvent$ = [9, n0, _GMNCE,
|
|
1230
|
+
{ [_ht]: ["GET", "/managed-notification-child-events/{arn}", 200] }, () => GetManagedNotificationChildEventRequest$, () => GetManagedNotificationChildEventResponse$
|
|
1231
|
+
];
|
|
1232
|
+
var GetManagedNotificationConfiguration$ = [9, n0, _GMNC,
|
|
1233
|
+
{ [_ht]: ["GET", "/managed-notification-configurations/{arn}", 200] }, () => GetManagedNotificationConfigurationRequest$, () => GetManagedNotificationConfigurationResponse$
|
|
1234
|
+
];
|
|
1235
|
+
var GetManagedNotificationEvent$ = [9, n0, _GMNE,
|
|
1236
|
+
{ [_ht]: ["GET", "/managed-notification-events/{arn}", 200] }, () => GetManagedNotificationEventRequest$, () => GetManagedNotificationEventResponse$
|
|
1237
|
+
];
|
|
1238
|
+
var GetNotificationConfiguration$ = [9, n0, _GNC,
|
|
1239
|
+
{ [_ht]: ["GET", "/notification-configurations/{arn}", 200] }, () => GetNotificationConfigurationRequest$, () => GetNotificationConfigurationResponse$
|
|
1240
|
+
];
|
|
1241
|
+
var GetNotificationEvent$ = [9, n0, _GNE,
|
|
1242
|
+
{ [_ht]: ["GET", "/notification-events/{arn}", 200] }, () => GetNotificationEventRequest$, () => GetNotificationEventResponse$
|
|
1243
|
+
];
|
|
1244
|
+
var GetNotificationsAccessForOrganization$ = [9, n0, _GNAFO,
|
|
1245
|
+
{ [_ht]: ["GET", "/organization/access", 200] }, () => GetNotificationsAccessForOrganizationRequest$, () => GetNotificationsAccessForOrganizationResponse$
|
|
1246
|
+
];
|
|
1247
|
+
var ListChannels$ = [9, n0, _LC,
|
|
1248
|
+
{ [_ht]: ["GET", "/channels", 200] }, () => ListChannelsRequest$, () => ListChannelsResponse$
|
|
1249
|
+
];
|
|
1250
|
+
var ListEventRules$ = [9, n0, _LER,
|
|
1251
|
+
{ [_ht]: ["GET", "/event-rules", 200] }, () => ListEventRulesRequest$, () => ListEventRulesResponse$
|
|
1252
|
+
];
|
|
1253
|
+
var ListManagedNotificationChannelAssociations$ = [9, n0, _LMNCA,
|
|
1254
|
+
{ [_ht]: ["GET", "/channels/list-managed-notification-channel-associations", 200] }, () => ListManagedNotificationChannelAssociationsRequest$, () => ListManagedNotificationChannelAssociationsResponse$
|
|
1255
|
+
];
|
|
1256
|
+
var ListManagedNotificationChildEvents$ = [9, n0, _LMNCE,
|
|
1257
|
+
{ [_ht]: ["GET", "/list-managed-notification-child-events/{aggregateManagedNotificationEventArn}", 200] }, () => ListManagedNotificationChildEventsRequest$, () => ListManagedNotificationChildEventsResponse$
|
|
1258
|
+
];
|
|
1259
|
+
var ListManagedNotificationConfigurations$ = [9, n0, _LMNC,
|
|
1260
|
+
{ [_ht]: ["GET", "/managed-notification-configurations", 200] }, () => ListManagedNotificationConfigurationsRequest$, () => ListManagedNotificationConfigurationsResponse$
|
|
1261
|
+
];
|
|
1262
|
+
var ListManagedNotificationEvents$ = [9, n0, _LMNE,
|
|
1263
|
+
{ [_ht]: ["GET", "/managed-notification-events", 200] }, () => ListManagedNotificationEventsRequest$, () => ListManagedNotificationEventsResponse$
|
|
1264
|
+
];
|
|
1265
|
+
var ListMemberAccounts$ = [9, n0, _LMA,
|
|
1266
|
+
{ [_ht]: ["GET", "/list-member-accounts", 200] }, () => ListMemberAccountsRequest$, () => ListMemberAccountsResponse$
|
|
1267
|
+
];
|
|
1268
|
+
var ListNotificationConfigurations$ = [9, n0, _LNC,
|
|
1269
|
+
{ [_ht]: ["GET", "/notification-configurations", 200] }, () => ListNotificationConfigurationsRequest$, () => ListNotificationConfigurationsResponse$
|
|
1270
|
+
];
|
|
1271
|
+
var ListNotificationEvents$ = [9, n0, _LNE,
|
|
1272
|
+
{ [_ht]: ["GET", "/notification-events", 200] }, () => ListNotificationEventsRequest$, () => ListNotificationEventsResponse$
|
|
1273
|
+
];
|
|
1274
|
+
var ListNotificationHubs$ = [9, n0, _LNH,
|
|
1275
|
+
{ [_ht]: ["GET", "/notification-hubs", 200] }, () => ListNotificationHubsRequest$, () => ListNotificationHubsResponse$
|
|
1276
|
+
];
|
|
1277
|
+
var ListOrganizationalUnits$ = [9, n0, _LOU,
|
|
1278
|
+
{ [_ht]: ["GET", "/organizational-units", 200] }, () => ListOrganizationalUnitsRequest$, () => ListOrganizationalUnitsResponse$
|
|
1279
|
+
];
|
|
1280
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1281
|
+
{ [_ht]: ["GET", "/tags/{arn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1282
|
+
];
|
|
1283
|
+
var RegisterNotificationHub$ = [9, n0, _RNH,
|
|
1284
|
+
{ [_ht]: ["POST", "/notification-hubs", 201] }, () => RegisterNotificationHubRequest$, () => RegisterNotificationHubResponse$
|
|
1285
|
+
];
|
|
1286
|
+
var TagResource$ = [9, n0, _TR,
|
|
1287
|
+
{ [_ht]: ["POST", "/tags/{arn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1288
|
+
];
|
|
1289
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1290
|
+
{ [_ht]: ["DELETE", "/tags/{arn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1291
|
+
];
|
|
1292
|
+
var UpdateEventRule$ = [9, n0, _UER,
|
|
1293
|
+
{ [_ht]: ["PUT", "/event-rules/{arn}", 200] }, () => UpdateEventRuleRequest$, () => UpdateEventRuleResponse$
|
|
1294
|
+
];
|
|
1295
|
+
var UpdateNotificationConfiguration$ = [9, n0, _UNC,
|
|
1296
|
+
{ [_ht]: ["PUT", "/notification-configurations/{arn}", 200] }, () => UpdateNotificationConfigurationRequest$, () => UpdateNotificationConfigurationResponse$
|
|
1297
|
+
];
|
|
1298
|
+
|
|
1299
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1300
|
+
return {
|
|
1301
|
+
apiVersion: "2018-05-10",
|
|
1302
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1303
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1304
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1305
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1306
|
+
extensions: config?.extensions ?? [],
|
|
1307
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultNotificationsHttpAuthSchemeProvider,
|
|
1308
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1309
|
+
{
|
|
1310
|
+
schemeId: "aws.auth#sigv4",
|
|
1311
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1312
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1313
|
+
},
|
|
1314
|
+
],
|
|
1315
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1316
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1317
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1318
|
+
defaultNamespace: "com.amazonaws.notifications",
|
|
1319
|
+
errorTypeRegistries,
|
|
1320
|
+
version: "2018-05-10",
|
|
1321
|
+
serviceTarget: "Notifications",
|
|
1322
|
+
},
|
|
1323
|
+
serviceId: config?.serviceId ?? "Notifications",
|
|
1324
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1325
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1326
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1327
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1328
|
+
};
|
|
1329
|
+
};
|
|
1330
|
+
|
|
1331
|
+
const getRuntimeConfig = (config) => {
|
|
1332
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1333
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1334
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1335
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1336
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1337
|
+
const loaderConfig = {
|
|
1338
|
+
profile: config?.profile,
|
|
1339
|
+
logger: clientSharedValues.logger,
|
|
1340
|
+
};
|
|
1341
|
+
return {
|
|
1342
|
+
...clientSharedValues,
|
|
1343
|
+
...config,
|
|
1344
|
+
runtime: "node",
|
|
1345
|
+
defaultsMode,
|
|
1346
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1347
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1348
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1349
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1350
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1351
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1352
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1353
|
+
retryMode: config?.retryMode ??
|
|
1354
|
+
loadConfig({
|
|
1355
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1356
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1357
|
+
}, config),
|
|
1358
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1359
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1360
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1361
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1362
|
+
};
|
|
1363
|
+
};
|
|
1364
|
+
|
|
32
1365
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
33
1366
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
34
1367
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -762,65 +2095,232 @@ const MemberAccountNotificationConfigurationStatus = {
|
|
|
762
2095
|
PENDING: "PENDING",
|
|
763
2096
|
};
|
|
764
2097
|
|
|
2098
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2099
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
765
2100
|
exports.AccessStatus = AccessStatus;
|
|
766
2101
|
exports.AccountContactType = AccountContactType;
|
|
2102
|
+
exports.AggregationDetail$ = AggregationDetail$;
|
|
767
2103
|
exports.AggregationDuration = AggregationDuration;
|
|
768
2104
|
exports.AggregationEventType = AggregationEventType;
|
|
2105
|
+
exports.AggregationKey$ = AggregationKey$;
|
|
2106
|
+
exports.AggregationSummary$ = AggregationSummary$;
|
|
2107
|
+
exports.AssociateChannel$ = AssociateChannel$;
|
|
769
2108
|
exports.AssociateChannelCommand = AssociateChannelCommand;
|
|
2109
|
+
exports.AssociateChannelRequest$ = AssociateChannelRequest$;
|
|
2110
|
+
exports.AssociateChannelResponse$ = AssociateChannelResponse$;
|
|
2111
|
+
exports.AssociateManagedNotificationAccountContact$ = AssociateManagedNotificationAccountContact$;
|
|
770
2112
|
exports.AssociateManagedNotificationAccountContactCommand = AssociateManagedNotificationAccountContactCommand;
|
|
2113
|
+
exports.AssociateManagedNotificationAccountContactRequest$ = AssociateManagedNotificationAccountContactRequest$;
|
|
2114
|
+
exports.AssociateManagedNotificationAccountContactResponse$ = AssociateManagedNotificationAccountContactResponse$;
|
|
2115
|
+
exports.AssociateManagedNotificationAdditionalChannel$ = AssociateManagedNotificationAdditionalChannel$;
|
|
771
2116
|
exports.AssociateManagedNotificationAdditionalChannelCommand = AssociateManagedNotificationAdditionalChannelCommand;
|
|
2117
|
+
exports.AssociateManagedNotificationAdditionalChannelRequest$ = AssociateManagedNotificationAdditionalChannelRequest$;
|
|
2118
|
+
exports.AssociateManagedNotificationAdditionalChannelResponse$ = AssociateManagedNotificationAdditionalChannelResponse$;
|
|
2119
|
+
exports.AssociateOrganizationalUnit$ = AssociateOrganizationalUnit$;
|
|
772
2120
|
exports.AssociateOrganizationalUnitCommand = AssociateOrganizationalUnitCommand;
|
|
2121
|
+
exports.AssociateOrganizationalUnitRequest$ = AssociateOrganizationalUnitRequest$;
|
|
2122
|
+
exports.AssociateOrganizationalUnitResponse$ = AssociateOrganizationalUnitResponse$;
|
|
773
2123
|
exports.ChannelAssociationOverrideOption = ChannelAssociationOverrideOption;
|
|
774
2124
|
exports.ChannelType = ChannelType;
|
|
2125
|
+
exports.ConflictException = ConflictException;
|
|
2126
|
+
exports.ConflictException$ = ConflictException$;
|
|
2127
|
+
exports.CreateEventRule$ = CreateEventRule$;
|
|
775
2128
|
exports.CreateEventRuleCommand = CreateEventRuleCommand;
|
|
2129
|
+
exports.CreateEventRuleRequest$ = CreateEventRuleRequest$;
|
|
2130
|
+
exports.CreateEventRuleResponse$ = CreateEventRuleResponse$;
|
|
2131
|
+
exports.CreateNotificationConfiguration$ = CreateNotificationConfiguration$;
|
|
776
2132
|
exports.CreateNotificationConfigurationCommand = CreateNotificationConfigurationCommand;
|
|
2133
|
+
exports.CreateNotificationConfigurationRequest$ = CreateNotificationConfigurationRequest$;
|
|
2134
|
+
exports.CreateNotificationConfigurationResponse$ = CreateNotificationConfigurationResponse$;
|
|
2135
|
+
exports.DeleteEventRule$ = DeleteEventRule$;
|
|
777
2136
|
exports.DeleteEventRuleCommand = DeleteEventRuleCommand;
|
|
2137
|
+
exports.DeleteEventRuleRequest$ = DeleteEventRuleRequest$;
|
|
2138
|
+
exports.DeleteEventRuleResponse$ = DeleteEventRuleResponse$;
|
|
2139
|
+
exports.DeleteNotificationConfiguration$ = DeleteNotificationConfiguration$;
|
|
778
2140
|
exports.DeleteNotificationConfigurationCommand = DeleteNotificationConfigurationCommand;
|
|
2141
|
+
exports.DeleteNotificationConfigurationRequest$ = DeleteNotificationConfigurationRequest$;
|
|
2142
|
+
exports.DeleteNotificationConfigurationResponse$ = DeleteNotificationConfigurationResponse$;
|
|
2143
|
+
exports.DeregisterNotificationHub$ = DeregisterNotificationHub$;
|
|
779
2144
|
exports.DeregisterNotificationHubCommand = DeregisterNotificationHubCommand;
|
|
2145
|
+
exports.DeregisterNotificationHubRequest$ = DeregisterNotificationHubRequest$;
|
|
2146
|
+
exports.DeregisterNotificationHubResponse$ = DeregisterNotificationHubResponse$;
|
|
2147
|
+
exports.Dimension$ = Dimension$;
|
|
2148
|
+
exports.DisableNotificationsAccessForOrganization$ = DisableNotificationsAccessForOrganization$;
|
|
780
2149
|
exports.DisableNotificationsAccessForOrganizationCommand = DisableNotificationsAccessForOrganizationCommand;
|
|
2150
|
+
exports.DisableNotificationsAccessForOrganizationRequest$ = DisableNotificationsAccessForOrganizationRequest$;
|
|
2151
|
+
exports.DisableNotificationsAccessForOrganizationResponse$ = DisableNotificationsAccessForOrganizationResponse$;
|
|
2152
|
+
exports.DisassociateChannel$ = DisassociateChannel$;
|
|
781
2153
|
exports.DisassociateChannelCommand = DisassociateChannelCommand;
|
|
2154
|
+
exports.DisassociateChannelRequest$ = DisassociateChannelRequest$;
|
|
2155
|
+
exports.DisassociateChannelResponse$ = DisassociateChannelResponse$;
|
|
2156
|
+
exports.DisassociateManagedNotificationAccountContact$ = DisassociateManagedNotificationAccountContact$;
|
|
782
2157
|
exports.DisassociateManagedNotificationAccountContactCommand = DisassociateManagedNotificationAccountContactCommand;
|
|
2158
|
+
exports.DisassociateManagedNotificationAccountContactRequest$ = DisassociateManagedNotificationAccountContactRequest$;
|
|
2159
|
+
exports.DisassociateManagedNotificationAccountContactResponse$ = DisassociateManagedNotificationAccountContactResponse$;
|
|
2160
|
+
exports.DisassociateManagedNotificationAdditionalChannel$ = DisassociateManagedNotificationAdditionalChannel$;
|
|
783
2161
|
exports.DisassociateManagedNotificationAdditionalChannelCommand = DisassociateManagedNotificationAdditionalChannelCommand;
|
|
2162
|
+
exports.DisassociateManagedNotificationAdditionalChannelRequest$ = DisassociateManagedNotificationAdditionalChannelRequest$;
|
|
2163
|
+
exports.DisassociateManagedNotificationAdditionalChannelResponse$ = DisassociateManagedNotificationAdditionalChannelResponse$;
|
|
2164
|
+
exports.DisassociateOrganizationalUnit$ = DisassociateOrganizationalUnit$;
|
|
784
2165
|
exports.DisassociateOrganizationalUnitCommand = DisassociateOrganizationalUnitCommand;
|
|
2166
|
+
exports.DisassociateOrganizationalUnitRequest$ = DisassociateOrganizationalUnitRequest$;
|
|
2167
|
+
exports.DisassociateOrganizationalUnitResponse$ = DisassociateOrganizationalUnitResponse$;
|
|
2168
|
+
exports.EnableNotificationsAccessForOrganization$ = EnableNotificationsAccessForOrganization$;
|
|
785
2169
|
exports.EnableNotificationsAccessForOrganizationCommand = EnableNotificationsAccessForOrganizationCommand;
|
|
2170
|
+
exports.EnableNotificationsAccessForOrganizationRequest$ = EnableNotificationsAccessForOrganizationRequest$;
|
|
2171
|
+
exports.EnableNotificationsAccessForOrganizationResponse$ = EnableNotificationsAccessForOrganizationResponse$;
|
|
786
2172
|
exports.EventRuleStatus = EventRuleStatus;
|
|
2173
|
+
exports.EventRuleStatusSummary$ = EventRuleStatusSummary$;
|
|
2174
|
+
exports.EventRuleStructure$ = EventRuleStructure$;
|
|
787
2175
|
exports.EventStatus = EventStatus;
|
|
2176
|
+
exports.GetEventRule$ = GetEventRule$;
|
|
788
2177
|
exports.GetEventRuleCommand = GetEventRuleCommand;
|
|
2178
|
+
exports.GetEventRuleRequest$ = GetEventRuleRequest$;
|
|
2179
|
+
exports.GetEventRuleResponse$ = GetEventRuleResponse$;
|
|
2180
|
+
exports.GetManagedNotificationChildEvent$ = GetManagedNotificationChildEvent$;
|
|
789
2181
|
exports.GetManagedNotificationChildEventCommand = GetManagedNotificationChildEventCommand;
|
|
2182
|
+
exports.GetManagedNotificationChildEventRequest$ = GetManagedNotificationChildEventRequest$;
|
|
2183
|
+
exports.GetManagedNotificationChildEventResponse$ = GetManagedNotificationChildEventResponse$;
|
|
2184
|
+
exports.GetManagedNotificationConfiguration$ = GetManagedNotificationConfiguration$;
|
|
790
2185
|
exports.GetManagedNotificationConfigurationCommand = GetManagedNotificationConfigurationCommand;
|
|
2186
|
+
exports.GetManagedNotificationConfigurationRequest$ = GetManagedNotificationConfigurationRequest$;
|
|
2187
|
+
exports.GetManagedNotificationConfigurationResponse$ = GetManagedNotificationConfigurationResponse$;
|
|
2188
|
+
exports.GetManagedNotificationEvent$ = GetManagedNotificationEvent$;
|
|
791
2189
|
exports.GetManagedNotificationEventCommand = GetManagedNotificationEventCommand;
|
|
2190
|
+
exports.GetManagedNotificationEventRequest$ = GetManagedNotificationEventRequest$;
|
|
2191
|
+
exports.GetManagedNotificationEventResponse$ = GetManagedNotificationEventResponse$;
|
|
2192
|
+
exports.GetNotificationConfiguration$ = GetNotificationConfiguration$;
|
|
792
2193
|
exports.GetNotificationConfigurationCommand = GetNotificationConfigurationCommand;
|
|
2194
|
+
exports.GetNotificationConfigurationRequest$ = GetNotificationConfigurationRequest$;
|
|
2195
|
+
exports.GetNotificationConfigurationResponse$ = GetNotificationConfigurationResponse$;
|
|
2196
|
+
exports.GetNotificationEvent$ = GetNotificationEvent$;
|
|
793
2197
|
exports.GetNotificationEventCommand = GetNotificationEventCommand;
|
|
2198
|
+
exports.GetNotificationEventRequest$ = GetNotificationEventRequest$;
|
|
2199
|
+
exports.GetNotificationEventResponse$ = GetNotificationEventResponse$;
|
|
2200
|
+
exports.GetNotificationsAccessForOrganization$ = GetNotificationsAccessForOrganization$;
|
|
794
2201
|
exports.GetNotificationsAccessForOrganizationCommand = GetNotificationsAccessForOrganizationCommand;
|
|
2202
|
+
exports.GetNotificationsAccessForOrganizationRequest$ = GetNotificationsAccessForOrganizationRequest$;
|
|
2203
|
+
exports.GetNotificationsAccessForOrganizationResponse$ = GetNotificationsAccessForOrganizationResponse$;
|
|
2204
|
+
exports.InternalServerException = InternalServerException;
|
|
2205
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2206
|
+
exports.ListChannels$ = ListChannels$;
|
|
795
2207
|
exports.ListChannelsCommand = ListChannelsCommand;
|
|
2208
|
+
exports.ListChannelsRequest$ = ListChannelsRequest$;
|
|
2209
|
+
exports.ListChannelsResponse$ = ListChannelsResponse$;
|
|
2210
|
+
exports.ListEventRules$ = ListEventRules$;
|
|
796
2211
|
exports.ListEventRulesCommand = ListEventRulesCommand;
|
|
2212
|
+
exports.ListEventRulesRequest$ = ListEventRulesRequest$;
|
|
2213
|
+
exports.ListEventRulesResponse$ = ListEventRulesResponse$;
|
|
2214
|
+
exports.ListManagedNotificationChannelAssociations$ = ListManagedNotificationChannelAssociations$;
|
|
797
2215
|
exports.ListManagedNotificationChannelAssociationsCommand = ListManagedNotificationChannelAssociationsCommand;
|
|
2216
|
+
exports.ListManagedNotificationChannelAssociationsRequest$ = ListManagedNotificationChannelAssociationsRequest$;
|
|
2217
|
+
exports.ListManagedNotificationChannelAssociationsResponse$ = ListManagedNotificationChannelAssociationsResponse$;
|
|
2218
|
+
exports.ListManagedNotificationChildEvents$ = ListManagedNotificationChildEvents$;
|
|
798
2219
|
exports.ListManagedNotificationChildEventsCommand = ListManagedNotificationChildEventsCommand;
|
|
2220
|
+
exports.ListManagedNotificationChildEventsRequest$ = ListManagedNotificationChildEventsRequest$;
|
|
2221
|
+
exports.ListManagedNotificationChildEventsResponse$ = ListManagedNotificationChildEventsResponse$;
|
|
2222
|
+
exports.ListManagedNotificationConfigurations$ = ListManagedNotificationConfigurations$;
|
|
799
2223
|
exports.ListManagedNotificationConfigurationsCommand = ListManagedNotificationConfigurationsCommand;
|
|
2224
|
+
exports.ListManagedNotificationConfigurationsRequest$ = ListManagedNotificationConfigurationsRequest$;
|
|
2225
|
+
exports.ListManagedNotificationConfigurationsResponse$ = ListManagedNotificationConfigurationsResponse$;
|
|
2226
|
+
exports.ListManagedNotificationEvents$ = ListManagedNotificationEvents$;
|
|
800
2227
|
exports.ListManagedNotificationEventsCommand = ListManagedNotificationEventsCommand;
|
|
2228
|
+
exports.ListManagedNotificationEventsRequest$ = ListManagedNotificationEventsRequest$;
|
|
2229
|
+
exports.ListManagedNotificationEventsResponse$ = ListManagedNotificationEventsResponse$;
|
|
2230
|
+
exports.ListMemberAccounts$ = ListMemberAccounts$;
|
|
801
2231
|
exports.ListMemberAccountsCommand = ListMemberAccountsCommand;
|
|
2232
|
+
exports.ListMemberAccountsRequest$ = ListMemberAccountsRequest$;
|
|
2233
|
+
exports.ListMemberAccountsResponse$ = ListMemberAccountsResponse$;
|
|
2234
|
+
exports.ListNotificationConfigurations$ = ListNotificationConfigurations$;
|
|
802
2235
|
exports.ListNotificationConfigurationsCommand = ListNotificationConfigurationsCommand;
|
|
2236
|
+
exports.ListNotificationConfigurationsRequest$ = ListNotificationConfigurationsRequest$;
|
|
2237
|
+
exports.ListNotificationConfigurationsResponse$ = ListNotificationConfigurationsResponse$;
|
|
2238
|
+
exports.ListNotificationEvents$ = ListNotificationEvents$;
|
|
803
2239
|
exports.ListNotificationEventsCommand = ListNotificationEventsCommand;
|
|
2240
|
+
exports.ListNotificationEventsRequest$ = ListNotificationEventsRequest$;
|
|
2241
|
+
exports.ListNotificationEventsResponse$ = ListNotificationEventsResponse$;
|
|
2242
|
+
exports.ListNotificationHubs$ = ListNotificationHubs$;
|
|
804
2243
|
exports.ListNotificationHubsCommand = ListNotificationHubsCommand;
|
|
2244
|
+
exports.ListNotificationHubsRequest$ = ListNotificationHubsRequest$;
|
|
2245
|
+
exports.ListNotificationHubsResponse$ = ListNotificationHubsResponse$;
|
|
2246
|
+
exports.ListOrganizationalUnits$ = ListOrganizationalUnits$;
|
|
805
2247
|
exports.ListOrganizationalUnitsCommand = ListOrganizationalUnitsCommand;
|
|
2248
|
+
exports.ListOrganizationalUnitsRequest$ = ListOrganizationalUnitsRequest$;
|
|
2249
|
+
exports.ListOrganizationalUnitsResponse$ = ListOrganizationalUnitsResponse$;
|
|
2250
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
806
2251
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2252
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2253
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
807
2254
|
exports.LocaleCode = LocaleCode;
|
|
2255
|
+
exports.ManagedNotificationChannelAssociationSummary$ = ManagedNotificationChannelAssociationSummary$;
|
|
2256
|
+
exports.ManagedNotificationChildEvent$ = ManagedNotificationChildEvent$;
|
|
2257
|
+
exports.ManagedNotificationChildEventOverview$ = ManagedNotificationChildEventOverview$;
|
|
2258
|
+
exports.ManagedNotificationChildEventSummary$ = ManagedNotificationChildEventSummary$;
|
|
2259
|
+
exports.ManagedNotificationConfigurationStructure$ = ManagedNotificationConfigurationStructure$;
|
|
2260
|
+
exports.ManagedNotificationEvent$ = ManagedNotificationEvent$;
|
|
2261
|
+
exports.ManagedNotificationEventOverview$ = ManagedNotificationEventOverview$;
|
|
2262
|
+
exports.ManagedNotificationEventSummary$ = ManagedNotificationEventSummary$;
|
|
2263
|
+
exports.ManagedSourceEventMetadataSummary$ = ManagedSourceEventMetadataSummary$;
|
|
2264
|
+
exports.MediaElement$ = MediaElement$;
|
|
808
2265
|
exports.MediaElementType = MediaElementType;
|
|
2266
|
+
exports.MemberAccount$ = MemberAccount$;
|
|
809
2267
|
exports.MemberAccountNotificationConfigurationStatus = MemberAccountNotificationConfigurationStatus;
|
|
2268
|
+
exports.MessageComponents$ = MessageComponents$;
|
|
2269
|
+
exports.MessageComponentsSummary$ = MessageComponentsSummary$;
|
|
810
2270
|
exports.NotificationConfigurationStatus = NotificationConfigurationStatus;
|
|
2271
|
+
exports.NotificationConfigurationStructure$ = NotificationConfigurationStructure$;
|
|
811
2272
|
exports.NotificationConfigurationSubtype = NotificationConfigurationSubtype;
|
|
2273
|
+
exports.NotificationEventOverview$ = NotificationEventOverview$;
|
|
2274
|
+
exports.NotificationEventSchema$ = NotificationEventSchema$;
|
|
2275
|
+
exports.NotificationEventSummary$ = NotificationEventSummary$;
|
|
2276
|
+
exports.NotificationHubOverview$ = NotificationHubOverview$;
|
|
812
2277
|
exports.NotificationHubStatus = NotificationHubStatus;
|
|
2278
|
+
exports.NotificationHubStatusSummary$ = NotificationHubStatusSummary$;
|
|
813
2279
|
exports.NotificationType = NotificationType;
|
|
814
2280
|
exports.Notifications = Notifications;
|
|
2281
|
+
exports.NotificationsAccessForOrganization$ = NotificationsAccessForOrganization$;
|
|
815
2282
|
exports.NotificationsClient = NotificationsClient;
|
|
2283
|
+
exports.NotificationsServiceException = NotificationsServiceException;
|
|
2284
|
+
exports.NotificationsServiceException$ = NotificationsServiceException$;
|
|
2285
|
+
exports.RegisterNotificationHub$ = RegisterNotificationHub$;
|
|
816
2286
|
exports.RegisterNotificationHubCommand = RegisterNotificationHubCommand;
|
|
2287
|
+
exports.RegisterNotificationHubRequest$ = RegisterNotificationHubRequest$;
|
|
2288
|
+
exports.RegisterNotificationHubResponse$ = RegisterNotificationHubResponse$;
|
|
2289
|
+
exports.Resource$ = Resource$;
|
|
2290
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2291
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
817
2292
|
exports.SchemaVersion = SchemaVersion;
|
|
2293
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2294
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2295
|
+
exports.SourceEventMetadata$ = SourceEventMetadata$;
|
|
2296
|
+
exports.SourceEventMetadataSummary$ = SourceEventMetadataSummary$;
|
|
2297
|
+
exports.SummarizationDimensionDetail$ = SummarizationDimensionDetail$;
|
|
2298
|
+
exports.SummarizationDimensionOverview$ = SummarizationDimensionOverview$;
|
|
2299
|
+
exports.TagResource$ = TagResource$;
|
|
818
2300
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2301
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2302
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
819
2303
|
exports.TextPartType = TextPartType;
|
|
2304
|
+
exports.TextPartValue$ = TextPartValue$;
|
|
2305
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2306
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2307
|
+
exports.UntagResource$ = UntagResource$;
|
|
820
2308
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2309
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2310
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2311
|
+
exports.UpdateEventRule$ = UpdateEventRule$;
|
|
821
2312
|
exports.UpdateEventRuleCommand = UpdateEventRuleCommand;
|
|
2313
|
+
exports.UpdateEventRuleRequest$ = UpdateEventRuleRequest$;
|
|
2314
|
+
exports.UpdateEventRuleResponse$ = UpdateEventRuleResponse$;
|
|
2315
|
+
exports.UpdateNotificationConfiguration$ = UpdateNotificationConfiguration$;
|
|
822
2316
|
exports.UpdateNotificationConfigurationCommand = UpdateNotificationConfigurationCommand;
|
|
2317
|
+
exports.UpdateNotificationConfigurationRequest$ = UpdateNotificationConfigurationRequest$;
|
|
2318
|
+
exports.UpdateNotificationConfigurationResponse$ = UpdateNotificationConfigurationResponse$;
|
|
2319
|
+
exports.ValidationException = ValidationException;
|
|
2320
|
+
exports.ValidationException$ = ValidationException$;
|
|
2321
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
823
2322
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2323
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
824
2324
|
exports.paginateListChannels = paginateListChannels;
|
|
825
2325
|
exports.paginateListEventRules = paginateListEventRules;
|
|
826
2326
|
exports.paginateListManagedNotificationChannelAssociations = paginateListManagedNotificationChannelAssociations;
|