@aws-sdk/client-aiops 3.952.0 → 3.954.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist-cjs/index.js +161 -117
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateInvestigationGroupCommand.js +2 -2
  4. package/dist-es/commands/DeleteInvestigationGroupCommand.js +2 -2
  5. package/dist-es/commands/DeleteInvestigationGroupPolicyCommand.js +2 -2
  6. package/dist-es/commands/GetInvestigationGroupCommand.js +2 -2
  7. package/dist-es/commands/GetInvestigationGroupPolicyCommand.js +2 -2
  8. package/dist-es/commands/ListInvestigationGroupsCommand.js +2 -2
  9. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  10. package/dist-es/commands/PutInvestigationGroupPolicyCommand.js +2 -2
  11. package/dist-es/commands/TagResourceCommand.js +2 -2
  12. package/dist-es/commands/UntagResourceCommand.js +2 -2
  13. package/dist-es/commands/UpdateInvestigationGroupCommand.js +2 -2
  14. package/dist-es/index.js +1 -0
  15. package/dist-es/runtimeConfig.shared.js +6 -1
  16. package/dist-es/schemas/schemas_0.js +88 -88
  17. package/dist-types/AIOpsClient.d.ts +1 -10
  18. package/dist-types/index.d.ts +1 -0
  19. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  20. package/dist-types/runtimeConfig.d.ts +6 -2
  21. package/dist-types/runtimeConfig.native.d.ts +6 -2
  22. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  23. package/dist-types/schemas/schemas_0.d.ts +45 -54
  24. package/dist-types/ts3.4/AIOpsClient.d.ts +0 -4
  25. package/dist-types/ts3.4/index.d.ts +1 -0
  26. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  30. package/dist-types/ts3.4/schemas/schemas_0.d.ts +44 -56
  31. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class AIOpsClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let AIOpsServiceException$1 = class AIOpsServiceException extends smithyClient.ServiceException {
113
+ class AIOpsServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, AIOpsServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends AIOpsServiceException$1 {
120
+ class AccessDeniedException extends AIOpsServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends AIOpsServiceEx
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends AIOpsServiceException$1 {
131
+ }
132
+ class ConflictException extends AIOpsServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let ConflictException$1 = class ConflictException extends AIOpsServiceException$
140
140
  });
141
141
  Object.setPrototypeOf(this, ConflictException.prototype);
142
142
  }
143
- };
144
- let ForbiddenException$1 = class ForbiddenException extends AIOpsServiceException$1 {
143
+ }
144
+ class ForbiddenException extends AIOpsServiceException {
145
145
  name = "ForbiddenException";
146
146
  $fault = "client";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let ForbiddenException$1 = class ForbiddenException extends AIOpsServiceExceptio
152
152
  });
153
153
  Object.setPrototypeOf(this, ForbiddenException.prototype);
154
154
  }
155
- };
156
- let InternalServerException$1 = class InternalServerException extends AIOpsServiceException$1 {
155
+ }
156
+ class InternalServerException extends AIOpsServiceException {
157
157
  name = "InternalServerException";
158
158
  $fault = "server";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ let InternalServerException$1 = class InternalServerException extends AIOpsServi
164
164
  });
165
165
  Object.setPrototypeOf(this, InternalServerException.prototype);
166
166
  }
167
- };
168
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends AIOpsServiceException$1 {
167
+ }
168
+ class ResourceNotFoundException extends AIOpsServiceException {
169
169
  name = "ResourceNotFoundException";
170
170
  $fault = "client";
171
171
  constructor(opts) {
@@ -176,8 +176,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends AIOpsS
176
176
  });
177
177
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
178
178
  }
179
- };
180
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends AIOpsServiceException$1 {
179
+ }
180
+ class ServiceQuotaExceededException extends AIOpsServiceException {
181
181
  name = "ServiceQuotaExceededException";
182
182
  $fault = "client";
183
183
  resourceId;
@@ -196,8 +196,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
196
196
  this.serviceCode = opts.serviceCode;
197
197
  this.quotaCode = opts.quotaCode;
198
198
  }
199
- };
200
- let ThrottlingException$1 = class ThrottlingException extends AIOpsServiceException$1 {
199
+ }
200
+ class ThrottlingException extends AIOpsServiceException {
201
201
  name = "ThrottlingException";
202
202
  $fault = "client";
203
203
  constructor(opts) {
@@ -208,8 +208,8 @@ let ThrottlingException$1 = class ThrottlingException extends AIOpsServiceExcept
208
208
  });
209
209
  Object.setPrototypeOf(this, ThrottlingException.prototype);
210
210
  }
211
- };
212
- let ValidationException$1 = class ValidationException extends AIOpsServiceException$1 {
211
+ }
212
+ class ValidationException extends AIOpsServiceException {
213
213
  name = "ValidationException";
214
214
  $fault = "client";
215
215
  constructor(opts) {
@@ -220,7 +220,7 @@ let ValidationException$1 = class ValidationException extends AIOpsServiceExcept
220
220
  });
221
221
  Object.setPrototypeOf(this, ValidationException.prototype);
222
222
  }
223
- };
223
+ }
224
224
 
225
225
  const _ADE = "AccessDeniedException";
226
226
  const _CAC = "CrossAccountConfiguration";
@@ -308,11 +308,11 @@ const _tKB = "tagKeyBoundaries";
308
308
  const _ty = "type";
309
309
  const n0 = "com.amazonaws.aiops";
310
310
  var SensitiveStringWithLengthLimits = [0, n0, _SSWLL, 8, 0];
311
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
312
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
313
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
314
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
315
- var CreateInvestigationGroupInput = [
311
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
312
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
313
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
314
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
315
+ var CreateInvestigationGroupInput$ = [
316
316
  3,
317
317
  n0,
318
318
  _CIGI,
@@ -321,7 +321,7 @@ var CreateInvestigationGroupInput = [
321
321
  [
322
322
  0,
323
323
  0,
324
- () => EncryptionConfiguration,
324
+ () => EncryptionConfiguration$,
325
325
  1,
326
326
  128 | 0,
327
327
  64 | 0,
@@ -330,18 +330,18 @@ var CreateInvestigationGroupInput = [
330
330
  () => CrossAccountConfigurations,
331
331
  ],
332
332
  ];
333
- var CreateInvestigationGroupOutput = [3, n0, _CIGO, 0, [_a], [0]];
334
- var CrossAccountConfiguration = [3, n0, _CAC, 0, [_sRA], [0]];
335
- var DeleteInvestigationGroupPolicyOutput = [3, n0, _DIGPO, 0, [], []];
336
- var DeleteInvestigationGroupPolicyRequest = [3, n0, _DIGPR, 0, [_i], [[0, 1]]];
337
- var DeleteInvestigationGroupRequest = [3, n0, _DIGR, 0, [_i], [[0, 1]]];
338
- var EncryptionConfiguration = [3, n0, _EC, 0, [_ty, _kKI], [0, 0]];
339
- var ForbiddenException = [-3, n0, _FE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
340
- schema.TypeRegistry.for(n0).registerError(ForbiddenException, ForbiddenException$1);
341
- var GetInvestigationGroupPolicyRequest = [3, n0, _GIGPR, 0, [_i], [[0, 1]]];
342
- var GetInvestigationGroupPolicyResponse = [3, n0, _GIGPRe, 0, [_iGA, _p], [0, 0]];
343
- var GetInvestigationGroupRequest = [3, n0, _GIGR, 0, [_i], [[0, 1]]];
344
- var GetInvestigationGroupResponse = [
333
+ var CreateInvestigationGroupOutput$ = [3, n0, _CIGO, 0, [_a], [0]];
334
+ var CrossAccountConfiguration$ = [3, n0, _CAC, 0, [_sRA], [0]];
335
+ var DeleteInvestigationGroupPolicyOutput$ = [3, n0, _DIGPO, 0, [], []];
336
+ var DeleteInvestigationGroupPolicyRequest$ = [3, n0, _DIGPR, 0, [_i], [[0, 1]]];
337
+ var DeleteInvestigationGroupRequest$ = [3, n0, _DIGR, 0, [_i], [[0, 1]]];
338
+ var EncryptionConfiguration$ = [3, n0, _EC, 0, [_ty, _kKI], [0, 0]];
339
+ var ForbiddenException$ = [-3, n0, _FE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
340
+ schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
341
+ var GetInvestigationGroupPolicyRequest$ = [3, n0, _GIGPR, 0, [_i], [[0, 1]]];
342
+ var GetInvestigationGroupPolicyResponse$ = [3, n0, _GIGPRe, 0, [_iGA, _p], [0, 0]];
343
+ var GetInvestigationGroupRequest$ = [3, n0, _GIGR, 0, [_i], [[0, 1]]];
344
+ var GetInvestigationGroupResponse$ = [
345
345
  3,
346
346
  n0,
347
347
  _GIGRe,
@@ -355,7 +355,7 @@ var GetInvestigationGroupResponse = [
355
355
  0,
356
356
  0,
357
357
  0,
358
- () => EncryptionConfiguration,
358
+ () => EncryptionConfiguration$,
359
359
  1,
360
360
  [2, n0, _CNC, 0, 0, 64 | 0],
361
361
  64 | 0,
@@ -363,9 +363,9 @@ var GetInvestigationGroupResponse = [
363
363
  () => CrossAccountConfigurations,
364
364
  ],
365
365
  ];
366
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
367
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
368
- var ListInvestigationGroupsInput = [
366
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
367
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
368
+ var ListInvestigationGroupsInput$ = [
369
369
  3,
370
370
  n0,
371
371
  _LIGI,
@@ -376,8 +376,8 @@ var ListInvestigationGroupsInput = [
376
376
  [1, { [_hQ]: _mR }],
377
377
  ],
378
378
  ];
379
- var ListInvestigationGroupsModel = [3, n0, _LIGM, 0, [_a, _n], [0, 0]];
380
- var ListInvestigationGroupsOutput = [
379
+ var ListInvestigationGroupsModel$ = [3, n0, _LIGM, 0, [_a, _n], [0, 0]];
380
+ var ListInvestigationGroupsOutput$ = [
381
381
  3,
382
382
  n0,
383
383
  _LIGO,
@@ -385,13 +385,13 @@ var ListInvestigationGroupsOutput = [
385
385
  [_nT, _iG],
386
386
  [[() => SensitiveStringWithLengthLimits, 0], () => InvestigationGroups],
387
387
  ];
388
- var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_t], [128 | 0]];
389
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
390
- var PutInvestigationGroupPolicyRequest = [3, n0, _PIGPR, 0, [_i, _p], [[0, 1], 0]];
391
- var PutInvestigationGroupPolicyResponse = [3, n0, _PIGPRu, 0, [_iGA], [0]];
392
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
393
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
394
- var ServiceQuotaExceededException = [
388
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_t], [128 | 0]];
389
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
390
+ var PutInvestigationGroupPolicyRequest$ = [3, n0, _PIGPR, 0, [_i, _p], [[0, 1], 0]];
391
+ var PutInvestigationGroupPolicyResponse$ = [3, n0, _PIGPRu, 0, [_iGA], [0]];
392
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
393
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
394
+ var ServiceQuotaExceededException$ = [
395
395
  -3,
396
396
  n0,
397
397
  _SQEE,
@@ -399,12 +399,12 @@ var ServiceQuotaExceededException = [
399
399
  [_m, _rI, _rT, _sC, _qC],
400
400
  [0, 0, 0, 0, 0],
401
401
  ];
402
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
403
- var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], 128 | 0]];
404
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
405
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
406
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
407
- var UntagResourceRequest = [
402
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
403
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], 128 | 0]];
404
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
405
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
406
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
407
+ var UntagResourceRequest$ = [
408
408
  3,
409
409
  n0,
410
410
  _URR,
@@ -415,110 +415,110 @@ var UntagResourceRequest = [
415
415
  [64 | 0, { [_hQ]: _tK }],
416
416
  ],
417
417
  ];
418
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
419
- var UpdateInvestigationGroupOutput = [3, n0, _UIGO, 0, [], []];
420
- var UpdateInvestigationGroupRequest = [
418
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
419
+ var UpdateInvestigationGroupOutput$ = [3, n0, _UIGO, 0, [], []];
420
+ var UpdateInvestigationGroupRequest$ = [
421
421
  3,
422
422
  n0,
423
423
  _UIGR,
424
424
  0,
425
425
  [_i, _rA, _eC, _tKB, _cNC, _iCTEHE, _cAC],
426
- [[0, 1], 0, () => EncryptionConfiguration, 64 | 0, [2, n0, _CNC, 0, 0, 64 | 0], 2, () => CrossAccountConfigurations],
426
+ [[0, 1], 0, () => EncryptionConfiguration$, 64 | 0, [2, n0, _CNC, 0, 0, 64 | 0], 2, () => CrossAccountConfigurations],
427
427
  ];
428
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
429
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
428
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
429
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
430
430
  var __Unit = "unit";
431
- var AIOpsServiceException = [-3, _sm, "AIOpsServiceException", 0, [], []];
432
- schema.TypeRegistry.for(_sm).registerError(AIOpsServiceException, AIOpsServiceException$1);
433
- var CrossAccountConfigurations = [1, n0, _CACr, 0, () => CrossAccountConfiguration];
434
- var InvestigationGroups = [1, n0, _IG, 0, () => ListInvestigationGroupsModel];
435
- var CreateInvestigationGroup = [
431
+ var AIOpsServiceException$ = [-3, _sm, "AIOpsServiceException", 0, [], []];
432
+ schema.TypeRegistry.for(_sm).registerError(AIOpsServiceException$, AIOpsServiceException);
433
+ var CrossAccountConfigurations = [1, n0, _CACr, 0, () => CrossAccountConfiguration$];
434
+ var InvestigationGroups = [1, n0, _IG, 0, () => ListInvestigationGroupsModel$];
435
+ var CreateInvestigationGroup$ = [
436
436
  9,
437
437
  n0,
438
438
  _CIG,
439
439
  { [_h]: ["POST", "/investigationGroups", 201] },
440
- () => CreateInvestigationGroupInput,
441
- () => CreateInvestigationGroupOutput,
440
+ () => CreateInvestigationGroupInput$,
441
+ () => CreateInvestigationGroupOutput$,
442
442
  ];
443
- var DeleteInvestigationGroup = [
443
+ var DeleteInvestigationGroup$ = [
444
444
  9,
445
445
  n0,
446
446
  _DIG,
447
447
  { [_h]: ["DELETE", "/investigationGroups/{identifier}", 200] },
448
- () => DeleteInvestigationGroupRequest,
448
+ () => DeleteInvestigationGroupRequest$,
449
449
  () => __Unit,
450
450
  ];
451
- var DeleteInvestigationGroupPolicy = [
451
+ var DeleteInvestigationGroupPolicy$ = [
452
452
  9,
453
453
  n0,
454
454
  _DIGP,
455
455
  { [_h]: ["DELETE", "/investigationGroups/{identifier}/policy", 200] },
456
- () => DeleteInvestigationGroupPolicyRequest,
457
- () => DeleteInvestigationGroupPolicyOutput,
456
+ () => DeleteInvestigationGroupPolicyRequest$,
457
+ () => DeleteInvestigationGroupPolicyOutput$,
458
458
  ];
459
- var GetInvestigationGroup = [
459
+ var GetInvestigationGroup$ = [
460
460
  9,
461
461
  n0,
462
462
  _GIG,
463
463
  { [_h]: ["GET", "/investigationGroups/{identifier}", 200] },
464
- () => GetInvestigationGroupRequest,
465
- () => GetInvestigationGroupResponse,
464
+ () => GetInvestigationGroupRequest$,
465
+ () => GetInvestigationGroupResponse$,
466
466
  ];
467
- var GetInvestigationGroupPolicy = [
467
+ var GetInvestigationGroupPolicy$ = [
468
468
  9,
469
469
  n0,
470
470
  _GIGP,
471
471
  { [_h]: ["GET", "/investigationGroups/{identifier}/policy", 200] },
472
- () => GetInvestigationGroupPolicyRequest,
473
- () => GetInvestigationGroupPolicyResponse,
472
+ () => GetInvestigationGroupPolicyRequest$,
473
+ () => GetInvestigationGroupPolicyResponse$,
474
474
  ];
475
- var ListInvestigationGroups = [
475
+ var ListInvestigationGroups$ = [
476
476
  9,
477
477
  n0,
478
478
  _LIG,
479
479
  { [_h]: ["GET", "/investigationGroups", 200] },
480
- () => ListInvestigationGroupsInput,
481
- () => ListInvestigationGroupsOutput,
480
+ () => ListInvestigationGroupsInput$,
481
+ () => ListInvestigationGroupsOutput$,
482
482
  ];
483
- var ListTagsForResource = [
483
+ var ListTagsForResource$ = [
484
484
  9,
485
485
  n0,
486
486
  _LTFR,
487
487
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
488
- () => ListTagsForResourceRequest,
489
- () => ListTagsForResourceOutput,
488
+ () => ListTagsForResourceRequest$,
489
+ () => ListTagsForResourceOutput$,
490
490
  ];
491
- var PutInvestigationGroupPolicy = [
491
+ var PutInvestigationGroupPolicy$ = [
492
492
  9,
493
493
  n0,
494
494
  _PIGP,
495
495
  { [_h]: ["POST", "/investigationGroups/{identifier}/policy", 200] },
496
- () => PutInvestigationGroupPolicyRequest,
497
- () => PutInvestigationGroupPolicyResponse,
496
+ () => PutInvestigationGroupPolicyRequest$,
497
+ () => PutInvestigationGroupPolicyResponse$,
498
498
  ];
499
- var TagResource = [
499
+ var TagResource$ = [
500
500
  9,
501
501
  n0,
502
502
  _TR,
503
503
  { [_h]: ["POST", "/tags/{resourceArn}", 200] },
504
- () => TagResourceRequest,
505
- () => TagResourceResponse,
504
+ () => TagResourceRequest$,
505
+ () => TagResourceResponse$,
506
506
  ];
507
- var UntagResource = [
507
+ var UntagResource$ = [
508
508
  9,
509
509
  n0,
510
510
  _UR,
511
511
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
512
- () => UntagResourceRequest,
513
- () => UntagResourceResponse,
512
+ () => UntagResourceRequest$,
513
+ () => UntagResourceResponse$,
514
514
  ];
515
- var UpdateInvestigationGroup = [
515
+ var UpdateInvestigationGroup$ = [
516
516
  9,
517
517
  n0,
518
518
  _UIG,
519
519
  { [_h]: ["PATCH", "/investigationGroups/{identifier}", 200] },
520
- () => UpdateInvestigationGroupRequest,
521
- () => UpdateInvestigationGroupOutput,
520
+ () => UpdateInvestigationGroupRequest$,
521
+ () => UpdateInvestigationGroupOutput$,
522
522
  ];
523
523
 
524
524
  class CreateInvestigationGroupCommand extends smithyClient.Command
@@ -529,7 +529,7 @@ class CreateInvestigationGroupCommand extends smithyClient.Command
529
529
  })
530
530
  .s("AIOps", "CreateInvestigationGroup", {})
531
531
  .n("AIOpsClient", "CreateInvestigationGroupCommand")
532
- .sc(CreateInvestigationGroup)
532
+ .sc(CreateInvestigationGroup$)
533
533
  .build() {
534
534
  }
535
535
 
@@ -541,7 +541,7 @@ class DeleteInvestigationGroupCommand extends smithyClient.Command
541
541
  })
542
542
  .s("AIOps", "DeleteInvestigationGroup", {})
543
543
  .n("AIOpsClient", "DeleteInvestigationGroupCommand")
544
- .sc(DeleteInvestigationGroup)
544
+ .sc(DeleteInvestigationGroup$)
545
545
  .build() {
546
546
  }
547
547
 
@@ -553,7 +553,7 @@ class DeleteInvestigationGroupPolicyCommand extends smithyClient.Command
553
553
  })
554
554
  .s("AIOps", "DeleteInvestigationGroupPolicy", {})
555
555
  .n("AIOpsClient", "DeleteInvestigationGroupPolicyCommand")
556
- .sc(DeleteInvestigationGroupPolicy)
556
+ .sc(DeleteInvestigationGroupPolicy$)
557
557
  .build() {
558
558
  }
559
559
 
@@ -565,7 +565,7 @@ class GetInvestigationGroupCommand extends smithyClient.Command
565
565
  })
566
566
  .s("AIOps", "GetInvestigationGroup", {})
567
567
  .n("AIOpsClient", "GetInvestigationGroupCommand")
568
- .sc(GetInvestigationGroup)
568
+ .sc(GetInvestigationGroup$)
569
569
  .build() {
570
570
  }
571
571
 
@@ -577,7 +577,7 @@ class GetInvestigationGroupPolicyCommand extends smithyClient.Command
577
577
  })
578
578
  .s("AIOps", "GetInvestigationGroupPolicy", {})
579
579
  .n("AIOpsClient", "GetInvestigationGroupPolicyCommand")
580
- .sc(GetInvestigationGroupPolicy)
580
+ .sc(GetInvestigationGroupPolicy$)
581
581
  .build() {
582
582
  }
583
583
 
@@ -589,7 +589,7 @@ class ListInvestigationGroupsCommand extends smithyClient.Command
589
589
  })
590
590
  .s("AIOps", "ListInvestigationGroups", {})
591
591
  .n("AIOpsClient", "ListInvestigationGroupsCommand")
592
- .sc(ListInvestigationGroups)
592
+ .sc(ListInvestigationGroups$)
593
593
  .build() {
594
594
  }
595
595
 
@@ -601,7 +601,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
601
601
  })
602
602
  .s("AIOps", "ListTagsForResource", {})
603
603
  .n("AIOpsClient", "ListTagsForResourceCommand")
604
- .sc(ListTagsForResource)
604
+ .sc(ListTagsForResource$)
605
605
  .build() {
606
606
  }
607
607
 
@@ -613,7 +613,7 @@ class PutInvestigationGroupPolicyCommand extends smithyClient.Command
613
613
  })
614
614
  .s("AIOps", "PutInvestigationGroupPolicy", {})
615
615
  .n("AIOpsClient", "PutInvestigationGroupPolicyCommand")
616
- .sc(PutInvestigationGroupPolicy)
616
+ .sc(PutInvestigationGroupPolicy$)
617
617
  .build() {
618
618
  }
619
619
 
@@ -625,7 +625,7 @@ class TagResourceCommand extends smithyClient.Command
625
625
  })
626
626
  .s("AIOps", "TagResource", {})
627
627
  .n("AIOpsClient", "TagResourceCommand")
628
- .sc(TagResource)
628
+ .sc(TagResource$)
629
629
  .build() {
630
630
  }
631
631
 
@@ -637,7 +637,7 @@ class UntagResourceCommand extends smithyClient.Command
637
637
  })
638
638
  .s("AIOps", "UntagResource", {})
639
639
  .n("AIOpsClient", "UntagResourceCommand")
640
- .sc(UntagResource)
640
+ .sc(UntagResource$)
641
641
  .build() {
642
642
  }
643
643
 
@@ -649,7 +649,7 @@ class UpdateInvestigationGroupCommand extends smithyClient.Command
649
649
  })
650
650
  .s("AIOps", "UpdateInvestigationGroup", {})
651
651
  .n("AIOpsClient", "UpdateInvestigationGroupCommand")
652
- .sc(UpdateInvestigationGroup)
652
+ .sc(UpdateInvestigationGroup$)
653
653
  .build() {
654
654
  }
655
655
 
@@ -687,25 +687,69 @@ Object.defineProperty(exports, "__Client", {
687
687
  });
688
688
  exports.AIOps = AIOps;
689
689
  exports.AIOpsClient = AIOpsClient;
690
- exports.AIOpsServiceException = AIOpsServiceException$1;
691
- exports.AccessDeniedException = AccessDeniedException$1;
692
- exports.ConflictException = ConflictException$1;
690
+ exports.AIOpsServiceException = AIOpsServiceException;
691
+ exports.AIOpsServiceException$ = AIOpsServiceException$;
692
+ exports.AccessDeniedException = AccessDeniedException;
693
+ exports.AccessDeniedException$ = AccessDeniedException$;
694
+ exports.ConflictException = ConflictException;
695
+ exports.ConflictException$ = ConflictException$;
696
+ exports.CreateInvestigationGroup$ = CreateInvestigationGroup$;
693
697
  exports.CreateInvestigationGroupCommand = CreateInvestigationGroupCommand;
698
+ exports.CreateInvestigationGroupInput$ = CreateInvestigationGroupInput$;
699
+ exports.CreateInvestigationGroupOutput$ = CreateInvestigationGroupOutput$;
700
+ exports.CrossAccountConfiguration$ = CrossAccountConfiguration$;
701
+ exports.DeleteInvestigationGroup$ = DeleteInvestigationGroup$;
694
702
  exports.DeleteInvestigationGroupCommand = DeleteInvestigationGroupCommand;
703
+ exports.DeleteInvestigationGroupPolicy$ = DeleteInvestigationGroupPolicy$;
695
704
  exports.DeleteInvestigationGroupPolicyCommand = DeleteInvestigationGroupPolicyCommand;
705
+ exports.DeleteInvestigationGroupPolicyOutput$ = DeleteInvestigationGroupPolicyOutput$;
706
+ exports.DeleteInvestigationGroupPolicyRequest$ = DeleteInvestigationGroupPolicyRequest$;
707
+ exports.DeleteInvestigationGroupRequest$ = DeleteInvestigationGroupRequest$;
708
+ exports.EncryptionConfiguration$ = EncryptionConfiguration$;
696
709
  exports.EncryptionConfigurationType = EncryptionConfigurationType;
697
- exports.ForbiddenException = ForbiddenException$1;
710
+ exports.ForbiddenException = ForbiddenException;
711
+ exports.ForbiddenException$ = ForbiddenException$;
712
+ exports.GetInvestigationGroup$ = GetInvestigationGroup$;
698
713
  exports.GetInvestigationGroupCommand = GetInvestigationGroupCommand;
714
+ exports.GetInvestigationGroupPolicy$ = GetInvestigationGroupPolicy$;
699
715
  exports.GetInvestigationGroupPolicyCommand = GetInvestigationGroupPolicyCommand;
700
- exports.InternalServerException = InternalServerException$1;
716
+ exports.GetInvestigationGroupPolicyRequest$ = GetInvestigationGroupPolicyRequest$;
717
+ exports.GetInvestigationGroupPolicyResponse$ = GetInvestigationGroupPolicyResponse$;
718
+ exports.GetInvestigationGroupRequest$ = GetInvestigationGroupRequest$;
719
+ exports.GetInvestigationGroupResponse$ = GetInvestigationGroupResponse$;
720
+ exports.InternalServerException = InternalServerException;
721
+ exports.InternalServerException$ = InternalServerException$;
722
+ exports.ListInvestigationGroups$ = ListInvestigationGroups$;
701
723
  exports.ListInvestigationGroupsCommand = ListInvestigationGroupsCommand;
724
+ exports.ListInvestigationGroupsInput$ = ListInvestigationGroupsInput$;
725
+ exports.ListInvestigationGroupsModel$ = ListInvestigationGroupsModel$;
726
+ exports.ListInvestigationGroupsOutput$ = ListInvestigationGroupsOutput$;
727
+ exports.ListTagsForResource$ = ListTagsForResource$;
702
728
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
729
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
730
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
731
+ exports.PutInvestigationGroupPolicy$ = PutInvestigationGroupPolicy$;
703
732
  exports.PutInvestigationGroupPolicyCommand = PutInvestigationGroupPolicyCommand;
704
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
705
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
733
+ exports.PutInvestigationGroupPolicyRequest$ = PutInvestigationGroupPolicyRequest$;
734
+ exports.PutInvestigationGroupPolicyResponse$ = PutInvestigationGroupPolicyResponse$;
735
+ exports.ResourceNotFoundException = ResourceNotFoundException;
736
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
737
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
738
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
739
+ exports.TagResource$ = TagResource$;
706
740
  exports.TagResourceCommand = TagResourceCommand;
707
- exports.ThrottlingException = ThrottlingException$1;
741
+ exports.TagResourceRequest$ = TagResourceRequest$;
742
+ exports.TagResourceResponse$ = TagResourceResponse$;
743
+ exports.ThrottlingException = ThrottlingException;
744
+ exports.ThrottlingException$ = ThrottlingException$;
745
+ exports.UntagResource$ = UntagResource$;
708
746
  exports.UntagResourceCommand = UntagResourceCommand;
747
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
748
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
749
+ exports.UpdateInvestigationGroup$ = UpdateInvestigationGroup$;
709
750
  exports.UpdateInvestigationGroupCommand = UpdateInvestigationGroupCommand;
710
- exports.ValidationException = ValidationException$1;
751
+ exports.UpdateInvestigationGroupOutput$ = UpdateInvestigationGroupOutput$;
752
+ exports.UpdateInvestigationGroupRequest$ = UpdateInvestigationGroupRequest$;
753
+ exports.ValidationException = ValidationException;
754
+ exports.ValidationException$ = ValidationException$;
711
755
  exports.paginateListInvestigationGroups = paginateListInvestigationGroups;
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.aiops" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.aiops",
32
+ version: "2018-05-10",
33
+ serviceTarget: "AIOps",
34
+ },
30
35
  serviceId: config?.serviceId ?? "AIOps",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateInvestigationGroup } from "../schemas/schemas_0";
4
+ import { CreateInvestigationGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateInvestigationGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateInvestigationGroupCommand extends $Command
11
11
  })
12
12
  .s("AIOps", "CreateInvestigationGroup", {})
13
13
  .n("AIOpsClient", "CreateInvestigationGroupCommand")
14
- .sc(CreateInvestigationGroup)
14
+ .sc(CreateInvestigationGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteInvestigationGroup } from "../schemas/schemas_0";
4
+ import { DeleteInvestigationGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteInvestigationGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteInvestigationGroupCommand extends $Command
11
11
  })
12
12
  .s("AIOps", "DeleteInvestigationGroup", {})
13
13
  .n("AIOpsClient", "DeleteInvestigationGroupCommand")
14
- .sc(DeleteInvestigationGroup)
14
+ .sc(DeleteInvestigationGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteInvestigationGroupPolicy } from "../schemas/schemas_0";
4
+ import { DeleteInvestigationGroupPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteInvestigationGroupPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteInvestigationGroupPolicyCommand extends $Command
11
11
  })
12
12
  .s("AIOps", "DeleteInvestigationGroupPolicy", {})
13
13
  .n("AIOpsClient", "DeleteInvestigationGroupPolicyCommand")
14
- .sc(DeleteInvestigationGroupPolicy)
14
+ .sc(DeleteInvestigationGroupPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetInvestigationGroup } from "../schemas/schemas_0";
4
+ import { GetInvestigationGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetInvestigationGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetInvestigationGroupCommand extends $Command
11
11
  })
12
12
  .s("AIOps", "GetInvestigationGroup", {})
13
13
  .n("AIOpsClient", "GetInvestigationGroupCommand")
14
- .sc(GetInvestigationGroup)
14
+ .sc(GetInvestigationGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetInvestigationGroupPolicy } from "../schemas/schemas_0";
4
+ import { GetInvestigationGroupPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetInvestigationGroupPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetInvestigationGroupPolicyCommand extends $Command
11
11
  })
12
12
  .s("AIOps", "GetInvestigationGroupPolicy", {})
13
13
  .n("AIOpsClient", "GetInvestigationGroupPolicyCommand")
14
- .sc(GetInvestigationGroupPolicy)
14
+ .sc(GetInvestigationGroupPolicy$)
15
15
  .build() {
16
16
  }