@aws-sdk/client-health 3.986.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 +33 -611
- package/dist-cjs/models/HealthServiceException.js +12 -0
- package/dist-cjs/models/errors.js +43 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +527 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +36 -30
- package/dist-types/schemas/schemas_0.d.ts +11 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -4
- 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 HealthServiceException = require('./models/HealthServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,537 +113,6 @@ class HealthClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class HealthServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, HealthServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class InvalidPaginationToken extends HealthServiceException {
|
|
121
|
-
name = "InvalidPaginationToken";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "InvalidPaginationToken",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, InvalidPaginationToken.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class UnsupportedLocale extends HealthServiceException {
|
|
133
|
-
name = "UnsupportedLocale";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "UnsupportedLocale",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, UnsupportedLocale.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ConcurrentModificationException extends HealthServiceException {
|
|
145
|
-
name = "ConcurrentModificationException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ConcurrentModificationException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
const _AE = "AffectedEntity";
|
|
158
|
-
const _AEA = "AccountEntityAggregate";
|
|
159
|
-
const _AEAL = "AccountEntityAggregatesList";
|
|
160
|
-
const _CME = "ConcurrentModificationException";
|
|
161
|
-
const _DAAFO = "DescribeAffectedAccountsForOrganization";
|
|
162
|
-
const _DAAFOR = "DescribeAffectedAccountsForOrganizationRequest";
|
|
163
|
-
const _DAAFORe = "DescribeAffectedAccountsForOrganizationResponse";
|
|
164
|
-
const _DAE = "DescribeAffectedEntities";
|
|
165
|
-
const _DAEFO = "DescribeAffectedEntitiesForOrganization";
|
|
166
|
-
const _DAEFOFS = "DescribeAffectedEntitiesForOrganizationFailedSet";
|
|
167
|
-
const _DAEFOR = "DescribeAffectedEntitiesForOrganizationRequest";
|
|
168
|
-
const _DAEFORe = "DescribeAffectedEntitiesForOrganizationResponse";
|
|
169
|
-
const _DAER = "DescribeAffectedEntitiesRequest";
|
|
170
|
-
const _DAERe = "DescribeAffectedEntitiesResponse";
|
|
171
|
-
const _DE = "DescribeEvents";
|
|
172
|
-
const _DEA = "DescribeEntityAggregates";
|
|
173
|
-
const _DEAFO = "DescribeEntityAggregatesForOrganization";
|
|
174
|
-
const _DEAFOR = "DescribeEntityAggregatesForOrganizationRequest";
|
|
175
|
-
const _DEAFORe = "DescribeEntityAggregatesForOrganizationResponse";
|
|
176
|
-
const _DEAR = "DescribeEntityAggregatesRequest";
|
|
177
|
-
const _DEARe = "DescribeEntityAggregatesResponse";
|
|
178
|
-
const _DEARes = "DescribeEventAggregatesRequest";
|
|
179
|
-
const _DEAResc = "DescribeEventAggregatesResponse";
|
|
180
|
-
const _DEAe = "DescribeEventAggregates";
|
|
181
|
-
const _DED = "DescribeEventDetails";
|
|
182
|
-
const _DEDFO = "DescribeEventDetailsForOrganization";
|
|
183
|
-
const _DEDFOFS = "DescribeEventDetailsForOrganizationFailedSet";
|
|
184
|
-
const _DEDFOR = "DescribeEventDetailsForOrganizationRequest";
|
|
185
|
-
const _DEDFORe = "DescribeEventDetailsForOrganizationResponse";
|
|
186
|
-
const _DEDFOSS = "DescribeEventDetailsForOrganizationSuccessfulSet";
|
|
187
|
-
const _DEDFS = "DescribeEventDetailsFailedSet";
|
|
188
|
-
const _DEDR = "DescribeEventDetailsRequest";
|
|
189
|
-
const _DEDRe = "DescribeEventDetailsResponse";
|
|
190
|
-
const _DEDSS = "DescribeEventDetailsSuccessfulSet";
|
|
191
|
-
const _DEFO = "DescribeEventsForOrganization";
|
|
192
|
-
const _DEFOR = "DescribeEventsForOrganizationRequest";
|
|
193
|
-
const _DEFORe = "DescribeEventsForOrganizationResponse";
|
|
194
|
-
const _DER = "DescribeEventsRequest";
|
|
195
|
-
const _DERe = "DescribeEventsResponse";
|
|
196
|
-
const _DET = "DescribeEventTypes";
|
|
197
|
-
const _DETR = "DescribeEventTypesRequest";
|
|
198
|
-
const _DETRe = "DescribeEventTypesResponse";
|
|
199
|
-
const _DHSAFO = "DisableHealthServiceAccessForOrganization";
|
|
200
|
-
const _DHSSFO = "DescribeHealthServiceStatusForOrganization";
|
|
201
|
-
const _DHSSFOR = "DescribeHealthServiceStatusForOrganizationResponse";
|
|
202
|
-
const _DTR = "DateTimeRange";
|
|
203
|
-
const _E = "Event";
|
|
204
|
-
const _EA = "EntityAggregate";
|
|
205
|
-
const _EAF = "EntityAccountFilter";
|
|
206
|
-
const _EAFv = "EventAccountFilter";
|
|
207
|
-
const _EAL = "EntityAggregateList";
|
|
208
|
-
const _EALv = "EventAggregateList";
|
|
209
|
-
const _EAv = "EventAggregate";
|
|
210
|
-
const _ED = "EventDescription";
|
|
211
|
-
const _EDEI = "EventDetailsErrorItem";
|
|
212
|
-
const _EDv = "EventDetails";
|
|
213
|
-
const _EF = "EntityFilter";
|
|
214
|
-
const _EFv = "EventFilter";
|
|
215
|
-
const _EHSAFO = "EnableHealthServiceAccessForOrganization";
|
|
216
|
-
const _EL = "EntityList";
|
|
217
|
-
const _ELv = "EventList";
|
|
218
|
-
const _ET = "EventType";
|
|
219
|
-
const _ETF = "EventTypeFilter";
|
|
220
|
-
const _ETL = "EventTypeList";
|
|
221
|
-
const _IPT = "InvalidPaginationToken";
|
|
222
|
-
const _OAEEI = "OrganizationAffectedEntitiesErrorItem";
|
|
223
|
-
const _OE = "OrganizationEvent";
|
|
224
|
-
const _OEA = "OrganizationEntityAggregate";
|
|
225
|
-
const _OEAFL = "OrganizationEntityAccountFiltersList";
|
|
226
|
-
const _OEAL = "OrganizationEntityAggregatesList";
|
|
227
|
-
const _OED = "OrganizationEventDetails";
|
|
228
|
-
const _OEDEI = "OrganizationEventDetailsErrorItem";
|
|
229
|
-
const _OEDFL = "OrganizationEventDetailFiltersList";
|
|
230
|
-
const _OEF = "OrganizationEventFilter";
|
|
231
|
-
const _OEFL = "OrganizationEntityFiltersList";
|
|
232
|
-
const _OEL = "OrganizationEventList";
|
|
233
|
-
const _UL = "UnsupportedLocale";
|
|
234
|
-
const _a = "arn";
|
|
235
|
-
const _aA = "affectedAccounts";
|
|
236
|
-
const _aAI = "awsAccountId";
|
|
237
|
-
const _aAIw = "awsAccountIds";
|
|
238
|
-
const _aF = "aggregateField";
|
|
239
|
-
const _aI = "accountId";
|
|
240
|
-
const _aV = "aggregateValue";
|
|
241
|
-
const _aZ = "availabilityZone";
|
|
242
|
-
const _aZv = "availabilityZones";
|
|
243
|
-
const _ac = "actionability";
|
|
244
|
-
const _acc = "accounts";
|
|
245
|
-
const _act = "actionabilities";
|
|
246
|
-
const _c = "count";
|
|
247
|
-
const _ca = "category";
|
|
248
|
-
const _cl = "client";
|
|
249
|
-
const _co = "code";
|
|
250
|
-
const _dTRL = "dateTimeRangeList";
|
|
251
|
-
const _e = "error";
|
|
252
|
-
const _eA = "entityArn";
|
|
253
|
-
const _eAn = "entityAggregates";
|
|
254
|
-
const _eAnt = "entityArns";
|
|
255
|
-
const _eAv = "eventArn";
|
|
256
|
-
const _eAve = "eventArns";
|
|
257
|
-
const _eAven = "eventAggregates";
|
|
258
|
-
const _eD = "eventDescription";
|
|
259
|
-
const _eM = "entityMetadata";
|
|
260
|
-
const _eMr = "errorMessage";
|
|
261
|
-
const _eMv = "eventMetadata";
|
|
262
|
-
const _eN = "errorName";
|
|
263
|
-
const _eSC = "eventScopeCode";
|
|
264
|
-
const _eSCv = "eventStatusCodes";
|
|
265
|
-
const _eT = "eventTypes";
|
|
266
|
-
const _eTC = "eventTypeCode";
|
|
267
|
-
const _eTCv = "eventTypeCategory";
|
|
268
|
-
const _eTCve = "eventTypeCodes";
|
|
269
|
-
const _eTCven = "eventTypeCategories";
|
|
270
|
-
const _eTn = "endTime";
|
|
271
|
-
const _eTnd = "endTimes";
|
|
272
|
-
const _eU = "entityUrl";
|
|
273
|
-
const _eV = "entityValue";
|
|
274
|
-
const _eVn = "entityValues";
|
|
275
|
-
const _en = "entities";
|
|
276
|
-
const _ev = "events";
|
|
277
|
-
const _eve = "event";
|
|
278
|
-
const _f = "from";
|
|
279
|
-
const _fS = "failedSet";
|
|
280
|
-
const _fi = "filter";
|
|
281
|
-
const _hSASFO = "healthServiceAccessStatusForOrganization";
|
|
282
|
-
const _l = "locale";
|
|
283
|
-
const _lD = "latestDescription";
|
|
284
|
-
const _lUT = "lastUpdatedTime";
|
|
285
|
-
const _lUTa = "lastUpdatedTimes";
|
|
286
|
-
const _m = "message";
|
|
287
|
-
const _mR = "maxResults";
|
|
288
|
-
const _nT = "nextToken";
|
|
289
|
-
const _oEA = "organizationEntityAggregates";
|
|
290
|
-
const _oEAF = "organizationEntityAccountFilters";
|
|
291
|
-
const _oEDF = "organizationEventDetailFilters";
|
|
292
|
-
const _oEF = "organizationEntityFilters";
|
|
293
|
-
const _p = "personas";
|
|
294
|
-
const _r = "region";
|
|
295
|
-
const _re = "regions";
|
|
296
|
-
const _s = "statuses";
|
|
297
|
-
const _sC = "statusCode";
|
|
298
|
-
const _sCt = "statusCodes";
|
|
299
|
-
const _sS = "successfulSet";
|
|
300
|
-
const _sT = "startTime";
|
|
301
|
-
const _sTt = "startTimes";
|
|
302
|
-
const _se = "service";
|
|
303
|
-
const _ser = "services";
|
|
304
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.health";
|
|
305
|
-
const _t = "tags";
|
|
306
|
-
const _tF = "tagFilter";
|
|
307
|
-
const _to = "to";
|
|
308
|
-
const n0 = "com.amazonaws.health";
|
|
309
|
-
var AccountEntityAggregate$ = [3, n0, _AEA,
|
|
310
|
-
0,
|
|
311
|
-
[_aI, _c, _s],
|
|
312
|
-
[0, 1, 128 | 1]
|
|
313
|
-
];
|
|
314
|
-
var AffectedEntity$ = [3, n0, _AE,
|
|
315
|
-
0,
|
|
316
|
-
[_eA, _eAv, _eV, _eU, _aAI, _lUT, _sC, _t, _eM],
|
|
317
|
-
[0, 0, 0, 0, 0, 4, 0, 128 | 0, 128 | 0]
|
|
318
|
-
];
|
|
319
|
-
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
320
|
-
{ [_e]: _cl },
|
|
321
|
-
[_m],
|
|
322
|
-
[0]
|
|
323
|
-
];
|
|
324
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
325
|
-
var DateTimeRange$ = [3, n0, _DTR,
|
|
326
|
-
0,
|
|
327
|
-
[_f, _to],
|
|
328
|
-
[4, 4]
|
|
329
|
-
];
|
|
330
|
-
var DescribeAffectedAccountsForOrganizationRequest$ = [3, n0, _DAAFOR,
|
|
331
|
-
0,
|
|
332
|
-
[_eAv, _nT, _mR],
|
|
333
|
-
[0, 0, 1], 1
|
|
334
|
-
];
|
|
335
|
-
var DescribeAffectedAccountsForOrganizationResponse$ = [3, n0, _DAAFORe,
|
|
336
|
-
0,
|
|
337
|
-
[_aA, _eSC, _nT],
|
|
338
|
-
[64 | 0, 0, 0]
|
|
339
|
-
];
|
|
340
|
-
var DescribeAffectedEntitiesForOrganizationRequest$ = [3, n0, _DAEFOR,
|
|
341
|
-
0,
|
|
342
|
-
[_oEF, _l, _nT, _mR, _oEAF],
|
|
343
|
-
[() => OrganizationEntityFiltersList, 0, 0, 1, () => OrganizationEntityAccountFiltersList]
|
|
344
|
-
];
|
|
345
|
-
var DescribeAffectedEntitiesForOrganizationResponse$ = [3, n0, _DAEFORe,
|
|
346
|
-
0,
|
|
347
|
-
[_en, _fS, _nT],
|
|
348
|
-
[() => EntityList, () => DescribeAffectedEntitiesForOrganizationFailedSet, 0]
|
|
349
|
-
];
|
|
350
|
-
var DescribeAffectedEntitiesRequest$ = [3, n0, _DAER,
|
|
351
|
-
0,
|
|
352
|
-
[_fi, _l, _nT, _mR],
|
|
353
|
-
[() => EntityFilter$, 0, 0, 1], 1
|
|
354
|
-
];
|
|
355
|
-
var DescribeAffectedEntitiesResponse$ = [3, n0, _DAERe,
|
|
356
|
-
0,
|
|
357
|
-
[_en, _nT],
|
|
358
|
-
[() => EntityList, 0]
|
|
359
|
-
];
|
|
360
|
-
var DescribeEntityAggregatesForOrganizationRequest$ = [3, n0, _DEAFOR,
|
|
361
|
-
0,
|
|
362
|
-
[_eAve, _aAIw],
|
|
363
|
-
[64 | 0, 64 | 0], 1
|
|
364
|
-
];
|
|
365
|
-
var DescribeEntityAggregatesForOrganizationResponse$ = [3, n0, _DEAFORe,
|
|
366
|
-
0,
|
|
367
|
-
[_oEA],
|
|
368
|
-
[() => OrganizationEntityAggregatesList]
|
|
369
|
-
];
|
|
370
|
-
var DescribeEntityAggregatesRequest$ = [3, n0, _DEAR,
|
|
371
|
-
0,
|
|
372
|
-
[_eAve],
|
|
373
|
-
[64 | 0]
|
|
374
|
-
];
|
|
375
|
-
var DescribeEntityAggregatesResponse$ = [3, n0, _DEARe,
|
|
376
|
-
0,
|
|
377
|
-
[_eAn],
|
|
378
|
-
[() => EntityAggregateList]
|
|
379
|
-
];
|
|
380
|
-
var DescribeEventAggregatesRequest$ = [3, n0, _DEARes,
|
|
381
|
-
0,
|
|
382
|
-
[_aF, _fi, _mR, _nT],
|
|
383
|
-
[0, () => EventFilter$, 1, 0], 1
|
|
384
|
-
];
|
|
385
|
-
var DescribeEventAggregatesResponse$ = [3, n0, _DEAResc,
|
|
386
|
-
0,
|
|
387
|
-
[_eAven, _nT],
|
|
388
|
-
[() => EventAggregateList, 0]
|
|
389
|
-
];
|
|
390
|
-
var DescribeEventDetailsForOrganizationRequest$ = [3, n0, _DEDFOR,
|
|
391
|
-
0,
|
|
392
|
-
[_oEDF, _l],
|
|
393
|
-
[() => OrganizationEventDetailFiltersList, 0], 1
|
|
394
|
-
];
|
|
395
|
-
var DescribeEventDetailsForOrganizationResponse$ = [3, n0, _DEDFORe,
|
|
396
|
-
0,
|
|
397
|
-
[_sS, _fS],
|
|
398
|
-
[() => DescribeEventDetailsForOrganizationSuccessfulSet, () => DescribeEventDetailsForOrganizationFailedSet]
|
|
399
|
-
];
|
|
400
|
-
var DescribeEventDetailsRequest$ = [3, n0, _DEDR,
|
|
401
|
-
0,
|
|
402
|
-
[_eAve, _l],
|
|
403
|
-
[64 | 0, 0], 1
|
|
404
|
-
];
|
|
405
|
-
var DescribeEventDetailsResponse$ = [3, n0, _DEDRe,
|
|
406
|
-
0,
|
|
407
|
-
[_sS, _fS],
|
|
408
|
-
[() => DescribeEventDetailsSuccessfulSet, () => DescribeEventDetailsFailedSet]
|
|
409
|
-
];
|
|
410
|
-
var DescribeEventsForOrganizationRequest$ = [3, n0, _DEFOR,
|
|
411
|
-
0,
|
|
412
|
-
[_fi, _nT, _mR, _l],
|
|
413
|
-
[() => OrganizationEventFilter$, 0, 1, 0]
|
|
414
|
-
];
|
|
415
|
-
var DescribeEventsForOrganizationResponse$ = [3, n0, _DEFORe,
|
|
416
|
-
0,
|
|
417
|
-
[_ev, _nT],
|
|
418
|
-
[() => OrganizationEventList, 0]
|
|
419
|
-
];
|
|
420
|
-
var DescribeEventsRequest$ = [3, n0, _DER,
|
|
421
|
-
0,
|
|
422
|
-
[_fi, _nT, _mR, _l],
|
|
423
|
-
[() => EventFilter$, 0, 1, 0]
|
|
424
|
-
];
|
|
425
|
-
var DescribeEventsResponse$ = [3, n0, _DERe,
|
|
426
|
-
0,
|
|
427
|
-
[_ev, _nT],
|
|
428
|
-
[() => EventList, 0]
|
|
429
|
-
];
|
|
430
|
-
var DescribeEventTypesRequest$ = [3, n0, _DETR,
|
|
431
|
-
0,
|
|
432
|
-
[_fi, _l, _nT, _mR],
|
|
433
|
-
[() => EventTypeFilter$, 0, 0, 1]
|
|
434
|
-
];
|
|
435
|
-
var DescribeEventTypesResponse$ = [3, n0, _DETRe,
|
|
436
|
-
0,
|
|
437
|
-
[_eT, _nT],
|
|
438
|
-
[() => EventTypeList, 0]
|
|
439
|
-
];
|
|
440
|
-
var DescribeHealthServiceStatusForOrganizationResponse$ = [3, n0, _DHSSFOR,
|
|
441
|
-
0,
|
|
442
|
-
[_hSASFO],
|
|
443
|
-
[0]
|
|
444
|
-
];
|
|
445
|
-
var EntityAccountFilter$ = [3, n0, _EAF,
|
|
446
|
-
0,
|
|
447
|
-
[_eAv, _aAI, _sCt],
|
|
448
|
-
[0, 0, 64 | 0], 1
|
|
449
|
-
];
|
|
450
|
-
var EntityAggregate$ = [3, n0, _EA,
|
|
451
|
-
0,
|
|
452
|
-
[_eAv, _c, _s],
|
|
453
|
-
[0, 1, 128 | 1]
|
|
454
|
-
];
|
|
455
|
-
var EntityFilter$ = [3, n0, _EF,
|
|
456
|
-
0,
|
|
457
|
-
[_eAve, _eAnt, _eVn, _lUTa, _t, _sCt],
|
|
458
|
-
[64 | 0, 64 | 0, 64 | 0, () => dateTimeRangeList, [1, n0, _tF, 0, 128 | 0], 64 | 0], 1
|
|
459
|
-
];
|
|
460
|
-
var Event$ = [3, n0, _E,
|
|
461
|
-
0,
|
|
462
|
-
[_a, _se, _eTC, _eTCv, _r, _aZ, _sT, _eTn, _lUT, _sC, _eSC, _ac, _p],
|
|
463
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 64 | 0]
|
|
464
|
-
];
|
|
465
|
-
var EventAccountFilter$ = [3, n0, _EAFv,
|
|
466
|
-
0,
|
|
467
|
-
[_eAv, _aAI],
|
|
468
|
-
[0, 0], 1
|
|
469
|
-
];
|
|
470
|
-
var EventAggregate$ = [3, n0, _EAv,
|
|
471
|
-
0,
|
|
472
|
-
[_aV, _c],
|
|
473
|
-
[0, 1]
|
|
474
|
-
];
|
|
475
|
-
var EventDescription$ = [3, n0, _ED,
|
|
476
|
-
0,
|
|
477
|
-
[_lD],
|
|
478
|
-
[0]
|
|
479
|
-
];
|
|
480
|
-
var EventDetails$ = [3, n0, _EDv,
|
|
481
|
-
0,
|
|
482
|
-
[_eve, _eD, _eMv],
|
|
483
|
-
[() => Event$, () => EventDescription$, 128 | 0]
|
|
484
|
-
];
|
|
485
|
-
var EventDetailsErrorItem$ = [3, n0, _EDEI,
|
|
486
|
-
0,
|
|
487
|
-
[_eAv, _eN, _eMr],
|
|
488
|
-
[0, 0, 0]
|
|
489
|
-
];
|
|
490
|
-
var EventFilter$ = [3, n0, _EFv,
|
|
491
|
-
0,
|
|
492
|
-
[_act, _eAve, _eTCve, _ser, _re, _aZv, _sTt, _eTnd, _lUTa, _eAnt, _eVn, _eTCven, _t, _eSCv, _p],
|
|
493
|
-
[64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, () => dateTimeRangeList, () => dateTimeRangeList, () => dateTimeRangeList, 64 | 0, 64 | 0, 64 | 0, [1, n0, _tF, 0, 128 | 0], 64 | 0, 64 | 0]
|
|
494
|
-
];
|
|
495
|
-
var EventType$ = [3, n0, _ET,
|
|
496
|
-
0,
|
|
497
|
-
[_se, _co, _ca, _ac, _p],
|
|
498
|
-
[0, 0, 0, 0, 64 | 0]
|
|
499
|
-
];
|
|
500
|
-
var EventTypeFilter$ = [3, n0, _ETF,
|
|
501
|
-
0,
|
|
502
|
-
[_eTCve, _ser, _eTCven, _act, _p],
|
|
503
|
-
[64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
504
|
-
];
|
|
505
|
-
var InvalidPaginationToken$ = [-3, n0, _IPT,
|
|
506
|
-
{ [_e]: _cl },
|
|
507
|
-
[_m],
|
|
508
|
-
[0]
|
|
509
|
-
];
|
|
510
|
-
schema.TypeRegistry.for(n0).registerError(InvalidPaginationToken$, InvalidPaginationToken);
|
|
511
|
-
var OrganizationAffectedEntitiesErrorItem$ = [3, n0, _OAEEI,
|
|
512
|
-
0,
|
|
513
|
-
[_aAI, _eAv, _eN, _eMr],
|
|
514
|
-
[0, 0, 0, 0]
|
|
515
|
-
];
|
|
516
|
-
var OrganizationEntityAggregate$ = [3, n0, _OEA,
|
|
517
|
-
0,
|
|
518
|
-
[_eAv, _c, _s, _acc],
|
|
519
|
-
[0, 1, 128 | 1, () => AccountEntityAggregatesList]
|
|
520
|
-
];
|
|
521
|
-
var OrganizationEvent$ = [3, n0, _OE,
|
|
522
|
-
0,
|
|
523
|
-
[_a, _se, _eTC, _eTCv, _eSC, _r, _sT, _eTn, _lUT, _sC, _ac, _p],
|
|
524
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 64 | 0]
|
|
525
|
-
];
|
|
526
|
-
var OrganizationEventDetails$ = [3, n0, _OED,
|
|
527
|
-
0,
|
|
528
|
-
[_aAI, _eve, _eD, _eMv],
|
|
529
|
-
[0, () => Event$, () => EventDescription$, 128 | 0]
|
|
530
|
-
];
|
|
531
|
-
var OrganizationEventDetailsErrorItem$ = [3, n0, _OEDEI,
|
|
532
|
-
0,
|
|
533
|
-
[_aAI, _eAv, _eN, _eMr],
|
|
534
|
-
[0, 0, 0, 0]
|
|
535
|
-
];
|
|
536
|
-
var OrganizationEventFilter$ = [3, n0, _OEF,
|
|
537
|
-
0,
|
|
538
|
-
[_act, _eTCve, _aAIw, _ser, _re, _sT, _eTn, _lUT, _eAnt, _eVn, _eTCven, _eSCv, _p],
|
|
539
|
-
[64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, () => DateTimeRange$, () => DateTimeRange$, () => DateTimeRange$, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
540
|
-
];
|
|
541
|
-
var UnsupportedLocale$ = [-3, n0, _UL,
|
|
542
|
-
{ [_e]: _cl },
|
|
543
|
-
[_m],
|
|
544
|
-
[0]
|
|
545
|
-
];
|
|
546
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedLocale$, UnsupportedLocale);
|
|
547
|
-
var __Unit = "unit";
|
|
548
|
-
var HealthServiceException$ = [-3, _sm, "HealthServiceException", 0, [], []];
|
|
549
|
-
schema.TypeRegistry.for(_sm).registerError(HealthServiceException$, HealthServiceException);
|
|
550
|
-
var AccountEntityAggregatesList = [1, n0, _AEAL,
|
|
551
|
-
0, () => AccountEntityAggregate$
|
|
552
|
-
];
|
|
553
|
-
var dateTimeRangeList = [1, n0, _dTRL,
|
|
554
|
-
0, () => DateTimeRange$
|
|
555
|
-
];
|
|
556
|
-
var DescribeAffectedEntitiesForOrganizationFailedSet = [1, n0, _DAEFOFS,
|
|
557
|
-
0, () => OrganizationAffectedEntitiesErrorItem$
|
|
558
|
-
];
|
|
559
|
-
var DescribeEventDetailsFailedSet = [1, n0, _DEDFS,
|
|
560
|
-
0, () => EventDetailsErrorItem$
|
|
561
|
-
];
|
|
562
|
-
var DescribeEventDetailsForOrganizationFailedSet = [1, n0, _DEDFOFS,
|
|
563
|
-
0, () => OrganizationEventDetailsErrorItem$
|
|
564
|
-
];
|
|
565
|
-
var DescribeEventDetailsForOrganizationSuccessfulSet = [1, n0, _DEDFOSS,
|
|
566
|
-
0, () => OrganizationEventDetails$
|
|
567
|
-
];
|
|
568
|
-
var DescribeEventDetailsSuccessfulSet = [1, n0, _DEDSS,
|
|
569
|
-
0, () => EventDetails$
|
|
570
|
-
];
|
|
571
|
-
var EntityAggregateList = [1, n0, _EAL,
|
|
572
|
-
0, () => EntityAggregate$
|
|
573
|
-
];
|
|
574
|
-
var EntityList = [1, n0, _EL,
|
|
575
|
-
0, () => AffectedEntity$
|
|
576
|
-
];
|
|
577
|
-
var EventAggregateList = [1, n0, _EALv,
|
|
578
|
-
0, () => EventAggregate$
|
|
579
|
-
];
|
|
580
|
-
var EventList = [1, n0, _ELv,
|
|
581
|
-
0, () => Event$
|
|
582
|
-
];
|
|
583
|
-
var EventTypeList = [1, n0, _ETL,
|
|
584
|
-
0, () => EventType$
|
|
585
|
-
];
|
|
586
|
-
var OrganizationEntityAccountFiltersList = [1, n0, _OEAFL,
|
|
587
|
-
0, () => EntityAccountFilter$
|
|
588
|
-
];
|
|
589
|
-
var OrganizationEntityAggregatesList = [1, n0, _OEAL,
|
|
590
|
-
0, () => OrganizationEntityAggregate$
|
|
591
|
-
];
|
|
592
|
-
var OrganizationEntityFiltersList = [1, n0, _OEFL,
|
|
593
|
-
0, () => EventAccountFilter$
|
|
594
|
-
];
|
|
595
|
-
var OrganizationEventDetailFiltersList = [1, n0, _OEDFL,
|
|
596
|
-
0, () => EventAccountFilter$
|
|
597
|
-
];
|
|
598
|
-
var OrganizationEventList = [1, n0, _OEL,
|
|
599
|
-
0, () => OrganizationEvent$
|
|
600
|
-
];
|
|
601
|
-
var DescribeAffectedAccountsForOrganization$ = [9, n0, _DAAFO,
|
|
602
|
-
2, () => DescribeAffectedAccountsForOrganizationRequest$, () => DescribeAffectedAccountsForOrganizationResponse$
|
|
603
|
-
];
|
|
604
|
-
var DescribeAffectedEntities$ = [9, n0, _DAE,
|
|
605
|
-
2, () => DescribeAffectedEntitiesRequest$, () => DescribeAffectedEntitiesResponse$
|
|
606
|
-
];
|
|
607
|
-
var DescribeAffectedEntitiesForOrganization$ = [9, n0, _DAEFO,
|
|
608
|
-
2, () => DescribeAffectedEntitiesForOrganizationRequest$, () => DescribeAffectedEntitiesForOrganizationResponse$
|
|
609
|
-
];
|
|
610
|
-
var DescribeEntityAggregates$ = [9, n0, _DEA,
|
|
611
|
-
2, () => DescribeEntityAggregatesRequest$, () => DescribeEntityAggregatesResponse$
|
|
612
|
-
];
|
|
613
|
-
var DescribeEntityAggregatesForOrganization$ = [9, n0, _DEAFO,
|
|
614
|
-
2, () => DescribeEntityAggregatesForOrganizationRequest$, () => DescribeEntityAggregatesForOrganizationResponse$
|
|
615
|
-
];
|
|
616
|
-
var DescribeEventAggregates$ = [9, n0, _DEAe,
|
|
617
|
-
2, () => DescribeEventAggregatesRequest$, () => DescribeEventAggregatesResponse$
|
|
618
|
-
];
|
|
619
|
-
var DescribeEventDetails$ = [9, n0, _DED,
|
|
620
|
-
2, () => DescribeEventDetailsRequest$, () => DescribeEventDetailsResponse$
|
|
621
|
-
];
|
|
622
|
-
var DescribeEventDetailsForOrganization$ = [9, n0, _DEDFO,
|
|
623
|
-
2, () => DescribeEventDetailsForOrganizationRequest$, () => DescribeEventDetailsForOrganizationResponse$
|
|
624
|
-
];
|
|
625
|
-
var DescribeEvents$ = [9, n0, _DE,
|
|
626
|
-
2, () => DescribeEventsRequest$, () => DescribeEventsResponse$
|
|
627
|
-
];
|
|
628
|
-
var DescribeEventsForOrganization$ = [9, n0, _DEFO,
|
|
629
|
-
2, () => DescribeEventsForOrganizationRequest$, () => DescribeEventsForOrganizationResponse$
|
|
630
|
-
];
|
|
631
|
-
var DescribeEventTypes$ = [9, n0, _DET,
|
|
632
|
-
2, () => DescribeEventTypesRequest$, () => DescribeEventTypesResponse$
|
|
633
|
-
];
|
|
634
|
-
var DescribeHealthServiceStatusForOrganization$ = [9, n0, _DHSSFO,
|
|
635
|
-
2, () => __Unit, () => DescribeHealthServiceStatusForOrganizationResponse$
|
|
636
|
-
];
|
|
637
|
-
var DisableHealthServiceAccessForOrganization$ = [9, n0, _DHSAFO,
|
|
638
|
-
2, () => __Unit, () => __Unit
|
|
639
|
-
];
|
|
640
|
-
var EnableHealthServiceAccessForOrganization$ = [9, n0, _EHSAFO,
|
|
641
|
-
2, () => __Unit, () => __Unit
|
|
642
|
-
];
|
|
643
|
-
|
|
644
116
|
class DescribeAffectedAccountsForOrganizationCommand extends smithyClient.Command
|
|
645
117
|
.classBuilder()
|
|
646
118
|
.ep(commonParams)
|
|
@@ -649,7 +121,7 @@ class DescribeAffectedAccountsForOrganizationCommand extends smithyClient.Comman
|
|
|
649
121
|
})
|
|
650
122
|
.s("AWSHealth_20160804", "DescribeAffectedAccountsForOrganization", {})
|
|
651
123
|
.n("HealthClient", "DescribeAffectedAccountsForOrganizationCommand")
|
|
652
|
-
.sc(DescribeAffectedAccountsForOrganization$)
|
|
124
|
+
.sc(schemas_0.DescribeAffectedAccountsForOrganization$)
|
|
653
125
|
.build() {
|
|
654
126
|
}
|
|
655
127
|
|
|
@@ -661,7 +133,7 @@ class DescribeAffectedEntitiesCommand extends smithyClient.Command
|
|
|
661
133
|
})
|
|
662
134
|
.s("AWSHealth_20160804", "DescribeAffectedEntities", {})
|
|
663
135
|
.n("HealthClient", "DescribeAffectedEntitiesCommand")
|
|
664
|
-
.sc(DescribeAffectedEntities$)
|
|
136
|
+
.sc(schemas_0.DescribeAffectedEntities$)
|
|
665
137
|
.build() {
|
|
666
138
|
}
|
|
667
139
|
|
|
@@ -673,7 +145,7 @@ class DescribeAffectedEntitiesForOrganizationCommand extends smithyClient.Comman
|
|
|
673
145
|
})
|
|
674
146
|
.s("AWSHealth_20160804", "DescribeAffectedEntitiesForOrganization", {})
|
|
675
147
|
.n("HealthClient", "DescribeAffectedEntitiesForOrganizationCommand")
|
|
676
|
-
.sc(DescribeAffectedEntitiesForOrganization$)
|
|
148
|
+
.sc(schemas_0.DescribeAffectedEntitiesForOrganization$)
|
|
677
149
|
.build() {
|
|
678
150
|
}
|
|
679
151
|
|
|
@@ -685,7 +157,7 @@ class DescribeEntityAggregatesCommand extends smithyClient.Command
|
|
|
685
157
|
})
|
|
686
158
|
.s("AWSHealth_20160804", "DescribeEntityAggregates", {})
|
|
687
159
|
.n("HealthClient", "DescribeEntityAggregatesCommand")
|
|
688
|
-
.sc(DescribeEntityAggregates$)
|
|
160
|
+
.sc(schemas_0.DescribeEntityAggregates$)
|
|
689
161
|
.build() {
|
|
690
162
|
}
|
|
691
163
|
|
|
@@ -697,7 +169,7 @@ class DescribeEntityAggregatesForOrganizationCommand extends smithyClient.Comman
|
|
|
697
169
|
})
|
|
698
170
|
.s("AWSHealth_20160804", "DescribeEntityAggregatesForOrganization", {})
|
|
699
171
|
.n("HealthClient", "DescribeEntityAggregatesForOrganizationCommand")
|
|
700
|
-
.sc(DescribeEntityAggregatesForOrganization$)
|
|
172
|
+
.sc(schemas_0.DescribeEntityAggregatesForOrganization$)
|
|
701
173
|
.build() {
|
|
702
174
|
}
|
|
703
175
|
|
|
@@ -709,7 +181,7 @@ class DescribeEventAggregatesCommand extends smithyClient.Command
|
|
|
709
181
|
})
|
|
710
182
|
.s("AWSHealth_20160804", "DescribeEventAggregates", {})
|
|
711
183
|
.n("HealthClient", "DescribeEventAggregatesCommand")
|
|
712
|
-
.sc(DescribeEventAggregates$)
|
|
184
|
+
.sc(schemas_0.DescribeEventAggregates$)
|
|
713
185
|
.build() {
|
|
714
186
|
}
|
|
715
187
|
|
|
@@ -721,7 +193,7 @@ class DescribeEventDetailsCommand extends smithyClient.Command
|
|
|
721
193
|
})
|
|
722
194
|
.s("AWSHealth_20160804", "DescribeEventDetails", {})
|
|
723
195
|
.n("HealthClient", "DescribeEventDetailsCommand")
|
|
724
|
-
.sc(DescribeEventDetails$)
|
|
196
|
+
.sc(schemas_0.DescribeEventDetails$)
|
|
725
197
|
.build() {
|
|
726
198
|
}
|
|
727
199
|
|
|
@@ -733,7 +205,7 @@ class DescribeEventDetailsForOrganizationCommand extends smithyClient.Command
|
|
|
733
205
|
})
|
|
734
206
|
.s("AWSHealth_20160804", "DescribeEventDetailsForOrganization", {})
|
|
735
207
|
.n("HealthClient", "DescribeEventDetailsForOrganizationCommand")
|
|
736
|
-
.sc(DescribeEventDetailsForOrganization$)
|
|
208
|
+
.sc(schemas_0.DescribeEventDetailsForOrganization$)
|
|
737
209
|
.build() {
|
|
738
210
|
}
|
|
739
211
|
|
|
@@ -745,7 +217,7 @@ class DescribeEventsCommand extends smithyClient.Command
|
|
|
745
217
|
})
|
|
746
218
|
.s("AWSHealth_20160804", "DescribeEvents", {})
|
|
747
219
|
.n("HealthClient", "DescribeEventsCommand")
|
|
748
|
-
.sc(DescribeEvents$)
|
|
220
|
+
.sc(schemas_0.DescribeEvents$)
|
|
749
221
|
.build() {
|
|
750
222
|
}
|
|
751
223
|
|
|
@@ -757,7 +229,7 @@ class DescribeEventsForOrganizationCommand extends smithyClient.Command
|
|
|
757
229
|
})
|
|
758
230
|
.s("AWSHealth_20160804", "DescribeEventsForOrganization", {})
|
|
759
231
|
.n("HealthClient", "DescribeEventsForOrganizationCommand")
|
|
760
|
-
.sc(DescribeEventsForOrganization$)
|
|
232
|
+
.sc(schemas_0.DescribeEventsForOrganization$)
|
|
761
233
|
.build() {
|
|
762
234
|
}
|
|
763
235
|
|
|
@@ -769,7 +241,7 @@ class DescribeEventTypesCommand extends smithyClient.Command
|
|
|
769
241
|
})
|
|
770
242
|
.s("AWSHealth_20160804", "DescribeEventTypes", {})
|
|
771
243
|
.n("HealthClient", "DescribeEventTypesCommand")
|
|
772
|
-
.sc(DescribeEventTypes$)
|
|
244
|
+
.sc(schemas_0.DescribeEventTypes$)
|
|
773
245
|
.build() {
|
|
774
246
|
}
|
|
775
247
|
|
|
@@ -781,7 +253,7 @@ class DescribeHealthServiceStatusForOrganizationCommand extends smithyClient.Com
|
|
|
781
253
|
})
|
|
782
254
|
.s("AWSHealth_20160804", "DescribeHealthServiceStatusForOrganization", {})
|
|
783
255
|
.n("HealthClient", "DescribeHealthServiceStatusForOrganizationCommand")
|
|
784
|
-
.sc(DescribeHealthServiceStatusForOrganization$)
|
|
256
|
+
.sc(schemas_0.DescribeHealthServiceStatusForOrganization$)
|
|
785
257
|
.build() {
|
|
786
258
|
}
|
|
787
259
|
|
|
@@ -793,7 +265,7 @@ class DisableHealthServiceAccessForOrganizationCommand extends smithyClient.Comm
|
|
|
793
265
|
})
|
|
794
266
|
.s("AWSHealth_20160804", "DisableHealthServiceAccessForOrganization", {})
|
|
795
267
|
.n("HealthClient", "DisableHealthServiceAccessForOrganizationCommand")
|
|
796
|
-
.sc(DisableHealthServiceAccessForOrganization$)
|
|
268
|
+
.sc(schemas_0.DisableHealthServiceAccessForOrganization$)
|
|
797
269
|
.build() {
|
|
798
270
|
}
|
|
799
271
|
|
|
@@ -805,7 +277,7 @@ class EnableHealthServiceAccessForOrganizationCommand extends smithyClient.Comma
|
|
|
805
277
|
})
|
|
806
278
|
.s("AWSHealth_20160804", "EnableHealthServiceAccessForOrganization", {})
|
|
807
279
|
.n("HealthClient", "EnableHealthServiceAccessForOrganizationCommand")
|
|
808
|
-
.sc(EnableHealthServiceAccessForOrganization$)
|
|
280
|
+
.sc(schemas_0.EnableHealthServiceAccessForOrganization$)
|
|
809
281
|
.build() {
|
|
810
282
|
}
|
|
811
283
|
|
|
@@ -907,97 +379,35 @@ Object.defineProperty(exports, "__Client", {
|
|
|
907
379
|
enumerable: true,
|
|
908
380
|
get: function () { return smithyClient.Client; }
|
|
909
381
|
});
|
|
910
|
-
exports
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
exports.DateTimeRange$ = DateTimeRange$;
|
|
915
|
-
exports.DescribeAffectedAccountsForOrganization$ = DescribeAffectedAccountsForOrganization$;
|
|
382
|
+
Object.defineProperty(exports, "HealthServiceException", {
|
|
383
|
+
enumerable: true,
|
|
384
|
+
get: function () { return HealthServiceException.HealthServiceException; }
|
|
385
|
+
});
|
|
916
386
|
exports.DescribeAffectedAccountsForOrganizationCommand = DescribeAffectedAccountsForOrganizationCommand;
|
|
917
|
-
exports.DescribeAffectedAccountsForOrganizationRequest$ = DescribeAffectedAccountsForOrganizationRequest$;
|
|
918
|
-
exports.DescribeAffectedAccountsForOrganizationResponse$ = DescribeAffectedAccountsForOrganizationResponse$;
|
|
919
|
-
exports.DescribeAffectedEntities$ = DescribeAffectedEntities$;
|
|
920
387
|
exports.DescribeAffectedEntitiesCommand = DescribeAffectedEntitiesCommand;
|
|
921
|
-
exports.DescribeAffectedEntitiesForOrganization$ = DescribeAffectedEntitiesForOrganization$;
|
|
922
388
|
exports.DescribeAffectedEntitiesForOrganizationCommand = DescribeAffectedEntitiesForOrganizationCommand;
|
|
923
|
-
exports.DescribeAffectedEntitiesForOrganizationRequest$ = DescribeAffectedEntitiesForOrganizationRequest$;
|
|
924
|
-
exports.DescribeAffectedEntitiesForOrganizationResponse$ = DescribeAffectedEntitiesForOrganizationResponse$;
|
|
925
|
-
exports.DescribeAffectedEntitiesRequest$ = DescribeAffectedEntitiesRequest$;
|
|
926
|
-
exports.DescribeAffectedEntitiesResponse$ = DescribeAffectedEntitiesResponse$;
|
|
927
|
-
exports.DescribeEntityAggregates$ = DescribeEntityAggregates$;
|
|
928
389
|
exports.DescribeEntityAggregatesCommand = DescribeEntityAggregatesCommand;
|
|
929
|
-
exports.DescribeEntityAggregatesForOrganization$ = DescribeEntityAggregatesForOrganization$;
|
|
930
390
|
exports.DescribeEntityAggregatesForOrganizationCommand = DescribeEntityAggregatesForOrganizationCommand;
|
|
931
|
-
exports.DescribeEntityAggregatesForOrganizationRequest$ = DescribeEntityAggregatesForOrganizationRequest$;
|
|
932
|
-
exports.DescribeEntityAggregatesForOrganizationResponse$ = DescribeEntityAggregatesForOrganizationResponse$;
|
|
933
|
-
exports.DescribeEntityAggregatesRequest$ = DescribeEntityAggregatesRequest$;
|
|
934
|
-
exports.DescribeEntityAggregatesResponse$ = DescribeEntityAggregatesResponse$;
|
|
935
|
-
exports.DescribeEventAggregates$ = DescribeEventAggregates$;
|
|
936
391
|
exports.DescribeEventAggregatesCommand = DescribeEventAggregatesCommand;
|
|
937
|
-
exports.DescribeEventAggregatesRequest$ = DescribeEventAggregatesRequest$;
|
|
938
|
-
exports.DescribeEventAggregatesResponse$ = DescribeEventAggregatesResponse$;
|
|
939
|
-
exports.DescribeEventDetails$ = DescribeEventDetails$;
|
|
940
392
|
exports.DescribeEventDetailsCommand = DescribeEventDetailsCommand;
|
|
941
|
-
exports.DescribeEventDetailsForOrganization$ = DescribeEventDetailsForOrganization$;
|
|
942
393
|
exports.DescribeEventDetailsForOrganizationCommand = DescribeEventDetailsForOrganizationCommand;
|
|
943
|
-
exports.DescribeEventDetailsForOrganizationRequest$ = DescribeEventDetailsForOrganizationRequest$;
|
|
944
|
-
exports.DescribeEventDetailsForOrganizationResponse$ = DescribeEventDetailsForOrganizationResponse$;
|
|
945
|
-
exports.DescribeEventDetailsRequest$ = DescribeEventDetailsRequest$;
|
|
946
|
-
exports.DescribeEventDetailsResponse$ = DescribeEventDetailsResponse$;
|
|
947
|
-
exports.DescribeEventTypes$ = DescribeEventTypes$;
|
|
948
394
|
exports.DescribeEventTypesCommand = DescribeEventTypesCommand;
|
|
949
|
-
exports.DescribeEventTypesRequest$ = DescribeEventTypesRequest$;
|
|
950
|
-
exports.DescribeEventTypesResponse$ = DescribeEventTypesResponse$;
|
|
951
|
-
exports.DescribeEvents$ = DescribeEvents$;
|
|
952
395
|
exports.DescribeEventsCommand = DescribeEventsCommand;
|
|
953
|
-
exports.DescribeEventsForOrganization$ = DescribeEventsForOrganization$;
|
|
954
396
|
exports.DescribeEventsForOrganizationCommand = DescribeEventsForOrganizationCommand;
|
|
955
|
-
exports.DescribeEventsForOrganizationRequest$ = DescribeEventsForOrganizationRequest$;
|
|
956
|
-
exports.DescribeEventsForOrganizationResponse$ = DescribeEventsForOrganizationResponse$;
|
|
957
|
-
exports.DescribeEventsRequest$ = DescribeEventsRequest$;
|
|
958
|
-
exports.DescribeEventsResponse$ = DescribeEventsResponse$;
|
|
959
|
-
exports.DescribeHealthServiceStatusForOrganization$ = DescribeHealthServiceStatusForOrganization$;
|
|
960
397
|
exports.DescribeHealthServiceStatusForOrganizationCommand = DescribeHealthServiceStatusForOrganizationCommand;
|
|
961
|
-
exports.DescribeHealthServiceStatusForOrganizationResponse$ = DescribeHealthServiceStatusForOrganizationResponse$;
|
|
962
|
-
exports.DisableHealthServiceAccessForOrganization$ = DisableHealthServiceAccessForOrganization$;
|
|
963
398
|
exports.DisableHealthServiceAccessForOrganizationCommand = DisableHealthServiceAccessForOrganizationCommand;
|
|
964
|
-
exports.EnableHealthServiceAccessForOrganization$ = EnableHealthServiceAccessForOrganization$;
|
|
965
399
|
exports.EnableHealthServiceAccessForOrganizationCommand = EnableHealthServiceAccessForOrganizationCommand;
|
|
966
|
-
exports.EntityAccountFilter$ = EntityAccountFilter$;
|
|
967
|
-
exports.EntityAggregate$ = EntityAggregate$;
|
|
968
|
-
exports.EntityFilter$ = EntityFilter$;
|
|
969
400
|
exports.EntityStatusCode = EntityStatusCode;
|
|
970
|
-
exports.Event$ = Event$;
|
|
971
|
-
exports.EventAccountFilter$ = EventAccountFilter$;
|
|
972
401
|
exports.EventActionability = EventActionability;
|
|
973
|
-
exports.EventAggregate$ = EventAggregate$;
|
|
974
402
|
exports.EventAggregateField = EventAggregateField;
|
|
975
|
-
exports.EventDescription$ = EventDescription$;
|
|
976
|
-
exports.EventDetails$ = EventDetails$;
|
|
977
|
-
exports.EventDetailsErrorItem$ = EventDetailsErrorItem$;
|
|
978
|
-
exports.EventFilter$ = EventFilter$;
|
|
979
403
|
exports.EventPersona = EventPersona;
|
|
980
404
|
exports.EventScopeCode = EventScopeCode;
|
|
981
405
|
exports.EventStatusCode = EventStatusCode;
|
|
982
|
-
exports.EventType$ = EventType$;
|
|
983
406
|
exports.EventTypeActionability = EventTypeActionability;
|
|
984
407
|
exports.EventTypeCategory = EventTypeCategory;
|
|
985
|
-
exports.EventTypeFilter$ = EventTypeFilter$;
|
|
986
408
|
exports.EventTypePersona = EventTypePersona;
|
|
987
409
|
exports.Health = Health;
|
|
988
410
|
exports.HealthClient = HealthClient;
|
|
989
|
-
exports.HealthServiceException = HealthServiceException;
|
|
990
|
-
exports.HealthServiceException$ = HealthServiceException$;
|
|
991
|
-
exports.InvalidPaginationToken = InvalidPaginationToken;
|
|
992
|
-
exports.InvalidPaginationToken$ = InvalidPaginationToken$;
|
|
993
|
-
exports.OrganizationAffectedEntitiesErrorItem$ = OrganizationAffectedEntitiesErrorItem$;
|
|
994
|
-
exports.OrganizationEntityAggregate$ = OrganizationEntityAggregate$;
|
|
995
|
-
exports.OrganizationEvent$ = OrganizationEvent$;
|
|
996
|
-
exports.OrganizationEventDetails$ = OrganizationEventDetails$;
|
|
997
|
-
exports.OrganizationEventDetailsErrorItem$ = OrganizationEventDetailsErrorItem$;
|
|
998
|
-
exports.OrganizationEventFilter$ = OrganizationEventFilter$;
|
|
999
|
-
exports.UnsupportedLocale = UnsupportedLocale;
|
|
1000
|
-
exports.UnsupportedLocale$ = UnsupportedLocale$;
|
|
1001
411
|
exports.paginateDescribeAffectedAccountsForOrganization = paginateDescribeAffectedAccountsForOrganization;
|
|
1002
412
|
exports.paginateDescribeAffectedEntities = paginateDescribeAffectedEntities;
|
|
1003
413
|
exports.paginateDescribeAffectedEntitiesForOrganization = paginateDescribeAffectedEntitiesForOrganization;
|
|
@@ -1005,3 +415,15 @@ exports.paginateDescribeEventAggregates = paginateDescribeEventAggregates;
|
|
|
1005
415
|
exports.paginateDescribeEventTypes = paginateDescribeEventTypes;
|
|
1006
416
|
exports.paginateDescribeEvents = paginateDescribeEvents;
|
|
1007
417
|
exports.paginateDescribeEventsForOrganization = paginateDescribeEventsForOrganization;
|
|
418
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
419
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
420
|
+
enumerable: true,
|
|
421
|
+
get: function () { return schemas_0[k]; }
|
|
422
|
+
});
|
|
423
|
+
});
|
|
424
|
+
Object.keys(errors).forEach(function (k) {
|
|
425
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
426
|
+
enumerable: true,
|
|
427
|
+
get: function () { return errors[k]; }
|
|
428
|
+
});
|
|
429
|
+
});
|