@aws-sdk/client-ssm-incidents 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 +50 -1293
- package/dist-cjs/models/SSMIncidentsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +117 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1025 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +52 -46
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ 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');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var SSMIncidentsServiceException = require('./models/SSMIncidentsServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,1119 +114,6 @@ class SSMIncidentsClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class SSMIncidentsServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, SSMIncidentsServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class AccessDeniedException extends SSMIncidentsServiceException {
|
|
122
|
-
name = "AccessDeniedException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
class InternalServerException extends SSMIncidentsServiceException {
|
|
134
|
-
name = "InternalServerException";
|
|
135
|
-
$fault = "server";
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "InternalServerException",
|
|
139
|
-
$fault: "server",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
class ResourceNotFoundException extends SSMIncidentsServiceException {
|
|
146
|
-
name = "ResourceNotFoundException";
|
|
147
|
-
$fault = "client";
|
|
148
|
-
resourceIdentifier;
|
|
149
|
-
resourceType;
|
|
150
|
-
constructor(opts) {
|
|
151
|
-
super({
|
|
152
|
-
name: "ResourceNotFoundException",
|
|
153
|
-
$fault: "client",
|
|
154
|
-
...opts,
|
|
155
|
-
});
|
|
156
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
157
|
-
this.resourceIdentifier = opts.resourceIdentifier;
|
|
158
|
-
this.resourceType = opts.resourceType;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
class ThrottlingException extends SSMIncidentsServiceException {
|
|
162
|
-
name = "ThrottlingException";
|
|
163
|
-
$fault = "client";
|
|
164
|
-
serviceCode;
|
|
165
|
-
quotaCode;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ThrottlingException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
173
|
-
this.serviceCode = opts.serviceCode;
|
|
174
|
-
this.quotaCode = opts.quotaCode;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class ValidationException extends SSMIncidentsServiceException {
|
|
178
|
-
name = "ValidationException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ValidationException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
class ConflictException extends SSMIncidentsServiceException {
|
|
190
|
-
name = "ConflictException";
|
|
191
|
-
$fault = "client";
|
|
192
|
-
resourceIdentifier;
|
|
193
|
-
resourceType;
|
|
194
|
-
retryAfter;
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ConflictException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
202
|
-
this.resourceIdentifier = opts.resourceIdentifier;
|
|
203
|
-
this.resourceType = opts.resourceType;
|
|
204
|
-
this.retryAfter = opts.retryAfter;
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
class ServiceQuotaExceededException extends SSMIncidentsServiceException {
|
|
208
|
-
name = "ServiceQuotaExceededException";
|
|
209
|
-
$fault = "client";
|
|
210
|
-
resourceIdentifier;
|
|
211
|
-
resourceType;
|
|
212
|
-
serviceCode;
|
|
213
|
-
quotaCode;
|
|
214
|
-
constructor(opts) {
|
|
215
|
-
super({
|
|
216
|
-
name: "ServiceQuotaExceededException",
|
|
217
|
-
$fault: "client",
|
|
218
|
-
...opts,
|
|
219
|
-
});
|
|
220
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
221
|
-
this.resourceIdentifier = opts.resourceIdentifier;
|
|
222
|
-
this.resourceType = opts.resourceType;
|
|
223
|
-
this.serviceCode = opts.serviceCode;
|
|
224
|
-
this.quotaCode = opts.quotaCode;
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
const _A = "Action";
|
|
229
|
-
const _ADE = "AccessDeniedException";
|
|
230
|
-
const _AE = "AutomationExecution";
|
|
231
|
-
const _AES = "AutomationExecutionSet";
|
|
232
|
-
const _AL = "ActionsList";
|
|
233
|
-
const _ARA = "AddRegionAction";
|
|
234
|
-
const _AVL = "AttributeValueList";
|
|
235
|
-
const _BGIF = "BatchGetIncidentFindings";
|
|
236
|
-
const _BGIFE = "BatchGetIncidentFindingsError";
|
|
237
|
-
const _BGIFEL = "BatchGetIncidentFindingsErrorList";
|
|
238
|
-
const _BGIFI = "BatchGetIncidentFindingsInput";
|
|
239
|
-
const _BGIFO = "BatchGetIncidentFindingsOutput";
|
|
240
|
-
const _C = "Condition";
|
|
241
|
-
const _CC = "ChatChannel";
|
|
242
|
-
const _CDD = "CodeDeployDeployment";
|
|
243
|
-
const _CE = "ConflictException";
|
|
244
|
-
const _CFSU = "CloudFormationStackUpdate";
|
|
245
|
-
const _CRP = "CreateResponsePlan";
|
|
246
|
-
const _CRPI = "CreateResponsePlanInput";
|
|
247
|
-
const _CRPO = "CreateResponsePlanOutput";
|
|
248
|
-
const _CRS = "CreateReplicationSet";
|
|
249
|
-
const _CRSI = "CreateReplicationSetInput";
|
|
250
|
-
const _CRSO = "CreateReplicationSetOutput";
|
|
251
|
-
const _CTE = "CreateTimelineEvent";
|
|
252
|
-
const _CTEI = "CreateTimelineEventInput";
|
|
253
|
-
const _CTEO = "CreateTimelineEventOutput";
|
|
254
|
-
const _DIR = "DeleteIncidentRecord";
|
|
255
|
-
const _DIRI = "DeleteIncidentRecordInput";
|
|
256
|
-
const _DIRO = "DeleteIncidentRecordOutput";
|
|
257
|
-
const _DRA = "DeleteRegionAction";
|
|
258
|
-
const _DRP = "DeleteResourcePolicy";
|
|
259
|
-
const _DRPI = "DeleteResourcePolicyInput";
|
|
260
|
-
const _DRPIe = "DeleteResponsePlanInput";
|
|
261
|
-
const _DRPO = "DeleteResourcePolicyOutput";
|
|
262
|
-
const _DRPOe = "DeleteResponsePlanOutput";
|
|
263
|
-
const _DRPe = "DeleteResponsePlan";
|
|
264
|
-
const _DRS = "DeleteReplicationSet";
|
|
265
|
-
const _DRSI = "DeleteReplicationSetInput";
|
|
266
|
-
const _DRSO = "DeleteReplicationSetOutput";
|
|
267
|
-
const _DSP = "DynamicSsmParameters";
|
|
268
|
-
const _DSPV = "DynamicSsmParameterValue";
|
|
269
|
-
const _DTE = "DeleteTimelineEvent";
|
|
270
|
-
const _DTEI = "DeleteTimelineEventInput";
|
|
271
|
-
const _DTEO = "DeleteTimelineEventOutput";
|
|
272
|
-
const _ECC = "EmptyChatChannel";
|
|
273
|
-
const _ER = "EventReference";
|
|
274
|
-
const _ERL = "EventReferenceList";
|
|
275
|
-
const _ES = "EventSummary";
|
|
276
|
-
const _ESL = "EventSummaryList";
|
|
277
|
-
const _F = "Filter";
|
|
278
|
-
const _FD = "FindingDetails";
|
|
279
|
-
const _FL = "FilterList";
|
|
280
|
-
const _FLi = "FindingList";
|
|
281
|
-
const _FS = "FindingSummary";
|
|
282
|
-
const _FSL = "FindingSummaryList";
|
|
283
|
-
const _Fi = "Finding";
|
|
284
|
-
const _GIR = "GetIncidentRecord";
|
|
285
|
-
const _GIRI = "GetIncidentRecordInput";
|
|
286
|
-
const _GIRO = "GetIncidentRecordOutput";
|
|
287
|
-
const _GRP = "GetResourcePolicies";
|
|
288
|
-
const _GRPI = "GetResourcePoliciesInput";
|
|
289
|
-
const _GRPIe = "GetResponsePlanInput";
|
|
290
|
-
const _GRPO = "GetResourcePoliciesOutput";
|
|
291
|
-
const _GRPOe = "GetResponsePlanOutput";
|
|
292
|
-
const _GRPe = "GetResponsePlan";
|
|
293
|
-
const _GRS = "GetReplicationSet";
|
|
294
|
-
const _GRSI = "GetReplicationSetInput";
|
|
295
|
-
const _GRSO = "GetReplicationSetOutput";
|
|
296
|
-
const _GTE = "GetTimelineEvent";
|
|
297
|
-
const _GTEI = "GetTimelineEventInput";
|
|
298
|
-
const _GTEO = "GetTimelineEventOutput";
|
|
299
|
-
const _I = "Integrations";
|
|
300
|
-
const _II = "ItemIdentifier";
|
|
301
|
-
const _IR = "IncidentRecord";
|
|
302
|
-
const _IRS = "IncidentRecordSource";
|
|
303
|
-
const _IRSL = "IncidentRecordSummaryList";
|
|
304
|
-
const _IRSn = "IncidentRecordSummary";
|
|
305
|
-
const _ISE = "InternalServerException";
|
|
306
|
-
const _IT = "IncidentTemplate";
|
|
307
|
-
const _IV = "ItemValue";
|
|
308
|
-
const _In = "Integration";
|
|
309
|
-
const _LIF = "ListIncidentFindings";
|
|
310
|
-
const _LIFI = "ListIncidentFindingsInput";
|
|
311
|
-
const _LIFO = "ListIncidentFindingsOutput";
|
|
312
|
-
const _LIR = "ListIncidentRecords";
|
|
313
|
-
const _LIRI = "ListIncidentRecordsInput";
|
|
314
|
-
const _LIRO = "ListIncidentRecordsOutput";
|
|
315
|
-
const _LRI = "ListRelatedItems";
|
|
316
|
-
const _LRII = "ListRelatedItemsInput";
|
|
317
|
-
const _LRIO = "ListRelatedItemsOutput";
|
|
318
|
-
const _LRP = "ListResponsePlans";
|
|
319
|
-
const _LRPI = "ListResponsePlansInput";
|
|
320
|
-
const _LRPO = "ListResponsePlansOutput";
|
|
321
|
-
const _LRS = "ListReplicationSets";
|
|
322
|
-
const _LRSI = "ListReplicationSetsInput";
|
|
323
|
-
const _LRSO = "ListReplicationSetsOutput";
|
|
324
|
-
const _LTE = "ListTimelineEvents";
|
|
325
|
-
const _LTEI = "ListTimelineEventsInput";
|
|
326
|
-
const _LTEO = "ListTimelineEventsOutput";
|
|
327
|
-
const _LTFR = "ListTagsForResource";
|
|
328
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
329
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
330
|
-
const _NTI = "NotificationTargetItem";
|
|
331
|
-
const _NTS = "NotificationTargetSet";
|
|
332
|
-
const _PDC = "PagerDutyConfiguration";
|
|
333
|
-
const _PDIC = "PagerDutyIncidentConfiguration";
|
|
334
|
-
const _PDID = "PagerDutyIncidentDetail";
|
|
335
|
-
const _PRP = "PutResourcePolicy";
|
|
336
|
-
const _PRPI = "PutResourcePolicyInput";
|
|
337
|
-
const _PRPO = "PutResourcePolicyOutput";
|
|
338
|
-
const _RI = "RegionInfo";
|
|
339
|
-
const _RIL = "RelatedItemList";
|
|
340
|
-
const _RIM = "RegionInfoMap";
|
|
341
|
-
const _RIU = "RelatedItemsUpdate";
|
|
342
|
-
const _RIe = "RelatedItem";
|
|
343
|
-
const _RMI = "RegionMapInput";
|
|
344
|
-
const _RMIV = "RegionMapInputValue";
|
|
345
|
-
const _RNFE = "ResourceNotFoundException";
|
|
346
|
-
const _RP = "ResourcePolicy";
|
|
347
|
-
const _RPL = "ResourcePolicyList";
|
|
348
|
-
const _RPS = "ResponsePlanSummary";
|
|
349
|
-
const _RPSL = "ResponsePlanSummaryList";
|
|
350
|
-
const _RS = "ReplicationSet";
|
|
351
|
-
const _SA = "SsmAutomation";
|
|
352
|
-
const _SI = "StartIncident";
|
|
353
|
-
const _SII = "StartIncidentInput";
|
|
354
|
-
const _SIO = "StartIncidentOutput";
|
|
355
|
-
const _SP = "SsmParameters";
|
|
356
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
357
|
-
const _TD = "TriggerDetails";
|
|
358
|
-
const _TE = "ThrottlingException";
|
|
359
|
-
const _TEi = "TimelineEvent";
|
|
360
|
-
const _TR = "TagResource";
|
|
361
|
-
const _TRR = "TagResourceRequest";
|
|
362
|
-
const _TRRa = "TagResourceResponse";
|
|
363
|
-
const _UAL = "UpdateActionList";
|
|
364
|
-
const _UDP = "UpdateDeletionProtection";
|
|
365
|
-
const _UDPI = "UpdateDeletionProtectionInput";
|
|
366
|
-
const _UDPO = "UpdateDeletionProtectionOutput";
|
|
367
|
-
const _UIR = "UpdateIncidentRecord";
|
|
368
|
-
const _UIRI = "UpdateIncidentRecordInput";
|
|
369
|
-
const _UIRO = "UpdateIncidentRecordOutput";
|
|
370
|
-
const _UR = "UntagResource";
|
|
371
|
-
const _URI = "UpdateRelatedItems";
|
|
372
|
-
const _URII = "UpdateRelatedItemsInput";
|
|
373
|
-
const _URIO = "UpdateRelatedItemsOutput";
|
|
374
|
-
const _URP = "UpdateResponsePlan";
|
|
375
|
-
const _URPI = "UpdateResponsePlanInput";
|
|
376
|
-
const _URPO = "UpdateResponsePlanOutput";
|
|
377
|
-
const _URR = "UntagResourceRequest";
|
|
378
|
-
const _URRn = "UntagResourceResponse";
|
|
379
|
-
const _URS = "UpdateReplicationSet";
|
|
380
|
-
const _URSA = "UpdateReplicationSetAction";
|
|
381
|
-
const _URSI = "UpdateReplicationSetInput";
|
|
382
|
-
const _URSO = "UpdateReplicationSetOutput";
|
|
383
|
-
const _UTE = "UpdateTimelineEvent";
|
|
384
|
-
const _UTEI = "UpdateTimelineEventInput";
|
|
385
|
-
const _UTEO = "UpdateTimelineEventOutput";
|
|
386
|
-
const _VE = "ValidationException";
|
|
387
|
-
const _a = "arn";
|
|
388
|
-
const _aE = "automationExecutions";
|
|
389
|
-
const _aR = "autoResolve";
|
|
390
|
-
const _aRA = "addRegionAction";
|
|
391
|
-
const _ac = "actions";
|
|
392
|
-
const _af = "after";
|
|
393
|
-
const _b = "before";
|
|
394
|
-
const _c = "client";
|
|
395
|
-
const _cB = "createdBy";
|
|
396
|
-
const _cC = "chatChannel";
|
|
397
|
-
const _cDD = "codeDeployDeployment";
|
|
398
|
-
const _cFSU = "cloudFormationStackUpdate";
|
|
399
|
-
const _cS = "chatbotSns";
|
|
400
|
-
const _cT = "clientToken";
|
|
401
|
-
const _cTr = "creationTime";
|
|
402
|
-
const _cTre = "createdTime";
|
|
403
|
-
const _co = "code";
|
|
404
|
-
const _con = "condition";
|
|
405
|
-
const _d = "details";
|
|
406
|
-
const _dGA = "deploymentGroupArn";
|
|
407
|
-
const _dI = "deploymentId";
|
|
408
|
-
const _dN = "displayName";
|
|
409
|
-
const _dNo = "documentName";
|
|
410
|
-
const _dP = "deletionProtected";
|
|
411
|
-
const _dPy = "dynamicParameters";
|
|
412
|
-
const _dRA = "deleteRegionAction";
|
|
413
|
-
const _dS = "dedupeString";
|
|
414
|
-
const _dV = "documentVersion";
|
|
415
|
-
const _e = "error";
|
|
416
|
-
const _eD = "eventData";
|
|
417
|
-
const _eI = "eventId";
|
|
418
|
-
const _eR = "eventReferences";
|
|
419
|
-
const _eS = "eventSummaries";
|
|
420
|
-
const _eT = "endTime";
|
|
421
|
-
const _eTv = "eventTime";
|
|
422
|
-
const _eTve = "eventType";
|
|
423
|
-
const _eUT = "eventUpdatedTime";
|
|
424
|
-
const _em = "empty";
|
|
425
|
-
const _en = "engagements";
|
|
426
|
-
const _eq = "equals";
|
|
427
|
-
const _er = "errors";
|
|
428
|
-
const _ev = "event";
|
|
429
|
-
const _f = "findings";
|
|
430
|
-
const _fI = "findingId";
|
|
431
|
-
const _fIi = "findingIds";
|
|
432
|
-
const _fi = "filters";
|
|
433
|
-
const _gI = "generatedId";
|
|
434
|
-
const _h = "http";
|
|
435
|
-
const _hE = "httpError";
|
|
436
|
-
const _hQ = "httpQuery";
|
|
437
|
-
const _i = "integrations";
|
|
438
|
-
const _iB = "invokedBy";
|
|
439
|
-
const _iR = "incidentRecord";
|
|
440
|
-
const _iRA = "incidentRecordArn";
|
|
441
|
-
const _iRS = "incidentRecordSource";
|
|
442
|
-
const _iRSn = "incidentRecordSummaries";
|
|
443
|
-
const _iT = "incidentTemplate";
|
|
444
|
-
const _iTA = "itemToAdd";
|
|
445
|
-
const _iTDS = "incidentTemplateDedupeString";
|
|
446
|
-
const _iTI = "incidentTemplateImpact";
|
|
447
|
-
const _iTNT = "incidentTemplateNotificationTargets";
|
|
448
|
-
const _iTR = "itemToRemove";
|
|
449
|
-
const _iTS = "incidentTemplateSummary";
|
|
450
|
-
const _iTT = "incidentTemplateTitle";
|
|
451
|
-
const _iTTn = "incidentTemplateTags";
|
|
452
|
-
const _iTn = "incidentTags";
|
|
453
|
-
const _iV = "integerValues";
|
|
454
|
-
const _id = "id";
|
|
455
|
-
const _ide = "identifier";
|
|
456
|
-
const _im = "impact";
|
|
457
|
-
const _k = "key";
|
|
458
|
-
const _lMB = "lastModifiedBy";
|
|
459
|
-
const _lMT = "lastModifiedTime";
|
|
460
|
-
const _m = "message";
|
|
461
|
-
const _mD = "metricDefinition";
|
|
462
|
-
const _mR = "maxResults";
|
|
463
|
-
const _n = "name";
|
|
464
|
-
const _nT = "nextToken";
|
|
465
|
-
const _nTo = "notificationTargets";
|
|
466
|
-
const _p = "policy";
|
|
467
|
-
const _pD = "policyDocument";
|
|
468
|
-
const _pDC = "pagerDutyConfiguration";
|
|
469
|
-
const _pDIC = "pagerDutyIncidentConfiguration";
|
|
470
|
-
const _pDID = "pagerDutyIncidentDetail";
|
|
471
|
-
const _pI = "policyId";
|
|
472
|
-
const _pa = "parameters";
|
|
473
|
-
const _qC = "quotaCode";
|
|
474
|
-
const _r = "regions";
|
|
475
|
-
const _rA = "retryAfter";
|
|
476
|
-
const _rAe = "resourceArn";
|
|
477
|
-
const _rAo = "roleArn";
|
|
478
|
-
const _rD = "rawData";
|
|
479
|
-
const _rI = "resourceIdentifier";
|
|
480
|
-
const _rII = "relatedItemId";
|
|
481
|
-
const _rIU = "relatedItemsUpdate";
|
|
482
|
-
const _rIe = "relatedItems";
|
|
483
|
-
const _rM = "regionMap";
|
|
484
|
-
const _rN = "regionName";
|
|
485
|
-
const _rP = "resourcePolicies";
|
|
486
|
-
const _rPA = "responsePlanArn";
|
|
487
|
-
const _rPS = "responsePlanSummaries";
|
|
488
|
-
const _rRSR = "ramResourceShareRegion";
|
|
489
|
-
const _rS = "replicationSet";
|
|
490
|
-
const _rSA = "replicationSetArns";
|
|
491
|
-
const _rT = "resourceType";
|
|
492
|
-
const _rTe = "resolvedTime";
|
|
493
|
-
const _re = "resource";
|
|
494
|
-
const _s = "status";
|
|
495
|
-
const _sA = "stackArn";
|
|
496
|
-
const _sAs = "ssmAutomation";
|
|
497
|
-
const _sB = "sortBy";
|
|
498
|
-
const _sC = "serviceCode";
|
|
499
|
-
const _sEA = "ssmExecutionArn";
|
|
500
|
-
const _sI = "secretId";
|
|
501
|
-
const _sIe = "serviceId";
|
|
502
|
-
const _sKKI = "sseKmsKeyId";
|
|
503
|
-
const _sM = "statusMessage";
|
|
504
|
-
const _sO = "sortOrder";
|
|
505
|
-
const _sT = "startTime";
|
|
506
|
-
const _sTA = "snsTopicArn";
|
|
507
|
-
const _sUDT = "statusUpdateDateTime";
|
|
508
|
-
const _sV = "stringValues";
|
|
509
|
-
const _se = "server";
|
|
510
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ssmincidents";
|
|
511
|
-
const _so = "source";
|
|
512
|
-
const _su = "summary";
|
|
513
|
-
const _t = "tags";
|
|
514
|
-
const _tA = "targetAccount";
|
|
515
|
-
const _tAr = "triggerArn";
|
|
516
|
-
const _tD = "triggerDetails";
|
|
517
|
-
const _tK = "tagKeys";
|
|
518
|
-
const _ti = "title";
|
|
519
|
-
const _tim = "timestamp";
|
|
520
|
-
const _ty = "type";
|
|
521
|
-
const _u = "url";
|
|
522
|
-
const _v = "value";
|
|
523
|
-
const _va = "variable";
|
|
524
|
-
const n0 = "com.amazonaws.ssmincidents";
|
|
525
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
526
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
527
|
-
[_m],
|
|
528
|
-
[0], 1
|
|
529
|
-
];
|
|
530
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
531
|
-
var AddRegionAction$ = [3, n0, _ARA,
|
|
532
|
-
0,
|
|
533
|
-
[_rN, _sKKI],
|
|
534
|
-
[0, 0], 1
|
|
535
|
-
];
|
|
536
|
-
var BatchGetIncidentFindingsError$ = [3, n0, _BGIFE,
|
|
537
|
-
0,
|
|
538
|
-
[_fI, _co, _m],
|
|
539
|
-
[0, 0, 0], 3
|
|
540
|
-
];
|
|
541
|
-
var BatchGetIncidentFindingsInput$ = [3, n0, _BGIFI,
|
|
542
|
-
0,
|
|
543
|
-
[_iRA, _fIi],
|
|
544
|
-
[0, 64 | 0], 2
|
|
545
|
-
];
|
|
546
|
-
var BatchGetIncidentFindingsOutput$ = [3, n0, _BGIFO,
|
|
547
|
-
0,
|
|
548
|
-
[_f, _er],
|
|
549
|
-
[() => FindingList, () => BatchGetIncidentFindingsErrorList], 2
|
|
550
|
-
];
|
|
551
|
-
var CloudFormationStackUpdate$ = [3, n0, _CFSU,
|
|
552
|
-
0,
|
|
553
|
-
[_sT, _sA, _eT],
|
|
554
|
-
[4, 0, 4], 2
|
|
555
|
-
];
|
|
556
|
-
var CodeDeployDeployment$ = [3, n0, _CDD,
|
|
557
|
-
0,
|
|
558
|
-
[_sT, _dGA, _dI, _eT],
|
|
559
|
-
[4, 0, 0, 4], 3
|
|
560
|
-
];
|
|
561
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
562
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
563
|
-
[_m, _rI, _rT, _rA],
|
|
564
|
-
[0, 0, 0, 4], 1
|
|
565
|
-
];
|
|
566
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
567
|
-
var CreateReplicationSetInput$ = [3, n0, _CRSI,
|
|
568
|
-
0,
|
|
569
|
-
[_r, _cT, _t],
|
|
570
|
-
[() => RegionMapInput, [0, 4], 128 | 0], 1
|
|
571
|
-
];
|
|
572
|
-
var CreateReplicationSetOutput$ = [3, n0, _CRSO,
|
|
573
|
-
0,
|
|
574
|
-
[_a],
|
|
575
|
-
[0], 1
|
|
576
|
-
];
|
|
577
|
-
var CreateResponsePlanInput$ = [3, n0, _CRPI,
|
|
578
|
-
0,
|
|
579
|
-
[_n, _iT, _cT, _dN, _cC, _en, _ac, _t, _i],
|
|
580
|
-
[0, () => IncidentTemplate$, [0, 4], 0, () => ChatChannel$, 64 | 0, () => ActionsList, 128 | 0, () => Integrations], 2
|
|
581
|
-
];
|
|
582
|
-
var CreateResponsePlanOutput$ = [3, n0, _CRPO,
|
|
583
|
-
0,
|
|
584
|
-
[_a],
|
|
585
|
-
[0], 1
|
|
586
|
-
];
|
|
587
|
-
var CreateTimelineEventInput$ = [3, n0, _CTEI,
|
|
588
|
-
0,
|
|
589
|
-
[_iRA, _eTv, _eTve, _eD, _cT, _eR],
|
|
590
|
-
[0, 4, 0, 0, [0, 4], () => EventReferenceList], 4
|
|
591
|
-
];
|
|
592
|
-
var CreateTimelineEventOutput$ = [3, n0, _CTEO,
|
|
593
|
-
0,
|
|
594
|
-
[_iRA, _eI],
|
|
595
|
-
[0, 0], 2
|
|
596
|
-
];
|
|
597
|
-
var DeleteIncidentRecordInput$ = [3, n0, _DIRI,
|
|
598
|
-
0,
|
|
599
|
-
[_a],
|
|
600
|
-
[0], 1
|
|
601
|
-
];
|
|
602
|
-
var DeleteIncidentRecordOutput$ = [3, n0, _DIRO,
|
|
603
|
-
0,
|
|
604
|
-
[],
|
|
605
|
-
[]
|
|
606
|
-
];
|
|
607
|
-
var DeleteRegionAction$ = [3, n0, _DRA,
|
|
608
|
-
0,
|
|
609
|
-
[_rN],
|
|
610
|
-
[0], 1
|
|
611
|
-
];
|
|
612
|
-
var DeleteReplicationSetInput$ = [3, n0, _DRSI,
|
|
613
|
-
0,
|
|
614
|
-
[_a],
|
|
615
|
-
[[0, { [_hQ]: _a }]], 1
|
|
616
|
-
];
|
|
617
|
-
var DeleteReplicationSetOutput$ = [3, n0, _DRSO,
|
|
618
|
-
0,
|
|
619
|
-
[],
|
|
620
|
-
[]
|
|
621
|
-
];
|
|
622
|
-
var DeleteResourcePolicyInput$ = [3, n0, _DRPI,
|
|
623
|
-
0,
|
|
624
|
-
[_rAe, _pI],
|
|
625
|
-
[0, 0], 2
|
|
626
|
-
];
|
|
627
|
-
var DeleteResourcePolicyOutput$ = [3, n0, _DRPO,
|
|
628
|
-
0,
|
|
629
|
-
[],
|
|
630
|
-
[]
|
|
631
|
-
];
|
|
632
|
-
var DeleteResponsePlanInput$ = [3, n0, _DRPIe,
|
|
633
|
-
0,
|
|
634
|
-
[_a],
|
|
635
|
-
[0], 1
|
|
636
|
-
];
|
|
637
|
-
var DeleteResponsePlanOutput$ = [3, n0, _DRPOe,
|
|
638
|
-
0,
|
|
639
|
-
[],
|
|
640
|
-
[]
|
|
641
|
-
];
|
|
642
|
-
var DeleteTimelineEventInput$ = [3, n0, _DTEI,
|
|
643
|
-
0,
|
|
644
|
-
[_iRA, _eI],
|
|
645
|
-
[0, 0], 2
|
|
646
|
-
];
|
|
647
|
-
var DeleteTimelineEventOutput$ = [3, n0, _DTEO,
|
|
648
|
-
0,
|
|
649
|
-
[],
|
|
650
|
-
[]
|
|
651
|
-
];
|
|
652
|
-
var EmptyChatChannel$ = [3, n0, _ECC,
|
|
653
|
-
0,
|
|
654
|
-
[],
|
|
655
|
-
[]
|
|
656
|
-
];
|
|
657
|
-
var EventSummary$ = [3, n0, _ES,
|
|
658
|
-
0,
|
|
659
|
-
[_iRA, _eI, _eTv, _eUT, _eTve, _eR],
|
|
660
|
-
[0, 0, 4, 4, 0, () => EventReferenceList], 5
|
|
661
|
-
];
|
|
662
|
-
var Filter$ = [3, n0, _F,
|
|
663
|
-
0,
|
|
664
|
-
[_k, _con],
|
|
665
|
-
[0, () => Condition$], 2
|
|
666
|
-
];
|
|
667
|
-
var Finding$ = [3, n0, _Fi,
|
|
668
|
-
0,
|
|
669
|
-
[_id, _cTr, _lMT, _d],
|
|
670
|
-
[0, 4, 4, () => FindingDetails$], 3
|
|
671
|
-
];
|
|
672
|
-
var FindingSummary$ = [3, n0, _FS,
|
|
673
|
-
0,
|
|
674
|
-
[_id, _lMT],
|
|
675
|
-
[0, 4], 2
|
|
676
|
-
];
|
|
677
|
-
var GetIncidentRecordInput$ = [3, n0, _GIRI,
|
|
678
|
-
0,
|
|
679
|
-
[_a],
|
|
680
|
-
[[0, { [_hQ]: _a }]], 1
|
|
681
|
-
];
|
|
682
|
-
var GetIncidentRecordOutput$ = [3, n0, _GIRO,
|
|
683
|
-
0,
|
|
684
|
-
[_iR],
|
|
685
|
-
[() => IncidentRecord$], 1
|
|
686
|
-
];
|
|
687
|
-
var GetReplicationSetInput$ = [3, n0, _GRSI,
|
|
688
|
-
0,
|
|
689
|
-
[_a],
|
|
690
|
-
[[0, { [_hQ]: _a }]], 1
|
|
691
|
-
];
|
|
692
|
-
var GetReplicationSetOutput$ = [3, n0, _GRSO,
|
|
693
|
-
0,
|
|
694
|
-
[_rS],
|
|
695
|
-
[() => ReplicationSet$], 1
|
|
696
|
-
];
|
|
697
|
-
var GetResourcePoliciesInput$ = [3, n0, _GRPI,
|
|
698
|
-
0,
|
|
699
|
-
[_rAe, _mR, _nT],
|
|
700
|
-
[[0, { [_hQ]: _rAe }], 1, 0], 1
|
|
701
|
-
];
|
|
702
|
-
var GetResourcePoliciesOutput$ = [3, n0, _GRPO,
|
|
703
|
-
0,
|
|
704
|
-
[_rP, _nT],
|
|
705
|
-
[() => ResourcePolicyList, 0], 1
|
|
706
|
-
];
|
|
707
|
-
var GetResponsePlanInput$ = [3, n0, _GRPIe,
|
|
708
|
-
0,
|
|
709
|
-
[_a],
|
|
710
|
-
[[0, { [_hQ]: _a }]], 1
|
|
711
|
-
];
|
|
712
|
-
var GetResponsePlanOutput$ = [3, n0, _GRPOe,
|
|
713
|
-
0,
|
|
714
|
-
[_a, _n, _iT, _dN, _cC, _en, _ac, _i],
|
|
715
|
-
[0, 0, () => IncidentTemplate$, 0, () => ChatChannel$, 64 | 0, () => ActionsList, () => Integrations], 3
|
|
716
|
-
];
|
|
717
|
-
var GetTimelineEventInput$ = [3, n0, _GTEI,
|
|
718
|
-
0,
|
|
719
|
-
[_iRA, _eI],
|
|
720
|
-
[[0, { [_hQ]: _iRA }], [0, { [_hQ]: _eI }]], 2
|
|
721
|
-
];
|
|
722
|
-
var GetTimelineEventOutput$ = [3, n0, _GTEO,
|
|
723
|
-
0,
|
|
724
|
-
[_ev],
|
|
725
|
-
[() => TimelineEvent$], 1
|
|
726
|
-
];
|
|
727
|
-
var IncidentRecord$ = [3, n0, _IR,
|
|
728
|
-
0,
|
|
729
|
-
[_a, _ti, _s, _im, _cTr, _lMT, _lMB, _iRS, _dS, _su, _rTe, _aE, _cC, _nTo],
|
|
730
|
-
[0, 0, 0, 1, 4, 4, 0, () => IncidentRecordSource$, 0, 0, 4, () => AutomationExecutionSet, () => ChatChannel$, () => NotificationTargetSet], 9
|
|
731
|
-
];
|
|
732
|
-
var IncidentRecordSource$ = [3, n0, _IRS,
|
|
733
|
-
0,
|
|
734
|
-
[_cB, _so, _iB, _rAe],
|
|
735
|
-
[0, 0, 0, 0], 2
|
|
736
|
-
];
|
|
737
|
-
var IncidentRecordSummary$ = [3, n0, _IRSn,
|
|
738
|
-
0,
|
|
739
|
-
[_a, _ti, _s, _im, _cTr, _iRS, _rTe],
|
|
740
|
-
[0, 0, 0, 1, 4, () => IncidentRecordSource$, 4], 6
|
|
741
|
-
];
|
|
742
|
-
var IncidentTemplate$ = [3, n0, _IT,
|
|
743
|
-
0,
|
|
744
|
-
[_ti, _im, _su, _dS, _nTo, _iTn],
|
|
745
|
-
[0, 1, 0, 0, () => NotificationTargetSet, 128 | 0], 2
|
|
746
|
-
];
|
|
747
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
748
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
749
|
-
[_m],
|
|
750
|
-
[0], 1
|
|
751
|
-
];
|
|
752
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
753
|
-
var ItemIdentifier$ = [3, n0, _II,
|
|
754
|
-
0,
|
|
755
|
-
[_v, _ty],
|
|
756
|
-
[() => ItemValue$, 0], 2
|
|
757
|
-
];
|
|
758
|
-
var ListIncidentFindingsInput$ = [3, n0, _LIFI,
|
|
759
|
-
0,
|
|
760
|
-
[_iRA, _mR, _nT],
|
|
761
|
-
[0, 1, 0], 1
|
|
762
|
-
];
|
|
763
|
-
var ListIncidentFindingsOutput$ = [3, n0, _LIFO,
|
|
764
|
-
0,
|
|
765
|
-
[_f, _nT],
|
|
766
|
-
[() => FindingSummaryList, 0], 1
|
|
767
|
-
];
|
|
768
|
-
var ListIncidentRecordsInput$ = [3, n0, _LIRI,
|
|
769
|
-
0,
|
|
770
|
-
[_fi, _mR, _nT],
|
|
771
|
-
[() => FilterList, 1, 0]
|
|
772
|
-
];
|
|
773
|
-
var ListIncidentRecordsOutput$ = [3, n0, _LIRO,
|
|
774
|
-
0,
|
|
775
|
-
[_iRSn, _nT],
|
|
776
|
-
[() => IncidentRecordSummaryList, 0], 1
|
|
777
|
-
];
|
|
778
|
-
var ListRelatedItemsInput$ = [3, n0, _LRII,
|
|
779
|
-
0,
|
|
780
|
-
[_iRA, _mR, _nT],
|
|
781
|
-
[0, 1, 0], 1
|
|
782
|
-
];
|
|
783
|
-
var ListRelatedItemsOutput$ = [3, n0, _LRIO,
|
|
784
|
-
0,
|
|
785
|
-
[_rIe, _nT],
|
|
786
|
-
[() => RelatedItemList, 0], 1
|
|
787
|
-
];
|
|
788
|
-
var ListReplicationSetsInput$ = [3, n0, _LRSI,
|
|
789
|
-
0,
|
|
790
|
-
[_mR, _nT],
|
|
791
|
-
[1, 0]
|
|
792
|
-
];
|
|
793
|
-
var ListReplicationSetsOutput$ = [3, n0, _LRSO,
|
|
794
|
-
0,
|
|
795
|
-
[_rSA, _nT],
|
|
796
|
-
[64 | 0, 0], 1
|
|
797
|
-
];
|
|
798
|
-
var ListResponsePlansInput$ = [3, n0, _LRPI,
|
|
799
|
-
0,
|
|
800
|
-
[_mR, _nT],
|
|
801
|
-
[1, 0]
|
|
802
|
-
];
|
|
803
|
-
var ListResponsePlansOutput$ = [3, n0, _LRPO,
|
|
804
|
-
0,
|
|
805
|
-
[_rPS, _nT],
|
|
806
|
-
[() => ResponsePlanSummaryList, 0], 1
|
|
807
|
-
];
|
|
808
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
809
|
-
0,
|
|
810
|
-
[_rAe],
|
|
811
|
-
[[0, 1]], 1
|
|
812
|
-
];
|
|
813
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
814
|
-
0,
|
|
815
|
-
[_t],
|
|
816
|
-
[128 | 0], 1
|
|
817
|
-
];
|
|
818
|
-
var ListTimelineEventsInput$ = [3, n0, _LTEI,
|
|
819
|
-
0,
|
|
820
|
-
[_iRA, _fi, _sB, _sO, _mR, _nT],
|
|
821
|
-
[0, () => FilterList, 0, 0, 1, 0], 1
|
|
822
|
-
];
|
|
823
|
-
var ListTimelineEventsOutput$ = [3, n0, _LTEO,
|
|
824
|
-
0,
|
|
825
|
-
[_eS, _nT],
|
|
826
|
-
[() => EventSummaryList, 0], 1
|
|
827
|
-
];
|
|
828
|
-
var PagerDutyConfiguration$ = [3, n0, _PDC,
|
|
829
|
-
0,
|
|
830
|
-
[_n, _sI, _pDIC],
|
|
831
|
-
[0, 0, () => PagerDutyIncidentConfiguration$], 3
|
|
832
|
-
];
|
|
833
|
-
var PagerDutyIncidentConfiguration$ = [3, n0, _PDIC,
|
|
834
|
-
0,
|
|
835
|
-
[_sIe],
|
|
836
|
-
[0], 1
|
|
837
|
-
];
|
|
838
|
-
var PagerDutyIncidentDetail$ = [3, n0, _PDID,
|
|
839
|
-
0,
|
|
840
|
-
[_id, _aR, _sI],
|
|
841
|
-
[0, 2, 0], 1
|
|
842
|
-
];
|
|
843
|
-
var PutResourcePolicyInput$ = [3, n0, _PRPI,
|
|
844
|
-
0,
|
|
845
|
-
[_rAe, _p],
|
|
846
|
-
[0, 0], 2
|
|
847
|
-
];
|
|
848
|
-
var PutResourcePolicyOutput$ = [3, n0, _PRPO,
|
|
849
|
-
0,
|
|
850
|
-
[_pI],
|
|
851
|
-
[0], 1
|
|
852
|
-
];
|
|
853
|
-
var RegionInfo$ = [3, n0, _RI,
|
|
854
|
-
0,
|
|
855
|
-
[_s, _sUDT, _sKKI, _sM],
|
|
856
|
-
[0, 4, 0, 0], 2
|
|
857
|
-
];
|
|
858
|
-
var RegionMapInputValue$ = [3, n0, _RMIV,
|
|
859
|
-
0,
|
|
860
|
-
[_sKKI],
|
|
861
|
-
[0]
|
|
862
|
-
];
|
|
863
|
-
var RelatedItem$ = [3, n0, _RIe,
|
|
864
|
-
0,
|
|
865
|
-
[_ide, _ti, _gI],
|
|
866
|
-
[() => ItemIdentifier$, 0, 0], 1
|
|
867
|
-
];
|
|
868
|
-
var ReplicationSet$ = [3, n0, _RS,
|
|
869
|
-
0,
|
|
870
|
-
[_rM, _s, _dP, _cTre, _cB, _lMT, _lMB, _a],
|
|
871
|
-
[() => RegionInfoMap, 0, 2, 4, 0, 4, 0, 0], 7
|
|
872
|
-
];
|
|
873
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
874
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
875
|
-
[_m, _rI, _rT],
|
|
876
|
-
[0, 0, 0], 1
|
|
877
|
-
];
|
|
878
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
879
|
-
var ResourcePolicy$ = [3, n0, _RP,
|
|
880
|
-
0,
|
|
881
|
-
[_pD, _pI, _rRSR],
|
|
882
|
-
[0, 0, 0], 3
|
|
883
|
-
];
|
|
884
|
-
var ResponsePlanSummary$ = [3, n0, _RPS,
|
|
885
|
-
0,
|
|
886
|
-
[_a, _n, _dN],
|
|
887
|
-
[0, 0, 0], 2
|
|
888
|
-
];
|
|
889
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
890
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
891
|
-
[_m, _sC, _qC, _rI, _rT],
|
|
892
|
-
[0, 0, 0, 0, 0], 3
|
|
893
|
-
];
|
|
894
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
895
|
-
var SsmAutomation$ = [3, n0, _SA,
|
|
896
|
-
0,
|
|
897
|
-
[_rAo, _dNo, _dV, _tA, _pa, _dPy],
|
|
898
|
-
[0, 0, 0, 0, [2, n0, _SP, 0, 0, 64 | 0], () => DynamicSsmParameters], 2
|
|
899
|
-
];
|
|
900
|
-
var StartIncidentInput$ = [3, n0, _SII,
|
|
901
|
-
0,
|
|
902
|
-
[_rPA, _cT, _ti, _im, _tD, _rIe],
|
|
903
|
-
[0, [0, 4], 0, 1, () => TriggerDetails$, () => RelatedItemList], 1
|
|
904
|
-
];
|
|
905
|
-
var StartIncidentOutput$ = [3, n0, _SIO,
|
|
906
|
-
0,
|
|
907
|
-
[_iRA],
|
|
908
|
-
[0], 1
|
|
909
|
-
];
|
|
910
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
911
|
-
0,
|
|
912
|
-
[_rAe, _t],
|
|
913
|
-
[[0, 1], 128 | 0], 2
|
|
914
|
-
];
|
|
915
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
916
|
-
0,
|
|
917
|
-
[],
|
|
918
|
-
[]
|
|
919
|
-
];
|
|
920
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
921
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
922
|
-
[_m, _sC, _qC],
|
|
923
|
-
[0, 0, 0], 3
|
|
924
|
-
];
|
|
925
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
926
|
-
var TimelineEvent$ = [3, n0, _TEi,
|
|
927
|
-
0,
|
|
928
|
-
[_iRA, _eI, _eTv, _eUT, _eTve, _eD, _eR],
|
|
929
|
-
[0, 0, 4, 4, 0, 0, () => EventReferenceList], 6
|
|
930
|
-
];
|
|
931
|
-
var TriggerDetails$ = [3, n0, _TD,
|
|
932
|
-
0,
|
|
933
|
-
[_so, _tim, _tAr, _rD],
|
|
934
|
-
[0, 4, 0, 0], 2
|
|
935
|
-
];
|
|
936
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
937
|
-
0,
|
|
938
|
-
[_rAe, _tK],
|
|
939
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
940
|
-
];
|
|
941
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
942
|
-
0,
|
|
943
|
-
[],
|
|
944
|
-
[]
|
|
945
|
-
];
|
|
946
|
-
var UpdateDeletionProtectionInput$ = [3, n0, _UDPI,
|
|
947
|
-
0,
|
|
948
|
-
[_a, _dP, _cT],
|
|
949
|
-
[0, 2, [0, 4]], 2
|
|
950
|
-
];
|
|
951
|
-
var UpdateDeletionProtectionOutput$ = [3, n0, _UDPO,
|
|
952
|
-
0,
|
|
953
|
-
[],
|
|
954
|
-
[]
|
|
955
|
-
];
|
|
956
|
-
var UpdateIncidentRecordInput$ = [3, n0, _UIRI,
|
|
957
|
-
0,
|
|
958
|
-
[_a, _cT, _ti, _su, _im, _s, _cC, _nTo],
|
|
959
|
-
[0, [0, 4], 0, 0, 1, 0, () => ChatChannel$, () => NotificationTargetSet], 1
|
|
960
|
-
];
|
|
961
|
-
var UpdateIncidentRecordOutput$ = [3, n0, _UIRO,
|
|
962
|
-
0,
|
|
963
|
-
[],
|
|
964
|
-
[]
|
|
965
|
-
];
|
|
966
|
-
var UpdateRelatedItemsInput$ = [3, n0, _URII,
|
|
967
|
-
0,
|
|
968
|
-
[_iRA, _rIU, _cT],
|
|
969
|
-
[0, () => RelatedItemsUpdate$, [0, 4]], 2
|
|
970
|
-
];
|
|
971
|
-
var UpdateRelatedItemsOutput$ = [3, n0, _URIO,
|
|
972
|
-
0,
|
|
973
|
-
[],
|
|
974
|
-
[]
|
|
975
|
-
];
|
|
976
|
-
var UpdateReplicationSetInput$ = [3, n0, _URSI,
|
|
977
|
-
0,
|
|
978
|
-
[_a, _ac, _cT],
|
|
979
|
-
[0, () => UpdateActionList, [0, 4]], 2
|
|
980
|
-
];
|
|
981
|
-
var UpdateReplicationSetOutput$ = [3, n0, _URSO,
|
|
982
|
-
0,
|
|
983
|
-
[],
|
|
984
|
-
[]
|
|
985
|
-
];
|
|
986
|
-
var UpdateResponsePlanInput$ = [3, n0, _URPI,
|
|
987
|
-
0,
|
|
988
|
-
[_a, _cT, _dN, _iTT, _iTI, _iTS, _iTDS, _iTNT, _cC, _en, _ac, _iTTn, _i],
|
|
989
|
-
[0, [0, 4], 0, 0, 1, 0, 0, () => NotificationTargetSet, () => ChatChannel$, 64 | 0, () => ActionsList, 128 | 0, () => Integrations], 1
|
|
990
|
-
];
|
|
991
|
-
var UpdateResponsePlanOutput$ = [3, n0, _URPO,
|
|
992
|
-
0,
|
|
993
|
-
[],
|
|
994
|
-
[]
|
|
995
|
-
];
|
|
996
|
-
var UpdateTimelineEventInput$ = [3, n0, _UTEI,
|
|
997
|
-
0,
|
|
998
|
-
[_iRA, _eI, _cT, _eTv, _eTve, _eD, _eR],
|
|
999
|
-
[0, 0, [0, 4], 4, 0, 0, () => EventReferenceList], 2
|
|
1000
|
-
];
|
|
1001
|
-
var UpdateTimelineEventOutput$ = [3, n0, _UTEO,
|
|
1002
|
-
0,
|
|
1003
|
-
[],
|
|
1004
|
-
[]
|
|
1005
|
-
];
|
|
1006
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1007
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1008
|
-
[_m],
|
|
1009
|
-
[0], 1
|
|
1010
|
-
];
|
|
1011
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1012
|
-
var SSMIncidentsServiceException$ = [-3, _sm, "SSMIncidentsServiceException", 0, [], []];
|
|
1013
|
-
schema.TypeRegistry.for(_sm).registerError(SSMIncidentsServiceException$, SSMIncidentsServiceException);
|
|
1014
|
-
var ActionsList = [1, n0, _AL,
|
|
1015
|
-
0, () => Action$
|
|
1016
|
-
];
|
|
1017
|
-
var AutomationExecutionSet = [1, n0, _AES,
|
|
1018
|
-
0, () => AutomationExecution$
|
|
1019
|
-
];
|
|
1020
|
-
var BatchGetIncidentFindingsErrorList = [1, n0, _BGIFEL,
|
|
1021
|
-
0, () => BatchGetIncidentFindingsError$
|
|
1022
|
-
];
|
|
1023
|
-
var EventReferenceList = [1, n0, _ERL,
|
|
1024
|
-
0, () => EventReference$
|
|
1025
|
-
];
|
|
1026
|
-
var EventSummaryList = [1, n0, _ESL,
|
|
1027
|
-
0, () => EventSummary$
|
|
1028
|
-
];
|
|
1029
|
-
var FilterList = [1, n0, _FL,
|
|
1030
|
-
0, () => Filter$
|
|
1031
|
-
];
|
|
1032
|
-
var FindingList = [1, n0, _FLi,
|
|
1033
|
-
0, () => Finding$
|
|
1034
|
-
];
|
|
1035
|
-
var FindingSummaryList = [1, n0, _FSL,
|
|
1036
|
-
0, () => FindingSummary$
|
|
1037
|
-
];
|
|
1038
|
-
var IncidentRecordSummaryList = [1, n0, _IRSL,
|
|
1039
|
-
0, () => IncidentRecordSummary$
|
|
1040
|
-
];
|
|
1041
|
-
var Integrations = [1, n0, _I,
|
|
1042
|
-
0, () => Integration$
|
|
1043
|
-
];
|
|
1044
|
-
var NotificationTargetSet = [1, n0, _NTS,
|
|
1045
|
-
0, () => NotificationTargetItem$
|
|
1046
|
-
];
|
|
1047
|
-
var RelatedItemList = [1, n0, _RIL,
|
|
1048
|
-
0, () => RelatedItem$
|
|
1049
|
-
];
|
|
1050
|
-
var ResourcePolicyList = [1, n0, _RPL,
|
|
1051
|
-
0, () => ResourcePolicy$
|
|
1052
|
-
];
|
|
1053
|
-
var ResponsePlanSummaryList = [1, n0, _RPSL,
|
|
1054
|
-
0, () => ResponsePlanSummary$
|
|
1055
|
-
];
|
|
1056
|
-
var UpdateActionList = [1, n0, _UAL,
|
|
1057
|
-
0, () => UpdateReplicationSetAction$
|
|
1058
|
-
];
|
|
1059
|
-
var DynamicSsmParameters = [2, n0, _DSP,
|
|
1060
|
-
0, 0, () => DynamicSsmParameterValue$
|
|
1061
|
-
];
|
|
1062
|
-
var RegionInfoMap = [2, n0, _RIM,
|
|
1063
|
-
0, 0, () => RegionInfo$
|
|
1064
|
-
];
|
|
1065
|
-
var RegionMapInput = [2, n0, _RMI,
|
|
1066
|
-
0, 0, () => RegionMapInputValue$
|
|
1067
|
-
];
|
|
1068
|
-
var Action$ = [4, n0, _A,
|
|
1069
|
-
0,
|
|
1070
|
-
[_sAs],
|
|
1071
|
-
[() => SsmAutomation$]
|
|
1072
|
-
];
|
|
1073
|
-
var AttributeValueList$ = [4, n0, _AVL,
|
|
1074
|
-
0,
|
|
1075
|
-
[_sV, _iV],
|
|
1076
|
-
[64 | 0, 64 | 1]
|
|
1077
|
-
];
|
|
1078
|
-
var AutomationExecution$ = [4, n0, _AE,
|
|
1079
|
-
0,
|
|
1080
|
-
[_sEA],
|
|
1081
|
-
[0]
|
|
1082
|
-
];
|
|
1083
|
-
var ChatChannel$ = [4, n0, _CC,
|
|
1084
|
-
0,
|
|
1085
|
-
[_em, _cS],
|
|
1086
|
-
[() => EmptyChatChannel$, 64 | 0]
|
|
1087
|
-
];
|
|
1088
|
-
var Condition$ = [4, n0, _C,
|
|
1089
|
-
0,
|
|
1090
|
-
[_b, _af, _eq],
|
|
1091
|
-
[4, 4, () => AttributeValueList$]
|
|
1092
|
-
];
|
|
1093
|
-
var DynamicSsmParameterValue$ = [4, n0, _DSPV,
|
|
1094
|
-
0,
|
|
1095
|
-
[_va],
|
|
1096
|
-
[0]
|
|
1097
|
-
];
|
|
1098
|
-
var EventReference$ = [4, n0, _ER,
|
|
1099
|
-
0,
|
|
1100
|
-
[_re, _rII],
|
|
1101
|
-
[0, 0]
|
|
1102
|
-
];
|
|
1103
|
-
var FindingDetails$ = [4, n0, _FD,
|
|
1104
|
-
0,
|
|
1105
|
-
[_cDD, _cFSU],
|
|
1106
|
-
[() => CodeDeployDeployment$, () => CloudFormationStackUpdate$]
|
|
1107
|
-
];
|
|
1108
|
-
var Integration$ = [4, n0, _In,
|
|
1109
|
-
0,
|
|
1110
|
-
[_pDC],
|
|
1111
|
-
[() => PagerDutyConfiguration$]
|
|
1112
|
-
];
|
|
1113
|
-
var ItemValue$ = [4, n0, _IV,
|
|
1114
|
-
0,
|
|
1115
|
-
[_a, _u, _mD, _pDID],
|
|
1116
|
-
[0, 0, 0, () => PagerDutyIncidentDetail$]
|
|
1117
|
-
];
|
|
1118
|
-
var NotificationTargetItem$ = [4, n0, _NTI,
|
|
1119
|
-
0,
|
|
1120
|
-
[_sTA],
|
|
1121
|
-
[0]
|
|
1122
|
-
];
|
|
1123
|
-
var RelatedItemsUpdate$ = [4, n0, _RIU,
|
|
1124
|
-
0,
|
|
1125
|
-
[_iTA, _iTR],
|
|
1126
|
-
[() => RelatedItem$, () => ItemIdentifier$]
|
|
1127
|
-
];
|
|
1128
|
-
var UpdateReplicationSetAction$ = [4, n0, _URSA,
|
|
1129
|
-
0,
|
|
1130
|
-
[_aRA, _dRA],
|
|
1131
|
-
[() => AddRegionAction$, () => DeleteRegionAction$]
|
|
1132
|
-
];
|
|
1133
|
-
var BatchGetIncidentFindings$ = [9, n0, _BGIF,
|
|
1134
|
-
{ [_h]: ["POST", "/batchGetIncidentFindings", 200] }, () => BatchGetIncidentFindingsInput$, () => BatchGetIncidentFindingsOutput$
|
|
1135
|
-
];
|
|
1136
|
-
var CreateReplicationSet$ = [9, n0, _CRS,
|
|
1137
|
-
{ [_h]: ["POST", "/createReplicationSet", 201] }, () => CreateReplicationSetInput$, () => CreateReplicationSetOutput$
|
|
1138
|
-
];
|
|
1139
|
-
var CreateResponsePlan$ = [9, n0, _CRP,
|
|
1140
|
-
{ [_h]: ["POST", "/createResponsePlan", 201] }, () => CreateResponsePlanInput$, () => CreateResponsePlanOutput$
|
|
1141
|
-
];
|
|
1142
|
-
var CreateTimelineEvent$ = [9, n0, _CTE,
|
|
1143
|
-
{ [_h]: ["POST", "/createTimelineEvent", 201] }, () => CreateTimelineEventInput$, () => CreateTimelineEventOutput$
|
|
1144
|
-
];
|
|
1145
|
-
var DeleteIncidentRecord$ = [9, n0, _DIR,
|
|
1146
|
-
{ [_h]: ["POST", "/deleteIncidentRecord", 204] }, () => DeleteIncidentRecordInput$, () => DeleteIncidentRecordOutput$
|
|
1147
|
-
];
|
|
1148
|
-
var DeleteReplicationSet$ = [9, n0, _DRS,
|
|
1149
|
-
{ [_h]: ["POST", "/deleteReplicationSet", 204] }, () => DeleteReplicationSetInput$, () => DeleteReplicationSetOutput$
|
|
1150
|
-
];
|
|
1151
|
-
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
1152
|
-
{ [_h]: ["POST", "/deleteResourcePolicy", 200] }, () => DeleteResourcePolicyInput$, () => DeleteResourcePolicyOutput$
|
|
1153
|
-
];
|
|
1154
|
-
var DeleteResponsePlan$ = [9, n0, _DRPe,
|
|
1155
|
-
{ [_h]: ["POST", "/deleteResponsePlan", 204] }, () => DeleteResponsePlanInput$, () => DeleteResponsePlanOutput$
|
|
1156
|
-
];
|
|
1157
|
-
var DeleteTimelineEvent$ = [9, n0, _DTE,
|
|
1158
|
-
{ [_h]: ["POST", "/deleteTimelineEvent", 204] }, () => DeleteTimelineEventInput$, () => DeleteTimelineEventOutput$
|
|
1159
|
-
];
|
|
1160
|
-
var GetIncidentRecord$ = [9, n0, _GIR,
|
|
1161
|
-
{ [_h]: ["GET", "/getIncidentRecord", 200] }, () => GetIncidentRecordInput$, () => GetIncidentRecordOutput$
|
|
1162
|
-
];
|
|
1163
|
-
var GetReplicationSet$ = [9, n0, _GRS,
|
|
1164
|
-
{ [_h]: ["GET", "/getReplicationSet", 200] }, () => GetReplicationSetInput$, () => GetReplicationSetOutput$
|
|
1165
|
-
];
|
|
1166
|
-
var GetResourcePolicies$ = [9, n0, _GRP,
|
|
1167
|
-
{ [_h]: ["POST", "/getResourcePolicies", 200] }, () => GetResourcePoliciesInput$, () => GetResourcePoliciesOutput$
|
|
1168
|
-
];
|
|
1169
|
-
var GetResponsePlan$ = [9, n0, _GRPe,
|
|
1170
|
-
{ [_h]: ["GET", "/getResponsePlan", 200] }, () => GetResponsePlanInput$, () => GetResponsePlanOutput$
|
|
1171
|
-
];
|
|
1172
|
-
var GetTimelineEvent$ = [9, n0, _GTE,
|
|
1173
|
-
{ [_h]: ["GET", "/getTimelineEvent", 200] }, () => GetTimelineEventInput$, () => GetTimelineEventOutput$
|
|
1174
|
-
];
|
|
1175
|
-
var ListIncidentFindings$ = [9, n0, _LIF,
|
|
1176
|
-
{ [_h]: ["POST", "/listIncidentFindings", 200] }, () => ListIncidentFindingsInput$, () => ListIncidentFindingsOutput$
|
|
1177
|
-
];
|
|
1178
|
-
var ListIncidentRecords$ = [9, n0, _LIR,
|
|
1179
|
-
{ [_h]: ["POST", "/listIncidentRecords", 200] }, () => ListIncidentRecordsInput$, () => ListIncidentRecordsOutput$
|
|
1180
|
-
];
|
|
1181
|
-
var ListRelatedItems$ = [9, n0, _LRI,
|
|
1182
|
-
{ [_h]: ["POST", "/listRelatedItems", 200] }, () => ListRelatedItemsInput$, () => ListRelatedItemsOutput$
|
|
1183
|
-
];
|
|
1184
|
-
var ListReplicationSets$ = [9, n0, _LRS,
|
|
1185
|
-
{ [_h]: ["POST", "/listReplicationSets", 200] }, () => ListReplicationSetsInput$, () => ListReplicationSetsOutput$
|
|
1186
|
-
];
|
|
1187
|
-
var ListResponsePlans$ = [9, n0, _LRP,
|
|
1188
|
-
{ [_h]: ["POST", "/listResponsePlans", 200] }, () => ListResponsePlansInput$, () => ListResponsePlansOutput$
|
|
1189
|
-
];
|
|
1190
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1191
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1192
|
-
];
|
|
1193
|
-
var ListTimelineEvents$ = [9, n0, _LTE,
|
|
1194
|
-
{ [_h]: ["POST", "/listTimelineEvents", 200] }, () => ListTimelineEventsInput$, () => ListTimelineEventsOutput$
|
|
1195
|
-
];
|
|
1196
|
-
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
1197
|
-
{ [_h]: ["POST", "/putResourcePolicy", 200] }, () => PutResourcePolicyInput$, () => PutResourcePolicyOutput$
|
|
1198
|
-
];
|
|
1199
|
-
var StartIncident$ = [9, n0, _SI,
|
|
1200
|
-
{ [_h]: ["POST", "/startIncident", 200] }, () => StartIncidentInput$, () => StartIncidentOutput$
|
|
1201
|
-
];
|
|
1202
|
-
var TagResource$ = [9, n0, _TR,
|
|
1203
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1204
|
-
];
|
|
1205
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1206
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1207
|
-
];
|
|
1208
|
-
var UpdateDeletionProtection$ = [9, n0, _UDP,
|
|
1209
|
-
{ [_h]: ["POST", "/updateDeletionProtection", 204] }, () => UpdateDeletionProtectionInput$, () => UpdateDeletionProtectionOutput$
|
|
1210
|
-
];
|
|
1211
|
-
var UpdateIncidentRecord$ = [9, n0, _UIR,
|
|
1212
|
-
{ [_h]: ["POST", "/updateIncidentRecord", 204] }, () => UpdateIncidentRecordInput$, () => UpdateIncidentRecordOutput$
|
|
1213
|
-
];
|
|
1214
|
-
var UpdateRelatedItems$ = [9, n0, _URI,
|
|
1215
|
-
{ [_h]: ["POST", "/updateRelatedItems", 204] }, () => UpdateRelatedItemsInput$, () => UpdateRelatedItemsOutput$
|
|
1216
|
-
];
|
|
1217
|
-
var UpdateReplicationSet$ = [9, n0, _URS,
|
|
1218
|
-
{ [_h]: ["POST", "/updateReplicationSet", 204] }, () => UpdateReplicationSetInput$, () => UpdateReplicationSetOutput$
|
|
1219
|
-
];
|
|
1220
|
-
var UpdateResponsePlan$ = [9, n0, _URP,
|
|
1221
|
-
{ [_h]: ["POST", "/updateResponsePlan", 204] }, () => UpdateResponsePlanInput$, () => UpdateResponsePlanOutput$
|
|
1222
|
-
];
|
|
1223
|
-
var UpdateTimelineEvent$ = [9, n0, _UTE,
|
|
1224
|
-
{ [_h]: ["POST", "/updateTimelineEvent", 204] }, () => UpdateTimelineEventInput$, () => UpdateTimelineEventOutput$
|
|
1225
|
-
];
|
|
1226
|
-
|
|
1227
117
|
class BatchGetIncidentFindingsCommand extends smithyClient.Command
|
|
1228
118
|
.classBuilder()
|
|
1229
119
|
.ep(commonParams)
|
|
@@ -1232,7 +122,7 @@ class BatchGetIncidentFindingsCommand extends smithyClient.Command
|
|
|
1232
122
|
})
|
|
1233
123
|
.s("SSMIncidents", "BatchGetIncidentFindings", {})
|
|
1234
124
|
.n("SSMIncidentsClient", "BatchGetIncidentFindingsCommand")
|
|
1235
|
-
.sc(BatchGetIncidentFindings$)
|
|
125
|
+
.sc(schemas_0.BatchGetIncidentFindings$)
|
|
1236
126
|
.build() {
|
|
1237
127
|
}
|
|
1238
128
|
|
|
@@ -1244,7 +134,7 @@ class CreateReplicationSetCommand extends smithyClient.Command
|
|
|
1244
134
|
})
|
|
1245
135
|
.s("SSMIncidents", "CreateReplicationSet", {})
|
|
1246
136
|
.n("SSMIncidentsClient", "CreateReplicationSetCommand")
|
|
1247
|
-
.sc(CreateReplicationSet$)
|
|
137
|
+
.sc(schemas_0.CreateReplicationSet$)
|
|
1248
138
|
.build() {
|
|
1249
139
|
}
|
|
1250
140
|
|
|
@@ -1256,7 +146,7 @@ class CreateResponsePlanCommand extends smithyClient.Command
|
|
|
1256
146
|
})
|
|
1257
147
|
.s("SSMIncidents", "CreateResponsePlan", {})
|
|
1258
148
|
.n("SSMIncidentsClient", "CreateResponsePlanCommand")
|
|
1259
|
-
.sc(CreateResponsePlan$)
|
|
149
|
+
.sc(schemas_0.CreateResponsePlan$)
|
|
1260
150
|
.build() {
|
|
1261
151
|
}
|
|
1262
152
|
|
|
@@ -1268,7 +158,7 @@ class CreateTimelineEventCommand extends smithyClient.Command
|
|
|
1268
158
|
})
|
|
1269
159
|
.s("SSMIncidents", "CreateTimelineEvent", {})
|
|
1270
160
|
.n("SSMIncidentsClient", "CreateTimelineEventCommand")
|
|
1271
|
-
.sc(CreateTimelineEvent$)
|
|
161
|
+
.sc(schemas_0.CreateTimelineEvent$)
|
|
1272
162
|
.build() {
|
|
1273
163
|
}
|
|
1274
164
|
|
|
@@ -1280,7 +170,7 @@ class DeleteIncidentRecordCommand extends smithyClient.Command
|
|
|
1280
170
|
})
|
|
1281
171
|
.s("SSMIncidents", "DeleteIncidentRecord", {})
|
|
1282
172
|
.n("SSMIncidentsClient", "DeleteIncidentRecordCommand")
|
|
1283
|
-
.sc(DeleteIncidentRecord$)
|
|
173
|
+
.sc(schemas_0.DeleteIncidentRecord$)
|
|
1284
174
|
.build() {
|
|
1285
175
|
}
|
|
1286
176
|
|
|
@@ -1292,7 +182,7 @@ class DeleteReplicationSetCommand extends smithyClient.Command
|
|
|
1292
182
|
})
|
|
1293
183
|
.s("SSMIncidents", "DeleteReplicationSet", {})
|
|
1294
184
|
.n("SSMIncidentsClient", "DeleteReplicationSetCommand")
|
|
1295
|
-
.sc(DeleteReplicationSet$)
|
|
185
|
+
.sc(schemas_0.DeleteReplicationSet$)
|
|
1296
186
|
.build() {
|
|
1297
187
|
}
|
|
1298
188
|
|
|
@@ -1304,7 +194,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
1304
194
|
})
|
|
1305
195
|
.s("SSMIncidents", "DeleteResourcePolicy", {})
|
|
1306
196
|
.n("SSMIncidentsClient", "DeleteResourcePolicyCommand")
|
|
1307
|
-
.sc(DeleteResourcePolicy$)
|
|
197
|
+
.sc(schemas_0.DeleteResourcePolicy$)
|
|
1308
198
|
.build() {
|
|
1309
199
|
}
|
|
1310
200
|
|
|
@@ -1316,7 +206,7 @@ class DeleteResponsePlanCommand extends smithyClient.Command
|
|
|
1316
206
|
})
|
|
1317
207
|
.s("SSMIncidents", "DeleteResponsePlan", {})
|
|
1318
208
|
.n("SSMIncidentsClient", "DeleteResponsePlanCommand")
|
|
1319
|
-
.sc(DeleteResponsePlan$)
|
|
209
|
+
.sc(schemas_0.DeleteResponsePlan$)
|
|
1320
210
|
.build() {
|
|
1321
211
|
}
|
|
1322
212
|
|
|
@@ -1328,7 +218,7 @@ class DeleteTimelineEventCommand extends smithyClient.Command
|
|
|
1328
218
|
})
|
|
1329
219
|
.s("SSMIncidents", "DeleteTimelineEvent", {})
|
|
1330
220
|
.n("SSMIncidentsClient", "DeleteTimelineEventCommand")
|
|
1331
|
-
.sc(DeleteTimelineEvent$)
|
|
221
|
+
.sc(schemas_0.DeleteTimelineEvent$)
|
|
1332
222
|
.build() {
|
|
1333
223
|
}
|
|
1334
224
|
|
|
@@ -1340,7 +230,7 @@ class GetIncidentRecordCommand extends smithyClient.Command
|
|
|
1340
230
|
})
|
|
1341
231
|
.s("SSMIncidents", "GetIncidentRecord", {})
|
|
1342
232
|
.n("SSMIncidentsClient", "GetIncidentRecordCommand")
|
|
1343
|
-
.sc(GetIncidentRecord$)
|
|
233
|
+
.sc(schemas_0.GetIncidentRecord$)
|
|
1344
234
|
.build() {
|
|
1345
235
|
}
|
|
1346
236
|
|
|
@@ -1352,7 +242,7 @@ class GetReplicationSetCommand extends smithyClient.Command
|
|
|
1352
242
|
})
|
|
1353
243
|
.s("SSMIncidents", "GetReplicationSet", {})
|
|
1354
244
|
.n("SSMIncidentsClient", "GetReplicationSetCommand")
|
|
1355
|
-
.sc(GetReplicationSet$)
|
|
245
|
+
.sc(schemas_0.GetReplicationSet$)
|
|
1356
246
|
.build() {
|
|
1357
247
|
}
|
|
1358
248
|
|
|
@@ -1364,7 +254,7 @@ class GetResourcePoliciesCommand extends smithyClient.Command
|
|
|
1364
254
|
})
|
|
1365
255
|
.s("SSMIncidents", "GetResourcePolicies", {})
|
|
1366
256
|
.n("SSMIncidentsClient", "GetResourcePoliciesCommand")
|
|
1367
|
-
.sc(GetResourcePolicies$)
|
|
257
|
+
.sc(schemas_0.GetResourcePolicies$)
|
|
1368
258
|
.build() {
|
|
1369
259
|
}
|
|
1370
260
|
|
|
@@ -1376,7 +266,7 @@ class GetResponsePlanCommand extends smithyClient.Command
|
|
|
1376
266
|
})
|
|
1377
267
|
.s("SSMIncidents", "GetResponsePlan", {})
|
|
1378
268
|
.n("SSMIncidentsClient", "GetResponsePlanCommand")
|
|
1379
|
-
.sc(GetResponsePlan$)
|
|
269
|
+
.sc(schemas_0.GetResponsePlan$)
|
|
1380
270
|
.build() {
|
|
1381
271
|
}
|
|
1382
272
|
|
|
@@ -1388,7 +278,7 @@ class GetTimelineEventCommand extends smithyClient.Command
|
|
|
1388
278
|
})
|
|
1389
279
|
.s("SSMIncidents", "GetTimelineEvent", {})
|
|
1390
280
|
.n("SSMIncidentsClient", "GetTimelineEventCommand")
|
|
1391
|
-
.sc(GetTimelineEvent$)
|
|
281
|
+
.sc(schemas_0.GetTimelineEvent$)
|
|
1392
282
|
.build() {
|
|
1393
283
|
}
|
|
1394
284
|
|
|
@@ -1400,7 +290,7 @@ class ListIncidentFindingsCommand extends smithyClient.Command
|
|
|
1400
290
|
})
|
|
1401
291
|
.s("SSMIncidents", "ListIncidentFindings", {})
|
|
1402
292
|
.n("SSMIncidentsClient", "ListIncidentFindingsCommand")
|
|
1403
|
-
.sc(ListIncidentFindings$)
|
|
293
|
+
.sc(schemas_0.ListIncidentFindings$)
|
|
1404
294
|
.build() {
|
|
1405
295
|
}
|
|
1406
296
|
|
|
@@ -1412,7 +302,7 @@ class ListIncidentRecordsCommand extends smithyClient.Command
|
|
|
1412
302
|
})
|
|
1413
303
|
.s("SSMIncidents", "ListIncidentRecords", {})
|
|
1414
304
|
.n("SSMIncidentsClient", "ListIncidentRecordsCommand")
|
|
1415
|
-
.sc(ListIncidentRecords$)
|
|
305
|
+
.sc(schemas_0.ListIncidentRecords$)
|
|
1416
306
|
.build() {
|
|
1417
307
|
}
|
|
1418
308
|
|
|
@@ -1424,7 +314,7 @@ class ListRelatedItemsCommand extends smithyClient.Command
|
|
|
1424
314
|
})
|
|
1425
315
|
.s("SSMIncidents", "ListRelatedItems", {})
|
|
1426
316
|
.n("SSMIncidentsClient", "ListRelatedItemsCommand")
|
|
1427
|
-
.sc(ListRelatedItems$)
|
|
317
|
+
.sc(schemas_0.ListRelatedItems$)
|
|
1428
318
|
.build() {
|
|
1429
319
|
}
|
|
1430
320
|
|
|
@@ -1436,7 +326,7 @@ class ListReplicationSetsCommand extends smithyClient.Command
|
|
|
1436
326
|
})
|
|
1437
327
|
.s("SSMIncidents", "ListReplicationSets", {})
|
|
1438
328
|
.n("SSMIncidentsClient", "ListReplicationSetsCommand")
|
|
1439
|
-
.sc(ListReplicationSets$)
|
|
329
|
+
.sc(schemas_0.ListReplicationSets$)
|
|
1440
330
|
.build() {
|
|
1441
331
|
}
|
|
1442
332
|
|
|
@@ -1448,7 +338,7 @@ class ListResponsePlansCommand extends smithyClient.Command
|
|
|
1448
338
|
})
|
|
1449
339
|
.s("SSMIncidents", "ListResponsePlans", {})
|
|
1450
340
|
.n("SSMIncidentsClient", "ListResponsePlansCommand")
|
|
1451
|
-
.sc(ListResponsePlans$)
|
|
341
|
+
.sc(schemas_0.ListResponsePlans$)
|
|
1452
342
|
.build() {
|
|
1453
343
|
}
|
|
1454
344
|
|
|
@@ -1460,7 +350,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1460
350
|
})
|
|
1461
351
|
.s("SSMIncidents", "ListTagsForResource", {})
|
|
1462
352
|
.n("SSMIncidentsClient", "ListTagsForResourceCommand")
|
|
1463
|
-
.sc(ListTagsForResource$)
|
|
353
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1464
354
|
.build() {
|
|
1465
355
|
}
|
|
1466
356
|
|
|
@@ -1472,7 +362,7 @@ class ListTimelineEventsCommand extends smithyClient.Command
|
|
|
1472
362
|
})
|
|
1473
363
|
.s("SSMIncidents", "ListTimelineEvents", {})
|
|
1474
364
|
.n("SSMIncidentsClient", "ListTimelineEventsCommand")
|
|
1475
|
-
.sc(ListTimelineEvents$)
|
|
365
|
+
.sc(schemas_0.ListTimelineEvents$)
|
|
1476
366
|
.build() {
|
|
1477
367
|
}
|
|
1478
368
|
|
|
@@ -1484,7 +374,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
1484
374
|
})
|
|
1485
375
|
.s("SSMIncidents", "PutResourcePolicy", {})
|
|
1486
376
|
.n("SSMIncidentsClient", "PutResourcePolicyCommand")
|
|
1487
|
-
.sc(PutResourcePolicy$)
|
|
377
|
+
.sc(schemas_0.PutResourcePolicy$)
|
|
1488
378
|
.build() {
|
|
1489
379
|
}
|
|
1490
380
|
|
|
@@ -1496,7 +386,7 @@ class StartIncidentCommand extends smithyClient.Command
|
|
|
1496
386
|
})
|
|
1497
387
|
.s("SSMIncidents", "StartIncident", {})
|
|
1498
388
|
.n("SSMIncidentsClient", "StartIncidentCommand")
|
|
1499
|
-
.sc(StartIncident$)
|
|
389
|
+
.sc(schemas_0.StartIncident$)
|
|
1500
390
|
.build() {
|
|
1501
391
|
}
|
|
1502
392
|
|
|
@@ -1508,7 +398,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1508
398
|
})
|
|
1509
399
|
.s("SSMIncidents", "TagResource", {})
|
|
1510
400
|
.n("SSMIncidentsClient", "TagResourceCommand")
|
|
1511
|
-
.sc(TagResource$)
|
|
401
|
+
.sc(schemas_0.TagResource$)
|
|
1512
402
|
.build() {
|
|
1513
403
|
}
|
|
1514
404
|
|
|
@@ -1520,7 +410,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1520
410
|
})
|
|
1521
411
|
.s("SSMIncidents", "UntagResource", {})
|
|
1522
412
|
.n("SSMIncidentsClient", "UntagResourceCommand")
|
|
1523
|
-
.sc(UntagResource$)
|
|
413
|
+
.sc(schemas_0.UntagResource$)
|
|
1524
414
|
.build() {
|
|
1525
415
|
}
|
|
1526
416
|
|
|
@@ -1532,7 +422,7 @@ class UpdateDeletionProtectionCommand extends smithyClient.Command
|
|
|
1532
422
|
})
|
|
1533
423
|
.s("SSMIncidents", "UpdateDeletionProtection", {})
|
|
1534
424
|
.n("SSMIncidentsClient", "UpdateDeletionProtectionCommand")
|
|
1535
|
-
.sc(UpdateDeletionProtection$)
|
|
425
|
+
.sc(schemas_0.UpdateDeletionProtection$)
|
|
1536
426
|
.build() {
|
|
1537
427
|
}
|
|
1538
428
|
|
|
@@ -1544,7 +434,7 @@ class UpdateIncidentRecordCommand extends smithyClient.Command
|
|
|
1544
434
|
})
|
|
1545
435
|
.s("SSMIncidents", "UpdateIncidentRecord", {})
|
|
1546
436
|
.n("SSMIncidentsClient", "UpdateIncidentRecordCommand")
|
|
1547
|
-
.sc(UpdateIncidentRecord$)
|
|
437
|
+
.sc(schemas_0.UpdateIncidentRecord$)
|
|
1548
438
|
.build() {
|
|
1549
439
|
}
|
|
1550
440
|
|
|
@@ -1556,7 +446,7 @@ class UpdateRelatedItemsCommand extends smithyClient.Command
|
|
|
1556
446
|
})
|
|
1557
447
|
.s("SSMIncidents", "UpdateRelatedItems", {})
|
|
1558
448
|
.n("SSMIncidentsClient", "UpdateRelatedItemsCommand")
|
|
1559
|
-
.sc(UpdateRelatedItems$)
|
|
449
|
+
.sc(schemas_0.UpdateRelatedItems$)
|
|
1560
450
|
.build() {
|
|
1561
451
|
}
|
|
1562
452
|
|
|
@@ -1568,7 +458,7 @@ class UpdateReplicationSetCommand extends smithyClient.Command
|
|
|
1568
458
|
})
|
|
1569
459
|
.s("SSMIncidents", "UpdateReplicationSet", {})
|
|
1570
460
|
.n("SSMIncidentsClient", "UpdateReplicationSetCommand")
|
|
1571
|
-
.sc(UpdateReplicationSet$)
|
|
461
|
+
.sc(schemas_0.UpdateReplicationSet$)
|
|
1572
462
|
.build() {
|
|
1573
463
|
}
|
|
1574
464
|
|
|
@@ -1580,7 +470,7 @@ class UpdateResponsePlanCommand extends smithyClient.Command
|
|
|
1580
470
|
})
|
|
1581
471
|
.s("SSMIncidents", "UpdateResponsePlan", {})
|
|
1582
472
|
.n("SSMIncidentsClient", "UpdateResponsePlanCommand")
|
|
1583
|
-
.sc(UpdateResponsePlan$)
|
|
473
|
+
.sc(schemas_0.UpdateResponsePlan$)
|
|
1584
474
|
.build() {
|
|
1585
475
|
}
|
|
1586
476
|
|
|
@@ -1592,7 +482,7 @@ class UpdateTimelineEventCommand extends smithyClient.Command
|
|
|
1592
482
|
})
|
|
1593
483
|
.s("SSMIncidents", "UpdateTimelineEvent", {})
|
|
1594
484
|
.n("SSMIncidentsClient", "UpdateTimelineEventCommand")
|
|
1595
|
-
.sc(UpdateTimelineEvent$)
|
|
485
|
+
.sc(schemas_0.UpdateTimelineEvent$)
|
|
1596
486
|
.build() {
|
|
1597
487
|
}
|
|
1598
488
|
|
|
@@ -1821,197 +711,52 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1821
711
|
enumerable: true,
|
|
1822
712
|
get: function () { return smithyClient.Client; }
|
|
1823
713
|
});
|
|
1824
|
-
exports
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
exports.AttributeValueList$ = AttributeValueList$;
|
|
1829
|
-
exports.AutomationExecution$ = AutomationExecution$;
|
|
1830
|
-
exports.BatchGetIncidentFindings$ = BatchGetIncidentFindings$;
|
|
714
|
+
Object.defineProperty(exports, "SSMIncidentsServiceException", {
|
|
715
|
+
enumerable: true,
|
|
716
|
+
get: function () { return SSMIncidentsServiceException.SSMIncidentsServiceException; }
|
|
717
|
+
});
|
|
1831
718
|
exports.BatchGetIncidentFindingsCommand = BatchGetIncidentFindingsCommand;
|
|
1832
|
-
exports.BatchGetIncidentFindingsError$ = BatchGetIncidentFindingsError$;
|
|
1833
|
-
exports.BatchGetIncidentFindingsInput$ = BatchGetIncidentFindingsInput$;
|
|
1834
|
-
exports.BatchGetIncidentFindingsOutput$ = BatchGetIncidentFindingsOutput$;
|
|
1835
|
-
exports.ChatChannel$ = ChatChannel$;
|
|
1836
|
-
exports.CloudFormationStackUpdate$ = CloudFormationStackUpdate$;
|
|
1837
|
-
exports.CodeDeployDeployment$ = CodeDeployDeployment$;
|
|
1838
|
-
exports.Condition$ = Condition$;
|
|
1839
|
-
exports.ConflictException = ConflictException;
|
|
1840
|
-
exports.ConflictException$ = ConflictException$;
|
|
1841
|
-
exports.CreateReplicationSet$ = CreateReplicationSet$;
|
|
1842
719
|
exports.CreateReplicationSetCommand = CreateReplicationSetCommand;
|
|
1843
|
-
exports.CreateReplicationSetInput$ = CreateReplicationSetInput$;
|
|
1844
|
-
exports.CreateReplicationSetOutput$ = CreateReplicationSetOutput$;
|
|
1845
|
-
exports.CreateResponsePlan$ = CreateResponsePlan$;
|
|
1846
720
|
exports.CreateResponsePlanCommand = CreateResponsePlanCommand;
|
|
1847
|
-
exports.CreateResponsePlanInput$ = CreateResponsePlanInput$;
|
|
1848
|
-
exports.CreateResponsePlanOutput$ = CreateResponsePlanOutput$;
|
|
1849
|
-
exports.CreateTimelineEvent$ = CreateTimelineEvent$;
|
|
1850
721
|
exports.CreateTimelineEventCommand = CreateTimelineEventCommand;
|
|
1851
|
-
exports.CreateTimelineEventInput$ = CreateTimelineEventInput$;
|
|
1852
|
-
exports.CreateTimelineEventOutput$ = CreateTimelineEventOutput$;
|
|
1853
|
-
exports.DeleteIncidentRecord$ = DeleteIncidentRecord$;
|
|
1854
722
|
exports.DeleteIncidentRecordCommand = DeleteIncidentRecordCommand;
|
|
1855
|
-
exports.DeleteIncidentRecordInput$ = DeleteIncidentRecordInput$;
|
|
1856
|
-
exports.DeleteIncidentRecordOutput$ = DeleteIncidentRecordOutput$;
|
|
1857
|
-
exports.DeleteRegionAction$ = DeleteRegionAction$;
|
|
1858
|
-
exports.DeleteReplicationSet$ = DeleteReplicationSet$;
|
|
1859
723
|
exports.DeleteReplicationSetCommand = DeleteReplicationSetCommand;
|
|
1860
|
-
exports.DeleteReplicationSetInput$ = DeleteReplicationSetInput$;
|
|
1861
|
-
exports.DeleteReplicationSetOutput$ = DeleteReplicationSetOutput$;
|
|
1862
|
-
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
1863
724
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
1864
|
-
exports.DeleteResourcePolicyInput$ = DeleteResourcePolicyInput$;
|
|
1865
|
-
exports.DeleteResourcePolicyOutput$ = DeleteResourcePolicyOutput$;
|
|
1866
|
-
exports.DeleteResponsePlan$ = DeleteResponsePlan$;
|
|
1867
725
|
exports.DeleteResponsePlanCommand = DeleteResponsePlanCommand;
|
|
1868
|
-
exports.DeleteResponsePlanInput$ = DeleteResponsePlanInput$;
|
|
1869
|
-
exports.DeleteResponsePlanOutput$ = DeleteResponsePlanOutput$;
|
|
1870
|
-
exports.DeleteTimelineEvent$ = DeleteTimelineEvent$;
|
|
1871
726
|
exports.DeleteTimelineEventCommand = DeleteTimelineEventCommand;
|
|
1872
|
-
exports.DeleteTimelineEventInput$ = DeleteTimelineEventInput$;
|
|
1873
|
-
exports.DeleteTimelineEventOutput$ = DeleteTimelineEventOutput$;
|
|
1874
|
-
exports.DynamicSsmParameterValue$ = DynamicSsmParameterValue$;
|
|
1875
|
-
exports.EmptyChatChannel$ = EmptyChatChannel$;
|
|
1876
|
-
exports.EventReference$ = EventReference$;
|
|
1877
|
-
exports.EventSummary$ = EventSummary$;
|
|
1878
|
-
exports.Filter$ = Filter$;
|
|
1879
|
-
exports.Finding$ = Finding$;
|
|
1880
|
-
exports.FindingDetails$ = FindingDetails$;
|
|
1881
|
-
exports.FindingSummary$ = FindingSummary$;
|
|
1882
|
-
exports.GetIncidentRecord$ = GetIncidentRecord$;
|
|
1883
727
|
exports.GetIncidentRecordCommand = GetIncidentRecordCommand;
|
|
1884
|
-
exports.GetIncidentRecordInput$ = GetIncidentRecordInput$;
|
|
1885
|
-
exports.GetIncidentRecordOutput$ = GetIncidentRecordOutput$;
|
|
1886
|
-
exports.GetReplicationSet$ = GetReplicationSet$;
|
|
1887
728
|
exports.GetReplicationSetCommand = GetReplicationSetCommand;
|
|
1888
|
-
exports.GetReplicationSetInput$ = GetReplicationSetInput$;
|
|
1889
|
-
exports.GetReplicationSetOutput$ = GetReplicationSetOutput$;
|
|
1890
|
-
exports.GetResourcePolicies$ = GetResourcePolicies$;
|
|
1891
729
|
exports.GetResourcePoliciesCommand = GetResourcePoliciesCommand;
|
|
1892
|
-
exports.GetResourcePoliciesInput$ = GetResourcePoliciesInput$;
|
|
1893
|
-
exports.GetResourcePoliciesOutput$ = GetResourcePoliciesOutput$;
|
|
1894
|
-
exports.GetResponsePlan$ = GetResponsePlan$;
|
|
1895
730
|
exports.GetResponsePlanCommand = GetResponsePlanCommand;
|
|
1896
|
-
exports.GetResponsePlanInput$ = GetResponsePlanInput$;
|
|
1897
|
-
exports.GetResponsePlanOutput$ = GetResponsePlanOutput$;
|
|
1898
|
-
exports.GetTimelineEvent$ = GetTimelineEvent$;
|
|
1899
731
|
exports.GetTimelineEventCommand = GetTimelineEventCommand;
|
|
1900
|
-
exports.GetTimelineEventInput$ = GetTimelineEventInput$;
|
|
1901
|
-
exports.GetTimelineEventOutput$ = GetTimelineEventOutput$;
|
|
1902
|
-
exports.IncidentRecord$ = IncidentRecord$;
|
|
1903
|
-
exports.IncidentRecordSource$ = IncidentRecordSource$;
|
|
1904
732
|
exports.IncidentRecordStatus = IncidentRecordStatus;
|
|
1905
|
-
exports.IncidentRecordSummary$ = IncidentRecordSummary$;
|
|
1906
|
-
exports.IncidentTemplate$ = IncidentTemplate$;
|
|
1907
|
-
exports.Integration$ = Integration$;
|
|
1908
|
-
exports.InternalServerException = InternalServerException;
|
|
1909
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1910
|
-
exports.ItemIdentifier$ = ItemIdentifier$;
|
|
1911
733
|
exports.ItemType = ItemType;
|
|
1912
|
-
exports.ItemValue$ = ItemValue$;
|
|
1913
|
-
exports.ListIncidentFindings$ = ListIncidentFindings$;
|
|
1914
734
|
exports.ListIncidentFindingsCommand = ListIncidentFindingsCommand;
|
|
1915
|
-
exports.ListIncidentFindingsInput$ = ListIncidentFindingsInput$;
|
|
1916
|
-
exports.ListIncidentFindingsOutput$ = ListIncidentFindingsOutput$;
|
|
1917
|
-
exports.ListIncidentRecords$ = ListIncidentRecords$;
|
|
1918
735
|
exports.ListIncidentRecordsCommand = ListIncidentRecordsCommand;
|
|
1919
|
-
exports.ListIncidentRecordsInput$ = ListIncidentRecordsInput$;
|
|
1920
|
-
exports.ListIncidentRecordsOutput$ = ListIncidentRecordsOutput$;
|
|
1921
|
-
exports.ListRelatedItems$ = ListRelatedItems$;
|
|
1922
736
|
exports.ListRelatedItemsCommand = ListRelatedItemsCommand;
|
|
1923
|
-
exports.ListRelatedItemsInput$ = ListRelatedItemsInput$;
|
|
1924
|
-
exports.ListRelatedItemsOutput$ = ListRelatedItemsOutput$;
|
|
1925
|
-
exports.ListReplicationSets$ = ListReplicationSets$;
|
|
1926
737
|
exports.ListReplicationSetsCommand = ListReplicationSetsCommand;
|
|
1927
|
-
exports.ListReplicationSetsInput$ = ListReplicationSetsInput$;
|
|
1928
|
-
exports.ListReplicationSetsOutput$ = ListReplicationSetsOutput$;
|
|
1929
|
-
exports.ListResponsePlans$ = ListResponsePlans$;
|
|
1930
738
|
exports.ListResponsePlansCommand = ListResponsePlansCommand;
|
|
1931
|
-
exports.ListResponsePlansInput$ = ListResponsePlansInput$;
|
|
1932
|
-
exports.ListResponsePlansOutput$ = ListResponsePlansOutput$;
|
|
1933
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1934
739
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1935
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1936
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1937
|
-
exports.ListTimelineEvents$ = ListTimelineEvents$;
|
|
1938
740
|
exports.ListTimelineEventsCommand = ListTimelineEventsCommand;
|
|
1939
|
-
exports.ListTimelineEventsInput$ = ListTimelineEventsInput$;
|
|
1940
|
-
exports.ListTimelineEventsOutput$ = ListTimelineEventsOutput$;
|
|
1941
|
-
exports.NotificationTargetItem$ = NotificationTargetItem$;
|
|
1942
|
-
exports.PagerDutyConfiguration$ = PagerDutyConfiguration$;
|
|
1943
|
-
exports.PagerDutyIncidentConfiguration$ = PagerDutyIncidentConfiguration$;
|
|
1944
|
-
exports.PagerDutyIncidentDetail$ = PagerDutyIncidentDetail$;
|
|
1945
|
-
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
1946
741
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
1947
|
-
exports.PutResourcePolicyInput$ = PutResourcePolicyInput$;
|
|
1948
|
-
exports.PutResourcePolicyOutput$ = PutResourcePolicyOutput$;
|
|
1949
|
-
exports.RegionInfo$ = RegionInfo$;
|
|
1950
|
-
exports.RegionMapInputValue$ = RegionMapInputValue$;
|
|
1951
742
|
exports.RegionStatus = RegionStatus;
|
|
1952
|
-
exports.RelatedItem$ = RelatedItem$;
|
|
1953
|
-
exports.RelatedItemsUpdate$ = RelatedItemsUpdate$;
|
|
1954
|
-
exports.ReplicationSet$ = ReplicationSet$;
|
|
1955
743
|
exports.ReplicationSetStatus = ReplicationSetStatus;
|
|
1956
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1957
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1958
|
-
exports.ResourcePolicy$ = ResourcePolicy$;
|
|
1959
744
|
exports.ResourceType = ResourceType;
|
|
1960
|
-
exports.ResponsePlanSummary$ = ResponsePlanSummary$;
|
|
1961
745
|
exports.SSMIncidents = SSMIncidents;
|
|
1962
746
|
exports.SSMIncidentsClient = SSMIncidentsClient;
|
|
1963
|
-
exports.SSMIncidentsServiceException = SSMIncidentsServiceException;
|
|
1964
|
-
exports.SSMIncidentsServiceException$ = SSMIncidentsServiceException$;
|
|
1965
747
|
exports.ServiceCode = ServiceCode;
|
|
1966
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1967
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1968
748
|
exports.SortOrder = SortOrder;
|
|
1969
|
-
exports.SsmAutomation$ = SsmAutomation$;
|
|
1970
749
|
exports.SsmTargetAccount = SsmTargetAccount;
|
|
1971
|
-
exports.StartIncident$ = StartIncident$;
|
|
1972
750
|
exports.StartIncidentCommand = StartIncidentCommand;
|
|
1973
|
-
exports.StartIncidentInput$ = StartIncidentInput$;
|
|
1974
|
-
exports.StartIncidentOutput$ = StartIncidentOutput$;
|
|
1975
|
-
exports.TagResource$ = TagResource$;
|
|
1976
751
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1977
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1978
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1979
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1980
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1981
|
-
exports.TimelineEvent$ = TimelineEvent$;
|
|
1982
752
|
exports.TimelineEventSort = TimelineEventSort;
|
|
1983
|
-
exports.TriggerDetails$ = TriggerDetails$;
|
|
1984
|
-
exports.UntagResource$ = UntagResource$;
|
|
1985
753
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1986
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1987
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1988
|
-
exports.UpdateDeletionProtection$ = UpdateDeletionProtection$;
|
|
1989
754
|
exports.UpdateDeletionProtectionCommand = UpdateDeletionProtectionCommand;
|
|
1990
|
-
exports.UpdateDeletionProtectionInput$ = UpdateDeletionProtectionInput$;
|
|
1991
|
-
exports.UpdateDeletionProtectionOutput$ = UpdateDeletionProtectionOutput$;
|
|
1992
|
-
exports.UpdateIncidentRecord$ = UpdateIncidentRecord$;
|
|
1993
755
|
exports.UpdateIncidentRecordCommand = UpdateIncidentRecordCommand;
|
|
1994
|
-
exports.UpdateIncidentRecordInput$ = UpdateIncidentRecordInput$;
|
|
1995
|
-
exports.UpdateIncidentRecordOutput$ = UpdateIncidentRecordOutput$;
|
|
1996
|
-
exports.UpdateRelatedItems$ = UpdateRelatedItems$;
|
|
1997
756
|
exports.UpdateRelatedItemsCommand = UpdateRelatedItemsCommand;
|
|
1998
|
-
exports.UpdateRelatedItemsInput$ = UpdateRelatedItemsInput$;
|
|
1999
|
-
exports.UpdateRelatedItemsOutput$ = UpdateRelatedItemsOutput$;
|
|
2000
|
-
exports.UpdateReplicationSet$ = UpdateReplicationSet$;
|
|
2001
|
-
exports.UpdateReplicationSetAction$ = UpdateReplicationSetAction$;
|
|
2002
757
|
exports.UpdateReplicationSetCommand = UpdateReplicationSetCommand;
|
|
2003
|
-
exports.UpdateReplicationSetInput$ = UpdateReplicationSetInput$;
|
|
2004
|
-
exports.UpdateReplicationSetOutput$ = UpdateReplicationSetOutput$;
|
|
2005
|
-
exports.UpdateResponsePlan$ = UpdateResponsePlan$;
|
|
2006
758
|
exports.UpdateResponsePlanCommand = UpdateResponsePlanCommand;
|
|
2007
|
-
exports.UpdateResponsePlanInput$ = UpdateResponsePlanInput$;
|
|
2008
|
-
exports.UpdateResponsePlanOutput$ = UpdateResponsePlanOutput$;
|
|
2009
|
-
exports.UpdateTimelineEvent$ = UpdateTimelineEvent$;
|
|
2010
759
|
exports.UpdateTimelineEventCommand = UpdateTimelineEventCommand;
|
|
2011
|
-
exports.UpdateTimelineEventInput$ = UpdateTimelineEventInput$;
|
|
2012
|
-
exports.UpdateTimelineEventOutput$ = UpdateTimelineEventOutput$;
|
|
2013
|
-
exports.ValidationException = ValidationException;
|
|
2014
|
-
exports.ValidationException$ = ValidationException$;
|
|
2015
760
|
exports.VariableType = VariableType;
|
|
2016
761
|
exports.paginateGetResourcePolicies = paginateGetResourcePolicies;
|
|
2017
762
|
exports.paginateListIncidentFindings = paginateListIncidentFindings;
|
|
@@ -2024,3 +769,15 @@ exports.waitForWaitForReplicationSetActive = waitForWaitForReplicationSetActive;
|
|
|
2024
769
|
exports.waitForWaitForReplicationSetDeleted = waitForWaitForReplicationSetDeleted;
|
|
2025
770
|
exports.waitUntilWaitForReplicationSetActive = waitUntilWaitForReplicationSetActive;
|
|
2026
771
|
exports.waitUntilWaitForReplicationSetDeleted = waitUntilWaitForReplicationSetDeleted;
|
|
772
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
773
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
774
|
+
enumerable: true,
|
|
775
|
+
get: function () { return schemas_0[k]; }
|
|
776
|
+
});
|
|
777
|
+
});
|
|
778
|
+
Object.keys(errors).forEach(function (k) {
|
|
779
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
780
|
+
enumerable: true,
|
|
781
|
+
get: function () { return errors[k]; }
|
|
782
|
+
});
|
|
783
|
+
});
|