@aws-sdk/client-mailmanager 3.987.0 → 3.988.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 +79 -2164
- package/dist-cjs/models/MailManagerServiceException.js +12 -0
- package/dist-cjs/models/errors.js +94 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1768 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +44 -38
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var MailManagerServiceException = require('./models/MailManagerServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1838 +113,6 @@ class MailManagerClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class MailManagerServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, MailManagerServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends MailManagerServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends MailManagerServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "ConflictException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class ResourceNotFoundException extends MailManagerServiceException {
|
|
149
|
-
name = "ResourceNotFoundException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ResourceNotFoundException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ServiceQuotaExceededException extends MailManagerServiceException {
|
|
163
|
-
name = "ServiceQuotaExceededException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ServiceQuotaExceededException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ValidationException extends MailManagerServiceException {
|
|
177
|
-
name = "ValidationException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ValidationException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class ThrottlingException extends MailManagerServiceException {
|
|
191
|
-
name = "ThrottlingException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "ThrottlingException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
const _A = "Address";
|
|
206
|
-
const _AA = "ArchiveAction";
|
|
207
|
-
const _AAr = "ArchiveArn";
|
|
208
|
-
const _ABE = "ArchiveBooleanExpression";
|
|
209
|
-
const _ABTE = "ArchiveBooleanToEvaluate";
|
|
210
|
-
const _ADE = "AccessDeniedException";
|
|
211
|
-
const _AF = "AddressFilter";
|
|
212
|
-
const _AFC = "ArchiveFilterConditions";
|
|
213
|
-
const _AFCr = "ArchiveFilterCondition";
|
|
214
|
-
const _AFP = "ActionFailurePolicy";
|
|
215
|
-
const _AFr = "ArchiveFilters";
|
|
216
|
-
const _AH = "AddHeader";
|
|
217
|
-
const _AHA = "AddHeaderAction";
|
|
218
|
-
const _AI = "AddonInstance";
|
|
219
|
-
const _AIA = "AddonInstanceArn";
|
|
220
|
-
const _AII = "AddonInstanceId";
|
|
221
|
-
const _AId = "AddonInstances";
|
|
222
|
-
const _AIp = "ApplicationId";
|
|
223
|
-
const _AIr = "ArchiveId";
|
|
224
|
-
const _AL = "AddressList";
|
|
225
|
-
const _ALA = "AddressListArn";
|
|
226
|
-
const _ALI = "AddressListId";
|
|
227
|
-
const _ALN = "AddressListName";
|
|
228
|
-
const _ALd = "AddressLists";
|
|
229
|
-
const _ALr = "ArchivesList";
|
|
230
|
-
const _AMI = "ArchivedMessageId";
|
|
231
|
-
const _AN = "AddonName";
|
|
232
|
-
const _ANr = "ArchiveName";
|
|
233
|
-
const _AP = "AddressPrefix";
|
|
234
|
-
const _AR = "ARecord";
|
|
235
|
-
const _ARr = "ArchiveRetention";
|
|
236
|
-
const _AS = "AddonSubscription";
|
|
237
|
-
const _ASA = "AddonSubscriptionArn";
|
|
238
|
-
const _ASE = "ArchiveStringExpression";
|
|
239
|
-
const _ASI = "AddonSubscriptionId";
|
|
240
|
-
const _ASTE = "ArchiveStringToEvaluate";
|
|
241
|
-
const _ASd = "AddonSubscriptions";
|
|
242
|
-
const _ASr = "ArchiveState";
|
|
243
|
-
const _Ac = "Action";
|
|
244
|
-
const _Act = "Actions";
|
|
245
|
-
const _Ad = "Addresses";
|
|
246
|
-
const _An = "Analysis";
|
|
247
|
-
const _Ana = "Analyzer";
|
|
248
|
-
const _Ar = "Archive";
|
|
249
|
-
const _Arc = "Archives";
|
|
250
|
-
const _At = "Attribute";
|
|
251
|
-
const _Au = "Authentication";
|
|
252
|
-
const _B = "Body";
|
|
253
|
-
const _BE = "BooleanExpression";
|
|
254
|
-
const _C = "Conditions";
|
|
255
|
-
const _CA = "CreateArchive";
|
|
256
|
-
const _CAI = "CreateAddonInstance";
|
|
257
|
-
const _CAIR = "CreateAddonInstanceRequest";
|
|
258
|
-
const _CAIRr = "CreateAddonInstanceResponse";
|
|
259
|
-
const _CAL = "CreateAddressList";
|
|
260
|
-
const _CALIJ = "CreateAddressListImportJob";
|
|
261
|
-
const _CALIJR = "CreateAddressListImportJobRequest";
|
|
262
|
-
const _CALIJRr = "CreateAddressListImportJobResponse";
|
|
263
|
-
const _CALR = "CreateAddressListRequest";
|
|
264
|
-
const _CALRr = "CreateAddressListResponse";
|
|
265
|
-
const _CAR = "CreateArchiveRequest";
|
|
266
|
-
const _CARr = "CreateArchiveResponse";
|
|
267
|
-
const _CAS = "CreateAddonSubscription";
|
|
268
|
-
const _CASR = "CreateAddonSubscriptionRequest";
|
|
269
|
-
const _CASRr = "CreateAddonSubscriptionResponse";
|
|
270
|
-
const _CD = "CreatedDate";
|
|
271
|
-
const _CE = "ConflictException";
|
|
272
|
-
const _CIP = "CreateIngressPoint";
|
|
273
|
-
const _CIPR = "CreateIngressPointRequest";
|
|
274
|
-
const _CIPRr = "CreateIngressPointResponse";
|
|
275
|
-
const _CR = "CreateRelay";
|
|
276
|
-
const _CRR = "CreateRelayRequest";
|
|
277
|
-
const _CRRr = "CreateRelayResponse";
|
|
278
|
-
const _CRS = "CreateRuleSet";
|
|
279
|
-
const _CRSR = "CreateRuleSetRequest";
|
|
280
|
-
const _CRSRr = "CreateRuleSetResponse";
|
|
281
|
-
const _CS = "ConfigurationSet";
|
|
282
|
-
const _CT = "CreatedTimestamp";
|
|
283
|
-
const _CTP = "CreateTrafficPolicy";
|
|
284
|
-
const _CTPR = "CreateTrafficPolicyRequest";
|
|
285
|
-
const _CTPRr = "CreateTrafficPolicyResponse";
|
|
286
|
-
const _CTl = "ClientToken";
|
|
287
|
-
const _CTo = "CompletionTimestamp";
|
|
288
|
-
const _CTom = "CompletedTimestamp";
|
|
289
|
-
const _Cc = "Cc";
|
|
290
|
-
const _D = "Date";
|
|
291
|
-
const _DA = "DefaultAction";
|
|
292
|
-
const _DAI = "DeleteAddonInstance";
|
|
293
|
-
const _DAIR = "DeleteAddonInstanceRequest";
|
|
294
|
-
const _DAIRe = "DeleteAddonInstanceResponse";
|
|
295
|
-
const _DAL = "DeleteAddressList";
|
|
296
|
-
const _DALR = "DeleteAddressListRequest";
|
|
297
|
-
const _DALRe = "DeleteAddressListResponse";
|
|
298
|
-
const _DAR = "DeleteArchiveRequest";
|
|
299
|
-
const _DARe = "DeleteArchiveResponse";
|
|
300
|
-
const _DAS = "DeleteAddonSubscription";
|
|
301
|
-
const _DASR = "DeleteAddonSubscriptionRequest";
|
|
302
|
-
const _DASRe = "DeleteAddonSubscriptionResponse";
|
|
303
|
-
const _DAe = "DeleteArchive";
|
|
304
|
-
const _DAr = "DropAction";
|
|
305
|
-
const _DE = "DmarcExpression";
|
|
306
|
-
const _DIP = "DeleteIngressPoint";
|
|
307
|
-
const _DIPR = "DeleteIngressPointRequest";
|
|
308
|
-
const _DIPRe = "DeleteIngressPointResponse";
|
|
309
|
-
const _DMFAL = "DeregisterMemberFromAddressList";
|
|
310
|
-
const _DMFALR = "DeregisterMemberFromAddressListRequest";
|
|
311
|
-
const _DMFALRe = "DeregisterMemberFromAddressListResponse";
|
|
312
|
-
const _DR = "DeleteRelay";
|
|
313
|
-
const _DRR = "DeleteRelayRequest";
|
|
314
|
-
const _DRRe = "DeleteRelayResponse";
|
|
315
|
-
const _DRS = "DeleteRuleSet";
|
|
316
|
-
const _DRSR = "DeleteRuleSetRequest";
|
|
317
|
-
const _DRSRe = "DeleteRuleSetResponse";
|
|
318
|
-
const _DTM = "DeliverToMailbox";
|
|
319
|
-
const _DTMA = "DeliverToMailboxAction";
|
|
320
|
-
const _DTP = "DeleteTrafficPolicy";
|
|
321
|
-
const _DTPR = "DeleteTrafficPolicyRequest";
|
|
322
|
-
const _DTPRe = "DeleteTrafficPolicyResponse";
|
|
323
|
-
const _DTQB = "DeliverToQBusiness";
|
|
324
|
-
const _DTQBA = "DeliverToQBusinessAction";
|
|
325
|
-
const _Dr = "Drop";
|
|
326
|
-
const _E = "Evaluate";
|
|
327
|
-
const _EA = "EmailAddress";
|
|
328
|
-
const _EDC = "ExportDestinationConfiguration";
|
|
329
|
-
const _EI = "ExportId";
|
|
330
|
-
const _EM = "ErrorMessage";
|
|
331
|
-
const _ES = "ExportStatus";
|
|
332
|
-
const _ESL = "ExportSummaryList";
|
|
333
|
-
const _ESx = "ExportSummary";
|
|
334
|
-
const _En = "Envelope";
|
|
335
|
-
const _Enc = "Encoding";
|
|
336
|
-
const _Er = "Error";
|
|
337
|
-
const _Ex = "Exports";
|
|
338
|
-
const _F = "From";
|
|
339
|
-
const _FIC = "FailedItemsCount";
|
|
340
|
-
const _FT = "FromTimestamp";
|
|
341
|
-
const _Fi = "Filters";
|
|
342
|
-
const _Fil = "Filter";
|
|
343
|
-
const _GA = "GetArchive";
|
|
344
|
-
const _GAE = "GetArchiveExport";
|
|
345
|
-
const _GAER = "GetArchiveExportRequest";
|
|
346
|
-
const _GAERe = "GetArchiveExportResponse";
|
|
347
|
-
const _GAI = "GetAddonInstance";
|
|
348
|
-
const _GAIR = "GetAddonInstanceRequest";
|
|
349
|
-
const _GAIRe = "GetAddonInstanceResponse";
|
|
350
|
-
const _GAL = "GetAddressList";
|
|
351
|
-
const _GALIJ = "GetAddressListImportJob";
|
|
352
|
-
const _GALIJR = "GetAddressListImportJobRequest";
|
|
353
|
-
const _GALIJRe = "GetAddressListImportJobResponse";
|
|
354
|
-
const _GALR = "GetAddressListRequest";
|
|
355
|
-
const _GALRe = "GetAddressListResponse";
|
|
356
|
-
const _GAM = "GetArchiveMessage";
|
|
357
|
-
const _GAMC = "GetArchiveMessageContent";
|
|
358
|
-
const _GAMCR = "GetArchiveMessageContentRequest";
|
|
359
|
-
const _GAMCRe = "GetArchiveMessageContentResponse";
|
|
360
|
-
const _GAMR = "GetArchiveMessageRequest";
|
|
361
|
-
const _GAMRe = "GetArchiveMessageResponse";
|
|
362
|
-
const _GAR = "GetArchiveRequest";
|
|
363
|
-
const _GARe = "GetArchiveResponse";
|
|
364
|
-
const _GAS = "GetAddonSubscription";
|
|
365
|
-
const _GASR = "GetAddonSubscriptionRequest";
|
|
366
|
-
const _GASRR = "GetArchiveSearchResultsRequest";
|
|
367
|
-
const _GASRRe = "GetArchiveSearchResultsResponse";
|
|
368
|
-
const _GASRe = "GetAddonSubscriptionResponse";
|
|
369
|
-
const _GASRet = "GetArchiveSearchRequest";
|
|
370
|
-
const _GASRetr = "GetArchiveSearchResponse";
|
|
371
|
-
const _GASRetrc = "GetArchiveSearchResults";
|
|
372
|
-
const _GASe = "GetArchiveSearch";
|
|
373
|
-
const _GIP = "GetIngressPoint";
|
|
374
|
-
const _GIPR = "GetIngressPointRequest";
|
|
375
|
-
const _GIPRe = "GetIngressPointResponse";
|
|
376
|
-
const _GMOAL = "GetMemberOfAddressList";
|
|
377
|
-
const _GMOALR = "GetMemberOfAddressListRequest";
|
|
378
|
-
const _GMOALRe = "GetMemberOfAddressListResponse";
|
|
379
|
-
const _GR = "GetRelay";
|
|
380
|
-
const _GRR = "GetRelayRequest";
|
|
381
|
-
const _GRRe = "GetRelayResponse";
|
|
382
|
-
const _GRS = "GetRuleSet";
|
|
383
|
-
const _GRSR = "GetRuleSetRequest";
|
|
384
|
-
const _GRSRe = "GetRuleSetResponse";
|
|
385
|
-
const _GTP = "GetTrafficPolicy";
|
|
386
|
-
const _GTPR = "GetTrafficPolicyRequest";
|
|
387
|
-
const _GTPRe = "GetTrafficPolicyResponse";
|
|
388
|
-
const _H = "Helo";
|
|
389
|
-
const _HA = "HasAttachments";
|
|
390
|
-
const _HN = "HeaderName";
|
|
391
|
-
const _HV = "HeaderValue";
|
|
392
|
-
const _Ht = "Html";
|
|
393
|
-
const _I = "Include";
|
|
394
|
-
const _IA = "IngressAnalysis";
|
|
395
|
-
const _IBE = "IngressBooleanExpression";
|
|
396
|
-
const _IBTE = "IngressBooleanToEvaluate";
|
|
397
|
-
const _IDF = "ImportDataFormat";
|
|
398
|
-
const _IDT = "ImportDataType";
|
|
399
|
-
const _IE = "IpExpression";
|
|
400
|
-
const _IEp = "Ipv6Expression";
|
|
401
|
-
const _II = "IndexId";
|
|
402
|
-
const _IIAL = "IsInAddressList";
|
|
403
|
-
const _IIC = "ImportedItemsCount";
|
|
404
|
-
const _IIE = "IngressIpv4Expression";
|
|
405
|
-
const _IIEn = "IngressIpv6Expression";
|
|
406
|
-
const _IIIAL = "IngressIsInAddressList";
|
|
407
|
-
const _IITE = "IngressIpToEvaluate";
|
|
408
|
-
const _IITEn = "IngressIpv6ToEvaluate";
|
|
409
|
-
const _IJ = "ImportJob";
|
|
410
|
-
const _IJm = "ImportJobs";
|
|
411
|
-
const _IM = "IncludeMetadata";
|
|
412
|
-
const _IP = "IngressPoint";
|
|
413
|
-
const _IPA = "IngressPointArn";
|
|
414
|
-
const _IPAC = "IngressPointAuthConfiguration";
|
|
415
|
-
const _IPC = "IngressPointConfiguration";
|
|
416
|
-
const _IPI = "IngressPointId";
|
|
417
|
-
const _IPL = "IngressPointsList";
|
|
418
|
-
const _IPN = "IngressPointName";
|
|
419
|
-
const _IPPC = "IngressPointPasswordConfiguration";
|
|
420
|
-
const _IPn = "IngressPoints";
|
|
421
|
-
const _IRT = "InReplyTo";
|
|
422
|
-
const _ISE = "IngressStringExpression";
|
|
423
|
-
const _ISTE = "IngressStringToEvaluate";
|
|
424
|
-
const _IT = "IpType";
|
|
425
|
-
const _ITPE = "IngressTlsProtocolExpression";
|
|
426
|
-
const _ITPTE = "IngressTlsProtocolToEvaluate";
|
|
427
|
-
const _JI = "JobId";
|
|
428
|
-
const _K = "Key";
|
|
429
|
-
const _KKA = "KmsKeyArn";
|
|
430
|
-
const _LA = "ListArchives";
|
|
431
|
-
const _LAE = "ListArchiveExports";
|
|
432
|
-
const _LAER = "ListArchiveExportsRequest";
|
|
433
|
-
const _LAERi = "ListArchiveExportsResponse";
|
|
434
|
-
const _LAI = "ListAddonInstances";
|
|
435
|
-
const _LAIR = "ListAddonInstancesRequest";
|
|
436
|
-
const _LAIRi = "ListAddonInstancesResponse";
|
|
437
|
-
const _LAL = "ListAddressLists";
|
|
438
|
-
const _LALIJ = "ListAddressListImportJobs";
|
|
439
|
-
const _LALIJR = "ListAddressListImportJobsRequest";
|
|
440
|
-
const _LALIJRi = "ListAddressListImportJobsResponse";
|
|
441
|
-
const _LALR = "ListAddressListsRequest";
|
|
442
|
-
const _LALRi = "ListAddressListsResponse";
|
|
443
|
-
const _LAR = "ListArchivesRequest";
|
|
444
|
-
const _LARi = "ListArchivesResponse";
|
|
445
|
-
const _LAS = "ListAddonSubscriptions";
|
|
446
|
-
const _LASR = "ListAddonSubscriptionsRequest";
|
|
447
|
-
const _LASRi = "ListAddonSubscriptionsResponse";
|
|
448
|
-
const _LASRis = "ListArchiveSearchesRequest";
|
|
449
|
-
const _LASRist = "ListArchiveSearchesResponse";
|
|
450
|
-
const _LASi = "ListArchiveSearches";
|
|
451
|
-
const _LIP = "ListIngressPoints";
|
|
452
|
-
const _LIPR = "ListIngressPointsRequest";
|
|
453
|
-
const _LIPRi = "ListIngressPointsResponse";
|
|
454
|
-
const _LMD = "LastModificationDate";
|
|
455
|
-
const _LMOAL = "ListMembersOfAddressList";
|
|
456
|
-
const _LMOALR = "ListMembersOfAddressListRequest";
|
|
457
|
-
const _LMOALRi = "ListMembersOfAddressListResponse";
|
|
458
|
-
const _LMT = "LastModifiedTimestamp";
|
|
459
|
-
const _LR = "ListRelays";
|
|
460
|
-
const _LRR = "ListRelaysRequest";
|
|
461
|
-
const _LRRi = "ListRelaysResponse";
|
|
462
|
-
const _LRS = "ListRuleSets";
|
|
463
|
-
const _LRSR = "ListRuleSetsRequest";
|
|
464
|
-
const _LRSRi = "ListRuleSetsResponse";
|
|
465
|
-
const _LTFR = "ListTagsForResource";
|
|
466
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
467
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
468
|
-
const _LTP = "ListTrafficPolicies";
|
|
469
|
-
const _LTPR = "ListTrafficPoliciesRequest";
|
|
470
|
-
const _LTPRi = "ListTrafficPoliciesResponse";
|
|
471
|
-
const _LUT = "LastUpdatedTimestamp";
|
|
472
|
-
const _M = "Message";
|
|
473
|
-
const _MA = "MailboxArn";
|
|
474
|
-
const _MB = "MessageBody";
|
|
475
|
-
const _MDL = "MessageDownloadLink";
|
|
476
|
-
const _MF = "MailFrom";
|
|
477
|
-
const _MHA = "MimeHeaderAttribute";
|
|
478
|
-
const _MI = "MessageId";
|
|
479
|
-
const _MM = "MessageMalformed";
|
|
480
|
-
const _MMSB = "MaxMessageSizeBytes";
|
|
481
|
-
const _MR = "MaxResults";
|
|
482
|
-
const _Me = "Metadata";
|
|
483
|
-
const _N = "Name";
|
|
484
|
-
const _NA = "NoAuthentication";
|
|
485
|
-
const _NC = "NetworkConfiguration";
|
|
486
|
-
const _NE = "NumberExpression";
|
|
487
|
-
const _NT = "NextToken";
|
|
488
|
-
const _O = "Operator";
|
|
489
|
-
const _PC = "PolicyConditions";
|
|
490
|
-
const _PCo = "PolicyCondition";
|
|
491
|
-
const _PNC = "PrivateNetworkConfiguration";
|
|
492
|
-
const _PNCu = "PublicNetworkConfiguration";
|
|
493
|
-
const _PS = "PolicyStatements";
|
|
494
|
-
const _PSL = "PolicyStatementList";
|
|
495
|
-
const _PSPET = "PreviousSmtpPasswordExpiryTimestamp";
|
|
496
|
-
const _PSPV = "PreviousSmtpPasswordVersion";
|
|
497
|
-
const _PSU = "PreSignedUrl";
|
|
498
|
-
const _PSa = "PageSize";
|
|
499
|
-
const _PSo = "PolicyStatement";
|
|
500
|
-
const _PT = "PayloadType";
|
|
501
|
-
const _PTS = "PublishToSns";
|
|
502
|
-
const _R = "Retention";
|
|
503
|
-
const _RA = "RoleArn";
|
|
504
|
-
const _RAe = "RelayArn";
|
|
505
|
-
const _RAel = "RelayAction";
|
|
506
|
-
const _RAela = "RelayAuthentication";
|
|
507
|
-
const _RAes = "ResourceArn";
|
|
508
|
-
const _RAu = "RuleActions";
|
|
509
|
-
const _RAul = "RuleAction";
|
|
510
|
-
const _RBE = "RuleBooleanExpression";
|
|
511
|
-
const _RBTE = "RuleBooleanToEvaluate";
|
|
512
|
-
const _RC = "RuleConditions";
|
|
513
|
-
const _RCu = "RuleCondition";
|
|
514
|
-
const _RDE = "RuleDmarcExpression";
|
|
515
|
-
const _RF = "ResultField";
|
|
516
|
-
const _RH = "ReceivedHeaders";
|
|
517
|
-
const _RI = "RelayId";
|
|
518
|
-
const _RIE = "RuleIpExpression";
|
|
519
|
-
const _RIIAL = "RuleIsInAddressList";
|
|
520
|
-
const _RITE = "RuleIpToEvaluate";
|
|
521
|
-
const _RL = "RowsList";
|
|
522
|
-
const _RMTAL = "RegisterMemberToAddressList";
|
|
523
|
-
const _RMTALR = "RegisterMemberToAddressListRequest";
|
|
524
|
-
const _RMTALRe = "RegisterMemberToAddressListResponse";
|
|
525
|
-
const _RN = "RelayName";
|
|
526
|
-
const _RNE = "RuleNumberExpression";
|
|
527
|
-
const _RNFE = "ResourceNotFoundException";
|
|
528
|
-
const _RNTE = "RuleNumberToEvaluate";
|
|
529
|
-
const _RP = "RetentionPeriod";
|
|
530
|
-
const _RR = "ReplaceRecipient";
|
|
531
|
-
const _RRA = "ReplaceRecipientAction";
|
|
532
|
-
const _RS = "RuleSets";
|
|
533
|
-
const _RSA = "RuleSetArn";
|
|
534
|
-
const _RSE = "RuleStringExpression";
|
|
535
|
-
const _RSI = "RuleSetId";
|
|
536
|
-
const _RSN = "RuleSetName";
|
|
537
|
-
const _RSTE = "RuleStringToEvaluate";
|
|
538
|
-
const _RSu = "RuleSet";
|
|
539
|
-
const _RT = "ReceivedTimestamp";
|
|
540
|
-
const _RVE = "RuleVerdictExpression";
|
|
541
|
-
const _RVTE = "RuleVerdictToEvaluate";
|
|
542
|
-
const _RW = "ReplaceWith";
|
|
543
|
-
const _Re = "Relays";
|
|
544
|
-
const _Rec = "Recipients";
|
|
545
|
-
const _Rel = "Relay";
|
|
546
|
-
const _Ro = "Rows";
|
|
547
|
-
const _Row = "Row";
|
|
548
|
-
const _Ru = "Rules";
|
|
549
|
-
const _Rul = "Rule";
|
|
550
|
-
const _S = "State";
|
|
551
|
-
const _SA = "SecretArn";
|
|
552
|
-
const _SAE = "StartArchiveExport";
|
|
553
|
-
const _SAER = "StartArchiveExportRequest";
|
|
554
|
-
const _SAERt = "StartArchiveExportResponse";
|
|
555
|
-
const _SAERto = "StopArchiveExportRequest";
|
|
556
|
-
const _SAERtop = "StopArchiveExportResponse";
|
|
557
|
-
const _SAEt = "StopArchiveExport";
|
|
558
|
-
const _SALIJ = "StartAddressListImportJob";
|
|
559
|
-
const _SALIJR = "StartAddressListImportJobRequest";
|
|
560
|
-
const _SALIJRt = "StartAddressListImportJobResponse";
|
|
561
|
-
const _SALIJRto = "StopAddressListImportJobRequest";
|
|
562
|
-
const _SALIJRtop = "StopAddressListImportJobResponse";
|
|
563
|
-
const _SALIJt = "StopAddressListImportJob";
|
|
564
|
-
const _SAS = "StartArchiveSearch";
|
|
565
|
-
const _SASR = "StartArchiveSearchRequest";
|
|
566
|
-
const _SASRt = "StartArchiveSearchResponse";
|
|
567
|
-
const _SASRto = "StopArchiveSearchRequest";
|
|
568
|
-
const _SASRtop = "StopArchiveSearchResponse";
|
|
569
|
-
const _SASt = "StopArchiveSearch";
|
|
570
|
-
const _SAa = "SavedAddress";
|
|
571
|
-
const _SAav = "SavedAddresses";
|
|
572
|
-
const _SAc = "S3Action";
|
|
573
|
-
const _SAe = "SendAction";
|
|
574
|
-
const _SAn = "SnsAction";
|
|
575
|
-
const _SAo = "SourceArn";
|
|
576
|
-
const _SB = "S3Bucket";
|
|
577
|
-
const _SE = "StringExpression";
|
|
578
|
-
const _SEDC = "S3ExportDestinationConfiguration";
|
|
579
|
-
const _SH = "SenderHostname";
|
|
580
|
-
const _SI = "SearchId";
|
|
581
|
-
const _SIA = "SenderIpAddress";
|
|
582
|
-
const _SIo = "SourceIdentity";
|
|
583
|
-
const _SL = "S3Location";
|
|
584
|
-
const _SM = "SendingMethod";
|
|
585
|
-
const _SN = "ServerName";
|
|
586
|
-
const _SP = "SmtpPassword";
|
|
587
|
-
const _SPV = "SmtpPasswordVersion";
|
|
588
|
-
const _SPe = "ServerPort";
|
|
589
|
-
const _SPen = "SendingPool";
|
|
590
|
-
const _SPr = "S3Prefix";
|
|
591
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
592
|
-
const _SS = "SearchStatus";
|
|
593
|
-
const _SSKKI = "S3SseKmsKeyId";
|
|
594
|
-
const _SSL = "SearchSummaryList";
|
|
595
|
-
const _SSe = "SearchSummary";
|
|
596
|
-
const _ST = "SubmissionTimestamp";
|
|
597
|
-
const _STU = "StatusToUpdate";
|
|
598
|
-
const _STt = "StartTimestamp";
|
|
599
|
-
const _S_ = "S3";
|
|
600
|
-
const _Se = "Searches";
|
|
601
|
-
const _Sen = "Send";
|
|
602
|
-
const _St = "Status";
|
|
603
|
-
const _Su = "Subject";
|
|
604
|
-
const _T = "Tags";
|
|
605
|
-
const _TA = "TargetArchive";
|
|
606
|
-
const _TAo = "TopicArn";
|
|
607
|
-
const _TCS = "TlsCipherSuite";
|
|
608
|
-
const _TE = "ThrottlingException";
|
|
609
|
-
const _TEl = "TlsExpression";
|
|
610
|
-
const _TK = "TagKeys";
|
|
611
|
-
const _TL = "TagList";
|
|
612
|
-
const _TP = "TrafficPolicies";
|
|
613
|
-
const _TPA = "TrafficPolicyArn";
|
|
614
|
-
const _TPI = "TrafficPolicyId";
|
|
615
|
-
const _TPL = "TrafficPolicyList";
|
|
616
|
-
const _TPN = "TrafficPolicyName";
|
|
617
|
-
const _TPl = "TlsProtocol";
|
|
618
|
-
const _TPr = "TrafficPolicy";
|
|
619
|
-
const _TR = "TagResource";
|
|
620
|
-
const _TRR = "TagResourceRequest";
|
|
621
|
-
const _TRRa = "TagResourceResponse";
|
|
622
|
-
const _TT = "ToTimestamp";
|
|
623
|
-
const _Ta = "Tag";
|
|
624
|
-
const _Te = "Text";
|
|
625
|
-
const _Ti = "Timestamp";
|
|
626
|
-
const _To = "To";
|
|
627
|
-
const _Ty = "Type";
|
|
628
|
-
const _U = "Unless";
|
|
629
|
-
const _UA = "UpdateArchive";
|
|
630
|
-
const _UAR = "UpdateArchiveRequest";
|
|
631
|
-
const _UARp = "UpdateArchiveResponse";
|
|
632
|
-
const _UIP = "UpdateIngressPoint";
|
|
633
|
-
const _UIPR = "UpdateIngressPointRequest";
|
|
634
|
-
const _UIPRp = "UpdateIngressPointResponse";
|
|
635
|
-
const _UR = "UntagResource";
|
|
636
|
-
const _URR = "UntagResourceRequest";
|
|
637
|
-
const _URRn = "UntagResourceResponse";
|
|
638
|
-
const _URRp = "UpdateRelayRequest";
|
|
639
|
-
const _URRpd = "UpdateRelayResponse";
|
|
640
|
-
const _URS = "UpdateRuleSet";
|
|
641
|
-
const _URSR = "UpdateRuleSetRequest";
|
|
642
|
-
const _URSRp = "UpdateRuleSetResponse";
|
|
643
|
-
const _URp = "UpdateRelay";
|
|
644
|
-
const _UTP = "UpdateTrafficPolicy";
|
|
645
|
-
const _UTPR = "UpdateTrafficPolicyRequest";
|
|
646
|
-
const _UTPRp = "UpdateTrafficPolicyResponse";
|
|
647
|
-
const _V = "Values";
|
|
648
|
-
const _VE = "ValidationException";
|
|
649
|
-
const _VEI = "VpcEndpointId";
|
|
650
|
-
const _VEe = "VerdictExpression";
|
|
651
|
-
const _Va = "Value";
|
|
652
|
-
const _WTS = "WriteToS3";
|
|
653
|
-
const _XM = "XMailer";
|
|
654
|
-
const _XOM = "XOriginalMailer";
|
|
655
|
-
const _XP = "XPriority";
|
|
656
|
-
const _c = "client";
|
|
657
|
-
const _e = "error";
|
|
658
|
-
const _hE = "httpError";
|
|
659
|
-
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.mailmanager";
|
|
660
|
-
const n0 = "com.amazonaws.mailmanager";
|
|
661
|
-
var Address = [0, n0, _A, 8, 0];
|
|
662
|
-
var AddressPrefix = [0, n0, _AP, 8, 0];
|
|
663
|
-
var EmailAddress = [0, n0, _EA, 8, 0];
|
|
664
|
-
var PreSignedUrl = [0, n0, _PSU, 8, 0];
|
|
665
|
-
var SenderIpAddress = [0, n0, _SIA, 8, 0];
|
|
666
|
-
var SmtpPassword = [0, n0, _SP, 8, 0];
|
|
667
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
668
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
669
|
-
[_M],
|
|
670
|
-
[0]
|
|
671
|
-
];
|
|
672
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
673
|
-
var AddHeaderAction$ = [3, n0, _AHA,
|
|
674
|
-
0,
|
|
675
|
-
[_HN, _HV],
|
|
676
|
-
[0, 0], 2
|
|
677
|
-
];
|
|
678
|
-
var AddonInstance$ = [3, n0, _AI,
|
|
679
|
-
0,
|
|
680
|
-
[_AII, _ASI, _AN, _AIA, _CT],
|
|
681
|
-
[0, 0, 0, 0, 4]
|
|
682
|
-
];
|
|
683
|
-
var AddonSubscription$ = [3, n0, _AS,
|
|
684
|
-
0,
|
|
685
|
-
[_ASI, _AN, _ASA, _CT],
|
|
686
|
-
[0, 0, 0, 4]
|
|
687
|
-
];
|
|
688
|
-
var AddressFilter$ = [3, n0, _AF,
|
|
689
|
-
0,
|
|
690
|
-
[_AP],
|
|
691
|
-
[[() => AddressPrefix, 0]]
|
|
692
|
-
];
|
|
693
|
-
var AddressList$ = [3, n0, _AL,
|
|
694
|
-
0,
|
|
695
|
-
[_ALI, _ALA, _ALN, _CT, _LUT],
|
|
696
|
-
[0, 0, 0, 4, 4], 5
|
|
697
|
-
];
|
|
698
|
-
var Analysis$ = [3, n0, _An,
|
|
699
|
-
0,
|
|
700
|
-
[_Ana, _RF],
|
|
701
|
-
[0, 0], 2
|
|
702
|
-
];
|
|
703
|
-
var Archive$ = [3, n0, _Ar,
|
|
704
|
-
0,
|
|
705
|
-
[_AIr, _ANr, _ASr, _LUT],
|
|
706
|
-
[0, 0, 0, 4], 1
|
|
707
|
-
];
|
|
708
|
-
var ArchiveAction$ = [3, n0, _AA,
|
|
709
|
-
0,
|
|
710
|
-
[_TA, _AFP],
|
|
711
|
-
[0, 0], 1
|
|
712
|
-
];
|
|
713
|
-
var ArchiveBooleanExpression$ = [3, n0, _ABE,
|
|
714
|
-
0,
|
|
715
|
-
[_E, _O],
|
|
716
|
-
[() => ArchiveBooleanToEvaluate$, 0], 2
|
|
717
|
-
];
|
|
718
|
-
var ArchiveFilters$ = [3, n0, _AFr,
|
|
719
|
-
0,
|
|
720
|
-
[_I, _U],
|
|
721
|
-
[() => ArchiveFilterConditions, () => ArchiveFilterConditions]
|
|
722
|
-
];
|
|
723
|
-
var ArchiveStringExpression$ = [3, n0, _ASE,
|
|
724
|
-
0,
|
|
725
|
-
[_E, _O, _V],
|
|
726
|
-
[() => ArchiveStringToEvaluate$, 0, 64 | 0], 3
|
|
727
|
-
];
|
|
728
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
729
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
730
|
-
[_M],
|
|
731
|
-
[0]
|
|
732
|
-
];
|
|
733
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
734
|
-
var CreateAddonInstanceRequest$ = [3, n0, _CAIR,
|
|
735
|
-
0,
|
|
736
|
-
[_ASI, _CTl, _T],
|
|
737
|
-
[0, [0, 4], () => TagList], 1
|
|
738
|
-
];
|
|
739
|
-
var CreateAddonInstanceResponse$ = [3, n0, _CAIRr,
|
|
740
|
-
0,
|
|
741
|
-
[_AII],
|
|
742
|
-
[0], 1
|
|
743
|
-
];
|
|
744
|
-
var CreateAddonSubscriptionRequest$ = [3, n0, _CASR,
|
|
745
|
-
0,
|
|
746
|
-
[_AN, _CTl, _T],
|
|
747
|
-
[0, [0, 4], () => TagList], 1
|
|
748
|
-
];
|
|
749
|
-
var CreateAddonSubscriptionResponse$ = [3, n0, _CASRr,
|
|
750
|
-
0,
|
|
751
|
-
[_ASI],
|
|
752
|
-
[0], 1
|
|
753
|
-
];
|
|
754
|
-
var CreateAddressListImportJobRequest$ = [3, n0, _CALIJR,
|
|
755
|
-
0,
|
|
756
|
-
[_ALI, _N, _IDF, _CTl],
|
|
757
|
-
[0, 0, () => ImportDataFormat$, [0, 4]], 3
|
|
758
|
-
];
|
|
759
|
-
var CreateAddressListImportJobResponse$ = [3, n0, _CALIJRr,
|
|
760
|
-
0,
|
|
761
|
-
[_JI, _PSU],
|
|
762
|
-
[0, [() => PreSignedUrl, 0]], 2
|
|
763
|
-
];
|
|
764
|
-
var CreateAddressListRequest$ = [3, n0, _CALR,
|
|
765
|
-
0,
|
|
766
|
-
[_ALN, _CTl, _T],
|
|
767
|
-
[0, [0, 4], () => TagList], 1
|
|
768
|
-
];
|
|
769
|
-
var CreateAddressListResponse$ = [3, n0, _CALRr,
|
|
770
|
-
0,
|
|
771
|
-
[_ALI],
|
|
772
|
-
[0], 1
|
|
773
|
-
];
|
|
774
|
-
var CreateArchiveRequest$ = [3, n0, _CAR,
|
|
775
|
-
0,
|
|
776
|
-
[_ANr, _CTl, _R, _KKA, _T],
|
|
777
|
-
[0, [0, 4], () => ArchiveRetention$, 0, () => TagList], 1
|
|
778
|
-
];
|
|
779
|
-
var CreateArchiveResponse$ = [3, n0, _CARr,
|
|
780
|
-
0,
|
|
781
|
-
[_AIr],
|
|
782
|
-
[0], 1
|
|
783
|
-
];
|
|
784
|
-
var CreateIngressPointRequest$ = [3, n0, _CIPR,
|
|
785
|
-
0,
|
|
786
|
-
[_IPN, _Ty, _RSI, _TPI, _CTl, _IPC, _NC, _T],
|
|
787
|
-
[0, 0, 0, 0, [0, 4], [() => IngressPointConfiguration$, 0], () => NetworkConfiguration$, () => TagList], 4
|
|
788
|
-
];
|
|
789
|
-
var CreateIngressPointResponse$ = [3, n0, _CIPRr,
|
|
790
|
-
0,
|
|
791
|
-
[_IPI],
|
|
792
|
-
[0], 1
|
|
793
|
-
];
|
|
794
|
-
var CreateRelayRequest$ = [3, n0, _CRR,
|
|
795
|
-
0,
|
|
796
|
-
[_RN, _SN, _SPe, _Au, _CTl, _T],
|
|
797
|
-
[0, 0, 1, () => RelayAuthentication$, [0, 4], () => TagList], 4
|
|
798
|
-
];
|
|
799
|
-
var CreateRelayResponse$ = [3, n0, _CRRr,
|
|
800
|
-
0,
|
|
801
|
-
[_RI],
|
|
802
|
-
[0], 1
|
|
803
|
-
];
|
|
804
|
-
var CreateRuleSetRequest$ = [3, n0, _CRSR,
|
|
805
|
-
0,
|
|
806
|
-
[_RSN, _Ru, _CTl, _T],
|
|
807
|
-
[0, [() => Rules, 0], [0, 4], () => TagList], 2
|
|
808
|
-
];
|
|
809
|
-
var CreateRuleSetResponse$ = [3, n0, _CRSRr,
|
|
810
|
-
0,
|
|
811
|
-
[_RSI],
|
|
812
|
-
[0], 1
|
|
813
|
-
];
|
|
814
|
-
var CreateTrafficPolicyRequest$ = [3, n0, _CTPR,
|
|
815
|
-
0,
|
|
816
|
-
[_TPN, _PS, _DA, _CTl, _MMSB, _T],
|
|
817
|
-
[0, () => PolicyStatementList, 0, [0, 4], 1, () => TagList], 3
|
|
818
|
-
];
|
|
819
|
-
var CreateTrafficPolicyResponse$ = [3, n0, _CTPRr,
|
|
820
|
-
0,
|
|
821
|
-
[_TPI],
|
|
822
|
-
[0], 1
|
|
823
|
-
];
|
|
824
|
-
var DeleteAddonInstanceRequest$ = [3, n0, _DAIR,
|
|
825
|
-
0,
|
|
826
|
-
[_AII],
|
|
827
|
-
[0], 1
|
|
828
|
-
];
|
|
829
|
-
var DeleteAddonInstanceResponse$ = [3, n0, _DAIRe,
|
|
830
|
-
0,
|
|
831
|
-
[],
|
|
832
|
-
[]
|
|
833
|
-
];
|
|
834
|
-
var DeleteAddonSubscriptionRequest$ = [3, n0, _DASR,
|
|
835
|
-
0,
|
|
836
|
-
[_ASI],
|
|
837
|
-
[0], 1
|
|
838
|
-
];
|
|
839
|
-
var DeleteAddonSubscriptionResponse$ = [3, n0, _DASRe,
|
|
840
|
-
0,
|
|
841
|
-
[],
|
|
842
|
-
[]
|
|
843
|
-
];
|
|
844
|
-
var DeleteAddressListRequest$ = [3, n0, _DALR,
|
|
845
|
-
0,
|
|
846
|
-
[_ALI],
|
|
847
|
-
[0], 1
|
|
848
|
-
];
|
|
849
|
-
var DeleteAddressListResponse$ = [3, n0, _DALRe,
|
|
850
|
-
0,
|
|
851
|
-
[],
|
|
852
|
-
[]
|
|
853
|
-
];
|
|
854
|
-
var DeleteArchiveRequest$ = [3, n0, _DAR,
|
|
855
|
-
0,
|
|
856
|
-
[_AIr],
|
|
857
|
-
[0], 1
|
|
858
|
-
];
|
|
859
|
-
var DeleteArchiveResponse$ = [3, n0, _DARe,
|
|
860
|
-
0,
|
|
861
|
-
[],
|
|
862
|
-
[]
|
|
863
|
-
];
|
|
864
|
-
var DeleteIngressPointRequest$ = [3, n0, _DIPR,
|
|
865
|
-
0,
|
|
866
|
-
[_IPI],
|
|
867
|
-
[0], 1
|
|
868
|
-
];
|
|
869
|
-
var DeleteIngressPointResponse$ = [3, n0, _DIPRe,
|
|
870
|
-
0,
|
|
871
|
-
[],
|
|
872
|
-
[]
|
|
873
|
-
];
|
|
874
|
-
var DeleteRelayRequest$ = [3, n0, _DRR,
|
|
875
|
-
0,
|
|
876
|
-
[_RI],
|
|
877
|
-
[0], 1
|
|
878
|
-
];
|
|
879
|
-
var DeleteRelayResponse$ = [3, n0, _DRRe,
|
|
880
|
-
0,
|
|
881
|
-
[],
|
|
882
|
-
[]
|
|
883
|
-
];
|
|
884
|
-
var DeleteRuleSetRequest$ = [3, n0, _DRSR,
|
|
885
|
-
0,
|
|
886
|
-
[_RSI],
|
|
887
|
-
[0], 1
|
|
888
|
-
];
|
|
889
|
-
var DeleteRuleSetResponse$ = [3, n0, _DRSRe,
|
|
890
|
-
0,
|
|
891
|
-
[],
|
|
892
|
-
[]
|
|
893
|
-
];
|
|
894
|
-
var DeleteTrafficPolicyRequest$ = [3, n0, _DTPR,
|
|
895
|
-
0,
|
|
896
|
-
[_TPI],
|
|
897
|
-
[0], 1
|
|
898
|
-
];
|
|
899
|
-
var DeleteTrafficPolicyResponse$ = [3, n0, _DTPRe,
|
|
900
|
-
0,
|
|
901
|
-
[],
|
|
902
|
-
[]
|
|
903
|
-
];
|
|
904
|
-
var DeliverToMailboxAction$ = [3, n0, _DTMA,
|
|
905
|
-
0,
|
|
906
|
-
[_MA, _RA, _AFP],
|
|
907
|
-
[0, 0, 0], 2
|
|
908
|
-
];
|
|
909
|
-
var DeliverToQBusinessAction$ = [3, n0, _DTQBA,
|
|
910
|
-
0,
|
|
911
|
-
[_AIp, _II, _RA, _AFP],
|
|
912
|
-
[0, 0, 0, 0], 3
|
|
913
|
-
];
|
|
914
|
-
var DeregisterMemberFromAddressListRequest$ = [3, n0, _DMFALR,
|
|
915
|
-
0,
|
|
916
|
-
[_ALI, _A],
|
|
917
|
-
[0, [() => Address, 0]], 2
|
|
918
|
-
];
|
|
919
|
-
var DeregisterMemberFromAddressListResponse$ = [3, n0, _DMFALRe,
|
|
920
|
-
0,
|
|
921
|
-
[],
|
|
922
|
-
[]
|
|
923
|
-
];
|
|
924
|
-
var DropAction$ = [3, n0, _DAr,
|
|
925
|
-
0,
|
|
926
|
-
[],
|
|
927
|
-
[]
|
|
928
|
-
];
|
|
929
|
-
var Envelope$ = [3, n0, _En,
|
|
930
|
-
0,
|
|
931
|
-
[_H, _F, _To],
|
|
932
|
-
[0, 0, 64 | 0]
|
|
933
|
-
];
|
|
934
|
-
var ExportStatus$ = [3, n0, _ES,
|
|
935
|
-
0,
|
|
936
|
-
[_ST, _CTo, _S, _EM],
|
|
937
|
-
[4, 4, 0, 0]
|
|
938
|
-
];
|
|
939
|
-
var ExportSummary$ = [3, n0, _ESx,
|
|
940
|
-
0,
|
|
941
|
-
[_EI, _St],
|
|
942
|
-
[0, () => ExportStatus$]
|
|
943
|
-
];
|
|
944
|
-
var GetAddonInstanceRequest$ = [3, n0, _GAIR,
|
|
945
|
-
0,
|
|
946
|
-
[_AII],
|
|
947
|
-
[0], 1
|
|
948
|
-
];
|
|
949
|
-
var GetAddonInstanceResponse$ = [3, n0, _GAIRe,
|
|
950
|
-
0,
|
|
951
|
-
[_ASI, _AN, _AIA, _CT],
|
|
952
|
-
[0, 0, 0, 4]
|
|
953
|
-
];
|
|
954
|
-
var GetAddonSubscriptionRequest$ = [3, n0, _GASR,
|
|
955
|
-
0,
|
|
956
|
-
[_ASI],
|
|
957
|
-
[0], 1
|
|
958
|
-
];
|
|
959
|
-
var GetAddonSubscriptionResponse$ = [3, n0, _GASRe,
|
|
960
|
-
0,
|
|
961
|
-
[_AN, _ASA, _CT],
|
|
962
|
-
[0, 0, 4]
|
|
963
|
-
];
|
|
964
|
-
var GetAddressListImportJobRequest$ = [3, n0, _GALIJR,
|
|
965
|
-
0,
|
|
966
|
-
[_JI],
|
|
967
|
-
[0], 1
|
|
968
|
-
];
|
|
969
|
-
var GetAddressListImportJobResponse$ = [3, n0, _GALIJRe,
|
|
970
|
-
0,
|
|
971
|
-
[_JI, _N, _St, _PSU, _IDF, _ALI, _CT, _IIC, _FIC, _STt, _CTom, _Er],
|
|
972
|
-
[0, 0, 0, [() => PreSignedUrl, 0], () => ImportDataFormat$, 0, 4, 1, 1, 4, 4, 0], 7
|
|
973
|
-
];
|
|
974
|
-
var GetAddressListRequest$ = [3, n0, _GALR,
|
|
975
|
-
0,
|
|
976
|
-
[_ALI],
|
|
977
|
-
[0], 1
|
|
978
|
-
];
|
|
979
|
-
var GetAddressListResponse$ = [3, n0, _GALRe,
|
|
980
|
-
0,
|
|
981
|
-
[_ALI, _ALA, _ALN, _CT, _LUT],
|
|
982
|
-
[0, 0, 0, 4, 4], 5
|
|
983
|
-
];
|
|
984
|
-
var GetArchiveExportRequest$ = [3, n0, _GAER,
|
|
985
|
-
0,
|
|
986
|
-
[_EI],
|
|
987
|
-
[0], 1
|
|
988
|
-
];
|
|
989
|
-
var GetArchiveExportResponse$ = [3, n0, _GAERe,
|
|
990
|
-
0,
|
|
991
|
-
[_AIr, _Fi, _FT, _TT, _MR, _EDC, _St],
|
|
992
|
-
[0, () => ArchiveFilters$, 4, 4, 1, () => ExportDestinationConfiguration$, () => ExportStatus$]
|
|
993
|
-
];
|
|
994
|
-
var GetArchiveMessageContentRequest$ = [3, n0, _GAMCR,
|
|
995
|
-
0,
|
|
996
|
-
[_AMI],
|
|
997
|
-
[0], 1
|
|
998
|
-
];
|
|
999
|
-
var GetArchiveMessageContentResponse$ = [3, n0, _GAMCRe,
|
|
1000
|
-
0,
|
|
1001
|
-
[_B],
|
|
1002
|
-
[() => MessageBody$]
|
|
1003
|
-
];
|
|
1004
|
-
var GetArchiveMessageRequest$ = [3, n0, _GAMR,
|
|
1005
|
-
0,
|
|
1006
|
-
[_AMI],
|
|
1007
|
-
[0], 1
|
|
1008
|
-
];
|
|
1009
|
-
var GetArchiveMessageResponse$ = [3, n0, _GAMRe,
|
|
1010
|
-
0,
|
|
1011
|
-
[_MDL, _Me, _En],
|
|
1012
|
-
[0, [() => Metadata$, 0], () => Envelope$]
|
|
1013
|
-
];
|
|
1014
|
-
var GetArchiveRequest$ = [3, n0, _GAR,
|
|
1015
|
-
0,
|
|
1016
|
-
[_AIr],
|
|
1017
|
-
[0], 1
|
|
1018
|
-
];
|
|
1019
|
-
var GetArchiveResponse$ = [3, n0, _GARe,
|
|
1020
|
-
0,
|
|
1021
|
-
[_AIr, _ANr, _AAr, _ASr, _R, _CT, _LUT, _KKA],
|
|
1022
|
-
[0, 0, 0, 0, () => ArchiveRetention$, 4, 4, 0], 5
|
|
1023
|
-
];
|
|
1024
|
-
var GetArchiveSearchRequest$ = [3, n0, _GASRet,
|
|
1025
|
-
0,
|
|
1026
|
-
[_SI],
|
|
1027
|
-
[0], 1
|
|
1028
|
-
];
|
|
1029
|
-
var GetArchiveSearchResponse$ = [3, n0, _GASRetr,
|
|
1030
|
-
0,
|
|
1031
|
-
[_AIr, _Fi, _FT, _TT, _MR, _St],
|
|
1032
|
-
[0, () => ArchiveFilters$, 4, 4, 1, () => SearchStatus$]
|
|
1033
|
-
];
|
|
1034
|
-
var GetArchiveSearchResultsRequest$ = [3, n0, _GASRR,
|
|
1035
|
-
0,
|
|
1036
|
-
[_SI],
|
|
1037
|
-
[0], 1
|
|
1038
|
-
];
|
|
1039
|
-
var GetArchiveSearchResultsResponse$ = [3, n0, _GASRRe,
|
|
1040
|
-
0,
|
|
1041
|
-
[_Ro],
|
|
1042
|
-
[[() => RowsList, 0]]
|
|
1043
|
-
];
|
|
1044
|
-
var GetIngressPointRequest$ = [3, n0, _GIPR,
|
|
1045
|
-
0,
|
|
1046
|
-
[_IPI],
|
|
1047
|
-
[0], 1
|
|
1048
|
-
];
|
|
1049
|
-
var GetIngressPointResponse$ = [3, n0, _GIPRe,
|
|
1050
|
-
0,
|
|
1051
|
-
[_IPI, _IPN, _IPA, _St, _Ty, _AR, _RSI, _TPI, _IPAC, _NC, _CT, _LUT],
|
|
1052
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => IngressPointAuthConfiguration$, () => NetworkConfiguration$, 4, 4], 2
|
|
1053
|
-
];
|
|
1054
|
-
var GetMemberOfAddressListRequest$ = [3, n0, _GMOALR,
|
|
1055
|
-
0,
|
|
1056
|
-
[_ALI, _A],
|
|
1057
|
-
[0, [() => Address, 0]], 2
|
|
1058
|
-
];
|
|
1059
|
-
var GetMemberOfAddressListResponse$ = [3, n0, _GMOALRe,
|
|
1060
|
-
0,
|
|
1061
|
-
[_A, _CT],
|
|
1062
|
-
[[() => Address, 0], 4], 2
|
|
1063
|
-
];
|
|
1064
|
-
var GetRelayRequest$ = [3, n0, _GRR,
|
|
1065
|
-
0,
|
|
1066
|
-
[_RI],
|
|
1067
|
-
[0], 1
|
|
1068
|
-
];
|
|
1069
|
-
var GetRelayResponse$ = [3, n0, _GRRe,
|
|
1070
|
-
0,
|
|
1071
|
-
[_RI, _RAe, _RN, _SN, _SPe, _Au, _CT, _LMT],
|
|
1072
|
-
[0, 0, 0, 0, 1, () => RelayAuthentication$, 4, 4], 1
|
|
1073
|
-
];
|
|
1074
|
-
var GetRuleSetRequest$ = [3, n0, _GRSR,
|
|
1075
|
-
0,
|
|
1076
|
-
[_RSI],
|
|
1077
|
-
[0], 1
|
|
1078
|
-
];
|
|
1079
|
-
var GetRuleSetResponse$ = [3, n0, _GRSRe,
|
|
1080
|
-
0,
|
|
1081
|
-
[_RSI, _RSA, _RSN, _CD, _LMD, _Ru],
|
|
1082
|
-
[0, 0, 0, 4, 4, [() => Rules, 0]], 6
|
|
1083
|
-
];
|
|
1084
|
-
var GetTrafficPolicyRequest$ = [3, n0, _GTPR,
|
|
1085
|
-
0,
|
|
1086
|
-
[_TPI],
|
|
1087
|
-
[0], 1
|
|
1088
|
-
];
|
|
1089
|
-
var GetTrafficPolicyResponse$ = [3, n0, _GTPRe,
|
|
1090
|
-
0,
|
|
1091
|
-
[_TPN, _TPI, _TPA, _PS, _MMSB, _DA, _CT, _LUT],
|
|
1092
|
-
[0, 0, 0, () => PolicyStatementList, 1, 0, 4, 4], 2
|
|
1093
|
-
];
|
|
1094
|
-
var ImportDataFormat$ = [3, n0, _IDF,
|
|
1095
|
-
0,
|
|
1096
|
-
[_IDT],
|
|
1097
|
-
[0], 1
|
|
1098
|
-
];
|
|
1099
|
-
var ImportJob$ = [3, n0, _IJ,
|
|
1100
|
-
0,
|
|
1101
|
-
[_JI, _N, _St, _PSU, _IDF, _ALI, _CT, _IIC, _FIC, _STt, _CTom, _Er],
|
|
1102
|
-
[0, 0, 0, [() => PreSignedUrl, 0], () => ImportDataFormat$, 0, 4, 1, 1, 4, 4, 0], 7
|
|
1103
|
-
];
|
|
1104
|
-
var IngressAnalysis$ = [3, n0, _IA,
|
|
1105
|
-
0,
|
|
1106
|
-
[_Ana, _RF],
|
|
1107
|
-
[0, 0], 2
|
|
1108
|
-
];
|
|
1109
|
-
var IngressBooleanExpression$ = [3, n0, _IBE,
|
|
1110
|
-
0,
|
|
1111
|
-
[_E, _O],
|
|
1112
|
-
[() => IngressBooleanToEvaluate$, 0], 2
|
|
1113
|
-
];
|
|
1114
|
-
var IngressIpv4Expression$ = [3, n0, _IIE,
|
|
1115
|
-
0,
|
|
1116
|
-
[_E, _O, _V],
|
|
1117
|
-
[() => IngressIpToEvaluate$, 0, 64 | 0], 3
|
|
1118
|
-
];
|
|
1119
|
-
var IngressIpv6Expression$ = [3, n0, _IIEn,
|
|
1120
|
-
0,
|
|
1121
|
-
[_E, _O, _V],
|
|
1122
|
-
[() => IngressIpv6ToEvaluate$, 0, 64 | 0], 3
|
|
1123
|
-
];
|
|
1124
|
-
var IngressIsInAddressList$ = [3, n0, _IIIAL,
|
|
1125
|
-
0,
|
|
1126
|
-
[_At, _ALd],
|
|
1127
|
-
[0, 64 | 0], 2
|
|
1128
|
-
];
|
|
1129
|
-
var IngressPoint$ = [3, n0, _IP,
|
|
1130
|
-
0,
|
|
1131
|
-
[_IPN, _IPI, _St, _Ty, _AR],
|
|
1132
|
-
[0, 0, 0, 0, 0], 4
|
|
1133
|
-
];
|
|
1134
|
-
var IngressPointAuthConfiguration$ = [3, n0, _IPAC,
|
|
1135
|
-
0,
|
|
1136
|
-
[_IPPC, _SA],
|
|
1137
|
-
[() => IngressPointPasswordConfiguration$, 0]
|
|
1138
|
-
];
|
|
1139
|
-
var IngressPointPasswordConfiguration$ = [3, n0, _IPPC,
|
|
1140
|
-
0,
|
|
1141
|
-
[_SPV, _PSPV, _PSPET],
|
|
1142
|
-
[0, 0, 4]
|
|
1143
|
-
];
|
|
1144
|
-
var IngressStringExpression$ = [3, n0, _ISE,
|
|
1145
|
-
0,
|
|
1146
|
-
[_E, _O, _V],
|
|
1147
|
-
[() => IngressStringToEvaluate$, 0, 64 | 0], 3
|
|
1148
|
-
];
|
|
1149
|
-
var IngressTlsProtocolExpression$ = [3, n0, _ITPE,
|
|
1150
|
-
0,
|
|
1151
|
-
[_E, _O, _Va],
|
|
1152
|
-
[() => IngressTlsProtocolToEvaluate$, 0, 0], 3
|
|
1153
|
-
];
|
|
1154
|
-
var ListAddonInstancesRequest$ = [3, n0, _LAIR,
|
|
1155
|
-
0,
|
|
1156
|
-
[_NT, _PSa],
|
|
1157
|
-
[0, 1]
|
|
1158
|
-
];
|
|
1159
|
-
var ListAddonInstancesResponse$ = [3, n0, _LAIRi,
|
|
1160
|
-
0,
|
|
1161
|
-
[_AId, _NT],
|
|
1162
|
-
[() => AddonInstances, 0]
|
|
1163
|
-
];
|
|
1164
|
-
var ListAddonSubscriptionsRequest$ = [3, n0, _LASR,
|
|
1165
|
-
0,
|
|
1166
|
-
[_NT, _PSa],
|
|
1167
|
-
[0, 1]
|
|
1168
|
-
];
|
|
1169
|
-
var ListAddonSubscriptionsResponse$ = [3, n0, _LASRi,
|
|
1170
|
-
0,
|
|
1171
|
-
[_ASd, _NT],
|
|
1172
|
-
[() => AddonSubscriptions, 0]
|
|
1173
|
-
];
|
|
1174
|
-
var ListAddressListImportJobsRequest$ = [3, n0, _LALIJR,
|
|
1175
|
-
0,
|
|
1176
|
-
[_ALI, _NT, _PSa],
|
|
1177
|
-
[0, 0, 1], 1
|
|
1178
|
-
];
|
|
1179
|
-
var ListAddressListImportJobsResponse$ = [3, n0, _LALIJRi,
|
|
1180
|
-
0,
|
|
1181
|
-
[_IJm, _NT],
|
|
1182
|
-
[[() => ImportJobs, 0], 0], 1
|
|
1183
|
-
];
|
|
1184
|
-
var ListAddressListsRequest$ = [3, n0, _LALR,
|
|
1185
|
-
0,
|
|
1186
|
-
[_NT, _PSa],
|
|
1187
|
-
[0, 1]
|
|
1188
|
-
];
|
|
1189
|
-
var ListAddressListsResponse$ = [3, n0, _LALRi,
|
|
1190
|
-
0,
|
|
1191
|
-
[_ALd, _NT],
|
|
1192
|
-
[() => AddressLists, 0], 1
|
|
1193
|
-
];
|
|
1194
|
-
var ListArchiveExportsRequest$ = [3, n0, _LAER,
|
|
1195
|
-
0,
|
|
1196
|
-
[_AIr, _NT, _PSa],
|
|
1197
|
-
[0, 0, 1], 1
|
|
1198
|
-
];
|
|
1199
|
-
var ListArchiveExportsResponse$ = [3, n0, _LAERi,
|
|
1200
|
-
0,
|
|
1201
|
-
[_Ex, _NT],
|
|
1202
|
-
[() => ExportSummaryList, 0]
|
|
1203
|
-
];
|
|
1204
|
-
var ListArchiveSearchesRequest$ = [3, n0, _LASRis,
|
|
1205
|
-
0,
|
|
1206
|
-
[_AIr, _NT, _PSa],
|
|
1207
|
-
[0, 0, 1], 1
|
|
1208
|
-
];
|
|
1209
|
-
var ListArchiveSearchesResponse$ = [3, n0, _LASRist,
|
|
1210
|
-
0,
|
|
1211
|
-
[_Se, _NT],
|
|
1212
|
-
[() => SearchSummaryList, 0]
|
|
1213
|
-
];
|
|
1214
|
-
var ListArchivesRequest$ = [3, n0, _LAR,
|
|
1215
|
-
0,
|
|
1216
|
-
[_NT, _PSa],
|
|
1217
|
-
[0, 1]
|
|
1218
|
-
];
|
|
1219
|
-
var ListArchivesResponse$ = [3, n0, _LARi,
|
|
1220
|
-
0,
|
|
1221
|
-
[_Arc, _NT],
|
|
1222
|
-
[() => ArchivesList, 0], 1
|
|
1223
|
-
];
|
|
1224
|
-
var ListIngressPointsRequest$ = [3, n0, _LIPR,
|
|
1225
|
-
0,
|
|
1226
|
-
[_PSa, _NT],
|
|
1227
|
-
[1, 0]
|
|
1228
|
-
];
|
|
1229
|
-
var ListIngressPointsResponse$ = [3, n0, _LIPRi,
|
|
1230
|
-
0,
|
|
1231
|
-
[_IPn, _NT],
|
|
1232
|
-
[() => IngressPointsList, 0]
|
|
1233
|
-
];
|
|
1234
|
-
var ListMembersOfAddressListRequest$ = [3, n0, _LMOALR,
|
|
1235
|
-
0,
|
|
1236
|
-
[_ALI, _Fil, _NT, _PSa],
|
|
1237
|
-
[0, [() => AddressFilter$, 0], 0, 1], 1
|
|
1238
|
-
];
|
|
1239
|
-
var ListMembersOfAddressListResponse$ = [3, n0, _LMOALRi,
|
|
1240
|
-
0,
|
|
1241
|
-
[_Ad, _NT],
|
|
1242
|
-
[[() => SavedAddresses, 0], 0], 1
|
|
1243
|
-
];
|
|
1244
|
-
var ListRelaysRequest$ = [3, n0, _LRR,
|
|
1245
|
-
0,
|
|
1246
|
-
[_PSa, _NT],
|
|
1247
|
-
[1, 0]
|
|
1248
|
-
];
|
|
1249
|
-
var ListRelaysResponse$ = [3, n0, _LRRi,
|
|
1250
|
-
0,
|
|
1251
|
-
[_Re, _NT],
|
|
1252
|
-
[() => Relays, 0], 1
|
|
1253
|
-
];
|
|
1254
|
-
var ListRuleSetsRequest$ = [3, n0, _LRSR,
|
|
1255
|
-
0,
|
|
1256
|
-
[_NT, _PSa],
|
|
1257
|
-
[0, 1]
|
|
1258
|
-
];
|
|
1259
|
-
var ListRuleSetsResponse$ = [3, n0, _LRSRi,
|
|
1260
|
-
0,
|
|
1261
|
-
[_RS, _NT],
|
|
1262
|
-
[() => RuleSets, 0], 1
|
|
1263
|
-
];
|
|
1264
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1265
|
-
0,
|
|
1266
|
-
[_RAes],
|
|
1267
|
-
[0], 1
|
|
1268
|
-
];
|
|
1269
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1270
|
-
0,
|
|
1271
|
-
[_T],
|
|
1272
|
-
[() => TagList], 1
|
|
1273
|
-
];
|
|
1274
|
-
var ListTrafficPoliciesRequest$ = [3, n0, _LTPR,
|
|
1275
|
-
0,
|
|
1276
|
-
[_PSa, _NT],
|
|
1277
|
-
[1, 0]
|
|
1278
|
-
];
|
|
1279
|
-
var ListTrafficPoliciesResponse$ = [3, n0, _LTPRi,
|
|
1280
|
-
0,
|
|
1281
|
-
[_TP, _NT],
|
|
1282
|
-
[() => TrafficPolicyList, 0]
|
|
1283
|
-
];
|
|
1284
|
-
var MessageBody$ = [3, n0, _MB,
|
|
1285
|
-
0,
|
|
1286
|
-
[_Te, _Ht, _MM],
|
|
1287
|
-
[0, 0, 2]
|
|
1288
|
-
];
|
|
1289
|
-
var Metadata$ = [3, n0, _Me,
|
|
1290
|
-
0,
|
|
1291
|
-
[_Ti, _IPI, _TPI, _RSI, _SH, _SIA, _TCS, _TPl, _SM, _SIo, _SPen, _CS, _SAo],
|
|
1292
|
-
[4, 0, 0, 0, 0, [() => SenderIpAddress, 0], 0, 0, 0, 0, 0, 0, 0]
|
|
1293
|
-
];
|
|
1294
|
-
var NoAuthentication$ = [3, n0, _NA,
|
|
1295
|
-
0,
|
|
1296
|
-
[],
|
|
1297
|
-
[]
|
|
1298
|
-
];
|
|
1299
|
-
var PolicyStatement$ = [3, n0, _PSo,
|
|
1300
|
-
0,
|
|
1301
|
-
[_C, _Ac],
|
|
1302
|
-
[() => PolicyConditions, 0], 2
|
|
1303
|
-
];
|
|
1304
|
-
var PrivateNetworkConfiguration$ = [3, n0, _PNC,
|
|
1305
|
-
0,
|
|
1306
|
-
[_VEI],
|
|
1307
|
-
[0], 1
|
|
1308
|
-
];
|
|
1309
|
-
var PublicNetworkConfiguration$ = [3, n0, _PNCu,
|
|
1310
|
-
0,
|
|
1311
|
-
[_IT],
|
|
1312
|
-
[0], 1
|
|
1313
|
-
];
|
|
1314
|
-
var RegisterMemberToAddressListRequest$ = [3, n0, _RMTALR,
|
|
1315
|
-
0,
|
|
1316
|
-
[_ALI, _A],
|
|
1317
|
-
[0, [() => Address, 0]], 2
|
|
1318
|
-
];
|
|
1319
|
-
var RegisterMemberToAddressListResponse$ = [3, n0, _RMTALRe,
|
|
1320
|
-
0,
|
|
1321
|
-
[],
|
|
1322
|
-
[]
|
|
1323
|
-
];
|
|
1324
|
-
var Relay$ = [3, n0, _Rel,
|
|
1325
|
-
0,
|
|
1326
|
-
[_RI, _RN, _LMT],
|
|
1327
|
-
[0, 0, 4]
|
|
1328
|
-
];
|
|
1329
|
-
var RelayAction$ = [3, n0, _RAel,
|
|
1330
|
-
0,
|
|
1331
|
-
[_Rel, _AFP, _MF],
|
|
1332
|
-
[0, 0, 0], 1
|
|
1333
|
-
];
|
|
1334
|
-
var ReplaceRecipientAction$ = [3, n0, _RRA,
|
|
1335
|
-
0,
|
|
1336
|
-
[_RW],
|
|
1337
|
-
[[() => Recipients, 0]]
|
|
1338
|
-
];
|
|
1339
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1340
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1341
|
-
[_M],
|
|
1342
|
-
[0]
|
|
1343
|
-
];
|
|
1344
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1345
|
-
var Row$ = [3, n0, _Row,
|
|
1346
|
-
0,
|
|
1347
|
-
[_AMI, _RT, _D, _To, _F, _Cc, _Su, _MI, _HA, _RH, _IRT, _XM, _XOM, _XP, _IPI, _SH, _SIA, _En, _SAo],
|
|
1348
|
-
[0, 4, 0, 0, 0, 0, 0, 0, 2, 64 | 0, 0, 0, 0, 0, 0, 0, [() => SenderIpAddress, 0], () => Envelope$, 0]
|
|
1349
|
-
];
|
|
1350
|
-
var Rule$ = [3, n0, _Rul,
|
|
1351
|
-
0,
|
|
1352
|
-
[_Act, _N, _C, _U],
|
|
1353
|
-
[[() => RuleActions, 0], 0, () => RuleConditions, () => RuleConditions], 1
|
|
1354
|
-
];
|
|
1355
|
-
var RuleBooleanExpression$ = [3, n0, _RBE,
|
|
1356
|
-
0,
|
|
1357
|
-
[_E, _O],
|
|
1358
|
-
[() => RuleBooleanToEvaluate$, 0], 2
|
|
1359
|
-
];
|
|
1360
|
-
var RuleDmarcExpression$ = [3, n0, _RDE,
|
|
1361
|
-
0,
|
|
1362
|
-
[_O, _V],
|
|
1363
|
-
[0, 64 | 0], 2
|
|
1364
|
-
];
|
|
1365
|
-
var RuleIpExpression$ = [3, n0, _RIE,
|
|
1366
|
-
0,
|
|
1367
|
-
[_E, _O, _V],
|
|
1368
|
-
[() => RuleIpToEvaluate$, 0, 64 | 0], 3
|
|
1369
|
-
];
|
|
1370
|
-
var RuleIsInAddressList$ = [3, n0, _RIIAL,
|
|
1371
|
-
0,
|
|
1372
|
-
[_At, _ALd],
|
|
1373
|
-
[0, 64 | 0], 2
|
|
1374
|
-
];
|
|
1375
|
-
var RuleNumberExpression$ = [3, n0, _RNE,
|
|
1376
|
-
0,
|
|
1377
|
-
[_E, _O, _Va],
|
|
1378
|
-
[() => RuleNumberToEvaluate$, 0, 1], 3
|
|
1379
|
-
];
|
|
1380
|
-
var RuleSet$ = [3, n0, _RSu,
|
|
1381
|
-
0,
|
|
1382
|
-
[_RSI, _RSN, _LMD],
|
|
1383
|
-
[0, 0, 4]
|
|
1384
|
-
];
|
|
1385
|
-
var RuleStringExpression$ = [3, n0, _RSE,
|
|
1386
|
-
0,
|
|
1387
|
-
[_E, _O, _V],
|
|
1388
|
-
[() => RuleStringToEvaluate$, 0, 64 | 0], 3
|
|
1389
|
-
];
|
|
1390
|
-
var RuleVerdictExpression$ = [3, n0, _RVE,
|
|
1391
|
-
0,
|
|
1392
|
-
[_E, _O, _V],
|
|
1393
|
-
[() => RuleVerdictToEvaluate$, 0, 64 | 0], 3
|
|
1394
|
-
];
|
|
1395
|
-
var S3Action$ = [3, n0, _SAc,
|
|
1396
|
-
0,
|
|
1397
|
-
[_RA, _SB, _AFP, _SPr, _SSKKI],
|
|
1398
|
-
[0, 0, 0, 0, 0], 2
|
|
1399
|
-
];
|
|
1400
|
-
var S3ExportDestinationConfiguration$ = [3, n0, _SEDC,
|
|
1401
|
-
0,
|
|
1402
|
-
[_SL],
|
|
1403
|
-
[0]
|
|
1404
|
-
];
|
|
1405
|
-
var SavedAddress$ = [3, n0, _SAa,
|
|
1406
|
-
0,
|
|
1407
|
-
[_A, _CT],
|
|
1408
|
-
[[() => Address, 0], 4], 2
|
|
1409
|
-
];
|
|
1410
|
-
var SearchStatus$ = [3, n0, _SS,
|
|
1411
|
-
0,
|
|
1412
|
-
[_ST, _CTo, _S, _EM],
|
|
1413
|
-
[4, 4, 0, 0]
|
|
1414
|
-
];
|
|
1415
|
-
var SearchSummary$ = [3, n0, _SSe,
|
|
1416
|
-
0,
|
|
1417
|
-
[_SI, _St],
|
|
1418
|
-
[0, () => SearchStatus$]
|
|
1419
|
-
];
|
|
1420
|
-
var SendAction$ = [3, n0, _SAe,
|
|
1421
|
-
0,
|
|
1422
|
-
[_RA, _AFP],
|
|
1423
|
-
[0, 0], 1
|
|
1424
|
-
];
|
|
1425
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1426
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1427
|
-
[_M],
|
|
1428
|
-
[0]
|
|
1429
|
-
];
|
|
1430
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1431
|
-
var SnsAction$ = [3, n0, _SAn,
|
|
1432
|
-
0,
|
|
1433
|
-
[_TAo, _RA, _AFP, _Enc, _PT],
|
|
1434
|
-
[0, 0, 0, 0, 0], 2
|
|
1435
|
-
];
|
|
1436
|
-
var StartAddressListImportJobRequest$ = [3, n0, _SALIJR,
|
|
1437
|
-
0,
|
|
1438
|
-
[_JI],
|
|
1439
|
-
[0], 1
|
|
1440
|
-
];
|
|
1441
|
-
var StartAddressListImportJobResponse$ = [3, n0, _SALIJRt,
|
|
1442
|
-
0,
|
|
1443
|
-
[],
|
|
1444
|
-
[]
|
|
1445
|
-
];
|
|
1446
|
-
var StartArchiveExportRequest$ = [3, n0, _SAER,
|
|
1447
|
-
0,
|
|
1448
|
-
[_AIr, _FT, _TT, _EDC, _Fi, _MR, _IM],
|
|
1449
|
-
[0, 4, 4, () => ExportDestinationConfiguration$, () => ArchiveFilters$, 1, 2], 4
|
|
1450
|
-
];
|
|
1451
|
-
var StartArchiveExportResponse$ = [3, n0, _SAERt,
|
|
1452
|
-
0,
|
|
1453
|
-
[_EI],
|
|
1454
|
-
[0]
|
|
1455
|
-
];
|
|
1456
|
-
var StartArchiveSearchRequest$ = [3, n0, _SASR,
|
|
1457
|
-
0,
|
|
1458
|
-
[_AIr, _FT, _TT, _MR, _Fi],
|
|
1459
|
-
[0, 4, 4, 1, () => ArchiveFilters$], 4
|
|
1460
|
-
];
|
|
1461
|
-
var StartArchiveSearchResponse$ = [3, n0, _SASRt,
|
|
1462
|
-
0,
|
|
1463
|
-
[_SI],
|
|
1464
|
-
[0]
|
|
1465
|
-
];
|
|
1466
|
-
var StopAddressListImportJobRequest$ = [3, n0, _SALIJRto,
|
|
1467
|
-
0,
|
|
1468
|
-
[_JI],
|
|
1469
|
-
[0], 1
|
|
1470
|
-
];
|
|
1471
|
-
var StopAddressListImportJobResponse$ = [3, n0, _SALIJRtop,
|
|
1472
|
-
0,
|
|
1473
|
-
[],
|
|
1474
|
-
[]
|
|
1475
|
-
];
|
|
1476
|
-
var StopArchiveExportRequest$ = [3, n0, _SAERto,
|
|
1477
|
-
0,
|
|
1478
|
-
[_EI],
|
|
1479
|
-
[0], 1
|
|
1480
|
-
];
|
|
1481
|
-
var StopArchiveExportResponse$ = [3, n0, _SAERtop,
|
|
1482
|
-
0,
|
|
1483
|
-
[],
|
|
1484
|
-
[]
|
|
1485
|
-
];
|
|
1486
|
-
var StopArchiveSearchRequest$ = [3, n0, _SASRto,
|
|
1487
|
-
0,
|
|
1488
|
-
[_SI],
|
|
1489
|
-
[0], 1
|
|
1490
|
-
];
|
|
1491
|
-
var StopArchiveSearchResponse$ = [3, n0, _SASRtop,
|
|
1492
|
-
0,
|
|
1493
|
-
[],
|
|
1494
|
-
[]
|
|
1495
|
-
];
|
|
1496
|
-
var Tag$ = [3, n0, _Ta,
|
|
1497
|
-
0,
|
|
1498
|
-
[_K, _Va],
|
|
1499
|
-
[0, 0], 2
|
|
1500
|
-
];
|
|
1501
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1502
|
-
0,
|
|
1503
|
-
[_RAes, _T],
|
|
1504
|
-
[0, () => TagList], 2
|
|
1505
|
-
];
|
|
1506
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1507
|
-
0,
|
|
1508
|
-
[],
|
|
1509
|
-
[]
|
|
1510
|
-
];
|
|
1511
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1512
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1513
|
-
[_M],
|
|
1514
|
-
[0]
|
|
1515
|
-
];
|
|
1516
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1517
|
-
var TrafficPolicy$ = [3, n0, _TPr,
|
|
1518
|
-
0,
|
|
1519
|
-
[_TPN, _TPI, _DA],
|
|
1520
|
-
[0, 0, 0], 3
|
|
1521
|
-
];
|
|
1522
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1523
|
-
0,
|
|
1524
|
-
[_RAes, _TK],
|
|
1525
|
-
[0, 64 | 0], 2
|
|
1526
|
-
];
|
|
1527
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1528
|
-
0,
|
|
1529
|
-
[],
|
|
1530
|
-
[]
|
|
1531
|
-
];
|
|
1532
|
-
var UpdateArchiveRequest$ = [3, n0, _UAR,
|
|
1533
|
-
0,
|
|
1534
|
-
[_AIr, _ANr, _R],
|
|
1535
|
-
[0, 0, () => ArchiveRetention$], 1
|
|
1536
|
-
];
|
|
1537
|
-
var UpdateArchiveResponse$ = [3, n0, _UARp,
|
|
1538
|
-
0,
|
|
1539
|
-
[],
|
|
1540
|
-
[]
|
|
1541
|
-
];
|
|
1542
|
-
var UpdateIngressPointRequest$ = [3, n0, _UIPR,
|
|
1543
|
-
0,
|
|
1544
|
-
[_IPI, _IPN, _STU, _RSI, _TPI, _IPC],
|
|
1545
|
-
[0, 0, 0, 0, 0, [() => IngressPointConfiguration$, 0]], 1
|
|
1546
|
-
];
|
|
1547
|
-
var UpdateIngressPointResponse$ = [3, n0, _UIPRp,
|
|
1548
|
-
0,
|
|
1549
|
-
[],
|
|
1550
|
-
[]
|
|
1551
|
-
];
|
|
1552
|
-
var UpdateRelayRequest$ = [3, n0, _URRp,
|
|
1553
|
-
0,
|
|
1554
|
-
[_RI, _RN, _SN, _SPe, _Au],
|
|
1555
|
-
[0, 0, 0, 1, () => RelayAuthentication$], 1
|
|
1556
|
-
];
|
|
1557
|
-
var UpdateRelayResponse$ = [3, n0, _URRpd,
|
|
1558
|
-
0,
|
|
1559
|
-
[],
|
|
1560
|
-
[]
|
|
1561
|
-
];
|
|
1562
|
-
var UpdateRuleSetRequest$ = [3, n0, _URSR,
|
|
1563
|
-
0,
|
|
1564
|
-
[_RSI, _RSN, _Ru],
|
|
1565
|
-
[0, 0, [() => Rules, 0]], 1
|
|
1566
|
-
];
|
|
1567
|
-
var UpdateRuleSetResponse$ = [3, n0, _URSRp,
|
|
1568
|
-
0,
|
|
1569
|
-
[],
|
|
1570
|
-
[]
|
|
1571
|
-
];
|
|
1572
|
-
var UpdateTrafficPolicyRequest$ = [3, n0, _UTPR,
|
|
1573
|
-
0,
|
|
1574
|
-
[_TPI, _TPN, _PS, _DA, _MMSB],
|
|
1575
|
-
[0, 0, () => PolicyStatementList, 0, 1], 1
|
|
1576
|
-
];
|
|
1577
|
-
var UpdateTrafficPolicyResponse$ = [3, n0, _UTPRp,
|
|
1578
|
-
0,
|
|
1579
|
-
[],
|
|
1580
|
-
[]
|
|
1581
|
-
];
|
|
1582
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1583
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1584
|
-
[_M],
|
|
1585
|
-
[0]
|
|
1586
|
-
];
|
|
1587
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1588
|
-
var MailManagerServiceException$ = [-3, _s, "MailManagerServiceException", 0, [], []];
|
|
1589
|
-
schema.TypeRegistry.for(_s).registerError(MailManagerServiceException$, MailManagerServiceException);
|
|
1590
|
-
var AddonInstances = [1, n0, _AId,
|
|
1591
|
-
0, () => AddonInstance$
|
|
1592
|
-
];
|
|
1593
|
-
var AddonSubscriptions = [1, n0, _ASd,
|
|
1594
|
-
0, () => AddonSubscription$
|
|
1595
|
-
];
|
|
1596
|
-
var AddressLists = [1, n0, _ALd,
|
|
1597
|
-
0, () => AddressList$
|
|
1598
|
-
];
|
|
1599
|
-
var ArchiveFilterConditions = [1, n0, _AFC,
|
|
1600
|
-
0, () => ArchiveFilterCondition$
|
|
1601
|
-
];
|
|
1602
|
-
var ArchivesList = [1, n0, _ALr,
|
|
1603
|
-
0, () => Archive$
|
|
1604
|
-
];
|
|
1605
|
-
var ExportSummaryList = [1, n0, _ESL,
|
|
1606
|
-
0, () => ExportSummary$
|
|
1607
|
-
];
|
|
1608
|
-
var ImportJobs = [1, n0, _IJm,
|
|
1609
|
-
0, [() => ImportJob$,
|
|
1610
|
-
0]
|
|
1611
|
-
];
|
|
1612
|
-
var IngressPointsList = [1, n0, _IPL,
|
|
1613
|
-
0, () => IngressPoint$
|
|
1614
|
-
];
|
|
1615
|
-
var PolicyConditions = [1, n0, _PC,
|
|
1616
|
-
0, () => PolicyCondition$
|
|
1617
|
-
];
|
|
1618
|
-
var PolicyStatementList = [1, n0, _PSL,
|
|
1619
|
-
0, () => PolicyStatement$
|
|
1620
|
-
];
|
|
1621
|
-
var Recipients = [1, n0, _Rec,
|
|
1622
|
-
0, [() => EmailAddress,
|
|
1623
|
-
0]
|
|
1624
|
-
];
|
|
1625
|
-
var Relays = [1, n0, _Re,
|
|
1626
|
-
0, () => Relay$
|
|
1627
|
-
];
|
|
1628
|
-
var RowsList = [1, n0, _RL,
|
|
1629
|
-
0, [() => Row$,
|
|
1630
|
-
0]
|
|
1631
|
-
];
|
|
1632
|
-
var RuleActions = [1, n0, _RAu,
|
|
1633
|
-
0, [() => RuleAction$,
|
|
1634
|
-
0]
|
|
1635
|
-
];
|
|
1636
|
-
var RuleConditions = [1, n0, _RC,
|
|
1637
|
-
0, () => RuleCondition$
|
|
1638
|
-
];
|
|
1639
|
-
var Rules = [1, n0, _Ru,
|
|
1640
|
-
0, [() => Rule$,
|
|
1641
|
-
0]
|
|
1642
|
-
];
|
|
1643
|
-
var RuleSets = [1, n0, _RS,
|
|
1644
|
-
0, () => RuleSet$
|
|
1645
|
-
];
|
|
1646
|
-
var SavedAddresses = [1, n0, _SAav,
|
|
1647
|
-
0, [() => SavedAddress$,
|
|
1648
|
-
0]
|
|
1649
|
-
];
|
|
1650
|
-
var SearchSummaryList = [1, n0, _SSL,
|
|
1651
|
-
0, () => SearchSummary$
|
|
1652
|
-
];
|
|
1653
|
-
var TagList = [1, n0, _TL,
|
|
1654
|
-
0, () => Tag$
|
|
1655
|
-
];
|
|
1656
|
-
var TrafficPolicyList = [1, n0, _TPL,
|
|
1657
|
-
0, () => TrafficPolicy$
|
|
1658
|
-
];
|
|
1659
|
-
var ArchiveBooleanToEvaluate$ = [4, n0, _ABTE,
|
|
1660
|
-
0,
|
|
1661
|
-
[_At],
|
|
1662
|
-
[0]
|
|
1663
|
-
];
|
|
1664
|
-
var ArchiveFilterCondition$ = [4, n0, _AFCr,
|
|
1665
|
-
0,
|
|
1666
|
-
[_SE, _BE],
|
|
1667
|
-
[() => ArchiveStringExpression$, () => ArchiveBooleanExpression$]
|
|
1668
|
-
];
|
|
1669
|
-
var ArchiveRetention$ = [4, n0, _ARr,
|
|
1670
|
-
0,
|
|
1671
|
-
[_RP],
|
|
1672
|
-
[0]
|
|
1673
|
-
];
|
|
1674
|
-
var ArchiveStringToEvaluate$ = [4, n0, _ASTE,
|
|
1675
|
-
0,
|
|
1676
|
-
[_At],
|
|
1677
|
-
[0]
|
|
1678
|
-
];
|
|
1679
|
-
var ExportDestinationConfiguration$ = [4, n0, _EDC,
|
|
1680
|
-
0,
|
|
1681
|
-
[_S_],
|
|
1682
|
-
[() => S3ExportDestinationConfiguration$]
|
|
1683
|
-
];
|
|
1684
|
-
var IngressBooleanToEvaluate$ = [4, n0, _IBTE,
|
|
1685
|
-
0,
|
|
1686
|
-
[_An, _IIAL],
|
|
1687
|
-
[() => IngressAnalysis$, () => IngressIsInAddressList$]
|
|
1688
|
-
];
|
|
1689
|
-
var IngressIpToEvaluate$ = [4, n0, _IITE,
|
|
1690
|
-
0,
|
|
1691
|
-
[_At],
|
|
1692
|
-
[0]
|
|
1693
|
-
];
|
|
1694
|
-
var IngressIpv6ToEvaluate$ = [4, n0, _IITEn,
|
|
1695
|
-
0,
|
|
1696
|
-
[_At],
|
|
1697
|
-
[0]
|
|
1698
|
-
];
|
|
1699
|
-
var IngressPointConfiguration$ = [4, n0, _IPC,
|
|
1700
|
-
0,
|
|
1701
|
-
[_SP, _SA],
|
|
1702
|
-
[[() => SmtpPassword, 0], 0]
|
|
1703
|
-
];
|
|
1704
|
-
var IngressStringToEvaluate$ = [4, n0, _ISTE,
|
|
1705
|
-
0,
|
|
1706
|
-
[_At, _An],
|
|
1707
|
-
[0, () => IngressAnalysis$]
|
|
1708
|
-
];
|
|
1709
|
-
var IngressTlsProtocolToEvaluate$ = [4, n0, _ITPTE,
|
|
1710
|
-
0,
|
|
1711
|
-
[_At],
|
|
1712
|
-
[0]
|
|
1713
|
-
];
|
|
1714
|
-
var NetworkConfiguration$ = [4, n0, _NC,
|
|
1715
|
-
0,
|
|
1716
|
-
[_PNCu, _PNC],
|
|
1717
|
-
[() => PublicNetworkConfiguration$, () => PrivateNetworkConfiguration$]
|
|
1718
|
-
];
|
|
1719
|
-
var PolicyCondition$ = [4, n0, _PCo,
|
|
1720
|
-
0,
|
|
1721
|
-
[_SE, _IE, _IEp, _TEl, _BE],
|
|
1722
|
-
[() => IngressStringExpression$, () => IngressIpv4Expression$, () => IngressIpv6Expression$, () => IngressTlsProtocolExpression$, () => IngressBooleanExpression$]
|
|
1723
|
-
];
|
|
1724
|
-
var RelayAuthentication$ = [4, n0, _RAela,
|
|
1725
|
-
0,
|
|
1726
|
-
[_SA, _NA],
|
|
1727
|
-
[0, () => NoAuthentication$]
|
|
1728
|
-
];
|
|
1729
|
-
var RuleAction$ = [4, n0, _RAul,
|
|
1730
|
-
0,
|
|
1731
|
-
[_Dr, _Rel, _Ar, _WTS, _Sen, _AH, _RR, _DTM, _DTQB, _PTS],
|
|
1732
|
-
[() => DropAction$, () => RelayAction$, () => ArchiveAction$, () => S3Action$, () => SendAction$, () => AddHeaderAction$, [() => ReplaceRecipientAction$, 0], () => DeliverToMailboxAction$, () => DeliverToQBusinessAction$, () => SnsAction$]
|
|
1733
|
-
];
|
|
1734
|
-
var RuleBooleanToEvaluate$ = [4, n0, _RBTE,
|
|
1735
|
-
0,
|
|
1736
|
-
[_At, _An, _IIAL],
|
|
1737
|
-
[0, () => Analysis$, () => RuleIsInAddressList$]
|
|
1738
|
-
];
|
|
1739
|
-
var RuleCondition$ = [4, n0, _RCu,
|
|
1740
|
-
0,
|
|
1741
|
-
[_BE, _SE, _NE, _IE, _VEe, _DE],
|
|
1742
|
-
[() => RuleBooleanExpression$, () => RuleStringExpression$, () => RuleNumberExpression$, () => RuleIpExpression$, () => RuleVerdictExpression$, () => RuleDmarcExpression$]
|
|
1743
|
-
];
|
|
1744
|
-
var RuleIpToEvaluate$ = [4, n0, _RITE,
|
|
1745
|
-
0,
|
|
1746
|
-
[_At],
|
|
1747
|
-
[0]
|
|
1748
|
-
];
|
|
1749
|
-
var RuleNumberToEvaluate$ = [4, n0, _RNTE,
|
|
1750
|
-
0,
|
|
1751
|
-
[_At],
|
|
1752
|
-
[0]
|
|
1753
|
-
];
|
|
1754
|
-
var RuleStringToEvaluate$ = [4, n0, _RSTE,
|
|
1755
|
-
0,
|
|
1756
|
-
[_At, _MHA, _An],
|
|
1757
|
-
[0, 0, () => Analysis$]
|
|
1758
|
-
];
|
|
1759
|
-
var RuleVerdictToEvaluate$ = [4, n0, _RVTE,
|
|
1760
|
-
0,
|
|
1761
|
-
[_At, _An],
|
|
1762
|
-
[0, () => Analysis$]
|
|
1763
|
-
];
|
|
1764
|
-
var CreateAddonInstance$ = [9, n0, _CAI,
|
|
1765
|
-
2, () => CreateAddonInstanceRequest$, () => CreateAddonInstanceResponse$
|
|
1766
|
-
];
|
|
1767
|
-
var CreateAddonSubscription$ = [9, n0, _CAS,
|
|
1768
|
-
2, () => CreateAddonSubscriptionRequest$, () => CreateAddonSubscriptionResponse$
|
|
1769
|
-
];
|
|
1770
|
-
var CreateAddressList$ = [9, n0, _CAL,
|
|
1771
|
-
2, () => CreateAddressListRequest$, () => CreateAddressListResponse$
|
|
1772
|
-
];
|
|
1773
|
-
var CreateAddressListImportJob$ = [9, n0, _CALIJ,
|
|
1774
|
-
2, () => CreateAddressListImportJobRequest$, () => CreateAddressListImportJobResponse$
|
|
1775
|
-
];
|
|
1776
|
-
var CreateArchive$ = [9, n0, _CA,
|
|
1777
|
-
2, () => CreateArchiveRequest$, () => CreateArchiveResponse$
|
|
1778
|
-
];
|
|
1779
|
-
var CreateIngressPoint$ = [9, n0, _CIP,
|
|
1780
|
-
2, () => CreateIngressPointRequest$, () => CreateIngressPointResponse$
|
|
1781
|
-
];
|
|
1782
|
-
var CreateRelay$ = [9, n0, _CR,
|
|
1783
|
-
2, () => CreateRelayRequest$, () => CreateRelayResponse$
|
|
1784
|
-
];
|
|
1785
|
-
var CreateRuleSet$ = [9, n0, _CRS,
|
|
1786
|
-
2, () => CreateRuleSetRequest$, () => CreateRuleSetResponse$
|
|
1787
|
-
];
|
|
1788
|
-
var CreateTrafficPolicy$ = [9, n0, _CTP,
|
|
1789
|
-
2, () => CreateTrafficPolicyRequest$, () => CreateTrafficPolicyResponse$
|
|
1790
|
-
];
|
|
1791
|
-
var DeleteAddonInstance$ = [9, n0, _DAI,
|
|
1792
|
-
2, () => DeleteAddonInstanceRequest$, () => DeleteAddonInstanceResponse$
|
|
1793
|
-
];
|
|
1794
|
-
var DeleteAddonSubscription$ = [9, n0, _DAS,
|
|
1795
|
-
2, () => DeleteAddonSubscriptionRequest$, () => DeleteAddonSubscriptionResponse$
|
|
1796
|
-
];
|
|
1797
|
-
var DeleteAddressList$ = [9, n0, _DAL,
|
|
1798
|
-
2, () => DeleteAddressListRequest$, () => DeleteAddressListResponse$
|
|
1799
|
-
];
|
|
1800
|
-
var DeleteArchive$ = [9, n0, _DAe,
|
|
1801
|
-
2, () => DeleteArchiveRequest$, () => DeleteArchiveResponse$
|
|
1802
|
-
];
|
|
1803
|
-
var DeleteIngressPoint$ = [9, n0, _DIP,
|
|
1804
|
-
2, () => DeleteIngressPointRequest$, () => DeleteIngressPointResponse$
|
|
1805
|
-
];
|
|
1806
|
-
var DeleteRelay$ = [9, n0, _DR,
|
|
1807
|
-
2, () => DeleteRelayRequest$, () => DeleteRelayResponse$
|
|
1808
|
-
];
|
|
1809
|
-
var DeleteRuleSet$ = [9, n0, _DRS,
|
|
1810
|
-
2, () => DeleteRuleSetRequest$, () => DeleteRuleSetResponse$
|
|
1811
|
-
];
|
|
1812
|
-
var DeleteTrafficPolicy$ = [9, n0, _DTP,
|
|
1813
|
-
2, () => DeleteTrafficPolicyRequest$, () => DeleteTrafficPolicyResponse$
|
|
1814
|
-
];
|
|
1815
|
-
var DeregisterMemberFromAddressList$ = [9, n0, _DMFAL,
|
|
1816
|
-
2, () => DeregisterMemberFromAddressListRequest$, () => DeregisterMemberFromAddressListResponse$
|
|
1817
|
-
];
|
|
1818
|
-
var GetAddonInstance$ = [9, n0, _GAI,
|
|
1819
|
-
0, () => GetAddonInstanceRequest$, () => GetAddonInstanceResponse$
|
|
1820
|
-
];
|
|
1821
|
-
var GetAddonSubscription$ = [9, n0, _GAS,
|
|
1822
|
-
0, () => GetAddonSubscriptionRequest$, () => GetAddonSubscriptionResponse$
|
|
1823
|
-
];
|
|
1824
|
-
var GetAddressList$ = [9, n0, _GAL,
|
|
1825
|
-
0, () => GetAddressListRequest$, () => GetAddressListResponse$
|
|
1826
|
-
];
|
|
1827
|
-
var GetAddressListImportJob$ = [9, n0, _GALIJ,
|
|
1828
|
-
0, () => GetAddressListImportJobRequest$, () => GetAddressListImportJobResponse$
|
|
1829
|
-
];
|
|
1830
|
-
var GetArchive$ = [9, n0, _GA,
|
|
1831
|
-
0, () => GetArchiveRequest$, () => GetArchiveResponse$
|
|
1832
|
-
];
|
|
1833
|
-
var GetArchiveExport$ = [9, n0, _GAE,
|
|
1834
|
-
0, () => GetArchiveExportRequest$, () => GetArchiveExportResponse$
|
|
1835
|
-
];
|
|
1836
|
-
var GetArchiveMessage$ = [9, n0, _GAM,
|
|
1837
|
-
0, () => GetArchiveMessageRequest$, () => GetArchiveMessageResponse$
|
|
1838
|
-
];
|
|
1839
|
-
var GetArchiveMessageContent$ = [9, n0, _GAMC,
|
|
1840
|
-
0, () => GetArchiveMessageContentRequest$, () => GetArchiveMessageContentResponse$
|
|
1841
|
-
];
|
|
1842
|
-
var GetArchiveSearch$ = [9, n0, _GASe,
|
|
1843
|
-
0, () => GetArchiveSearchRequest$, () => GetArchiveSearchResponse$
|
|
1844
|
-
];
|
|
1845
|
-
var GetArchiveSearchResults$ = [9, n0, _GASRetrc,
|
|
1846
|
-
0, () => GetArchiveSearchResultsRequest$, () => GetArchiveSearchResultsResponse$
|
|
1847
|
-
];
|
|
1848
|
-
var GetIngressPoint$ = [9, n0, _GIP,
|
|
1849
|
-
0, () => GetIngressPointRequest$, () => GetIngressPointResponse$
|
|
1850
|
-
];
|
|
1851
|
-
var GetMemberOfAddressList$ = [9, n0, _GMOAL,
|
|
1852
|
-
0, () => GetMemberOfAddressListRequest$, () => GetMemberOfAddressListResponse$
|
|
1853
|
-
];
|
|
1854
|
-
var GetRelay$ = [9, n0, _GR,
|
|
1855
|
-
0, () => GetRelayRequest$, () => GetRelayResponse$
|
|
1856
|
-
];
|
|
1857
|
-
var GetRuleSet$ = [9, n0, _GRS,
|
|
1858
|
-
0, () => GetRuleSetRequest$, () => GetRuleSetResponse$
|
|
1859
|
-
];
|
|
1860
|
-
var GetTrafficPolicy$ = [9, n0, _GTP,
|
|
1861
|
-
0, () => GetTrafficPolicyRequest$, () => GetTrafficPolicyResponse$
|
|
1862
|
-
];
|
|
1863
|
-
var ListAddonInstances$ = [9, n0, _LAI,
|
|
1864
|
-
0, () => ListAddonInstancesRequest$, () => ListAddonInstancesResponse$
|
|
1865
|
-
];
|
|
1866
|
-
var ListAddonSubscriptions$ = [9, n0, _LAS,
|
|
1867
|
-
0, () => ListAddonSubscriptionsRequest$, () => ListAddonSubscriptionsResponse$
|
|
1868
|
-
];
|
|
1869
|
-
var ListAddressListImportJobs$ = [9, n0, _LALIJ,
|
|
1870
|
-
0, () => ListAddressListImportJobsRequest$, () => ListAddressListImportJobsResponse$
|
|
1871
|
-
];
|
|
1872
|
-
var ListAddressLists$ = [9, n0, _LAL,
|
|
1873
|
-
0, () => ListAddressListsRequest$, () => ListAddressListsResponse$
|
|
1874
|
-
];
|
|
1875
|
-
var ListArchiveExports$ = [9, n0, _LAE,
|
|
1876
|
-
0, () => ListArchiveExportsRequest$, () => ListArchiveExportsResponse$
|
|
1877
|
-
];
|
|
1878
|
-
var ListArchives$ = [9, n0, _LA,
|
|
1879
|
-
0, () => ListArchivesRequest$, () => ListArchivesResponse$
|
|
1880
|
-
];
|
|
1881
|
-
var ListArchiveSearches$ = [9, n0, _LASi,
|
|
1882
|
-
0, () => ListArchiveSearchesRequest$, () => ListArchiveSearchesResponse$
|
|
1883
|
-
];
|
|
1884
|
-
var ListIngressPoints$ = [9, n0, _LIP,
|
|
1885
|
-
0, () => ListIngressPointsRequest$, () => ListIngressPointsResponse$
|
|
1886
|
-
];
|
|
1887
|
-
var ListMembersOfAddressList$ = [9, n0, _LMOAL,
|
|
1888
|
-
0, () => ListMembersOfAddressListRequest$, () => ListMembersOfAddressListResponse$
|
|
1889
|
-
];
|
|
1890
|
-
var ListRelays$ = [9, n0, _LR,
|
|
1891
|
-
0, () => ListRelaysRequest$, () => ListRelaysResponse$
|
|
1892
|
-
];
|
|
1893
|
-
var ListRuleSets$ = [9, n0, _LRS,
|
|
1894
|
-
0, () => ListRuleSetsRequest$, () => ListRuleSetsResponse$
|
|
1895
|
-
];
|
|
1896
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1897
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1898
|
-
];
|
|
1899
|
-
var ListTrafficPolicies$ = [9, n0, _LTP,
|
|
1900
|
-
0, () => ListTrafficPoliciesRequest$, () => ListTrafficPoliciesResponse$
|
|
1901
|
-
];
|
|
1902
|
-
var RegisterMemberToAddressList$ = [9, n0, _RMTAL,
|
|
1903
|
-
2, () => RegisterMemberToAddressListRequest$, () => RegisterMemberToAddressListResponse$
|
|
1904
|
-
];
|
|
1905
|
-
var StartAddressListImportJob$ = [9, n0, _SALIJ,
|
|
1906
|
-
2, () => StartAddressListImportJobRequest$, () => StartAddressListImportJobResponse$
|
|
1907
|
-
];
|
|
1908
|
-
var StartArchiveExport$ = [9, n0, _SAE,
|
|
1909
|
-
0, () => StartArchiveExportRequest$, () => StartArchiveExportResponse$
|
|
1910
|
-
];
|
|
1911
|
-
var StartArchiveSearch$ = [9, n0, _SAS,
|
|
1912
|
-
0, () => StartArchiveSearchRequest$, () => StartArchiveSearchResponse$
|
|
1913
|
-
];
|
|
1914
|
-
var StopAddressListImportJob$ = [9, n0, _SALIJt,
|
|
1915
|
-
2, () => StopAddressListImportJobRequest$, () => StopAddressListImportJobResponse$
|
|
1916
|
-
];
|
|
1917
|
-
var StopArchiveExport$ = [9, n0, _SAEt,
|
|
1918
|
-
0, () => StopArchiveExportRequest$, () => StopArchiveExportResponse$
|
|
1919
|
-
];
|
|
1920
|
-
var StopArchiveSearch$ = [9, n0, _SASt,
|
|
1921
|
-
2, () => StopArchiveSearchRequest$, () => StopArchiveSearchResponse$
|
|
1922
|
-
];
|
|
1923
|
-
var TagResource$ = [9, n0, _TR,
|
|
1924
|
-
2, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1925
|
-
];
|
|
1926
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1927
|
-
2, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1928
|
-
];
|
|
1929
|
-
var UpdateArchive$ = [9, n0, _UA,
|
|
1930
|
-
2, () => UpdateArchiveRequest$, () => UpdateArchiveResponse$
|
|
1931
|
-
];
|
|
1932
|
-
var UpdateIngressPoint$ = [9, n0, _UIP,
|
|
1933
|
-
2, () => UpdateIngressPointRequest$, () => UpdateIngressPointResponse$
|
|
1934
|
-
];
|
|
1935
|
-
var UpdateRelay$ = [9, n0, _URp,
|
|
1936
|
-
2, () => UpdateRelayRequest$, () => UpdateRelayResponse$
|
|
1937
|
-
];
|
|
1938
|
-
var UpdateRuleSet$ = [9, n0, _URS,
|
|
1939
|
-
2, () => UpdateRuleSetRequest$, () => UpdateRuleSetResponse$
|
|
1940
|
-
];
|
|
1941
|
-
var UpdateTrafficPolicy$ = [9, n0, _UTP,
|
|
1942
|
-
2, () => UpdateTrafficPolicyRequest$, () => UpdateTrafficPolicyResponse$
|
|
1943
|
-
];
|
|
1944
|
-
|
|
1945
116
|
class CreateAddonInstanceCommand extends smithyClient.Command
|
|
1946
117
|
.classBuilder()
|
|
1947
118
|
.ep(commonParams)
|
|
@@ -1950,7 +121,7 @@ class CreateAddonInstanceCommand extends smithyClient.Command
|
|
|
1950
121
|
})
|
|
1951
122
|
.s("MailManagerSvc", "CreateAddonInstance", {})
|
|
1952
123
|
.n("MailManagerClient", "CreateAddonInstanceCommand")
|
|
1953
|
-
.sc(CreateAddonInstance$)
|
|
124
|
+
.sc(schemas_0.CreateAddonInstance$)
|
|
1954
125
|
.build() {
|
|
1955
126
|
}
|
|
1956
127
|
|
|
@@ -1962,7 +133,7 @@ class CreateAddonSubscriptionCommand extends smithyClient.Command
|
|
|
1962
133
|
})
|
|
1963
134
|
.s("MailManagerSvc", "CreateAddonSubscription", {})
|
|
1964
135
|
.n("MailManagerClient", "CreateAddonSubscriptionCommand")
|
|
1965
|
-
.sc(CreateAddonSubscription$)
|
|
136
|
+
.sc(schemas_0.CreateAddonSubscription$)
|
|
1966
137
|
.build() {
|
|
1967
138
|
}
|
|
1968
139
|
|
|
@@ -1974,7 +145,7 @@ class CreateAddressListCommand extends smithyClient.Command
|
|
|
1974
145
|
})
|
|
1975
146
|
.s("MailManagerSvc", "CreateAddressList", {})
|
|
1976
147
|
.n("MailManagerClient", "CreateAddressListCommand")
|
|
1977
|
-
.sc(CreateAddressList$)
|
|
148
|
+
.sc(schemas_0.CreateAddressList$)
|
|
1978
149
|
.build() {
|
|
1979
150
|
}
|
|
1980
151
|
|
|
@@ -1986,7 +157,7 @@ class CreateAddressListImportJobCommand extends smithyClient.Command
|
|
|
1986
157
|
})
|
|
1987
158
|
.s("MailManagerSvc", "CreateAddressListImportJob", {})
|
|
1988
159
|
.n("MailManagerClient", "CreateAddressListImportJobCommand")
|
|
1989
|
-
.sc(CreateAddressListImportJob$)
|
|
160
|
+
.sc(schemas_0.CreateAddressListImportJob$)
|
|
1990
161
|
.build() {
|
|
1991
162
|
}
|
|
1992
163
|
|
|
@@ -1998,7 +169,7 @@ class CreateArchiveCommand extends smithyClient.Command
|
|
|
1998
169
|
})
|
|
1999
170
|
.s("MailManagerSvc", "CreateArchive", {})
|
|
2000
171
|
.n("MailManagerClient", "CreateArchiveCommand")
|
|
2001
|
-
.sc(CreateArchive$)
|
|
172
|
+
.sc(schemas_0.CreateArchive$)
|
|
2002
173
|
.build() {
|
|
2003
174
|
}
|
|
2004
175
|
|
|
@@ -2010,7 +181,7 @@ class CreateIngressPointCommand extends smithyClient.Command
|
|
|
2010
181
|
})
|
|
2011
182
|
.s("MailManagerSvc", "CreateIngressPoint", {})
|
|
2012
183
|
.n("MailManagerClient", "CreateIngressPointCommand")
|
|
2013
|
-
.sc(CreateIngressPoint$)
|
|
184
|
+
.sc(schemas_0.CreateIngressPoint$)
|
|
2014
185
|
.build() {
|
|
2015
186
|
}
|
|
2016
187
|
|
|
@@ -2022,7 +193,7 @@ class CreateRelayCommand extends smithyClient.Command
|
|
|
2022
193
|
})
|
|
2023
194
|
.s("MailManagerSvc", "CreateRelay", {})
|
|
2024
195
|
.n("MailManagerClient", "CreateRelayCommand")
|
|
2025
|
-
.sc(CreateRelay$)
|
|
196
|
+
.sc(schemas_0.CreateRelay$)
|
|
2026
197
|
.build() {
|
|
2027
198
|
}
|
|
2028
199
|
|
|
@@ -2034,7 +205,7 @@ class CreateRuleSetCommand extends smithyClient.Command
|
|
|
2034
205
|
})
|
|
2035
206
|
.s("MailManagerSvc", "CreateRuleSet", {})
|
|
2036
207
|
.n("MailManagerClient", "CreateRuleSetCommand")
|
|
2037
|
-
.sc(CreateRuleSet$)
|
|
208
|
+
.sc(schemas_0.CreateRuleSet$)
|
|
2038
209
|
.build() {
|
|
2039
210
|
}
|
|
2040
211
|
|
|
@@ -2046,7 +217,7 @@ class CreateTrafficPolicyCommand extends smithyClient.Command
|
|
|
2046
217
|
})
|
|
2047
218
|
.s("MailManagerSvc", "CreateTrafficPolicy", {})
|
|
2048
219
|
.n("MailManagerClient", "CreateTrafficPolicyCommand")
|
|
2049
|
-
.sc(CreateTrafficPolicy$)
|
|
220
|
+
.sc(schemas_0.CreateTrafficPolicy$)
|
|
2050
221
|
.build() {
|
|
2051
222
|
}
|
|
2052
223
|
|
|
@@ -2058,7 +229,7 @@ class DeleteAddonInstanceCommand extends smithyClient.Command
|
|
|
2058
229
|
})
|
|
2059
230
|
.s("MailManagerSvc", "DeleteAddonInstance", {})
|
|
2060
231
|
.n("MailManagerClient", "DeleteAddonInstanceCommand")
|
|
2061
|
-
.sc(DeleteAddonInstance$)
|
|
232
|
+
.sc(schemas_0.DeleteAddonInstance$)
|
|
2062
233
|
.build() {
|
|
2063
234
|
}
|
|
2064
235
|
|
|
@@ -2070,7 +241,7 @@ class DeleteAddonSubscriptionCommand extends smithyClient.Command
|
|
|
2070
241
|
})
|
|
2071
242
|
.s("MailManagerSvc", "DeleteAddonSubscription", {})
|
|
2072
243
|
.n("MailManagerClient", "DeleteAddonSubscriptionCommand")
|
|
2073
|
-
.sc(DeleteAddonSubscription$)
|
|
244
|
+
.sc(schemas_0.DeleteAddonSubscription$)
|
|
2074
245
|
.build() {
|
|
2075
246
|
}
|
|
2076
247
|
|
|
@@ -2082,7 +253,7 @@ class DeleteAddressListCommand extends smithyClient.Command
|
|
|
2082
253
|
})
|
|
2083
254
|
.s("MailManagerSvc", "DeleteAddressList", {})
|
|
2084
255
|
.n("MailManagerClient", "DeleteAddressListCommand")
|
|
2085
|
-
.sc(DeleteAddressList$)
|
|
256
|
+
.sc(schemas_0.DeleteAddressList$)
|
|
2086
257
|
.build() {
|
|
2087
258
|
}
|
|
2088
259
|
|
|
@@ -2094,7 +265,7 @@ class DeleteArchiveCommand extends smithyClient.Command
|
|
|
2094
265
|
})
|
|
2095
266
|
.s("MailManagerSvc", "DeleteArchive", {})
|
|
2096
267
|
.n("MailManagerClient", "DeleteArchiveCommand")
|
|
2097
|
-
.sc(DeleteArchive$)
|
|
268
|
+
.sc(schemas_0.DeleteArchive$)
|
|
2098
269
|
.build() {
|
|
2099
270
|
}
|
|
2100
271
|
|
|
@@ -2106,7 +277,7 @@ class DeleteIngressPointCommand extends smithyClient.Command
|
|
|
2106
277
|
})
|
|
2107
278
|
.s("MailManagerSvc", "DeleteIngressPoint", {})
|
|
2108
279
|
.n("MailManagerClient", "DeleteIngressPointCommand")
|
|
2109
|
-
.sc(DeleteIngressPoint$)
|
|
280
|
+
.sc(schemas_0.DeleteIngressPoint$)
|
|
2110
281
|
.build() {
|
|
2111
282
|
}
|
|
2112
283
|
|
|
@@ -2118,7 +289,7 @@ class DeleteRelayCommand extends smithyClient.Command
|
|
|
2118
289
|
})
|
|
2119
290
|
.s("MailManagerSvc", "DeleteRelay", {})
|
|
2120
291
|
.n("MailManagerClient", "DeleteRelayCommand")
|
|
2121
|
-
.sc(DeleteRelay$)
|
|
292
|
+
.sc(schemas_0.DeleteRelay$)
|
|
2122
293
|
.build() {
|
|
2123
294
|
}
|
|
2124
295
|
|
|
@@ -2130,7 +301,7 @@ class DeleteRuleSetCommand extends smithyClient.Command
|
|
|
2130
301
|
})
|
|
2131
302
|
.s("MailManagerSvc", "DeleteRuleSet", {})
|
|
2132
303
|
.n("MailManagerClient", "DeleteRuleSetCommand")
|
|
2133
|
-
.sc(DeleteRuleSet$)
|
|
304
|
+
.sc(schemas_0.DeleteRuleSet$)
|
|
2134
305
|
.build() {
|
|
2135
306
|
}
|
|
2136
307
|
|
|
@@ -2142,7 +313,7 @@ class DeleteTrafficPolicyCommand extends smithyClient.Command
|
|
|
2142
313
|
})
|
|
2143
314
|
.s("MailManagerSvc", "DeleteTrafficPolicy", {})
|
|
2144
315
|
.n("MailManagerClient", "DeleteTrafficPolicyCommand")
|
|
2145
|
-
.sc(DeleteTrafficPolicy$)
|
|
316
|
+
.sc(schemas_0.DeleteTrafficPolicy$)
|
|
2146
317
|
.build() {
|
|
2147
318
|
}
|
|
2148
319
|
|
|
@@ -2154,7 +325,7 @@ class DeregisterMemberFromAddressListCommand extends smithyClient.Command
|
|
|
2154
325
|
})
|
|
2155
326
|
.s("MailManagerSvc", "DeregisterMemberFromAddressList", {})
|
|
2156
327
|
.n("MailManagerClient", "DeregisterMemberFromAddressListCommand")
|
|
2157
|
-
.sc(DeregisterMemberFromAddressList$)
|
|
328
|
+
.sc(schemas_0.DeregisterMemberFromAddressList$)
|
|
2158
329
|
.build() {
|
|
2159
330
|
}
|
|
2160
331
|
|
|
@@ -2166,7 +337,7 @@ class GetAddonInstanceCommand extends smithyClient.Command
|
|
|
2166
337
|
})
|
|
2167
338
|
.s("MailManagerSvc", "GetAddonInstance", {})
|
|
2168
339
|
.n("MailManagerClient", "GetAddonInstanceCommand")
|
|
2169
|
-
.sc(GetAddonInstance$)
|
|
340
|
+
.sc(schemas_0.GetAddonInstance$)
|
|
2170
341
|
.build() {
|
|
2171
342
|
}
|
|
2172
343
|
|
|
@@ -2178,7 +349,7 @@ class GetAddonSubscriptionCommand extends smithyClient.Command
|
|
|
2178
349
|
})
|
|
2179
350
|
.s("MailManagerSvc", "GetAddonSubscription", {})
|
|
2180
351
|
.n("MailManagerClient", "GetAddonSubscriptionCommand")
|
|
2181
|
-
.sc(GetAddonSubscription$)
|
|
352
|
+
.sc(schemas_0.GetAddonSubscription$)
|
|
2182
353
|
.build() {
|
|
2183
354
|
}
|
|
2184
355
|
|
|
@@ -2190,7 +361,7 @@ class GetAddressListCommand extends smithyClient.Command
|
|
|
2190
361
|
})
|
|
2191
362
|
.s("MailManagerSvc", "GetAddressList", {})
|
|
2192
363
|
.n("MailManagerClient", "GetAddressListCommand")
|
|
2193
|
-
.sc(GetAddressList$)
|
|
364
|
+
.sc(schemas_0.GetAddressList$)
|
|
2194
365
|
.build() {
|
|
2195
366
|
}
|
|
2196
367
|
|
|
@@ -2202,7 +373,7 @@ class GetAddressListImportJobCommand extends smithyClient.Command
|
|
|
2202
373
|
})
|
|
2203
374
|
.s("MailManagerSvc", "GetAddressListImportJob", {})
|
|
2204
375
|
.n("MailManagerClient", "GetAddressListImportJobCommand")
|
|
2205
|
-
.sc(GetAddressListImportJob$)
|
|
376
|
+
.sc(schemas_0.GetAddressListImportJob$)
|
|
2206
377
|
.build() {
|
|
2207
378
|
}
|
|
2208
379
|
|
|
@@ -2214,7 +385,7 @@ class GetArchiveCommand extends smithyClient.Command
|
|
|
2214
385
|
})
|
|
2215
386
|
.s("MailManagerSvc", "GetArchive", {})
|
|
2216
387
|
.n("MailManagerClient", "GetArchiveCommand")
|
|
2217
|
-
.sc(GetArchive$)
|
|
388
|
+
.sc(schemas_0.GetArchive$)
|
|
2218
389
|
.build() {
|
|
2219
390
|
}
|
|
2220
391
|
|
|
@@ -2226,7 +397,7 @@ class GetArchiveExportCommand extends smithyClient.Command
|
|
|
2226
397
|
})
|
|
2227
398
|
.s("MailManagerSvc", "GetArchiveExport", {})
|
|
2228
399
|
.n("MailManagerClient", "GetArchiveExportCommand")
|
|
2229
|
-
.sc(GetArchiveExport$)
|
|
400
|
+
.sc(schemas_0.GetArchiveExport$)
|
|
2230
401
|
.build() {
|
|
2231
402
|
}
|
|
2232
403
|
|
|
@@ -2238,7 +409,7 @@ class GetArchiveMessageCommand extends smithyClient.Command
|
|
|
2238
409
|
})
|
|
2239
410
|
.s("MailManagerSvc", "GetArchiveMessage", {})
|
|
2240
411
|
.n("MailManagerClient", "GetArchiveMessageCommand")
|
|
2241
|
-
.sc(GetArchiveMessage$)
|
|
412
|
+
.sc(schemas_0.GetArchiveMessage$)
|
|
2242
413
|
.build() {
|
|
2243
414
|
}
|
|
2244
415
|
|
|
@@ -2250,7 +421,7 @@ class GetArchiveMessageContentCommand extends smithyClient.Command
|
|
|
2250
421
|
})
|
|
2251
422
|
.s("MailManagerSvc", "GetArchiveMessageContent", {})
|
|
2252
423
|
.n("MailManagerClient", "GetArchiveMessageContentCommand")
|
|
2253
|
-
.sc(GetArchiveMessageContent$)
|
|
424
|
+
.sc(schemas_0.GetArchiveMessageContent$)
|
|
2254
425
|
.build() {
|
|
2255
426
|
}
|
|
2256
427
|
|
|
@@ -2262,7 +433,7 @@ class GetArchiveSearchCommand extends smithyClient.Command
|
|
|
2262
433
|
})
|
|
2263
434
|
.s("MailManagerSvc", "GetArchiveSearch", {})
|
|
2264
435
|
.n("MailManagerClient", "GetArchiveSearchCommand")
|
|
2265
|
-
.sc(GetArchiveSearch$)
|
|
436
|
+
.sc(schemas_0.GetArchiveSearch$)
|
|
2266
437
|
.build() {
|
|
2267
438
|
}
|
|
2268
439
|
|
|
@@ -2274,7 +445,7 @@ class GetArchiveSearchResultsCommand extends smithyClient.Command
|
|
|
2274
445
|
})
|
|
2275
446
|
.s("MailManagerSvc", "GetArchiveSearchResults", {})
|
|
2276
447
|
.n("MailManagerClient", "GetArchiveSearchResultsCommand")
|
|
2277
|
-
.sc(GetArchiveSearchResults$)
|
|
448
|
+
.sc(schemas_0.GetArchiveSearchResults$)
|
|
2278
449
|
.build() {
|
|
2279
450
|
}
|
|
2280
451
|
|
|
@@ -2286,7 +457,7 @@ class GetIngressPointCommand extends smithyClient.Command
|
|
|
2286
457
|
})
|
|
2287
458
|
.s("MailManagerSvc", "GetIngressPoint", {})
|
|
2288
459
|
.n("MailManagerClient", "GetIngressPointCommand")
|
|
2289
|
-
.sc(GetIngressPoint$)
|
|
460
|
+
.sc(schemas_0.GetIngressPoint$)
|
|
2290
461
|
.build() {
|
|
2291
462
|
}
|
|
2292
463
|
|
|
@@ -2298,7 +469,7 @@ class GetMemberOfAddressListCommand extends smithyClient.Command
|
|
|
2298
469
|
})
|
|
2299
470
|
.s("MailManagerSvc", "GetMemberOfAddressList", {})
|
|
2300
471
|
.n("MailManagerClient", "GetMemberOfAddressListCommand")
|
|
2301
|
-
.sc(GetMemberOfAddressList$)
|
|
472
|
+
.sc(schemas_0.GetMemberOfAddressList$)
|
|
2302
473
|
.build() {
|
|
2303
474
|
}
|
|
2304
475
|
|
|
@@ -2310,7 +481,7 @@ class GetRelayCommand extends smithyClient.Command
|
|
|
2310
481
|
})
|
|
2311
482
|
.s("MailManagerSvc", "GetRelay", {})
|
|
2312
483
|
.n("MailManagerClient", "GetRelayCommand")
|
|
2313
|
-
.sc(GetRelay$)
|
|
484
|
+
.sc(schemas_0.GetRelay$)
|
|
2314
485
|
.build() {
|
|
2315
486
|
}
|
|
2316
487
|
|
|
@@ -2322,7 +493,7 @@ class GetRuleSetCommand extends smithyClient.Command
|
|
|
2322
493
|
})
|
|
2323
494
|
.s("MailManagerSvc", "GetRuleSet", {})
|
|
2324
495
|
.n("MailManagerClient", "GetRuleSetCommand")
|
|
2325
|
-
.sc(GetRuleSet$)
|
|
496
|
+
.sc(schemas_0.GetRuleSet$)
|
|
2326
497
|
.build() {
|
|
2327
498
|
}
|
|
2328
499
|
|
|
@@ -2334,7 +505,7 @@ class GetTrafficPolicyCommand extends smithyClient.Command
|
|
|
2334
505
|
})
|
|
2335
506
|
.s("MailManagerSvc", "GetTrafficPolicy", {})
|
|
2336
507
|
.n("MailManagerClient", "GetTrafficPolicyCommand")
|
|
2337
|
-
.sc(GetTrafficPolicy$)
|
|
508
|
+
.sc(schemas_0.GetTrafficPolicy$)
|
|
2338
509
|
.build() {
|
|
2339
510
|
}
|
|
2340
511
|
|
|
@@ -2346,7 +517,7 @@ class ListAddonInstancesCommand extends smithyClient.Command
|
|
|
2346
517
|
})
|
|
2347
518
|
.s("MailManagerSvc", "ListAddonInstances", {})
|
|
2348
519
|
.n("MailManagerClient", "ListAddonInstancesCommand")
|
|
2349
|
-
.sc(ListAddonInstances$)
|
|
520
|
+
.sc(schemas_0.ListAddonInstances$)
|
|
2350
521
|
.build() {
|
|
2351
522
|
}
|
|
2352
523
|
|
|
@@ -2358,7 +529,7 @@ class ListAddonSubscriptionsCommand extends smithyClient.Command
|
|
|
2358
529
|
})
|
|
2359
530
|
.s("MailManagerSvc", "ListAddonSubscriptions", {})
|
|
2360
531
|
.n("MailManagerClient", "ListAddonSubscriptionsCommand")
|
|
2361
|
-
.sc(ListAddonSubscriptions$)
|
|
532
|
+
.sc(schemas_0.ListAddonSubscriptions$)
|
|
2362
533
|
.build() {
|
|
2363
534
|
}
|
|
2364
535
|
|
|
@@ -2370,7 +541,7 @@ class ListAddressListImportJobsCommand extends smithyClient.Command
|
|
|
2370
541
|
})
|
|
2371
542
|
.s("MailManagerSvc", "ListAddressListImportJobs", {})
|
|
2372
543
|
.n("MailManagerClient", "ListAddressListImportJobsCommand")
|
|
2373
|
-
.sc(ListAddressListImportJobs$)
|
|
544
|
+
.sc(schemas_0.ListAddressListImportJobs$)
|
|
2374
545
|
.build() {
|
|
2375
546
|
}
|
|
2376
547
|
|
|
@@ -2382,7 +553,7 @@ class ListAddressListsCommand extends smithyClient.Command
|
|
|
2382
553
|
})
|
|
2383
554
|
.s("MailManagerSvc", "ListAddressLists", {})
|
|
2384
555
|
.n("MailManagerClient", "ListAddressListsCommand")
|
|
2385
|
-
.sc(ListAddressLists$)
|
|
556
|
+
.sc(schemas_0.ListAddressLists$)
|
|
2386
557
|
.build() {
|
|
2387
558
|
}
|
|
2388
559
|
|
|
@@ -2394,7 +565,7 @@ class ListArchiveExportsCommand extends smithyClient.Command
|
|
|
2394
565
|
})
|
|
2395
566
|
.s("MailManagerSvc", "ListArchiveExports", {})
|
|
2396
567
|
.n("MailManagerClient", "ListArchiveExportsCommand")
|
|
2397
|
-
.sc(ListArchiveExports$)
|
|
568
|
+
.sc(schemas_0.ListArchiveExports$)
|
|
2398
569
|
.build() {
|
|
2399
570
|
}
|
|
2400
571
|
|
|
@@ -2406,7 +577,7 @@ class ListArchivesCommand extends smithyClient.Command
|
|
|
2406
577
|
})
|
|
2407
578
|
.s("MailManagerSvc", "ListArchives", {})
|
|
2408
579
|
.n("MailManagerClient", "ListArchivesCommand")
|
|
2409
|
-
.sc(ListArchives$)
|
|
580
|
+
.sc(schemas_0.ListArchives$)
|
|
2410
581
|
.build() {
|
|
2411
582
|
}
|
|
2412
583
|
|
|
@@ -2418,7 +589,7 @@ class ListArchiveSearchesCommand extends smithyClient.Command
|
|
|
2418
589
|
})
|
|
2419
590
|
.s("MailManagerSvc", "ListArchiveSearches", {})
|
|
2420
591
|
.n("MailManagerClient", "ListArchiveSearchesCommand")
|
|
2421
|
-
.sc(ListArchiveSearches$)
|
|
592
|
+
.sc(schemas_0.ListArchiveSearches$)
|
|
2422
593
|
.build() {
|
|
2423
594
|
}
|
|
2424
595
|
|
|
@@ -2430,7 +601,7 @@ class ListIngressPointsCommand extends smithyClient.Command
|
|
|
2430
601
|
})
|
|
2431
602
|
.s("MailManagerSvc", "ListIngressPoints", {})
|
|
2432
603
|
.n("MailManagerClient", "ListIngressPointsCommand")
|
|
2433
|
-
.sc(ListIngressPoints$)
|
|
604
|
+
.sc(schemas_0.ListIngressPoints$)
|
|
2434
605
|
.build() {
|
|
2435
606
|
}
|
|
2436
607
|
|
|
@@ -2442,7 +613,7 @@ class ListMembersOfAddressListCommand extends smithyClient.Command
|
|
|
2442
613
|
})
|
|
2443
614
|
.s("MailManagerSvc", "ListMembersOfAddressList", {})
|
|
2444
615
|
.n("MailManagerClient", "ListMembersOfAddressListCommand")
|
|
2445
|
-
.sc(ListMembersOfAddressList$)
|
|
616
|
+
.sc(schemas_0.ListMembersOfAddressList$)
|
|
2446
617
|
.build() {
|
|
2447
618
|
}
|
|
2448
619
|
|
|
@@ -2454,7 +625,7 @@ class ListRelaysCommand extends smithyClient.Command
|
|
|
2454
625
|
})
|
|
2455
626
|
.s("MailManagerSvc", "ListRelays", {})
|
|
2456
627
|
.n("MailManagerClient", "ListRelaysCommand")
|
|
2457
|
-
.sc(ListRelays$)
|
|
628
|
+
.sc(schemas_0.ListRelays$)
|
|
2458
629
|
.build() {
|
|
2459
630
|
}
|
|
2460
631
|
|
|
@@ -2466,7 +637,7 @@ class ListRuleSetsCommand extends smithyClient.Command
|
|
|
2466
637
|
})
|
|
2467
638
|
.s("MailManagerSvc", "ListRuleSets", {})
|
|
2468
639
|
.n("MailManagerClient", "ListRuleSetsCommand")
|
|
2469
|
-
.sc(ListRuleSets$)
|
|
640
|
+
.sc(schemas_0.ListRuleSets$)
|
|
2470
641
|
.build() {
|
|
2471
642
|
}
|
|
2472
643
|
|
|
@@ -2478,7 +649,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2478
649
|
})
|
|
2479
650
|
.s("MailManagerSvc", "ListTagsForResource", {})
|
|
2480
651
|
.n("MailManagerClient", "ListTagsForResourceCommand")
|
|
2481
|
-
.sc(ListTagsForResource$)
|
|
652
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2482
653
|
.build() {
|
|
2483
654
|
}
|
|
2484
655
|
|
|
@@ -2490,7 +661,7 @@ class ListTrafficPoliciesCommand extends smithyClient.Command
|
|
|
2490
661
|
})
|
|
2491
662
|
.s("MailManagerSvc", "ListTrafficPolicies", {})
|
|
2492
663
|
.n("MailManagerClient", "ListTrafficPoliciesCommand")
|
|
2493
|
-
.sc(ListTrafficPolicies$)
|
|
664
|
+
.sc(schemas_0.ListTrafficPolicies$)
|
|
2494
665
|
.build() {
|
|
2495
666
|
}
|
|
2496
667
|
|
|
@@ -2502,7 +673,7 @@ class RegisterMemberToAddressListCommand extends smithyClient.Command
|
|
|
2502
673
|
})
|
|
2503
674
|
.s("MailManagerSvc", "RegisterMemberToAddressList", {})
|
|
2504
675
|
.n("MailManagerClient", "RegisterMemberToAddressListCommand")
|
|
2505
|
-
.sc(RegisterMemberToAddressList$)
|
|
676
|
+
.sc(schemas_0.RegisterMemberToAddressList$)
|
|
2506
677
|
.build() {
|
|
2507
678
|
}
|
|
2508
679
|
|
|
@@ -2514,7 +685,7 @@ class StartAddressListImportJobCommand extends smithyClient.Command
|
|
|
2514
685
|
})
|
|
2515
686
|
.s("MailManagerSvc", "StartAddressListImportJob", {})
|
|
2516
687
|
.n("MailManagerClient", "StartAddressListImportJobCommand")
|
|
2517
|
-
.sc(StartAddressListImportJob$)
|
|
688
|
+
.sc(schemas_0.StartAddressListImportJob$)
|
|
2518
689
|
.build() {
|
|
2519
690
|
}
|
|
2520
691
|
|
|
@@ -2526,7 +697,7 @@ class StartArchiveExportCommand extends smithyClient.Command
|
|
|
2526
697
|
})
|
|
2527
698
|
.s("MailManagerSvc", "StartArchiveExport", {})
|
|
2528
699
|
.n("MailManagerClient", "StartArchiveExportCommand")
|
|
2529
|
-
.sc(StartArchiveExport$)
|
|
700
|
+
.sc(schemas_0.StartArchiveExport$)
|
|
2530
701
|
.build() {
|
|
2531
702
|
}
|
|
2532
703
|
|
|
@@ -2538,7 +709,7 @@ class StartArchiveSearchCommand extends smithyClient.Command
|
|
|
2538
709
|
})
|
|
2539
710
|
.s("MailManagerSvc", "StartArchiveSearch", {})
|
|
2540
711
|
.n("MailManagerClient", "StartArchiveSearchCommand")
|
|
2541
|
-
.sc(StartArchiveSearch$)
|
|
712
|
+
.sc(schemas_0.StartArchiveSearch$)
|
|
2542
713
|
.build() {
|
|
2543
714
|
}
|
|
2544
715
|
|
|
@@ -2550,7 +721,7 @@ class StopAddressListImportJobCommand extends smithyClient.Command
|
|
|
2550
721
|
})
|
|
2551
722
|
.s("MailManagerSvc", "StopAddressListImportJob", {})
|
|
2552
723
|
.n("MailManagerClient", "StopAddressListImportJobCommand")
|
|
2553
|
-
.sc(StopAddressListImportJob$)
|
|
724
|
+
.sc(schemas_0.StopAddressListImportJob$)
|
|
2554
725
|
.build() {
|
|
2555
726
|
}
|
|
2556
727
|
|
|
@@ -2562,7 +733,7 @@ class StopArchiveExportCommand extends smithyClient.Command
|
|
|
2562
733
|
})
|
|
2563
734
|
.s("MailManagerSvc", "StopArchiveExport", {})
|
|
2564
735
|
.n("MailManagerClient", "StopArchiveExportCommand")
|
|
2565
|
-
.sc(StopArchiveExport$)
|
|
736
|
+
.sc(schemas_0.StopArchiveExport$)
|
|
2566
737
|
.build() {
|
|
2567
738
|
}
|
|
2568
739
|
|
|
@@ -2574,7 +745,7 @@ class StopArchiveSearchCommand extends smithyClient.Command
|
|
|
2574
745
|
})
|
|
2575
746
|
.s("MailManagerSvc", "StopArchiveSearch", {})
|
|
2576
747
|
.n("MailManagerClient", "StopArchiveSearchCommand")
|
|
2577
|
-
.sc(StopArchiveSearch$)
|
|
748
|
+
.sc(schemas_0.StopArchiveSearch$)
|
|
2578
749
|
.build() {
|
|
2579
750
|
}
|
|
2580
751
|
|
|
@@ -2586,7 +757,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2586
757
|
})
|
|
2587
758
|
.s("MailManagerSvc", "TagResource", {})
|
|
2588
759
|
.n("MailManagerClient", "TagResourceCommand")
|
|
2589
|
-
.sc(TagResource$)
|
|
760
|
+
.sc(schemas_0.TagResource$)
|
|
2590
761
|
.build() {
|
|
2591
762
|
}
|
|
2592
763
|
|
|
@@ -2598,7 +769,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2598
769
|
})
|
|
2599
770
|
.s("MailManagerSvc", "UntagResource", {})
|
|
2600
771
|
.n("MailManagerClient", "UntagResourceCommand")
|
|
2601
|
-
.sc(UntagResource$)
|
|
772
|
+
.sc(schemas_0.UntagResource$)
|
|
2602
773
|
.build() {
|
|
2603
774
|
}
|
|
2604
775
|
|
|
@@ -2610,7 +781,7 @@ class UpdateArchiveCommand extends smithyClient.Command
|
|
|
2610
781
|
})
|
|
2611
782
|
.s("MailManagerSvc", "UpdateArchive", {})
|
|
2612
783
|
.n("MailManagerClient", "UpdateArchiveCommand")
|
|
2613
|
-
.sc(UpdateArchive$)
|
|
784
|
+
.sc(schemas_0.UpdateArchive$)
|
|
2614
785
|
.build() {
|
|
2615
786
|
}
|
|
2616
787
|
|
|
@@ -2622,7 +793,7 @@ class UpdateIngressPointCommand extends smithyClient.Command
|
|
|
2622
793
|
})
|
|
2623
794
|
.s("MailManagerSvc", "UpdateIngressPoint", {})
|
|
2624
795
|
.n("MailManagerClient", "UpdateIngressPointCommand")
|
|
2625
|
-
.sc(UpdateIngressPoint$)
|
|
796
|
+
.sc(schemas_0.UpdateIngressPoint$)
|
|
2626
797
|
.build() {
|
|
2627
798
|
}
|
|
2628
799
|
|
|
@@ -2634,7 +805,7 @@ class UpdateRelayCommand extends smithyClient.Command
|
|
|
2634
805
|
})
|
|
2635
806
|
.s("MailManagerSvc", "UpdateRelay", {})
|
|
2636
807
|
.n("MailManagerClient", "UpdateRelayCommand")
|
|
2637
|
-
.sc(UpdateRelay$)
|
|
808
|
+
.sc(schemas_0.UpdateRelay$)
|
|
2638
809
|
.build() {
|
|
2639
810
|
}
|
|
2640
811
|
|
|
@@ -2646,7 +817,7 @@ class UpdateRuleSetCommand extends smithyClient.Command
|
|
|
2646
817
|
})
|
|
2647
818
|
.s("MailManagerSvc", "UpdateRuleSet", {})
|
|
2648
819
|
.n("MailManagerClient", "UpdateRuleSetCommand")
|
|
2649
|
-
.sc(UpdateRuleSet$)
|
|
820
|
+
.sc(schemas_0.UpdateRuleSet$)
|
|
2650
821
|
.build() {
|
|
2651
822
|
}
|
|
2652
823
|
|
|
@@ -2658,7 +829,7 @@ class UpdateTrafficPolicyCommand extends smithyClient.Command
|
|
|
2658
829
|
})
|
|
2659
830
|
.s("MailManagerSvc", "UpdateTrafficPolicy", {})
|
|
2660
831
|
.n("MailManagerClient", "UpdateTrafficPolicyCommand")
|
|
2661
|
-
.sc(UpdateTrafficPolicy$)
|
|
832
|
+
.sc(schemas_0.UpdateTrafficPolicy$)
|
|
2662
833
|
.build() {
|
|
2663
834
|
}
|
|
2664
835
|
|
|
@@ -2994,383 +1165,115 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2994
1165
|
enumerable: true,
|
|
2995
1166
|
get: function () { return smithyClient.Client; }
|
|
2996
1167
|
});
|
|
1168
|
+
Object.defineProperty(exports, "MailManagerServiceException", {
|
|
1169
|
+
enumerable: true,
|
|
1170
|
+
get: function () { return MailManagerServiceException.MailManagerServiceException; }
|
|
1171
|
+
});
|
|
2997
1172
|
exports.AcceptAction = AcceptAction;
|
|
2998
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2999
|
-
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3000
1173
|
exports.ActionFailurePolicy = ActionFailurePolicy;
|
|
3001
|
-
exports.AddHeaderAction$ = AddHeaderAction$;
|
|
3002
|
-
exports.AddonInstance$ = AddonInstance$;
|
|
3003
|
-
exports.AddonSubscription$ = AddonSubscription$;
|
|
3004
|
-
exports.AddressFilter$ = AddressFilter$;
|
|
3005
|
-
exports.AddressList$ = AddressList$;
|
|
3006
|
-
exports.Analysis$ = Analysis$;
|
|
3007
|
-
exports.Archive$ = Archive$;
|
|
3008
|
-
exports.ArchiveAction$ = ArchiveAction$;
|
|
3009
1174
|
exports.ArchiveBooleanEmailAttribute = ArchiveBooleanEmailAttribute;
|
|
3010
|
-
exports.ArchiveBooleanExpression$ = ArchiveBooleanExpression$;
|
|
3011
1175
|
exports.ArchiveBooleanOperator = ArchiveBooleanOperator;
|
|
3012
|
-
exports.ArchiveBooleanToEvaluate$ = ArchiveBooleanToEvaluate$;
|
|
3013
|
-
exports.ArchiveFilterCondition$ = ArchiveFilterCondition$;
|
|
3014
|
-
exports.ArchiveFilters$ = ArchiveFilters$;
|
|
3015
|
-
exports.ArchiveRetention$ = ArchiveRetention$;
|
|
3016
1176
|
exports.ArchiveState = ArchiveState;
|
|
3017
1177
|
exports.ArchiveStringEmailAttribute = ArchiveStringEmailAttribute;
|
|
3018
|
-
exports.ArchiveStringExpression$ = ArchiveStringExpression$;
|
|
3019
1178
|
exports.ArchiveStringOperator = ArchiveStringOperator;
|
|
3020
|
-
exports.ArchiveStringToEvaluate$ = ArchiveStringToEvaluate$;
|
|
3021
|
-
exports.ConflictException = ConflictException;
|
|
3022
|
-
exports.ConflictException$ = ConflictException$;
|
|
3023
|
-
exports.CreateAddonInstance$ = CreateAddonInstance$;
|
|
3024
1179
|
exports.CreateAddonInstanceCommand = CreateAddonInstanceCommand;
|
|
3025
|
-
exports.CreateAddonInstanceRequest$ = CreateAddonInstanceRequest$;
|
|
3026
|
-
exports.CreateAddonInstanceResponse$ = CreateAddonInstanceResponse$;
|
|
3027
|
-
exports.CreateAddonSubscription$ = CreateAddonSubscription$;
|
|
3028
1180
|
exports.CreateAddonSubscriptionCommand = CreateAddonSubscriptionCommand;
|
|
3029
|
-
exports.CreateAddonSubscriptionRequest$ = CreateAddonSubscriptionRequest$;
|
|
3030
|
-
exports.CreateAddonSubscriptionResponse$ = CreateAddonSubscriptionResponse$;
|
|
3031
|
-
exports.CreateAddressList$ = CreateAddressList$;
|
|
3032
1181
|
exports.CreateAddressListCommand = CreateAddressListCommand;
|
|
3033
|
-
exports.CreateAddressListImportJob$ = CreateAddressListImportJob$;
|
|
3034
1182
|
exports.CreateAddressListImportJobCommand = CreateAddressListImportJobCommand;
|
|
3035
|
-
exports.CreateAddressListImportJobRequest$ = CreateAddressListImportJobRequest$;
|
|
3036
|
-
exports.CreateAddressListImportJobResponse$ = CreateAddressListImportJobResponse$;
|
|
3037
|
-
exports.CreateAddressListRequest$ = CreateAddressListRequest$;
|
|
3038
|
-
exports.CreateAddressListResponse$ = CreateAddressListResponse$;
|
|
3039
|
-
exports.CreateArchive$ = CreateArchive$;
|
|
3040
1183
|
exports.CreateArchiveCommand = CreateArchiveCommand;
|
|
3041
|
-
exports.CreateArchiveRequest$ = CreateArchiveRequest$;
|
|
3042
|
-
exports.CreateArchiveResponse$ = CreateArchiveResponse$;
|
|
3043
|
-
exports.CreateIngressPoint$ = CreateIngressPoint$;
|
|
3044
1184
|
exports.CreateIngressPointCommand = CreateIngressPointCommand;
|
|
3045
|
-
exports.CreateIngressPointRequest$ = CreateIngressPointRequest$;
|
|
3046
|
-
exports.CreateIngressPointResponse$ = CreateIngressPointResponse$;
|
|
3047
|
-
exports.CreateRelay$ = CreateRelay$;
|
|
3048
1185
|
exports.CreateRelayCommand = CreateRelayCommand;
|
|
3049
|
-
exports.CreateRelayRequest$ = CreateRelayRequest$;
|
|
3050
|
-
exports.CreateRelayResponse$ = CreateRelayResponse$;
|
|
3051
|
-
exports.CreateRuleSet$ = CreateRuleSet$;
|
|
3052
1186
|
exports.CreateRuleSetCommand = CreateRuleSetCommand;
|
|
3053
|
-
exports.CreateRuleSetRequest$ = CreateRuleSetRequest$;
|
|
3054
|
-
exports.CreateRuleSetResponse$ = CreateRuleSetResponse$;
|
|
3055
|
-
exports.CreateTrafficPolicy$ = CreateTrafficPolicy$;
|
|
3056
1187
|
exports.CreateTrafficPolicyCommand = CreateTrafficPolicyCommand;
|
|
3057
|
-
exports.CreateTrafficPolicyRequest$ = CreateTrafficPolicyRequest$;
|
|
3058
|
-
exports.CreateTrafficPolicyResponse$ = CreateTrafficPolicyResponse$;
|
|
3059
|
-
exports.DeleteAddonInstance$ = DeleteAddonInstance$;
|
|
3060
1188
|
exports.DeleteAddonInstanceCommand = DeleteAddonInstanceCommand;
|
|
3061
|
-
exports.DeleteAddonInstanceRequest$ = DeleteAddonInstanceRequest$;
|
|
3062
|
-
exports.DeleteAddonInstanceResponse$ = DeleteAddonInstanceResponse$;
|
|
3063
|
-
exports.DeleteAddonSubscription$ = DeleteAddonSubscription$;
|
|
3064
1189
|
exports.DeleteAddonSubscriptionCommand = DeleteAddonSubscriptionCommand;
|
|
3065
|
-
exports.DeleteAddonSubscriptionRequest$ = DeleteAddonSubscriptionRequest$;
|
|
3066
|
-
exports.DeleteAddonSubscriptionResponse$ = DeleteAddonSubscriptionResponse$;
|
|
3067
|
-
exports.DeleteAddressList$ = DeleteAddressList$;
|
|
3068
1190
|
exports.DeleteAddressListCommand = DeleteAddressListCommand;
|
|
3069
|
-
exports.DeleteAddressListRequest$ = DeleteAddressListRequest$;
|
|
3070
|
-
exports.DeleteAddressListResponse$ = DeleteAddressListResponse$;
|
|
3071
|
-
exports.DeleteArchive$ = DeleteArchive$;
|
|
3072
1191
|
exports.DeleteArchiveCommand = DeleteArchiveCommand;
|
|
3073
|
-
exports.DeleteArchiveRequest$ = DeleteArchiveRequest$;
|
|
3074
|
-
exports.DeleteArchiveResponse$ = DeleteArchiveResponse$;
|
|
3075
|
-
exports.DeleteIngressPoint$ = DeleteIngressPoint$;
|
|
3076
1192
|
exports.DeleteIngressPointCommand = DeleteIngressPointCommand;
|
|
3077
|
-
exports.DeleteIngressPointRequest$ = DeleteIngressPointRequest$;
|
|
3078
|
-
exports.DeleteIngressPointResponse$ = DeleteIngressPointResponse$;
|
|
3079
|
-
exports.DeleteRelay$ = DeleteRelay$;
|
|
3080
1193
|
exports.DeleteRelayCommand = DeleteRelayCommand;
|
|
3081
|
-
exports.DeleteRelayRequest$ = DeleteRelayRequest$;
|
|
3082
|
-
exports.DeleteRelayResponse$ = DeleteRelayResponse$;
|
|
3083
|
-
exports.DeleteRuleSet$ = DeleteRuleSet$;
|
|
3084
1194
|
exports.DeleteRuleSetCommand = DeleteRuleSetCommand;
|
|
3085
|
-
exports.DeleteRuleSetRequest$ = DeleteRuleSetRequest$;
|
|
3086
|
-
exports.DeleteRuleSetResponse$ = DeleteRuleSetResponse$;
|
|
3087
|
-
exports.DeleteTrafficPolicy$ = DeleteTrafficPolicy$;
|
|
3088
1195
|
exports.DeleteTrafficPolicyCommand = DeleteTrafficPolicyCommand;
|
|
3089
|
-
exports.DeleteTrafficPolicyRequest$ = DeleteTrafficPolicyRequest$;
|
|
3090
|
-
exports.DeleteTrafficPolicyResponse$ = DeleteTrafficPolicyResponse$;
|
|
3091
|
-
exports.DeliverToMailboxAction$ = DeliverToMailboxAction$;
|
|
3092
|
-
exports.DeliverToQBusinessAction$ = DeliverToQBusinessAction$;
|
|
3093
|
-
exports.DeregisterMemberFromAddressList$ = DeregisterMemberFromAddressList$;
|
|
3094
1196
|
exports.DeregisterMemberFromAddressListCommand = DeregisterMemberFromAddressListCommand;
|
|
3095
|
-
exports.DeregisterMemberFromAddressListRequest$ = DeregisterMemberFromAddressListRequest$;
|
|
3096
|
-
exports.DeregisterMemberFromAddressListResponse$ = DeregisterMemberFromAddressListResponse$;
|
|
3097
|
-
exports.DropAction$ = DropAction$;
|
|
3098
|
-
exports.Envelope$ = Envelope$;
|
|
3099
|
-
exports.ExportDestinationConfiguration$ = ExportDestinationConfiguration$;
|
|
3100
1197
|
exports.ExportState = ExportState;
|
|
3101
|
-
exports.ExportStatus$ = ExportStatus$;
|
|
3102
|
-
exports.ExportSummary$ = ExportSummary$;
|
|
3103
|
-
exports.GetAddonInstance$ = GetAddonInstance$;
|
|
3104
1198
|
exports.GetAddonInstanceCommand = GetAddonInstanceCommand;
|
|
3105
|
-
exports.GetAddonInstanceRequest$ = GetAddonInstanceRequest$;
|
|
3106
|
-
exports.GetAddonInstanceResponse$ = GetAddonInstanceResponse$;
|
|
3107
|
-
exports.GetAddonSubscription$ = GetAddonSubscription$;
|
|
3108
1199
|
exports.GetAddonSubscriptionCommand = GetAddonSubscriptionCommand;
|
|
3109
|
-
exports.GetAddonSubscriptionRequest$ = GetAddonSubscriptionRequest$;
|
|
3110
|
-
exports.GetAddonSubscriptionResponse$ = GetAddonSubscriptionResponse$;
|
|
3111
|
-
exports.GetAddressList$ = GetAddressList$;
|
|
3112
1200
|
exports.GetAddressListCommand = GetAddressListCommand;
|
|
3113
|
-
exports.GetAddressListImportJob$ = GetAddressListImportJob$;
|
|
3114
1201
|
exports.GetAddressListImportJobCommand = GetAddressListImportJobCommand;
|
|
3115
|
-
exports.GetAddressListImportJobRequest$ = GetAddressListImportJobRequest$;
|
|
3116
|
-
exports.GetAddressListImportJobResponse$ = GetAddressListImportJobResponse$;
|
|
3117
|
-
exports.GetAddressListRequest$ = GetAddressListRequest$;
|
|
3118
|
-
exports.GetAddressListResponse$ = GetAddressListResponse$;
|
|
3119
|
-
exports.GetArchive$ = GetArchive$;
|
|
3120
1202
|
exports.GetArchiveCommand = GetArchiveCommand;
|
|
3121
|
-
exports.GetArchiveExport$ = GetArchiveExport$;
|
|
3122
1203
|
exports.GetArchiveExportCommand = GetArchiveExportCommand;
|
|
3123
|
-
exports.GetArchiveExportRequest$ = GetArchiveExportRequest$;
|
|
3124
|
-
exports.GetArchiveExportResponse$ = GetArchiveExportResponse$;
|
|
3125
|
-
exports.GetArchiveMessage$ = GetArchiveMessage$;
|
|
3126
1204
|
exports.GetArchiveMessageCommand = GetArchiveMessageCommand;
|
|
3127
|
-
exports.GetArchiveMessageContent$ = GetArchiveMessageContent$;
|
|
3128
1205
|
exports.GetArchiveMessageContentCommand = GetArchiveMessageContentCommand;
|
|
3129
|
-
exports.GetArchiveMessageContentRequest$ = GetArchiveMessageContentRequest$;
|
|
3130
|
-
exports.GetArchiveMessageContentResponse$ = GetArchiveMessageContentResponse$;
|
|
3131
|
-
exports.GetArchiveMessageRequest$ = GetArchiveMessageRequest$;
|
|
3132
|
-
exports.GetArchiveMessageResponse$ = GetArchiveMessageResponse$;
|
|
3133
|
-
exports.GetArchiveRequest$ = GetArchiveRequest$;
|
|
3134
|
-
exports.GetArchiveResponse$ = GetArchiveResponse$;
|
|
3135
|
-
exports.GetArchiveSearch$ = GetArchiveSearch$;
|
|
3136
1206
|
exports.GetArchiveSearchCommand = GetArchiveSearchCommand;
|
|
3137
|
-
exports.GetArchiveSearchRequest$ = GetArchiveSearchRequest$;
|
|
3138
|
-
exports.GetArchiveSearchResponse$ = GetArchiveSearchResponse$;
|
|
3139
|
-
exports.GetArchiveSearchResults$ = GetArchiveSearchResults$;
|
|
3140
1207
|
exports.GetArchiveSearchResultsCommand = GetArchiveSearchResultsCommand;
|
|
3141
|
-
exports.GetArchiveSearchResultsRequest$ = GetArchiveSearchResultsRequest$;
|
|
3142
|
-
exports.GetArchiveSearchResultsResponse$ = GetArchiveSearchResultsResponse$;
|
|
3143
|
-
exports.GetIngressPoint$ = GetIngressPoint$;
|
|
3144
1208
|
exports.GetIngressPointCommand = GetIngressPointCommand;
|
|
3145
|
-
exports.GetIngressPointRequest$ = GetIngressPointRequest$;
|
|
3146
|
-
exports.GetIngressPointResponse$ = GetIngressPointResponse$;
|
|
3147
|
-
exports.GetMemberOfAddressList$ = GetMemberOfAddressList$;
|
|
3148
1209
|
exports.GetMemberOfAddressListCommand = GetMemberOfAddressListCommand;
|
|
3149
|
-
exports.GetMemberOfAddressListRequest$ = GetMemberOfAddressListRequest$;
|
|
3150
|
-
exports.GetMemberOfAddressListResponse$ = GetMemberOfAddressListResponse$;
|
|
3151
|
-
exports.GetRelay$ = GetRelay$;
|
|
3152
1210
|
exports.GetRelayCommand = GetRelayCommand;
|
|
3153
|
-
exports.GetRelayRequest$ = GetRelayRequest$;
|
|
3154
|
-
exports.GetRelayResponse$ = GetRelayResponse$;
|
|
3155
|
-
exports.GetRuleSet$ = GetRuleSet$;
|
|
3156
1211
|
exports.GetRuleSetCommand = GetRuleSetCommand;
|
|
3157
|
-
exports.GetRuleSetRequest$ = GetRuleSetRequest$;
|
|
3158
|
-
exports.GetRuleSetResponse$ = GetRuleSetResponse$;
|
|
3159
|
-
exports.GetTrafficPolicy$ = GetTrafficPolicy$;
|
|
3160
1212
|
exports.GetTrafficPolicyCommand = GetTrafficPolicyCommand;
|
|
3161
|
-
exports.GetTrafficPolicyRequest$ = GetTrafficPolicyRequest$;
|
|
3162
|
-
exports.GetTrafficPolicyResponse$ = GetTrafficPolicyResponse$;
|
|
3163
|
-
exports.ImportDataFormat$ = ImportDataFormat$;
|
|
3164
1213
|
exports.ImportDataType = ImportDataType;
|
|
3165
|
-
exports.ImportJob$ = ImportJob$;
|
|
3166
1214
|
exports.ImportJobStatus = ImportJobStatus;
|
|
3167
1215
|
exports.IngressAddressListEmailAttribute = IngressAddressListEmailAttribute;
|
|
3168
|
-
exports.IngressAnalysis$ = IngressAnalysis$;
|
|
3169
|
-
exports.IngressBooleanExpression$ = IngressBooleanExpression$;
|
|
3170
1216
|
exports.IngressBooleanOperator = IngressBooleanOperator;
|
|
3171
|
-
exports.IngressBooleanToEvaluate$ = IngressBooleanToEvaluate$;
|
|
3172
1217
|
exports.IngressIpOperator = IngressIpOperator;
|
|
3173
|
-
exports.IngressIpToEvaluate$ = IngressIpToEvaluate$;
|
|
3174
1218
|
exports.IngressIpv4Attribute = IngressIpv4Attribute;
|
|
3175
|
-
exports.IngressIpv4Expression$ = IngressIpv4Expression$;
|
|
3176
1219
|
exports.IngressIpv6Attribute = IngressIpv6Attribute;
|
|
3177
|
-
exports.IngressIpv6Expression$ = IngressIpv6Expression$;
|
|
3178
|
-
exports.IngressIpv6ToEvaluate$ = IngressIpv6ToEvaluate$;
|
|
3179
|
-
exports.IngressIsInAddressList$ = IngressIsInAddressList$;
|
|
3180
|
-
exports.IngressPoint$ = IngressPoint$;
|
|
3181
|
-
exports.IngressPointAuthConfiguration$ = IngressPointAuthConfiguration$;
|
|
3182
|
-
exports.IngressPointConfiguration$ = IngressPointConfiguration$;
|
|
3183
|
-
exports.IngressPointPasswordConfiguration$ = IngressPointPasswordConfiguration$;
|
|
3184
1220
|
exports.IngressPointStatus = IngressPointStatus;
|
|
3185
1221
|
exports.IngressPointStatusToUpdate = IngressPointStatusToUpdate;
|
|
3186
1222
|
exports.IngressPointType = IngressPointType;
|
|
3187
1223
|
exports.IngressStringEmailAttribute = IngressStringEmailAttribute;
|
|
3188
|
-
exports.IngressStringExpression$ = IngressStringExpression$;
|
|
3189
1224
|
exports.IngressStringOperator = IngressStringOperator;
|
|
3190
|
-
exports.IngressStringToEvaluate$ = IngressStringToEvaluate$;
|
|
3191
1225
|
exports.IngressTlsAttribute = IngressTlsAttribute;
|
|
3192
1226
|
exports.IngressTlsProtocolAttribute = IngressTlsProtocolAttribute;
|
|
3193
|
-
exports.IngressTlsProtocolExpression$ = IngressTlsProtocolExpression$;
|
|
3194
1227
|
exports.IngressTlsProtocolOperator = IngressTlsProtocolOperator;
|
|
3195
|
-
exports.IngressTlsProtocolToEvaluate$ = IngressTlsProtocolToEvaluate$;
|
|
3196
1228
|
exports.IpType = IpType;
|
|
3197
|
-
exports.ListAddonInstances$ = ListAddonInstances$;
|
|
3198
1229
|
exports.ListAddonInstancesCommand = ListAddonInstancesCommand;
|
|
3199
|
-
exports.ListAddonInstancesRequest$ = ListAddonInstancesRequest$;
|
|
3200
|
-
exports.ListAddonInstancesResponse$ = ListAddonInstancesResponse$;
|
|
3201
|
-
exports.ListAddonSubscriptions$ = ListAddonSubscriptions$;
|
|
3202
1230
|
exports.ListAddonSubscriptionsCommand = ListAddonSubscriptionsCommand;
|
|
3203
|
-
exports.ListAddonSubscriptionsRequest$ = ListAddonSubscriptionsRequest$;
|
|
3204
|
-
exports.ListAddonSubscriptionsResponse$ = ListAddonSubscriptionsResponse$;
|
|
3205
|
-
exports.ListAddressListImportJobs$ = ListAddressListImportJobs$;
|
|
3206
1231
|
exports.ListAddressListImportJobsCommand = ListAddressListImportJobsCommand;
|
|
3207
|
-
exports.ListAddressListImportJobsRequest$ = ListAddressListImportJobsRequest$;
|
|
3208
|
-
exports.ListAddressListImportJobsResponse$ = ListAddressListImportJobsResponse$;
|
|
3209
|
-
exports.ListAddressLists$ = ListAddressLists$;
|
|
3210
1232
|
exports.ListAddressListsCommand = ListAddressListsCommand;
|
|
3211
|
-
exports.ListAddressListsRequest$ = ListAddressListsRequest$;
|
|
3212
|
-
exports.ListAddressListsResponse$ = ListAddressListsResponse$;
|
|
3213
|
-
exports.ListArchiveExports$ = ListArchiveExports$;
|
|
3214
1233
|
exports.ListArchiveExportsCommand = ListArchiveExportsCommand;
|
|
3215
|
-
exports.ListArchiveExportsRequest$ = ListArchiveExportsRequest$;
|
|
3216
|
-
exports.ListArchiveExportsResponse$ = ListArchiveExportsResponse$;
|
|
3217
|
-
exports.ListArchiveSearches$ = ListArchiveSearches$;
|
|
3218
1234
|
exports.ListArchiveSearchesCommand = ListArchiveSearchesCommand;
|
|
3219
|
-
exports.ListArchiveSearchesRequest$ = ListArchiveSearchesRequest$;
|
|
3220
|
-
exports.ListArchiveSearchesResponse$ = ListArchiveSearchesResponse$;
|
|
3221
|
-
exports.ListArchives$ = ListArchives$;
|
|
3222
1235
|
exports.ListArchivesCommand = ListArchivesCommand;
|
|
3223
|
-
exports.ListArchivesRequest$ = ListArchivesRequest$;
|
|
3224
|
-
exports.ListArchivesResponse$ = ListArchivesResponse$;
|
|
3225
|
-
exports.ListIngressPoints$ = ListIngressPoints$;
|
|
3226
1236
|
exports.ListIngressPointsCommand = ListIngressPointsCommand;
|
|
3227
|
-
exports.ListIngressPointsRequest$ = ListIngressPointsRequest$;
|
|
3228
|
-
exports.ListIngressPointsResponse$ = ListIngressPointsResponse$;
|
|
3229
|
-
exports.ListMembersOfAddressList$ = ListMembersOfAddressList$;
|
|
3230
1237
|
exports.ListMembersOfAddressListCommand = ListMembersOfAddressListCommand;
|
|
3231
|
-
exports.ListMembersOfAddressListRequest$ = ListMembersOfAddressListRequest$;
|
|
3232
|
-
exports.ListMembersOfAddressListResponse$ = ListMembersOfAddressListResponse$;
|
|
3233
|
-
exports.ListRelays$ = ListRelays$;
|
|
3234
1238
|
exports.ListRelaysCommand = ListRelaysCommand;
|
|
3235
|
-
exports.ListRelaysRequest$ = ListRelaysRequest$;
|
|
3236
|
-
exports.ListRelaysResponse$ = ListRelaysResponse$;
|
|
3237
|
-
exports.ListRuleSets$ = ListRuleSets$;
|
|
3238
1239
|
exports.ListRuleSetsCommand = ListRuleSetsCommand;
|
|
3239
|
-
exports.ListRuleSetsRequest$ = ListRuleSetsRequest$;
|
|
3240
|
-
exports.ListRuleSetsResponse$ = ListRuleSetsResponse$;
|
|
3241
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3242
1240
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3243
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3244
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3245
|
-
exports.ListTrafficPolicies$ = ListTrafficPolicies$;
|
|
3246
1241
|
exports.ListTrafficPoliciesCommand = ListTrafficPoliciesCommand;
|
|
3247
|
-
exports.ListTrafficPoliciesRequest$ = ListTrafficPoliciesRequest$;
|
|
3248
|
-
exports.ListTrafficPoliciesResponse$ = ListTrafficPoliciesResponse$;
|
|
3249
1242
|
exports.MailFrom = MailFrom;
|
|
3250
1243
|
exports.MailManager = MailManager;
|
|
3251
1244
|
exports.MailManagerClient = MailManagerClient;
|
|
3252
|
-
exports.MailManagerServiceException = MailManagerServiceException;
|
|
3253
|
-
exports.MailManagerServiceException$ = MailManagerServiceException$;
|
|
3254
|
-
exports.MessageBody$ = MessageBody$;
|
|
3255
|
-
exports.Metadata$ = Metadata$;
|
|
3256
|
-
exports.NetworkConfiguration$ = NetworkConfiguration$;
|
|
3257
|
-
exports.NoAuthentication$ = NoAuthentication$;
|
|
3258
|
-
exports.PolicyCondition$ = PolicyCondition$;
|
|
3259
|
-
exports.PolicyStatement$ = PolicyStatement$;
|
|
3260
|
-
exports.PrivateNetworkConfiguration$ = PrivateNetworkConfiguration$;
|
|
3261
|
-
exports.PublicNetworkConfiguration$ = PublicNetworkConfiguration$;
|
|
3262
|
-
exports.RegisterMemberToAddressList$ = RegisterMemberToAddressList$;
|
|
3263
1245
|
exports.RegisterMemberToAddressListCommand = RegisterMemberToAddressListCommand;
|
|
3264
|
-
exports.RegisterMemberToAddressListRequest$ = RegisterMemberToAddressListRequest$;
|
|
3265
|
-
exports.RegisterMemberToAddressListResponse$ = RegisterMemberToAddressListResponse$;
|
|
3266
|
-
exports.Relay$ = Relay$;
|
|
3267
|
-
exports.RelayAction$ = RelayAction$;
|
|
3268
|
-
exports.RelayAuthentication$ = RelayAuthentication$;
|
|
3269
|
-
exports.ReplaceRecipientAction$ = ReplaceRecipientAction$;
|
|
3270
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3271
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3272
1246
|
exports.RetentionPeriod = RetentionPeriod;
|
|
3273
|
-
exports.Row$ = Row$;
|
|
3274
|
-
exports.Rule$ = Rule$;
|
|
3275
|
-
exports.RuleAction$ = RuleAction$;
|
|
3276
1247
|
exports.RuleAddressListEmailAttribute = RuleAddressListEmailAttribute;
|
|
3277
1248
|
exports.RuleBooleanEmailAttribute = RuleBooleanEmailAttribute;
|
|
3278
|
-
exports.RuleBooleanExpression$ = RuleBooleanExpression$;
|
|
3279
1249
|
exports.RuleBooleanOperator = RuleBooleanOperator;
|
|
3280
|
-
exports.RuleBooleanToEvaluate$ = RuleBooleanToEvaluate$;
|
|
3281
|
-
exports.RuleCondition$ = RuleCondition$;
|
|
3282
|
-
exports.RuleDmarcExpression$ = RuleDmarcExpression$;
|
|
3283
1250
|
exports.RuleDmarcOperator = RuleDmarcOperator;
|
|
3284
1251
|
exports.RuleDmarcPolicy = RuleDmarcPolicy;
|
|
3285
1252
|
exports.RuleIpEmailAttribute = RuleIpEmailAttribute;
|
|
3286
|
-
exports.RuleIpExpression$ = RuleIpExpression$;
|
|
3287
1253
|
exports.RuleIpOperator = RuleIpOperator;
|
|
3288
|
-
exports.RuleIpToEvaluate$ = RuleIpToEvaluate$;
|
|
3289
|
-
exports.RuleIsInAddressList$ = RuleIsInAddressList$;
|
|
3290
1254
|
exports.RuleNumberEmailAttribute = RuleNumberEmailAttribute;
|
|
3291
|
-
exports.RuleNumberExpression$ = RuleNumberExpression$;
|
|
3292
1255
|
exports.RuleNumberOperator = RuleNumberOperator;
|
|
3293
|
-
exports.RuleNumberToEvaluate$ = RuleNumberToEvaluate$;
|
|
3294
|
-
exports.RuleSet$ = RuleSet$;
|
|
3295
1256
|
exports.RuleStringEmailAttribute = RuleStringEmailAttribute;
|
|
3296
|
-
exports.RuleStringExpression$ = RuleStringExpression$;
|
|
3297
1257
|
exports.RuleStringOperator = RuleStringOperator;
|
|
3298
|
-
exports.RuleStringToEvaluate$ = RuleStringToEvaluate$;
|
|
3299
1258
|
exports.RuleVerdict = RuleVerdict;
|
|
3300
1259
|
exports.RuleVerdictAttribute = RuleVerdictAttribute;
|
|
3301
|
-
exports.RuleVerdictExpression$ = RuleVerdictExpression$;
|
|
3302
1260
|
exports.RuleVerdictOperator = RuleVerdictOperator;
|
|
3303
|
-
exports.RuleVerdictToEvaluate$ = RuleVerdictToEvaluate$;
|
|
3304
|
-
exports.S3Action$ = S3Action$;
|
|
3305
|
-
exports.S3ExportDestinationConfiguration$ = S3ExportDestinationConfiguration$;
|
|
3306
|
-
exports.SavedAddress$ = SavedAddress$;
|
|
3307
1261
|
exports.SearchState = SearchState;
|
|
3308
|
-
exports.SearchStatus$ = SearchStatus$;
|
|
3309
|
-
exports.SearchSummary$ = SearchSummary$;
|
|
3310
|
-
exports.SendAction$ = SendAction$;
|
|
3311
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3312
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3313
|
-
exports.SnsAction$ = SnsAction$;
|
|
3314
1262
|
exports.SnsNotificationEncoding = SnsNotificationEncoding;
|
|
3315
1263
|
exports.SnsNotificationPayloadType = SnsNotificationPayloadType;
|
|
3316
|
-
exports.StartAddressListImportJob$ = StartAddressListImportJob$;
|
|
3317
1264
|
exports.StartAddressListImportJobCommand = StartAddressListImportJobCommand;
|
|
3318
|
-
exports.StartAddressListImportJobRequest$ = StartAddressListImportJobRequest$;
|
|
3319
|
-
exports.StartAddressListImportJobResponse$ = StartAddressListImportJobResponse$;
|
|
3320
|
-
exports.StartArchiveExport$ = StartArchiveExport$;
|
|
3321
1265
|
exports.StartArchiveExportCommand = StartArchiveExportCommand;
|
|
3322
|
-
exports.StartArchiveExportRequest$ = StartArchiveExportRequest$;
|
|
3323
|
-
exports.StartArchiveExportResponse$ = StartArchiveExportResponse$;
|
|
3324
|
-
exports.StartArchiveSearch$ = StartArchiveSearch$;
|
|
3325
1266
|
exports.StartArchiveSearchCommand = StartArchiveSearchCommand;
|
|
3326
|
-
exports.StartArchiveSearchRequest$ = StartArchiveSearchRequest$;
|
|
3327
|
-
exports.StartArchiveSearchResponse$ = StartArchiveSearchResponse$;
|
|
3328
|
-
exports.StopAddressListImportJob$ = StopAddressListImportJob$;
|
|
3329
1267
|
exports.StopAddressListImportJobCommand = StopAddressListImportJobCommand;
|
|
3330
|
-
exports.StopAddressListImportJobRequest$ = StopAddressListImportJobRequest$;
|
|
3331
|
-
exports.StopAddressListImportJobResponse$ = StopAddressListImportJobResponse$;
|
|
3332
|
-
exports.StopArchiveExport$ = StopArchiveExport$;
|
|
3333
1268
|
exports.StopArchiveExportCommand = StopArchiveExportCommand;
|
|
3334
|
-
exports.StopArchiveExportRequest$ = StopArchiveExportRequest$;
|
|
3335
|
-
exports.StopArchiveExportResponse$ = StopArchiveExportResponse$;
|
|
3336
|
-
exports.StopArchiveSearch$ = StopArchiveSearch$;
|
|
3337
1269
|
exports.StopArchiveSearchCommand = StopArchiveSearchCommand;
|
|
3338
|
-
exports.StopArchiveSearchRequest$ = StopArchiveSearchRequest$;
|
|
3339
|
-
exports.StopArchiveSearchResponse$ = StopArchiveSearchResponse$;
|
|
3340
|
-
exports.Tag$ = Tag$;
|
|
3341
|
-
exports.TagResource$ = TagResource$;
|
|
3342
1270
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3343
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3344
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3345
|
-
exports.ThrottlingException = ThrottlingException;
|
|
3346
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
3347
|
-
exports.TrafficPolicy$ = TrafficPolicy$;
|
|
3348
|
-
exports.UntagResource$ = UntagResource$;
|
|
3349
1271
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3350
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3351
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3352
|
-
exports.UpdateArchive$ = UpdateArchive$;
|
|
3353
1272
|
exports.UpdateArchiveCommand = UpdateArchiveCommand;
|
|
3354
|
-
exports.UpdateArchiveRequest$ = UpdateArchiveRequest$;
|
|
3355
|
-
exports.UpdateArchiveResponse$ = UpdateArchiveResponse$;
|
|
3356
|
-
exports.UpdateIngressPoint$ = UpdateIngressPoint$;
|
|
3357
1273
|
exports.UpdateIngressPointCommand = UpdateIngressPointCommand;
|
|
3358
|
-
exports.UpdateIngressPointRequest$ = UpdateIngressPointRequest$;
|
|
3359
|
-
exports.UpdateIngressPointResponse$ = UpdateIngressPointResponse$;
|
|
3360
|
-
exports.UpdateRelay$ = UpdateRelay$;
|
|
3361
1274
|
exports.UpdateRelayCommand = UpdateRelayCommand;
|
|
3362
|
-
exports.UpdateRelayRequest$ = UpdateRelayRequest$;
|
|
3363
|
-
exports.UpdateRelayResponse$ = UpdateRelayResponse$;
|
|
3364
|
-
exports.UpdateRuleSet$ = UpdateRuleSet$;
|
|
3365
1275
|
exports.UpdateRuleSetCommand = UpdateRuleSetCommand;
|
|
3366
|
-
exports.UpdateRuleSetRequest$ = UpdateRuleSetRequest$;
|
|
3367
|
-
exports.UpdateRuleSetResponse$ = UpdateRuleSetResponse$;
|
|
3368
|
-
exports.UpdateTrafficPolicy$ = UpdateTrafficPolicy$;
|
|
3369
1276
|
exports.UpdateTrafficPolicyCommand = UpdateTrafficPolicyCommand;
|
|
3370
|
-
exports.UpdateTrafficPolicyRequest$ = UpdateTrafficPolicyRequest$;
|
|
3371
|
-
exports.UpdateTrafficPolicyResponse$ = UpdateTrafficPolicyResponse$;
|
|
3372
|
-
exports.ValidationException = ValidationException;
|
|
3373
|
-
exports.ValidationException$ = ValidationException$;
|
|
3374
1277
|
exports.paginateListAddonInstances = paginateListAddonInstances;
|
|
3375
1278
|
exports.paginateListAddonSubscriptions = paginateListAddonSubscriptions;
|
|
3376
1279
|
exports.paginateListAddressListImportJobs = paginateListAddressListImportJobs;
|
|
@@ -3383,3 +1286,15 @@ exports.paginateListMembersOfAddressList = paginateListMembersOfAddressList;
|
|
|
3383
1286
|
exports.paginateListRelays = paginateListRelays;
|
|
3384
1287
|
exports.paginateListRuleSets = paginateListRuleSets;
|
|
3385
1288
|
exports.paginateListTrafficPolicies = paginateListTrafficPolicies;
|
|
1289
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1290
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1291
|
+
enumerable: true,
|
|
1292
|
+
get: function () { return schemas_0[k]; }
|
|
1293
|
+
});
|
|
1294
|
+
});
|
|
1295
|
+
Object.keys(errors).forEach(function (k) {
|
|
1296
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1297
|
+
enumerable: true,
|
|
1298
|
+
get: function () { return errors[k]; }
|
|
1299
|
+
});
|
|
1300
|
+
});
|