@aws-sdk/client-devops-guru 3.927.0 → 3.929.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 (52) hide show
  1. package/dist-cjs/index.js +1861 -1731
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/DevOpsGuruClient.js +2 -0
  4. package/dist-es/commands/AddNotificationChannelCommand.js +3 -9
  5. package/dist-es/commands/DeleteInsightCommand.js +3 -9
  6. package/dist-es/commands/DescribeAccountHealthCommand.js +3 -9
  7. package/dist-es/commands/DescribeAccountOverviewCommand.js +3 -9
  8. package/dist-es/commands/DescribeAnomalyCommand.js +3 -9
  9. package/dist-es/commands/DescribeEventSourcesConfigCommand.js +3 -9
  10. package/dist-es/commands/DescribeFeedbackCommand.js +3 -9
  11. package/dist-es/commands/DescribeInsightCommand.js +3 -9
  12. package/dist-es/commands/DescribeOrganizationHealthCommand.js +3 -9
  13. package/dist-es/commands/DescribeOrganizationOverviewCommand.js +3 -9
  14. package/dist-es/commands/DescribeOrganizationResourceCollectionHealthCommand.js +3 -9
  15. package/dist-es/commands/DescribeResourceCollectionHealthCommand.js +3 -9
  16. package/dist-es/commands/DescribeServiceIntegrationCommand.js +3 -9
  17. package/dist-es/commands/GetCostEstimationCommand.js +3 -9
  18. package/dist-es/commands/GetResourceCollectionCommand.js +3 -9
  19. package/dist-es/commands/ListAnomaliesForInsightCommand.js +3 -9
  20. package/dist-es/commands/ListAnomalousLogGroupsCommand.js +3 -9
  21. package/dist-es/commands/ListEventsCommand.js +3 -9
  22. package/dist-es/commands/ListInsightsCommand.js +3 -9
  23. package/dist-es/commands/ListMonitoredResourcesCommand.js +3 -9
  24. package/dist-es/commands/ListNotificationChannelsCommand.js +3 -9
  25. package/dist-es/commands/ListOrganizationInsightsCommand.js +3 -9
  26. package/dist-es/commands/ListRecommendationsCommand.js +3 -9
  27. package/dist-es/commands/PutFeedbackCommand.js +3 -9
  28. package/dist-es/commands/RemoveNotificationChannelCommand.js +3 -9
  29. package/dist-es/commands/SearchInsightsCommand.js +3 -9
  30. package/dist-es/commands/SearchOrganizationInsightsCommand.js +3 -9
  31. package/dist-es/commands/StartCostEstimationCommand.js +3 -9
  32. package/dist-es/commands/UpdateEventSourcesConfigCommand.js +3 -9
  33. package/dist-es/commands/UpdateResourceCollectionCommand.js +3 -9
  34. package/dist-es/commands/UpdateServiceIntegrationCommand.js +3 -9
  35. package/dist-es/runtimeConfig.shared.js +2 -0
  36. package/dist-es/schemas/schemas_0.js +1799 -0
  37. package/dist-types/DevOpsGuruClient.d.ts +10 -1
  38. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  39. package/dist-types/runtimeConfig.d.ts +1 -0
  40. package/dist-types/runtimeConfig.native.d.ts +1 -0
  41. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  42. package/dist-types/schemas/schemas_0.d.ts +251 -0
  43. package/dist-types/ts3.4/DevOpsGuruClient.d.ts +4 -0
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  48. package/dist-types/ts3.4/schemas/schemas_0.d.ts +256 -0
  49. package/package.json +5 -6
  50. package/dist-es/protocols/Aws_restJson1.js +0 -1497
  51. package/dist-types/protocols/Aws_restJson1.d.ts +0 -281
  52. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -377
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
- var uuid = require('@smithy/uuid');
20
18
 
21
19
  const resolveClientEndpointParameters = (options) => {
22
20
  return Object.assign(options, {
@@ -92,6 +90,7 @@ class DevOpsGuruClient extends smithyClient.Client {
92
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
93
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
94
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
95
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
96
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
97
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -111,14 +110,14 @@ class DevOpsGuruClient extends smithyClient.Client {
111
110
  }
112
111
  }
113
112
 
114
- class DevOpsGuruServiceException extends smithyClient.ServiceException {
113
+ let DevOpsGuruServiceException$1 = class DevOpsGuruServiceException extends smithyClient.ServiceException {
115
114
  constructor(options) {
116
115
  super(options);
117
116
  Object.setPrototypeOf(this, DevOpsGuruServiceException.prototype);
118
117
  }
119
- }
118
+ };
120
119
 
121
- class AccessDeniedException extends DevOpsGuruServiceException {
120
+ let AccessDeniedException$1 = class AccessDeniedException extends DevOpsGuruServiceException$1 {
122
121
  name = "AccessDeniedException";
123
122
  $fault = "client";
124
123
  Message;
@@ -131,7 +130,7 @@ class AccessDeniedException extends DevOpsGuruServiceException {
131
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
131
  this.Message = opts.Message;
133
132
  }
134
- }
133
+ };
135
134
  const NotificationMessageType = {
136
135
  CLOSED_INSIGHT: "CLOSED_INSIGHT",
137
136
  NEW_ASSOCIATION: "NEW_ASSOCIATION",
@@ -144,7 +143,7 @@ const InsightSeverity = {
144
143
  LOW: "LOW",
145
144
  MEDIUM: "MEDIUM",
146
145
  };
147
- class ConflictException extends DevOpsGuruServiceException {
146
+ let ConflictException$1 = class ConflictException extends DevOpsGuruServiceException$1 {
148
147
  name = "ConflictException";
149
148
  $fault = "client";
150
149
  Message;
@@ -161,8 +160,8 @@ class ConflictException extends DevOpsGuruServiceException {
161
160
  this.ResourceId = opts.ResourceId;
162
161
  this.ResourceType = opts.ResourceType;
163
162
  }
164
- }
165
- class InternalServerException extends DevOpsGuruServiceException {
163
+ };
164
+ let InternalServerException$1 = class InternalServerException extends DevOpsGuruServiceException$1 {
166
165
  name = "InternalServerException";
167
166
  $fault = "server";
168
167
  Message;
@@ -177,8 +176,8 @@ class InternalServerException extends DevOpsGuruServiceException {
177
176
  this.Message = opts.Message;
178
177
  this.RetryAfterSeconds = opts.RetryAfterSeconds;
179
178
  }
180
- }
181
- class ResourceNotFoundException extends DevOpsGuruServiceException {
179
+ };
180
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends DevOpsGuruServiceException$1 {
182
181
  name = "ResourceNotFoundException";
183
182
  $fault = "client";
184
183
  Message;
@@ -195,8 +194,8 @@ class ResourceNotFoundException extends DevOpsGuruServiceException {
195
194
  this.ResourceId = opts.ResourceId;
196
195
  this.ResourceType = opts.ResourceType;
197
196
  }
198
- }
199
- class ServiceQuotaExceededException extends DevOpsGuruServiceException {
197
+ };
198
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends DevOpsGuruServiceException$1 {
200
199
  name = "ServiceQuotaExceededException";
201
200
  $fault = "client";
202
201
  Message;
@@ -209,8 +208,8 @@ class ServiceQuotaExceededException extends DevOpsGuruServiceException {
209
208
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
210
209
  this.Message = opts.Message;
211
210
  }
212
- }
213
- class ThrottlingException extends DevOpsGuruServiceException {
211
+ };
212
+ let ThrottlingException$1 = class ThrottlingException extends DevOpsGuruServiceException$1 {
214
213
  name = "ThrottlingException";
215
214
  $fault = "client";
216
215
  Message;
@@ -229,7 +228,7 @@ class ThrottlingException extends DevOpsGuruServiceException {
229
228
  this.ServiceCode = opts.ServiceCode;
230
229
  this.RetryAfterSeconds = opts.RetryAfterSeconds;
231
230
  }
232
- }
231
+ };
233
232
  const ValidationExceptionReason = {
234
233
  CANNOT_PARSE: "CANNOT_PARSE",
235
234
  FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
@@ -238,7 +237,7 @@ const ValidationExceptionReason = {
238
237
  PARAMETER_INCONSISTENT_WITH_SERVICE_STATE: "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE",
239
238
  UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
240
239
  };
241
- class ValidationException extends DevOpsGuruServiceException {
240
+ let ValidationException$1 = class ValidationException extends DevOpsGuruServiceException$1 {
242
241
  name = "ValidationException";
243
242
  $fault = "client";
244
243
  Message;
@@ -255,7 +254,7 @@ class ValidationException extends DevOpsGuruServiceException {
255
254
  this.Reason = opts.Reason;
256
255
  this.Fields = opts.Fields;
257
256
  }
258
- }
257
+ };
259
258
  const EventSourceOptInStatus = {
260
259
  DISABLED: "DISABLED",
261
260
  ENABLED: "ENABLED",
@@ -429,1511 +428,1792 @@ const UpdateResourceCollectionAction = {
429
428
  REMOVE: "REMOVE",
430
429
  };
431
430
 
432
- const se_AddNotificationChannelCommand = async (input, context) => {
433
- const b = core.requestBuilder(input, context);
434
- const headers = {
435
- "content-type": "application/json",
436
- };
437
- b.bp("/channels");
438
- let body;
439
- body = JSON.stringify(smithyClient.take(input, {
440
- Config: (_) => smithyClient._json(_),
441
- }));
442
- b.m("PUT").h(headers).b(body);
443
- return b.build();
444
- };
445
- const se_DeleteInsightCommand = async (input, context) => {
446
- const b = core.requestBuilder(input, context);
447
- const headers = {};
448
- b.bp("/insights/{Id}");
449
- b.p("Id", () => input.Id, "{Id}", false);
450
- let body;
451
- b.m("DELETE").h(headers).b(body);
452
- return b.build();
453
- };
454
- const se_DescribeAccountHealthCommand = async (input, context) => {
455
- const b = core.requestBuilder(input, context);
456
- const headers = {};
457
- b.bp("/accounts/health");
458
- let body;
459
- b.m("GET").h(headers).b(body);
460
- return b.build();
461
- };
462
- const se_DescribeAccountOverviewCommand = async (input, context) => {
463
- const b = core.requestBuilder(input, context);
464
- const headers = {
465
- "content-type": "application/json",
466
- };
467
- b.bp("/accounts/overview");
468
- let body;
469
- body = JSON.stringify(smithyClient.take(input, {
470
- FromTime: (_) => _.getTime() / 1_000,
471
- ToTime: (_) => _.getTime() / 1_000,
472
- }));
473
- b.m("POST").h(headers).b(body);
474
- return b.build();
475
- };
476
- const se_DescribeAnomalyCommand = async (input, context) => {
477
- const b = core.requestBuilder(input, context);
478
- const headers = {};
479
- b.bp("/anomalies/{Id}");
480
- b.p("Id", () => input.Id, "{Id}", false);
481
- const query = smithyClient.map({
482
- [_AI]: [, input[_AI]],
483
- });
484
- let body;
485
- b.m("GET").h(headers).q(query).b(body);
486
- return b.build();
487
- };
488
- const se_DescribeEventSourcesConfigCommand = async (input, context) => {
489
- const b = core.requestBuilder(input, context);
490
- const headers = {};
491
- b.bp("/event-sources");
492
- let body;
493
- b.m("POST").h(headers).b(body);
494
- return b.build();
495
- };
496
- const se_DescribeFeedbackCommand = async (input, context) => {
497
- const b = core.requestBuilder(input, context);
498
- const headers = {
499
- "content-type": "application/json",
500
- };
501
- b.bp("/feedback");
502
- let body;
503
- body = JSON.stringify(smithyClient.take(input, {
504
- InsightId: [],
505
- }));
506
- b.m("POST").h(headers).b(body);
507
- return b.build();
508
- };
509
- const se_DescribeInsightCommand = async (input, context) => {
510
- const b = core.requestBuilder(input, context);
511
- const headers = {};
512
- b.bp("/insights/{Id}");
513
- b.p("Id", () => input.Id, "{Id}", false);
514
- const query = smithyClient.map({
515
- [_AI]: [, input[_AI]],
516
- });
517
- let body;
518
- b.m("GET").h(headers).q(query).b(body);
519
- return b.build();
520
- };
521
- const se_DescribeOrganizationHealthCommand = async (input, context) => {
522
- const b = core.requestBuilder(input, context);
523
- const headers = {
524
- "content-type": "application/json",
525
- };
526
- b.bp("/organization/health");
527
- let body;
528
- body = JSON.stringify(smithyClient.take(input, {
529
- AccountIds: (_) => smithyClient._json(_),
530
- OrganizationalUnitIds: (_) => smithyClient._json(_),
531
- }));
532
- b.m("POST").h(headers).b(body);
533
- return b.build();
534
- };
535
- const se_DescribeOrganizationOverviewCommand = async (input, context) => {
536
- const b = core.requestBuilder(input, context);
537
- const headers = {
538
- "content-type": "application/json",
539
- };
540
- b.bp("/organization/overview");
541
- let body;
542
- body = JSON.stringify(smithyClient.take(input, {
543
- AccountIds: (_) => smithyClient._json(_),
544
- FromTime: (_) => _.getTime() / 1_000,
545
- OrganizationalUnitIds: (_) => smithyClient._json(_),
546
- ToTime: (_) => _.getTime() / 1_000,
547
- }));
548
- b.m("POST").h(headers).b(body);
549
- return b.build();
550
- };
551
- const se_DescribeOrganizationResourceCollectionHealthCommand = async (input, context) => {
552
- const b = core.requestBuilder(input, context);
553
- const headers = {
554
- "content-type": "application/json",
555
- };
556
- b.bp("/organization/health/resource-collection");
557
- let body;
558
- body = JSON.stringify(smithyClient.take(input, {
559
- AccountIds: (_) => smithyClient._json(_),
560
- MaxResults: [],
561
- NextToken: [],
562
- OrganizationResourceCollectionType: [],
563
- OrganizationalUnitIds: (_) => smithyClient._json(_),
564
- }));
565
- b.m("POST").h(headers).b(body);
566
- return b.build();
567
- };
568
- const se_DescribeResourceCollectionHealthCommand = async (input, context) => {
569
- const b = core.requestBuilder(input, context);
570
- const headers = {};
571
- b.bp("/accounts/health/resource-collection/{ResourceCollectionType}");
572
- b.p("ResourceCollectionType", () => input.ResourceCollectionType, "{ResourceCollectionType}", false);
573
- const query = smithyClient.map({
574
- [_NT]: [, input[_NT]],
575
- });
576
- let body;
577
- b.m("GET").h(headers).q(query).b(body);
578
- return b.build();
579
- };
580
- const se_DescribeServiceIntegrationCommand = async (input, context) => {
581
- const b = core.requestBuilder(input, context);
582
- const headers = {};
583
- b.bp("/service-integrations");
584
- let body;
585
- b.m("GET").h(headers).b(body);
586
- return b.build();
587
- };
588
- const se_GetCostEstimationCommand = async (input, context) => {
589
- const b = core.requestBuilder(input, context);
590
- const headers = {};
591
- b.bp("/cost-estimation");
592
- const query = smithyClient.map({
593
- [_NT]: [, input[_NT]],
594
- });
595
- let body;
596
- b.m("GET").h(headers).q(query).b(body);
597
- return b.build();
598
- };
599
- const se_GetResourceCollectionCommand = async (input, context) => {
600
- const b = core.requestBuilder(input, context);
601
- const headers = {};
602
- b.bp("/resource-collections/{ResourceCollectionType}");
603
- b.p("ResourceCollectionType", () => input.ResourceCollectionType, "{ResourceCollectionType}", false);
604
- const query = smithyClient.map({
605
- [_NT]: [, input[_NT]],
606
- });
607
- let body;
608
- b.m("GET").h(headers).q(query).b(body);
609
- return b.build();
610
- };
611
- const se_ListAnomaliesForInsightCommand = async (input, context) => {
612
- const b = core.requestBuilder(input, context);
613
- const headers = {
614
- "content-type": "application/json",
615
- };
616
- b.bp("/anomalies/insight/{InsightId}");
617
- b.p("InsightId", () => input.InsightId, "{InsightId}", false);
618
- let body;
619
- body = JSON.stringify(smithyClient.take(input, {
620
- AccountId: [],
621
- Filters: (_) => smithyClient._json(_),
622
- MaxResults: [],
623
- NextToken: [],
624
- StartTimeRange: (_) => se_StartTimeRange(_),
625
- }));
626
- b.m("POST").h(headers).b(body);
627
- return b.build();
628
- };
629
- const se_ListAnomalousLogGroupsCommand = async (input, context) => {
630
- const b = core.requestBuilder(input, context);
631
- const headers = {
632
- "content-type": "application/json",
633
- };
634
- b.bp("/list-log-anomalies");
635
- let body;
636
- body = JSON.stringify(smithyClient.take(input, {
637
- InsightId: [],
638
- MaxResults: [],
639
- NextToken: [],
640
- }));
641
- b.m("POST").h(headers).b(body);
642
- return b.build();
643
- };
644
- const se_ListEventsCommand = async (input, context) => {
645
- const b = core.requestBuilder(input, context);
646
- const headers = {
647
- "content-type": "application/json",
648
- };
649
- b.bp("/events");
650
- let body;
651
- body = JSON.stringify(smithyClient.take(input, {
652
- AccountId: [],
653
- Filters: (_) => se_ListEventsFilters(_),
654
- MaxResults: [],
655
- NextToken: [],
656
- }));
657
- b.m("POST").h(headers).b(body);
658
- return b.build();
659
- };
660
- const se_ListInsightsCommand = async (input, context) => {
661
- const b = core.requestBuilder(input, context);
662
- const headers = {
663
- "content-type": "application/json",
664
- };
665
- b.bp("/insights");
666
- let body;
667
- body = JSON.stringify(smithyClient.take(input, {
668
- MaxResults: [],
669
- NextToken: [],
670
- StatusFilter: (_) => se_ListInsightsStatusFilter(_),
671
- }));
672
- b.m("POST").h(headers).b(body);
673
- return b.build();
674
- };
675
- const se_ListMonitoredResourcesCommand = async (input, context) => {
676
- const b = core.requestBuilder(input, context);
677
- const headers = {
678
- "content-type": "application/json",
679
- };
680
- b.bp("/monitoredResources");
681
- let body;
682
- body = JSON.stringify(smithyClient.take(input, {
683
- Filters: (_) => smithyClient._json(_),
684
- MaxResults: [],
685
- NextToken: [],
686
- }));
687
- b.m("POST").h(headers).b(body);
688
- return b.build();
689
- };
690
- const se_ListNotificationChannelsCommand = async (input, context) => {
691
- const b = core.requestBuilder(input, context);
692
- const headers = {
693
- "content-type": "application/json",
694
- };
695
- b.bp("/channels");
696
- let body;
697
- body = JSON.stringify(smithyClient.take(input, {
698
- NextToken: [],
699
- }));
700
- b.m("POST").h(headers).b(body);
701
- return b.build();
702
- };
703
- const se_ListOrganizationInsightsCommand = async (input, context) => {
704
- const b = core.requestBuilder(input, context);
705
- const headers = {
706
- "content-type": "application/json",
707
- };
708
- b.bp("/organization/insights");
709
- let body;
710
- body = JSON.stringify(smithyClient.take(input, {
711
- AccountIds: (_) => smithyClient._json(_),
712
- MaxResults: [],
713
- NextToken: [],
714
- OrganizationalUnitIds: (_) => smithyClient._json(_),
715
- StatusFilter: (_) => se_ListInsightsStatusFilter(_),
716
- }));
717
- b.m("POST").h(headers).b(body);
718
- return b.build();
719
- };
720
- const se_ListRecommendationsCommand = async (input, context) => {
721
- const b = core.requestBuilder(input, context);
722
- const headers = {
723
- "content-type": "application/json",
724
- };
725
- b.bp("/recommendations");
726
- let body;
727
- body = JSON.stringify(smithyClient.take(input, {
728
- AccountId: [],
729
- InsightId: [],
730
- Locale: [],
731
- NextToken: [],
732
- }));
733
- b.m("POST").h(headers).b(body);
734
- return b.build();
735
- };
736
- const se_PutFeedbackCommand = async (input, context) => {
737
- const b = core.requestBuilder(input, context);
738
- const headers = {
739
- "content-type": "application/json",
740
- };
741
- b.bp("/feedback");
742
- let body;
743
- body = JSON.stringify(smithyClient.take(input, {
744
- InsightFeedback: (_) => smithyClient._json(_),
745
- }));
746
- b.m("PUT").h(headers).b(body);
747
- return b.build();
748
- };
749
- const se_RemoveNotificationChannelCommand = async (input, context) => {
750
- const b = core.requestBuilder(input, context);
751
- const headers = {};
752
- b.bp("/channels/{Id}");
753
- b.p("Id", () => input.Id, "{Id}", false);
754
- let body;
755
- b.m("DELETE").h(headers).b(body);
756
- return b.build();
757
- };
758
- const se_SearchInsightsCommand = async (input, context) => {
759
- const b = core.requestBuilder(input, context);
760
- const headers = {
761
- "content-type": "application/json",
762
- };
763
- b.bp("/insights/search");
764
- let body;
765
- body = JSON.stringify(smithyClient.take(input, {
766
- Filters: (_) => smithyClient._json(_),
767
- MaxResults: [],
768
- NextToken: [],
769
- StartTimeRange: (_) => se_StartTimeRange(_),
770
- Type: [],
771
- }));
772
- b.m("POST").h(headers).b(body);
773
- return b.build();
774
- };
775
- const se_SearchOrganizationInsightsCommand = async (input, context) => {
776
- const b = core.requestBuilder(input, context);
777
- const headers = {
778
- "content-type": "application/json",
779
- };
780
- b.bp("/organization/insights/search");
781
- let body;
782
- body = JSON.stringify(smithyClient.take(input, {
783
- AccountIds: (_) => smithyClient._json(_),
784
- Filters: (_) => smithyClient._json(_),
785
- MaxResults: [],
786
- NextToken: [],
787
- StartTimeRange: (_) => se_StartTimeRange(_),
788
- Type: [],
789
- }));
790
- b.m("POST").h(headers).b(body);
791
- return b.build();
792
- };
793
- const se_StartCostEstimationCommand = async (input, context) => {
794
- const b = core.requestBuilder(input, context);
795
- const headers = {
796
- "content-type": "application/json",
797
- };
798
- b.bp("/cost-estimation");
799
- let body;
800
- body = JSON.stringify(smithyClient.take(input, {
801
- ClientToken: [true, (_) => _ ?? uuid.v4()],
802
- ResourceCollection: (_) => smithyClient._json(_),
803
- }));
804
- b.m("PUT").h(headers).b(body);
805
- return b.build();
806
- };
807
- const se_UpdateEventSourcesConfigCommand = async (input, context) => {
808
- const b = core.requestBuilder(input, context);
809
- const headers = {
810
- "content-type": "application/json",
811
- };
812
- b.bp("/event-sources");
813
- let body;
814
- body = JSON.stringify(smithyClient.take(input, {
815
- EventSources: (_) => smithyClient._json(_),
816
- }));
817
- b.m("PUT").h(headers).b(body);
818
- return b.build();
819
- };
820
- const se_UpdateResourceCollectionCommand = async (input, context) => {
821
- const b = core.requestBuilder(input, context);
822
- const headers = {
823
- "content-type": "application/json",
824
- };
825
- b.bp("/resource-collections");
826
- let body;
827
- body = JSON.stringify(smithyClient.take(input, {
828
- Action: [],
829
- ResourceCollection: (_) => smithyClient._json(_),
830
- }));
831
- b.m("PUT").h(headers).b(body);
832
- return b.build();
833
- };
834
- const se_UpdateServiceIntegrationCommand = async (input, context) => {
835
- const b = core.requestBuilder(input, context);
836
- const headers = {
837
- "content-type": "application/json",
838
- };
839
- b.bp("/service-integrations");
840
- let body;
841
- body = JSON.stringify(smithyClient.take(input, {
842
- ServiceIntegration: (_) => smithyClient._json(_),
843
- }));
844
- b.m("PUT").h(headers).b(body);
845
- return b.build();
846
- };
847
- const de_AddNotificationChannelCommand = async (output, context) => {
848
- if (output.statusCode !== 200 && output.statusCode >= 300) {
849
- return de_CommandError(output, context);
850
- }
851
- const contents = smithyClient.map({
852
- $metadata: deserializeMetadata(output),
853
- });
854
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
855
- const doc = smithyClient.take(data, {
856
- Id: smithyClient.expectString,
857
- });
858
- Object.assign(contents, doc);
859
- return contents;
860
- };
861
- const de_DeleteInsightCommand = async (output, context) => {
862
- if (output.statusCode !== 200 && output.statusCode >= 300) {
863
- return de_CommandError(output, context);
864
- }
865
- const contents = smithyClient.map({
866
- $metadata: deserializeMetadata(output),
867
- });
868
- await smithyClient.collectBody(output.body, context);
869
- return contents;
870
- };
871
- const de_DescribeAccountHealthCommand = async (output, context) => {
872
- if (output.statusCode !== 200 && output.statusCode >= 300) {
873
- return de_CommandError(output, context);
874
- }
875
- const contents = smithyClient.map({
876
- $metadata: deserializeMetadata(output),
877
- });
878
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
879
- const doc = smithyClient.take(data, {
880
- AnalyzedResourceCount: smithyClient.expectLong,
881
- MetricsAnalyzed: smithyClient.expectInt32,
882
- OpenProactiveInsights: smithyClient.expectInt32,
883
- OpenReactiveInsights: smithyClient.expectInt32,
884
- ResourceHours: smithyClient.expectLong,
885
- });
886
- Object.assign(contents, doc);
887
- return contents;
888
- };
889
- const de_DescribeAccountOverviewCommand = async (output, context) => {
890
- if (output.statusCode !== 200 && output.statusCode >= 300) {
891
- return de_CommandError(output, context);
892
- }
893
- const contents = smithyClient.map({
894
- $metadata: deserializeMetadata(output),
895
- });
896
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
897
- const doc = smithyClient.take(data, {
898
- MeanTimeToRecoverInMilliseconds: smithyClient.expectLong,
899
- ProactiveInsights: smithyClient.expectInt32,
900
- ReactiveInsights: smithyClient.expectInt32,
901
- });
902
- Object.assign(contents, doc);
903
- return contents;
904
- };
905
- const de_DescribeAnomalyCommand = async (output, context) => {
906
- if (output.statusCode !== 200 && output.statusCode >= 300) {
907
- return de_CommandError(output, context);
908
- }
909
- const contents = smithyClient.map({
910
- $metadata: deserializeMetadata(output),
911
- });
912
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
913
- const doc = smithyClient.take(data, {
914
- ProactiveAnomaly: (_) => de_ProactiveAnomaly(_),
915
- ReactiveAnomaly: (_) => de_ReactiveAnomaly(_),
916
- });
917
- Object.assign(contents, doc);
918
- return contents;
919
- };
920
- const de_DescribeEventSourcesConfigCommand = async (output, context) => {
921
- if (output.statusCode !== 200 && output.statusCode >= 300) {
922
- return de_CommandError(output, context);
923
- }
924
- const contents = smithyClient.map({
925
- $metadata: deserializeMetadata(output),
926
- });
927
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
928
- const doc = smithyClient.take(data, {
929
- EventSources: smithyClient._json,
930
- });
931
- Object.assign(contents, doc);
932
- return contents;
933
- };
934
- const de_DescribeFeedbackCommand = async (output, context) => {
935
- if (output.statusCode !== 200 && output.statusCode >= 300) {
936
- return de_CommandError(output, context);
937
- }
938
- const contents = smithyClient.map({
939
- $metadata: deserializeMetadata(output),
940
- });
941
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
942
- const doc = smithyClient.take(data, {
943
- InsightFeedback: smithyClient._json,
944
- });
945
- Object.assign(contents, doc);
946
- return contents;
947
- };
948
- const de_DescribeInsightCommand = async (output, context) => {
949
- if (output.statusCode !== 200 && output.statusCode >= 300) {
950
- return de_CommandError(output, context);
951
- }
952
- const contents = smithyClient.map({
953
- $metadata: deserializeMetadata(output),
954
- });
955
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
956
- const doc = smithyClient.take(data, {
957
- ProactiveInsight: (_) => de_ProactiveInsight(_),
958
- ReactiveInsight: (_) => de_ReactiveInsight(_),
959
- });
960
- Object.assign(contents, doc);
961
- return contents;
962
- };
963
- const de_DescribeOrganizationHealthCommand = async (output, context) => {
964
- if (output.statusCode !== 200 && output.statusCode >= 300) {
965
- return de_CommandError(output, context);
966
- }
967
- const contents = smithyClient.map({
968
- $metadata: deserializeMetadata(output),
969
- });
970
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
971
- const doc = smithyClient.take(data, {
972
- MetricsAnalyzed: smithyClient.expectInt32,
973
- OpenProactiveInsights: smithyClient.expectInt32,
974
- OpenReactiveInsights: smithyClient.expectInt32,
975
- ResourceHours: smithyClient.expectLong,
976
- });
977
- Object.assign(contents, doc);
978
- return contents;
979
- };
980
- const de_DescribeOrganizationOverviewCommand = async (output, context) => {
981
- if (output.statusCode !== 200 && output.statusCode >= 300) {
982
- return de_CommandError(output, context);
983
- }
984
- const contents = smithyClient.map({
985
- $metadata: deserializeMetadata(output),
986
- });
987
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
988
- const doc = smithyClient.take(data, {
989
- ProactiveInsights: smithyClient.expectInt32,
990
- ReactiveInsights: smithyClient.expectInt32,
991
- });
992
- Object.assign(contents, doc);
993
- return contents;
994
- };
995
- const de_DescribeOrganizationResourceCollectionHealthCommand = async (output, context) => {
996
- if (output.statusCode !== 200 && output.statusCode >= 300) {
997
- return de_CommandError(output, context);
998
- }
999
- const contents = smithyClient.map({
1000
- $metadata: deserializeMetadata(output),
1001
- });
1002
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1003
- const doc = smithyClient.take(data, {
1004
- Account: smithyClient._json,
1005
- CloudFormation: smithyClient._json,
1006
- NextToken: smithyClient.expectString,
1007
- Service: smithyClient._json,
1008
- Tags: smithyClient._json,
1009
- });
1010
- Object.assign(contents, doc);
1011
- return contents;
1012
- };
1013
- const de_DescribeResourceCollectionHealthCommand = async (output, context) => {
1014
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1015
- return de_CommandError(output, context);
1016
- }
1017
- const contents = smithyClient.map({
1018
- $metadata: deserializeMetadata(output),
1019
- });
1020
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1021
- const doc = smithyClient.take(data, {
1022
- CloudFormation: smithyClient._json,
1023
- NextToken: smithyClient.expectString,
1024
- Service: smithyClient._json,
1025
- Tags: smithyClient._json,
1026
- });
1027
- Object.assign(contents, doc);
1028
- return contents;
1029
- };
1030
- const de_DescribeServiceIntegrationCommand = async (output, context) => {
1031
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1032
- return de_CommandError(output, context);
1033
- }
1034
- const contents = smithyClient.map({
1035
- $metadata: deserializeMetadata(output),
1036
- });
1037
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1038
- const doc = smithyClient.take(data, {
1039
- ServiceIntegration: smithyClient._json,
1040
- });
1041
- Object.assign(contents, doc);
1042
- return contents;
1043
- };
1044
- const de_GetCostEstimationCommand = async (output, context) => {
1045
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1046
- return de_CommandError(output, context);
1047
- }
1048
- const contents = smithyClient.map({
1049
- $metadata: deserializeMetadata(output),
1050
- });
1051
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1052
- const doc = smithyClient.take(data, {
1053
- Costs: (_) => de_ServiceResourceCosts(_),
1054
- NextToken: smithyClient.expectString,
1055
- ResourceCollection: smithyClient._json,
1056
- Status: smithyClient.expectString,
1057
- TimeRange: (_) => de_CostEstimationTimeRange(_),
1058
- TotalCost: smithyClient.limitedParseDouble,
1059
- });
1060
- Object.assign(contents, doc);
1061
- return contents;
1062
- };
1063
- const de_GetResourceCollectionCommand = async (output, context) => {
1064
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1065
- return de_CommandError(output, context);
1066
- }
1067
- const contents = smithyClient.map({
1068
- $metadata: deserializeMetadata(output),
1069
- });
1070
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1071
- const doc = smithyClient.take(data, {
1072
- NextToken: smithyClient.expectString,
1073
- ResourceCollection: smithyClient._json,
1074
- });
1075
- Object.assign(contents, doc);
1076
- return contents;
1077
- };
1078
- const de_ListAnomaliesForInsightCommand = async (output, context) => {
1079
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1080
- return de_CommandError(output, context);
1081
- }
1082
- const contents = smithyClient.map({
1083
- $metadata: deserializeMetadata(output),
1084
- });
1085
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1086
- const doc = smithyClient.take(data, {
1087
- NextToken: smithyClient.expectString,
1088
- ProactiveAnomalies: (_) => de_ProactiveAnomalies(_),
1089
- ReactiveAnomalies: (_) => de_ReactiveAnomalies(_),
1090
- });
1091
- Object.assign(contents, doc);
1092
- return contents;
1093
- };
1094
- const de_ListAnomalousLogGroupsCommand = async (output, context) => {
1095
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1096
- return de_CommandError(output, context);
1097
- }
1098
- const contents = smithyClient.map({
1099
- $metadata: deserializeMetadata(output),
1100
- });
1101
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1102
- const doc = smithyClient.take(data, {
1103
- AnomalousLogGroups: (_) => de_AnomalousLogGroups(_),
1104
- InsightId: smithyClient.expectString,
1105
- NextToken: smithyClient.expectString,
1106
- });
1107
- Object.assign(contents, doc);
1108
- return contents;
1109
- };
1110
- const de_ListEventsCommand = async (output, context) => {
1111
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1112
- return de_CommandError(output, context);
1113
- }
1114
- const contents = smithyClient.map({
1115
- $metadata: deserializeMetadata(output),
1116
- });
1117
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1118
- const doc = smithyClient.take(data, {
1119
- Events: (_) => de_Events(_),
1120
- NextToken: smithyClient.expectString,
1121
- });
1122
- Object.assign(contents, doc);
1123
- return contents;
1124
- };
1125
- const de_ListInsightsCommand = async (output, context) => {
1126
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1127
- return de_CommandError(output, context);
1128
- }
1129
- const contents = smithyClient.map({
1130
- $metadata: deserializeMetadata(output),
1131
- });
1132
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1133
- const doc = smithyClient.take(data, {
1134
- NextToken: smithyClient.expectString,
1135
- ProactiveInsights: (_) => de_ProactiveInsights(_),
1136
- ReactiveInsights: (_) => de_ReactiveInsights(_),
1137
- });
1138
- Object.assign(contents, doc);
1139
- return contents;
1140
- };
1141
- const de_ListMonitoredResourcesCommand = async (output, context) => {
1142
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1143
- return de_CommandError(output, context);
1144
- }
1145
- const contents = smithyClient.map({
1146
- $metadata: deserializeMetadata(output),
1147
- });
1148
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1149
- const doc = smithyClient.take(data, {
1150
- MonitoredResourceIdentifiers: (_) => de_MonitoredResourceIdentifiers(_),
1151
- NextToken: smithyClient.expectString,
1152
- });
1153
- Object.assign(contents, doc);
1154
- return contents;
1155
- };
1156
- const de_ListNotificationChannelsCommand = async (output, context) => {
1157
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1158
- return de_CommandError(output, context);
1159
- }
1160
- const contents = smithyClient.map({
1161
- $metadata: deserializeMetadata(output),
1162
- });
1163
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1164
- const doc = smithyClient.take(data, {
1165
- Channels: smithyClient._json,
1166
- NextToken: smithyClient.expectString,
1167
- });
1168
- Object.assign(contents, doc);
1169
- return contents;
1170
- };
1171
- const de_ListOrganizationInsightsCommand = async (output, context) => {
1172
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1173
- return de_CommandError(output, context);
1174
- }
1175
- const contents = smithyClient.map({
1176
- $metadata: deserializeMetadata(output),
1177
- });
1178
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1179
- const doc = smithyClient.take(data, {
1180
- NextToken: smithyClient.expectString,
1181
- ProactiveInsights: (_) => de_ProactiveOrganizationInsights(_),
1182
- ReactiveInsights: (_) => de_ReactiveOrganizationInsights(_),
1183
- });
1184
- Object.assign(contents, doc);
1185
- return contents;
1186
- };
1187
- const de_ListRecommendationsCommand = async (output, context) => {
1188
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1189
- return de_CommandError(output, context);
1190
- }
1191
- const contents = smithyClient.map({
1192
- $metadata: deserializeMetadata(output),
1193
- });
1194
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1195
- const doc = smithyClient.take(data, {
1196
- NextToken: smithyClient.expectString,
1197
- Recommendations: smithyClient._json,
1198
- });
1199
- Object.assign(contents, doc);
1200
- return contents;
1201
- };
1202
- const de_PutFeedbackCommand = async (output, context) => {
1203
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1204
- return de_CommandError(output, context);
1205
- }
1206
- const contents = smithyClient.map({
1207
- $metadata: deserializeMetadata(output),
1208
- });
1209
- await smithyClient.collectBody(output.body, context);
1210
- return contents;
1211
- };
1212
- const de_RemoveNotificationChannelCommand = async (output, context) => {
1213
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1214
- return de_CommandError(output, context);
1215
- }
1216
- const contents = smithyClient.map({
1217
- $metadata: deserializeMetadata(output),
1218
- });
1219
- await smithyClient.collectBody(output.body, context);
1220
- return contents;
1221
- };
1222
- const de_SearchInsightsCommand = async (output, context) => {
1223
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1224
- return de_CommandError(output, context);
1225
- }
1226
- const contents = smithyClient.map({
1227
- $metadata: deserializeMetadata(output),
1228
- });
1229
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1230
- const doc = smithyClient.take(data, {
1231
- NextToken: smithyClient.expectString,
1232
- ProactiveInsights: (_) => de_ProactiveInsights(_),
1233
- ReactiveInsights: (_) => de_ReactiveInsights(_),
1234
- });
1235
- Object.assign(contents, doc);
1236
- return contents;
1237
- };
1238
- const de_SearchOrganizationInsightsCommand = async (output, context) => {
1239
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1240
- return de_CommandError(output, context);
1241
- }
1242
- const contents = smithyClient.map({
1243
- $metadata: deserializeMetadata(output),
1244
- });
1245
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1246
- const doc = smithyClient.take(data, {
1247
- NextToken: smithyClient.expectString,
1248
- ProactiveInsights: (_) => de_ProactiveInsights(_),
1249
- ReactiveInsights: (_) => de_ReactiveInsights(_),
1250
- });
1251
- Object.assign(contents, doc);
1252
- return contents;
1253
- };
1254
- const de_StartCostEstimationCommand = async (output, context) => {
1255
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1256
- return de_CommandError(output, context);
1257
- }
1258
- const contents = smithyClient.map({
1259
- $metadata: deserializeMetadata(output),
1260
- });
1261
- await smithyClient.collectBody(output.body, context);
1262
- return contents;
1263
- };
1264
- const de_UpdateEventSourcesConfigCommand = async (output, context) => {
1265
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1266
- return de_CommandError(output, context);
1267
- }
1268
- const contents = smithyClient.map({
1269
- $metadata: deserializeMetadata(output),
1270
- });
1271
- await smithyClient.collectBody(output.body, context);
1272
- return contents;
1273
- };
1274
- const de_UpdateResourceCollectionCommand = async (output, context) => {
1275
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1276
- return de_CommandError(output, context);
1277
- }
1278
- const contents = smithyClient.map({
1279
- $metadata: deserializeMetadata(output),
1280
- });
1281
- await smithyClient.collectBody(output.body, context);
1282
- return contents;
1283
- };
1284
- const de_UpdateServiceIntegrationCommand = async (output, context) => {
1285
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1286
- return de_CommandError(output, context);
1287
- }
1288
- const contents = smithyClient.map({
1289
- $metadata: deserializeMetadata(output),
1290
- });
1291
- await smithyClient.collectBody(output.body, context);
1292
- return contents;
1293
- };
1294
- const de_CommandError = async (output, context) => {
1295
- const parsedOutput = {
1296
- ...output,
1297
- body: await core$1.parseJsonErrorBody(output.body, context),
1298
- };
1299
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
1300
- switch (errorCode) {
1301
- case "AccessDeniedException":
1302
- case "com.amazonaws.devopsguru#AccessDeniedException":
1303
- throw await de_AccessDeniedExceptionRes(parsedOutput);
1304
- case "ConflictException":
1305
- case "com.amazonaws.devopsguru#ConflictException":
1306
- throw await de_ConflictExceptionRes(parsedOutput);
1307
- case "InternalServerException":
1308
- case "com.amazonaws.devopsguru#InternalServerException":
1309
- throw await de_InternalServerExceptionRes(parsedOutput);
1310
- case "ResourceNotFoundException":
1311
- case "com.amazonaws.devopsguru#ResourceNotFoundException":
1312
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
1313
- case "ServiceQuotaExceededException":
1314
- case "com.amazonaws.devopsguru#ServiceQuotaExceededException":
1315
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
1316
- case "ThrottlingException":
1317
- case "com.amazonaws.devopsguru#ThrottlingException":
1318
- throw await de_ThrottlingExceptionRes(parsedOutput);
1319
- case "ValidationException":
1320
- case "com.amazonaws.devopsguru#ValidationException":
1321
- throw await de_ValidationExceptionRes(parsedOutput);
1322
- default:
1323
- const parsedBody = parsedOutput.body;
1324
- return throwDefaultError({
1325
- output,
1326
- parsedBody,
1327
- errorCode,
1328
- });
1329
- }
1330
- };
1331
- const throwDefaultError = smithyClient.withBaseException(DevOpsGuruServiceException);
1332
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
1333
- const contents = smithyClient.map({});
1334
- const data = parsedOutput.body;
1335
- const doc = smithyClient.take(data, {
1336
- Message: smithyClient.expectString,
1337
- });
1338
- Object.assign(contents, doc);
1339
- const exception = new AccessDeniedException({
1340
- $metadata: deserializeMetadata(parsedOutput),
1341
- ...contents,
1342
- });
1343
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1344
- };
1345
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
1346
- const contents = smithyClient.map({});
1347
- const data = parsedOutput.body;
1348
- const doc = smithyClient.take(data, {
1349
- Message: smithyClient.expectString,
1350
- ResourceId: smithyClient.expectString,
1351
- ResourceType: smithyClient.expectString,
1352
- });
1353
- Object.assign(contents, doc);
1354
- const exception = new ConflictException({
1355
- $metadata: deserializeMetadata(parsedOutput),
1356
- ...contents,
1357
- });
1358
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1359
- };
1360
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
1361
- const contents = smithyClient.map({
1362
- [_RAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
1363
- });
1364
- const data = parsedOutput.body;
1365
- const doc = smithyClient.take(data, {
1366
- Message: smithyClient.expectString,
1367
- });
1368
- Object.assign(contents, doc);
1369
- const exception = new InternalServerException({
1370
- $metadata: deserializeMetadata(parsedOutput),
1371
- ...contents,
1372
- });
1373
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1374
- };
1375
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
1376
- const contents = smithyClient.map({});
1377
- const data = parsedOutput.body;
1378
- const doc = smithyClient.take(data, {
1379
- Message: smithyClient.expectString,
1380
- ResourceId: smithyClient.expectString,
1381
- ResourceType: smithyClient.expectString,
1382
- });
1383
- Object.assign(contents, doc);
1384
- const exception = new ResourceNotFoundException({
1385
- $metadata: deserializeMetadata(parsedOutput),
1386
- ...contents,
1387
- });
1388
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1389
- };
1390
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
1391
- const contents = smithyClient.map({});
1392
- const data = parsedOutput.body;
1393
- const doc = smithyClient.take(data, {
1394
- Message: smithyClient.expectString,
1395
- });
1396
- Object.assign(contents, doc);
1397
- const exception = new ServiceQuotaExceededException({
1398
- $metadata: deserializeMetadata(parsedOutput),
1399
- ...contents,
1400
- });
1401
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1402
- };
1403
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
1404
- const contents = smithyClient.map({
1405
- [_RAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
1406
- });
1407
- const data = parsedOutput.body;
1408
- const doc = smithyClient.take(data, {
1409
- Message: smithyClient.expectString,
1410
- QuotaCode: smithyClient.expectString,
1411
- ServiceCode: smithyClient.expectString,
1412
- });
1413
- Object.assign(contents, doc);
1414
- const exception = new ThrottlingException({
1415
- $metadata: deserializeMetadata(parsedOutput),
1416
- ...contents,
1417
- });
1418
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1419
- };
1420
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
1421
- const contents = smithyClient.map({});
1422
- const data = parsedOutput.body;
1423
- const doc = smithyClient.take(data, {
1424
- Fields: smithyClient._json,
1425
- Message: smithyClient.expectString,
1426
- Reason: smithyClient.expectString,
1427
- });
1428
- Object.assign(contents, doc);
1429
- const exception = new ValidationException({
1430
- $metadata: deserializeMetadata(parsedOutput),
1431
- ...contents,
1432
- });
1433
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1434
- };
1435
- const se_EndTimeRange = (input, context) => {
1436
- return smithyClient.take(input, {
1437
- FromTime: (_) => _.getTime() / 1_000,
1438
- ToTime: (_) => _.getTime() / 1_000,
1439
- });
1440
- };
1441
- const se_EventTimeRange = (input, context) => {
1442
- return smithyClient.take(input, {
1443
- FromTime: (_) => _.getTime() / 1_000,
1444
- ToTime: (_) => _.getTime() / 1_000,
1445
- });
1446
- };
1447
- const se_ListEventsFilters = (input, context) => {
1448
- return smithyClient.take(input, {
1449
- DataSource: [],
1450
- EventClass: [],
1451
- EventSource: [],
1452
- EventTimeRange: (_) => se_EventTimeRange(_),
1453
- InsightId: [],
1454
- ResourceCollection: smithyClient._json,
1455
- });
1456
- };
1457
- const se_ListInsightsAnyStatusFilter = (input, context) => {
1458
- return smithyClient.take(input, {
1459
- StartTimeRange: (_) => se_StartTimeRange(_),
1460
- Type: [],
1461
- });
1462
- };
1463
- const se_ListInsightsClosedStatusFilter = (input, context) => {
1464
- return smithyClient.take(input, {
1465
- EndTimeRange: (_) => se_EndTimeRange(_),
1466
- Type: [],
1467
- });
1468
- };
1469
- const se_ListInsightsStatusFilter = (input, context) => {
1470
- return smithyClient.take(input, {
1471
- Any: (_) => se_ListInsightsAnyStatusFilter(_),
1472
- Closed: (_) => se_ListInsightsClosedStatusFilter(_),
1473
- Ongoing: smithyClient._json,
1474
- });
1475
- };
1476
- const se_StartTimeRange = (input, context) => {
1477
- return smithyClient.take(input, {
1478
- FromTime: (_) => _.getTime() / 1_000,
1479
- ToTime: (_) => _.getTime() / 1_000,
1480
- });
1481
- };
1482
- const de_AnomalousLogGroup = (output, context) => {
1483
- return smithyClient.take(output, {
1484
- ImpactEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1485
- ImpactStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1486
- LogAnomalyShowcases: (_) => de_LogAnomalyShowcases(_),
1487
- LogGroupName: smithyClient.expectString,
1488
- NumberOfLogLinesScanned: smithyClient.expectInt32,
1489
- });
1490
- };
1491
- const de_AnomalousLogGroups = (output, context) => {
1492
- const retVal = (output || [])
1493
- .filter((e) => e != null)
1494
- .map((entry) => {
1495
- return de_AnomalousLogGroup(entry);
1496
- });
1497
- return retVal;
1498
- };
1499
- const de_AnomalyReportedTimeRange = (output, context) => {
1500
- return smithyClient.take(output, {
1501
- CloseTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1502
- OpenTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1503
- });
1504
- };
1505
- const de_AnomalySourceDetails = (output, context) => {
1506
- return smithyClient.take(output, {
1507
- CloudWatchMetrics: (_) => de_CloudWatchMetricsDetails(_),
1508
- PerformanceInsightsMetrics: (_) => de_PerformanceInsightsMetricsDetails(_),
1509
- });
1510
- };
1511
- const de_AnomalyTimeRange = (output, context) => {
1512
- return smithyClient.take(output, {
1513
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1514
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1515
- });
1516
- };
1517
- const de_CloudWatchMetricsDataSummary = (output, context) => {
1518
- return smithyClient.take(output, {
1519
- StatusCode: smithyClient.expectString,
1520
- TimestampMetricValuePairList: (_) => de_TimestampMetricValuePairList(_),
1521
- });
1522
- };
1523
- const de_CloudWatchMetricsDetail = (output, context) => {
1524
- return smithyClient.take(output, {
1525
- Dimensions: smithyClient._json,
1526
- MetricDataSummary: (_) => de_CloudWatchMetricsDataSummary(_),
1527
- MetricName: smithyClient.expectString,
1528
- Namespace: smithyClient.expectString,
1529
- Period: smithyClient.expectInt32,
1530
- Stat: smithyClient.expectString,
1531
- Unit: smithyClient.expectString,
1532
- });
1533
- };
1534
- const de_CloudWatchMetricsDetails = (output, context) => {
1535
- const retVal = (output || [])
1536
- .filter((e) => e != null)
1537
- .map((entry) => {
1538
- return de_CloudWatchMetricsDetail(entry);
1539
- });
1540
- return retVal;
1541
- };
1542
- const de_CostEstimationTimeRange = (output, context) => {
1543
- return smithyClient.take(output, {
1544
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1545
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1546
- });
1547
- };
1548
- const de_Event = (output, context) => {
1549
- return smithyClient.take(output, {
1550
- DataSource: smithyClient.expectString,
1551
- EventClass: smithyClient.expectString,
1552
- EventSource: smithyClient.expectString,
1553
- Id: smithyClient.expectString,
1554
- Name: smithyClient.expectString,
1555
- ResourceCollection: smithyClient._json,
1556
- Resources: smithyClient._json,
1557
- Time: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1558
- });
1559
- };
1560
- const de_Events = (output, context) => {
1561
- const retVal = (output || [])
1562
- .filter((e) => e != null)
1563
- .map((entry) => {
1564
- return de_Event(entry);
1565
- });
1566
- return retVal;
1567
- };
1568
- const de_InsightTimeRange = (output, context) => {
1569
- return smithyClient.take(output, {
1570
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1571
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1572
- });
1573
- };
1574
- const de_LogAnomalyClass = (output, context) => {
1575
- return smithyClient.take(output, {
1576
- Explanation: smithyClient.expectString,
1577
- LogAnomalyToken: smithyClient.expectString,
1578
- LogAnomalyType: smithyClient.expectString,
1579
- LogEventId: smithyClient.expectString,
1580
- LogEventTimestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1581
- LogStreamName: smithyClient.expectString,
1582
- NumberOfLogLinesOccurrences: smithyClient.expectInt32,
1583
- });
1584
- };
1585
- const de_LogAnomalyClasses = (output, context) => {
1586
- const retVal = (output || [])
1587
- .filter((e) => e != null)
1588
- .map((entry) => {
1589
- return de_LogAnomalyClass(entry);
1590
- });
1591
- return retVal;
1592
- };
1593
- const de_LogAnomalyShowcase = (output, context) => {
1594
- return smithyClient.take(output, {
1595
- LogAnomalyClasses: (_) => de_LogAnomalyClasses(_),
1596
- });
1597
- };
1598
- const de_LogAnomalyShowcases = (output, context) => {
1599
- const retVal = (output || [])
1600
- .filter((e) => e != null)
1601
- .map((entry) => {
1602
- return de_LogAnomalyShowcase(entry);
1603
- });
1604
- return retVal;
1605
- };
1606
- const de_MonitoredResourceIdentifier = (output, context) => {
1607
- return smithyClient.take(output, {
1608
- LastUpdated: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1609
- MonitoredResourceName: smithyClient.expectString,
1610
- ResourceCollection: smithyClient._json,
1611
- ResourcePermission: smithyClient.expectString,
1612
- Type: smithyClient.expectString,
1613
- });
1614
- };
1615
- const de_MonitoredResourceIdentifiers = (output, context) => {
1616
- const retVal = (output || [])
1617
- .filter((e) => e != null)
1618
- .map((entry) => {
1619
- return de_MonitoredResourceIdentifier(entry);
1620
- });
1621
- return retVal;
1622
- };
1623
- const de_PerformanceInsightsMetricsDetail = (output, context) => {
1624
- return smithyClient.take(output, {
1625
- MetricDisplayName: smithyClient.expectString,
1626
- MetricQuery: smithyClient._json,
1627
- ReferenceData: (_) => de_PerformanceInsightsReferenceDataList(_),
1628
- StatsAtAnomaly: (_) => de_PerformanceInsightsStats(_),
1629
- StatsAtBaseline: (_) => de_PerformanceInsightsStats(_),
1630
- Unit: smithyClient.expectString,
1631
- });
1632
- };
1633
- const de_PerformanceInsightsMetricsDetails = (output, context) => {
1634
- const retVal = (output || [])
1635
- .filter((e) => e != null)
1636
- .map((entry) => {
1637
- return de_PerformanceInsightsMetricsDetail(entry);
1638
- });
1639
- return retVal;
1640
- };
1641
- const de_PerformanceInsightsReferenceComparisonValues = (output, context) => {
1642
- return smithyClient.take(output, {
1643
- ReferenceMetric: smithyClient._json,
1644
- ReferenceScalar: (_) => de_PerformanceInsightsReferenceScalar(_),
1645
- });
1646
- };
1647
- const de_PerformanceInsightsReferenceData = (output, context) => {
1648
- return smithyClient.take(output, {
1649
- ComparisonValues: (_) => de_PerformanceInsightsReferenceComparisonValues(_),
1650
- Name: smithyClient.expectString,
1651
- });
1652
- };
1653
- const de_PerformanceInsightsReferenceDataList = (output, context) => {
1654
- const retVal = (output || [])
1655
- .filter((e) => e != null)
1656
- .map((entry) => {
1657
- return de_PerformanceInsightsReferenceData(entry);
1658
- });
1659
- return retVal;
1660
- };
1661
- const de_PerformanceInsightsReferenceScalar = (output, context) => {
1662
- return smithyClient.take(output, {
1663
- Value: smithyClient.limitedParseDouble,
1664
- });
1665
- };
1666
- const de_PerformanceInsightsStat = (output, context) => {
1667
- return smithyClient.take(output, {
1668
- Type: smithyClient.expectString,
1669
- Value: smithyClient.limitedParseDouble,
1670
- });
1671
- };
1672
- const de_PerformanceInsightsStats = (output, context) => {
1673
- const retVal = (output || [])
1674
- .filter((e) => e != null)
1675
- .map((entry) => {
1676
- return de_PerformanceInsightsStat(entry);
1677
- });
1678
- return retVal;
1679
- };
1680
- const de_PredictionTimeRange = (output, context) => {
1681
- return smithyClient.take(output, {
1682
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1683
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1684
- });
1685
- };
1686
- const de_ProactiveAnomalies = (output, context) => {
1687
- const retVal = (output || [])
1688
- .filter((e) => e != null)
1689
- .map((entry) => {
1690
- return de_ProactiveAnomalySummary(entry);
1691
- });
1692
- return retVal;
1693
- };
1694
- const de_ProactiveAnomaly = (output, context) => {
1695
- return smithyClient.take(output, {
1696
- AnomalyReportedTimeRange: (_) => de_AnomalyReportedTimeRange(_),
1697
- AnomalyResources: smithyClient._json,
1698
- AnomalyTimeRange: (_) => de_AnomalyTimeRange(_),
1699
- AssociatedInsightId: smithyClient.expectString,
1700
- Description: smithyClient.expectString,
1701
- Id: smithyClient.expectString,
1702
- Limit: smithyClient.limitedParseDouble,
1703
- PredictionTimeRange: (_) => de_PredictionTimeRange(_),
1704
- ResourceCollection: smithyClient._json,
1705
- Severity: smithyClient.expectString,
1706
- SourceDetails: (_) => de_AnomalySourceDetails(_),
1707
- SourceMetadata: smithyClient._json,
1708
- Status: smithyClient.expectString,
1709
- UpdateTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1710
- });
1711
- };
1712
- const de_ProactiveAnomalySummary = (output, context) => {
1713
- return smithyClient.take(output, {
1714
- AnomalyReportedTimeRange: (_) => de_AnomalyReportedTimeRange(_),
1715
- AnomalyResources: smithyClient._json,
1716
- AnomalyTimeRange: (_) => de_AnomalyTimeRange(_),
1717
- AssociatedInsightId: smithyClient.expectString,
1718
- Description: smithyClient.expectString,
1719
- Id: smithyClient.expectString,
1720
- Limit: smithyClient.limitedParseDouble,
1721
- PredictionTimeRange: (_) => de_PredictionTimeRange(_),
1722
- ResourceCollection: smithyClient._json,
1723
- Severity: smithyClient.expectString,
1724
- SourceDetails: (_) => de_AnomalySourceDetails(_),
1725
- SourceMetadata: smithyClient._json,
1726
- Status: smithyClient.expectString,
1727
- UpdateTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1728
- });
1729
- };
1730
- const de_ProactiveInsight = (output, context) => {
1731
- return smithyClient.take(output, {
1732
- Description: smithyClient.expectString,
1733
- Id: smithyClient.expectString,
1734
- InsightTimeRange: (_) => de_InsightTimeRange(_),
1735
- Name: smithyClient.expectString,
1736
- PredictionTimeRange: (_) => de_PredictionTimeRange(_),
1737
- ResourceCollection: smithyClient._json,
1738
- Severity: smithyClient.expectString,
1739
- SsmOpsItemId: smithyClient.expectString,
1740
- Status: smithyClient.expectString,
1741
- });
1742
- };
1743
- const de_ProactiveInsights = (output, context) => {
1744
- const retVal = (output || [])
1745
- .filter((e) => e != null)
1746
- .map((entry) => {
1747
- return de_ProactiveInsightSummary(entry);
1748
- });
1749
- return retVal;
1750
- };
1751
- const de_ProactiveInsightSummary = (output, context) => {
1752
- return smithyClient.take(output, {
1753
- AssociatedResourceArns: smithyClient._json,
1754
- Id: smithyClient.expectString,
1755
- InsightTimeRange: (_) => de_InsightTimeRange(_),
1756
- Name: smithyClient.expectString,
1757
- PredictionTimeRange: (_) => de_PredictionTimeRange(_),
1758
- ResourceCollection: smithyClient._json,
1759
- ServiceCollection: smithyClient._json,
1760
- Severity: smithyClient.expectString,
1761
- Status: smithyClient.expectString,
1762
- });
1763
- };
1764
- const de_ProactiveOrganizationInsights = (output, context) => {
1765
- const retVal = (output || [])
1766
- .filter((e) => e != null)
1767
- .map((entry) => {
1768
- return de_ProactiveOrganizationInsightSummary(entry);
1769
- });
1770
- return retVal;
1771
- };
1772
- const de_ProactiveOrganizationInsightSummary = (output, context) => {
1773
- return smithyClient.take(output, {
1774
- AccountId: smithyClient.expectString,
1775
- Id: smithyClient.expectString,
1776
- InsightTimeRange: (_) => de_InsightTimeRange(_),
1777
- Name: smithyClient.expectString,
1778
- OrganizationalUnitId: smithyClient.expectString,
1779
- PredictionTimeRange: (_) => de_PredictionTimeRange(_),
1780
- ResourceCollection: smithyClient._json,
1781
- ServiceCollection: smithyClient._json,
1782
- Severity: smithyClient.expectString,
1783
- Status: smithyClient.expectString,
1784
- });
1785
- };
1786
- const de_ReactiveAnomalies = (output, context) => {
1787
- const retVal = (output || [])
1788
- .filter((e) => e != null)
1789
- .map((entry) => {
1790
- return de_ReactiveAnomalySummary(entry);
1791
- });
1792
- return retVal;
1793
- };
1794
- const de_ReactiveAnomaly = (output, context) => {
1795
- return smithyClient.take(output, {
1796
- AnomalyReportedTimeRange: (_) => de_AnomalyReportedTimeRange(_),
1797
- AnomalyResources: smithyClient._json,
1798
- AnomalyTimeRange: (_) => de_AnomalyTimeRange(_),
1799
- AssociatedInsightId: smithyClient.expectString,
1800
- CausalAnomalyId: smithyClient.expectString,
1801
- Description: smithyClient.expectString,
1802
- Id: smithyClient.expectString,
1803
- Name: smithyClient.expectString,
1804
- ResourceCollection: smithyClient._json,
1805
- Severity: smithyClient.expectString,
1806
- SourceDetails: (_) => de_AnomalySourceDetails(_),
1807
- Status: smithyClient.expectString,
1808
- Type: smithyClient.expectString,
1809
- });
1810
- };
1811
- const de_ReactiveAnomalySummary = (output, context) => {
1812
- return smithyClient.take(output, {
1813
- AnomalyReportedTimeRange: (_) => de_AnomalyReportedTimeRange(_),
1814
- AnomalyResources: smithyClient._json,
1815
- AnomalyTimeRange: (_) => de_AnomalyTimeRange(_),
1816
- AssociatedInsightId: smithyClient.expectString,
1817
- CausalAnomalyId: smithyClient.expectString,
1818
- Description: smithyClient.expectString,
1819
- Id: smithyClient.expectString,
1820
- Name: smithyClient.expectString,
1821
- ResourceCollection: smithyClient._json,
1822
- Severity: smithyClient.expectString,
1823
- SourceDetails: (_) => de_AnomalySourceDetails(_),
1824
- Status: smithyClient.expectString,
1825
- Type: smithyClient.expectString,
1826
- });
1827
- };
1828
- const de_ReactiveInsight = (output, context) => {
1829
- return smithyClient.take(output, {
1830
- Description: smithyClient.expectString,
1831
- Id: smithyClient.expectString,
1832
- InsightTimeRange: (_) => de_InsightTimeRange(_),
1833
- Name: smithyClient.expectString,
1834
- ResourceCollection: smithyClient._json,
1835
- Severity: smithyClient.expectString,
1836
- SsmOpsItemId: smithyClient.expectString,
1837
- Status: smithyClient.expectString,
1838
- });
1839
- };
1840
- const de_ReactiveInsights = (output, context) => {
1841
- const retVal = (output || [])
1842
- .filter((e) => e != null)
1843
- .map((entry) => {
1844
- return de_ReactiveInsightSummary(entry);
1845
- });
1846
- return retVal;
1847
- };
1848
- const de_ReactiveInsightSummary = (output, context) => {
1849
- return smithyClient.take(output, {
1850
- AssociatedResourceArns: smithyClient._json,
1851
- Id: smithyClient.expectString,
1852
- InsightTimeRange: (_) => de_InsightTimeRange(_),
1853
- Name: smithyClient.expectString,
1854
- ResourceCollection: smithyClient._json,
1855
- ServiceCollection: smithyClient._json,
1856
- Severity: smithyClient.expectString,
1857
- Status: smithyClient.expectString,
1858
- });
1859
- };
1860
- const de_ReactiveOrganizationInsights = (output, context) => {
1861
- const retVal = (output || [])
1862
- .filter((e) => e != null)
1863
- .map((entry) => {
1864
- return de_ReactiveOrganizationInsightSummary(entry);
1865
- });
1866
- return retVal;
1867
- };
1868
- const de_ReactiveOrganizationInsightSummary = (output, context) => {
1869
- return smithyClient.take(output, {
1870
- AccountId: smithyClient.expectString,
1871
- Id: smithyClient.expectString,
1872
- InsightTimeRange: (_) => de_InsightTimeRange(_),
1873
- Name: smithyClient.expectString,
1874
- OrganizationalUnitId: smithyClient.expectString,
1875
- ResourceCollection: smithyClient._json,
1876
- ServiceCollection: smithyClient._json,
1877
- Severity: smithyClient.expectString,
1878
- Status: smithyClient.expectString,
1879
- });
1880
- };
1881
- const de_ServiceResourceCost = (output, context) => {
1882
- return smithyClient.take(output, {
1883
- Cost: smithyClient.limitedParseDouble,
1884
- Count: smithyClient.expectInt32,
1885
- State: smithyClient.expectString,
1886
- Type: smithyClient.expectString,
1887
- UnitCost: smithyClient.limitedParseDouble,
1888
- });
1889
- };
1890
- const de_ServiceResourceCosts = (output, context) => {
1891
- const retVal = (output || [])
1892
- .filter((e) => e != null)
1893
- .map((entry) => {
1894
- return de_ServiceResourceCost(entry);
1895
- });
1896
- return retVal;
1897
- };
1898
- const de_TimestampMetricValuePair = (output, context) => {
1899
- return smithyClient.take(output, {
1900
- MetricValue: smithyClient.limitedParseDouble,
1901
- Timestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1902
- });
1903
- };
1904
- const de_TimestampMetricValuePairList = (output, context) => {
1905
- const retVal = (output || [])
1906
- .filter((e) => e != null)
1907
- .map((entry) => {
1908
- return de_TimestampMetricValuePair(entry);
1909
- });
1910
- return retVal;
1911
- };
1912
- const deserializeMetadata = (output) => ({
1913
- httpStatusCode: output.statusCode,
1914
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1915
- extendedRequestId: output.headers["x-amz-id-2"],
1916
- cfId: output.headers["x-amz-cf-id"],
1917
- });
431
+ const _A = "Account";
432
+ const _ABK = "AppBoundaryKey";
433
+ const _ACGP = "AmazonCodeGuruProfiler";
434
+ const _ACGPI = "AmazonCodeGuruProfilerIntegration";
435
+ const _ADE = "AccessDeniedException";
436
+ const _AH = "AccountHealth";
437
+ const _AHc = "AccountHealths";
1918
438
  const _AI = "AccountId";
439
+ const _AIH = "AccountInsightHealth";
440
+ const _AII = "AssociatedInsightId";
441
+ const _AIc = "AccountIds";
442
+ const _AIn = "AnomalyId";
443
+ const _ALG = "AnomalousLogGroup";
444
+ const _ALGn = "AnomalousLogGroups";
445
+ const _ANC = "AddNotificationChannel";
446
+ const _ANCR = "AddNotificationChannelRequest";
447
+ const _ANCRd = "AddNotificationChannelResponse";
448
+ const _AR = "AnomalyResource";
449
+ const _ARA = "AssociatedResourceArns";
450
+ const _ARC = "AnalyzedResourceCount";
451
+ const _ARTR = "AnomalyReportedTimeRange";
452
+ const _ARn = "AnomalyResources";
453
+ const _ASD = "AnomalySourceDetails";
454
+ const _ASM = "AnomalySourceMetadata";
455
+ const _ATR = "AnomalyTimeRange";
456
+ const _Ac = "Action";
457
+ const _An = "Any";
458
+ const _Ar = "Arn";
459
+ const _C = "Config";
460
+ const _CAI = "CausalAnomalyId";
461
+ const _CE = "ConflictException";
462
+ const _CERCF = "CostEstimationResourceCollectionFilter";
463
+ const _CETR = "CostEstimationTimeRange";
464
+ const _CF = "CloudFormation";
465
+ const _CFC = "CloudFormationCollection";
466
+ const _CFCERCF = "CloudFormationCostEstimationResourceCollectionFilter";
467
+ const _CFCF = "CloudFormationCollectionFilter";
468
+ const _CFH = "CloudFormationHealth";
469
+ const _CFHl = "CloudFormationHealths";
470
+ const _CT = "CloseTime";
471
+ const _CTl = "ClientToken";
472
+ const _CV = "ComparisonValues";
473
+ const _CWM = "CloudWatchMetrics";
474
+ const _CWMD = "CloudWatchMetricsDetail";
475
+ const _CWMDS = "CloudWatchMetricsDataSummary";
476
+ const _CWMDl = "CloudWatchMetricsDimension";
477
+ const _CWMDlo = "CloudWatchMetricsDetails";
478
+ const _CWMDlou = "CloudWatchMetricsDimensions";
479
+ const _Ca = "Category";
480
+ const _Ch = "Channels";
481
+ const _Cl = "Closed";
482
+ const _Co = "Costs";
483
+ const _Cos = "Cost";
484
+ const _Cou = "Count";
485
+ const _D = "Dimensions";
486
+ const _DA = "DescribeAnomaly";
487
+ const _DAH = "DescribeAccountHealth";
488
+ const _DAHR = "DescribeAccountHealthRequest";
489
+ const _DAHRe = "DescribeAccountHealthResponse";
490
+ const _DAO = "DescribeAccountOverview";
491
+ const _DAOR = "DescribeAccountOverviewRequest";
492
+ const _DAORe = "DescribeAccountOverviewResponse";
493
+ const _DAR = "DescribeAnomalyRequest";
494
+ const _DARe = "DescribeAnomalyResponse";
495
+ const _DESC = "DescribeEventSourcesConfig";
496
+ const _DESCR = "DescribeEventSourcesConfigRequest";
497
+ const _DESCRe = "DescribeEventSourcesConfigResponse";
498
+ const _DF = "DescribeFeedback";
499
+ const _DFR = "DescribeFeedbackRequest";
500
+ const _DFRe = "DescribeFeedbackResponse";
501
+ const _DI = "DeleteInsight";
502
+ const _DIR = "DeleteInsightRequest";
503
+ const _DIRe = "DeleteInsightResponse";
504
+ const _DIRes = "DescribeInsightRequest";
505
+ const _DIResc = "DescribeInsightResponse";
506
+ const _DIe = "DescribeInsight";
507
+ const _DOH = "DescribeOrganizationHealth";
508
+ const _DOHR = "DescribeOrganizationHealthRequest";
509
+ const _DOHRe = "DescribeOrganizationHealthResponse";
510
+ const _DOO = "DescribeOrganizationOverview";
511
+ const _DOOR = "DescribeOrganizationOverviewRequest";
512
+ const _DOORe = "DescribeOrganizationOverviewResponse";
513
+ const _DORCH = "DescribeOrganizationResourceCollectionHealth";
514
+ const _DORCHR = "DescribeOrganizationResourceCollectionHealthRequest";
515
+ const _DORCHRe = "DescribeOrganizationResourceCollectionHealthResponse";
516
+ const _DRCH = "DescribeResourceCollectionHealth";
517
+ const _DRCHR = "DescribeResourceCollectionHealthRequest";
518
+ const _DRCHRe = "DescribeResourceCollectionHealthResponse";
519
+ const _DS = "DataSource";
520
+ const _DSI = "DescribeServiceIntegration";
521
+ const _DSIR = "DescribeServiceIntegrationRequest";
522
+ const _DSIRe = "DescribeServiceIntegrationResponse";
523
+ const _De = "Description";
524
+ const _E = "Event";
525
+ const _EC = "EventClass";
526
+ const _ER = "EventResource";
527
+ const _ERv = "EventResources";
528
+ const _ES = "EventSources";
529
+ const _ESC = "EventSourcesConfig";
530
+ const _ESv = "EventSource";
531
+ const _ET = "EndTime";
532
+ const _ETR = "EndTimeRange";
533
+ const _ETRv = "EventTimeRange";
534
+ const _Ev = "Events";
535
+ const _Ex = "Explanation";
536
+ const _F = "Feedback";
537
+ const _FT = "FromTime";
538
+ const _Fi = "Filters";
539
+ const _Fie = "Fields";
540
+ const _Fil = "Filter";
541
+ const _G = "Group";
542
+ const _GB = "GroupBy";
543
+ const _GCE = "GetCostEstimation";
544
+ const _GCER = "GetCostEstimationRequest";
545
+ const _GCERe = "GetCostEstimationResponse";
546
+ const _GRC = "GetResourceCollection";
547
+ const _GRCR = "GetResourceCollectionRequest";
548
+ const _GRCRe = "GetResourceCollectionResponse";
549
+ const _I = "Insight";
550
+ const _IET = "ImpactEndTime";
551
+ const _IF = "InsightFeedback";
552
+ const _IH = "InsightHealth";
553
+ const _II = "InsightId";
554
+ const _ISE = "InternalServerException";
555
+ const _IST = "ImpactStartTime";
556
+ const _ITR = "InsightTimeRange";
557
+ const _Id = "Id";
558
+ const _KMSKI = "KMSKeyId";
559
+ const _KMSSSE = "KMSServerSideEncryption";
560
+ const _KMSSSEI = "KMSServerSideEncryptionIntegration";
561
+ const _KMSSSEIC = "KMSServerSideEncryptionIntegrationConfig";
562
+ const _L = "Locale";
563
+ const _LAC = "LogAnomalyClass";
564
+ const _LACo = "LogAnomalyClasses";
565
+ const _LAD = "LogsAnomalyDetection";
566
+ const _LADI = "LogsAnomalyDetectionIntegration";
567
+ const _LADIC = "LogsAnomalyDetectionIntegrationConfig";
568
+ const _LAFI = "ListAnomaliesForInsight";
569
+ const _LAFIF = "ListAnomaliesForInsightFilters";
570
+ const _LAFIR = "ListAnomaliesForInsightRequest";
571
+ const _LAFIRi = "ListAnomaliesForInsightResponse";
572
+ const _LALG = "ListAnomalousLogGroups";
573
+ const _LALGR = "ListAnomalousLogGroupsRequest";
574
+ const _LALGRi = "ListAnomalousLogGroupsResponse";
575
+ const _LAS = "LogAnomalyShowcases";
576
+ const _LASo = "LogAnomalyShowcase";
577
+ const _LAT = "LogAnomalyType";
578
+ const _LATo = "LogAnomalyToken";
579
+ const _LE = "ListEvents";
580
+ const _LEF = "ListEventsFilters";
581
+ const _LEI = "LogEventId";
582
+ const _LER = "ListEventsRequest";
583
+ const _LERi = "ListEventsResponse";
584
+ const _LET = "LogEventTimestamp";
585
+ const _LGN = "LogGroupName";
586
+ const _LI = "ListInsights";
587
+ const _LIASF = "ListInsightsAnyStatusFilter";
588
+ const _LICSF = "ListInsightsClosedStatusFilter";
589
+ const _LIOSF = "ListInsightsOngoingStatusFilter";
590
+ const _LIR = "ListInsightsRequest";
591
+ const _LIRi = "ListInsightsResponse";
592
+ const _LISF = "ListInsightsStatusFilter";
593
+ const _LMR = "ListMonitoredResources";
594
+ const _LMRF = "ListMonitoredResourcesFilters";
595
+ const _LMRR = "ListMonitoredResourcesRequest";
596
+ const _LMRRi = "ListMonitoredResourcesResponse";
597
+ const _LNC = "ListNotificationChannels";
598
+ const _LNCR = "ListNotificationChannelsRequest";
599
+ const _LNCRi = "ListNotificationChannelsResponse";
600
+ const _LOI = "ListOrganizationInsights";
601
+ const _LOIR = "ListOrganizationInsightsRequest";
602
+ const _LOIRi = "ListOrganizationInsightsResponse";
603
+ const _LR = "ListRecommendations";
604
+ const _LRR = "ListRecommendationsRequest";
605
+ const _LRRi = "ListRecommendationsResponse";
606
+ const _LSN = "LogStreamName";
607
+ const _LU = "LastUpdated";
608
+ const _Li = "Limit";
609
+ const _Lin = "Link";
610
+ const _M = "Message";
611
+ const _MA = "MetricsAnalyzed";
612
+ const _MDN = "MetricDisplayName";
613
+ const _MDS = "MetricDataSummary";
614
+ const _MN = "MetricName";
615
+ const _MQ = "MetricQuery";
616
+ const _MR = "MaxResults";
617
+ const _MRI = "MonitoredResourceIdentifiers";
618
+ const _MRIo = "MonitoredResourceIdentifier";
619
+ const _MRN = "MonitoredResourceName";
620
+ const _MT = "MessageTypes";
621
+ const _MTTRIM = "MeanTimeToRecoverInMilliseconds";
622
+ const _MV = "MetricValue";
623
+ const _Me = "Metric";
624
+ const _N = "Name";
625
+ const _NC = "NotificationChannel";
626
+ const _NCC = "NotificationChannelConfig";
627
+ const _NFC = "NotificationFilterConfig";
628
+ const _NOLLO = "NumberOfLogLinesOccurrences";
629
+ const _NOLLS = "NumberOfLogLinesScanned";
1919
630
  const _NT = "NextToken";
631
+ const _Na = "Namespace";
632
+ const _O = "Ongoing";
633
+ const _OC = "OpsCenter";
634
+ const _OCI = "OpsCenterIntegration";
635
+ const _OCIC = "OpsCenterIntegrationConfig";
636
+ const _OIS = "OptInStatus";
637
+ const _OPI = "OpenProactiveInsights";
638
+ const _ORCT = "OrganizationResourceCollectionType";
639
+ const _ORI = "OpenReactiveInsights";
640
+ const _OT = "OpenTime";
641
+ const _OUI = "OrganizationalUnitIds";
642
+ const _OUIr = "OrganizationalUnitId";
643
+ const _P = "Period";
644
+ const _PA = "ProactiveAnomaly";
645
+ const _PAS = "ProactiveAnomalySummary";
646
+ const _PAr = "ProactiveAnomalies";
647
+ const _PF = "PutFeedback";
648
+ const _PFR = "PutFeedbackRequest";
649
+ const _PFRu = "PutFeedbackResponse";
650
+ const _PI = "ProactiveInsights";
651
+ const _PIM = "PerformanceInsightsMetrics";
652
+ const _PIMD = "PerformanceInsightsMetricsDetail";
653
+ const _PIMDG = "PerformanceInsightsMetricDimensionGroup";
654
+ const _PIMDe = "PerformanceInsightsMetricsDetails";
655
+ const _PIMQ = "PerformanceInsightsMetricQuery";
656
+ const _PIRCV = "PerformanceInsightsReferenceComparisonValues";
657
+ const _PIRD = "PerformanceInsightsReferenceData";
658
+ const _PIRDL = "PerformanceInsightsReferenceDataList";
659
+ const _PIRM = "PerformanceInsightsReferenceMetric";
660
+ const _PIRS = "PerformanceInsightsReferenceScalar";
661
+ const _PIS = "PerformanceInsightsStat";
662
+ const _PISe = "PerformanceInsightsStats";
663
+ const _PISr = "ProactiveInsightSummary";
664
+ const _PIr = "ProactiveInsight";
665
+ const _POI = "ProactiveOrganizationInsights";
666
+ const _POIS = "ProactiveOrganizationInsightSummary";
667
+ const _PTR = "PredictionTimeRange";
668
+ const _QC = "QuotaCode";
669
+ const _R = "Resources";
670
+ const _RA = "ReactiveAnomaly";
1920
671
  const _RAS = "RetryAfterSeconds";
1921
- const _ra = "retry-after";
672
+ const _RASD = "RelatedAnomalySourceDetails";
673
+ const _RASe = "ReactiveAnomalySummary";
674
+ const _RA_ = "Retry-After";
675
+ const _RAe = "ReactiveAnomalies";
676
+ const _RAel = "RelatedAnomalies";
677
+ const _RC = "ResourceCollection";
678
+ const _RCF = "ResourceCollectionFilter";
679
+ const _RCT = "ResourceCollectionType";
680
+ const _RD = "ReferenceData";
681
+ const _RE = "RelatedEvents";
682
+ const _RH = "ResourceHours";
683
+ const _RI = "ResourceId";
684
+ const _RIS = "ReactiveInsightSummary";
685
+ const _RIe = "ReactiveInsights";
686
+ const _RIea = "ReactiveInsight";
687
+ const _RM = "ReferenceMetric";
688
+ const _RNC = "RemoveNotificationChannel";
689
+ const _RNCR = "RemoveNotificationChannelRequest";
690
+ const _RNCRe = "RemoveNotificationChannelResponse";
691
+ const _RNFE = "ResourceNotFoundException";
692
+ const _ROI = "ReactiveOrganizationInsights";
693
+ const _ROIS = "ReactiveOrganizationInsightSummary";
694
+ const _RP = "ResourcePermission";
695
+ const _RRA = "RecommendationRelatedAnomaly";
696
+ const _RRAR = "RecommendationRelatedAnomalyResource";
697
+ const _RRARe = "RecommendationRelatedAnomalyResources";
698
+ const _RRASD = "RecommendationRelatedAnomalySourceDetail";
699
+ const _RRAe = "RecommendationRelatedAnomalies";
700
+ const _RRCWMSD = "RecommendationRelatedCloudWatchMetricsSourceDetail";
701
+ const _RRCWMSDe = "RecommendationRelatedCloudWatchMetricsSourceDetails";
702
+ const _RRE = "RecommendationRelatedEvent";
703
+ const _RRER = "RecommendationRelatedEventResource";
704
+ const _RRERe = "RecommendationRelatedEventResources";
705
+ const _RREe = "RecommendationRelatedEvents";
706
+ const _RS = "ReferenceScalar";
707
+ const _RT = "ResourceType";
708
+ const _RTF = "ResourceTypeFilters";
709
+ const _Re = "Recommendations";
710
+ const _Rea = "Reason";
711
+ const _Rec = "Recommendation";
712
+ const _S = "Status";
713
+ const _SAA = "StatsAtAnomaly";
714
+ const _SAB = "StatsAtBaseline";
715
+ const _SC = "StatusCode";
716
+ const _SCC = "SnsChannelConfig";
717
+ const _SCE = "StartCostEstimation";
718
+ const _SCER = "StartCostEstimationRequest";
719
+ const _SCERt = "StartCostEstimationResponse";
720
+ const _SCe = "ServiceCollection";
721
+ const _SCer = "ServiceCode";
722
+ const _SD = "SourceDetails";
723
+ const _SF = "StatusFilter";
724
+ const _SH = "ServiceHealth";
725
+ const _SHe = "ServiceHealths";
726
+ const _SI = "ServiceIntegration";
727
+ const _SIC = "ServiceIntegrationConfig";
728
+ const _SIF = "SearchInsightsFilters";
729
+ const _SIH = "ServiceInsightHealth";
730
+ const _SIR = "SearchInsightsRequest";
731
+ const _SIRe = "SearchInsightsResponse";
732
+ const _SIe = "SearchInsights";
733
+ const _SM = "SourceMetadata";
734
+ const _SN = "StackNames";
735
+ const _SNe = "ServiceNames";
736
+ const _SNer = "ServiceName";
737
+ const _SNt = "StackName";
738
+ const _SOI = "SearchOrganizationInsights";
739
+ const _SOIF = "SearchOrganizationInsightsFilters";
740
+ const _SOII = "SsmOpsItemId";
741
+ const _SOIR = "SearchOrganizationInsightsRequest";
742
+ const _SOIRe = "SearchOrganizationInsightsResponse";
743
+ const _SQEE = "ServiceQuotaExceededException";
744
+ const _SRC = "ServiceResourceCost";
745
+ const _SRCe = "ServiceResourceCosts";
746
+ const _SRN = "SourceResourceName";
747
+ const _SRT = "SourceResourceType";
748
+ const _ST = "StartTime";
749
+ const _STR = "StartTimeRange";
750
+ const _Se = "Service";
751
+ const _Sev = "Severities";
752
+ const _Seve = "Severity";
753
+ const _Sn = "Sns";
754
+ const _So = "Source";
755
+ const _St = "Stat";
756
+ const _Sta = "Statuses";
757
+ const _Stat = "State";
758
+ const _T = "Type";
759
+ const _TA = "TopicArn";
760
+ const _TC = "TotalCost";
761
+ const _TCERCF = "TagCostEstimationResourceCollectionFilter";
762
+ const _TCERCFa = "TagCostEstimationResourceCollectionFilters";
763
+ const _TCF = "TagCollectionFilter";
764
+ const _TCFa = "TagCollectionFilters";
765
+ const _TCa = "TagCollection";
766
+ const _TCag = "TagCollections";
767
+ const _TE = "ThrottlingException";
768
+ const _TH = "TagHealth";
769
+ const _THa = "TagHealths";
770
+ const _TMVP = "TimestampMetricValuePair";
771
+ const _TMVPL = "TimestampMetricValuePairList";
772
+ const _TR = "TimeRange";
773
+ const _TT = "ToTime";
774
+ const _TV = "TagValues";
775
+ const _TVa = "TagValue";
776
+ const _Ta = "Tags";
777
+ const _Ti = "Time";
778
+ const _Tim = "Timestamp";
779
+ const _U = "Unit";
780
+ const _UC = "UnitCost";
781
+ const _UCFCF = "UpdateCloudFormationCollectionFilter";
782
+ const _UESC = "UpdateEventSourcesConfig";
783
+ const _UESCR = "UpdateEventSourcesConfigRequest";
784
+ const _UESCRp = "UpdateEventSourcesConfigResponse";
785
+ const _URC = "UpdateResourceCollection";
786
+ const _URCF = "UpdateResourceCollectionFilter";
787
+ const _URCR = "UpdateResourceCollectionRequest";
788
+ const _URCRp = "UpdateResourceCollectionResponse";
789
+ const _USI = "UpdateServiceIntegration";
790
+ const _USIC = "UpdateServiceIntegrationConfig";
791
+ const _USIR = "UpdateServiceIntegrationRequest";
792
+ const _USIRp = "UpdateServiceIntegrationResponse";
793
+ const _UT = "UpdateTime";
794
+ const _UTCF = "UpdateTagCollectionFilter";
795
+ const _UTCFp = "UpdateTagCollectionFilters";
796
+ const _V = "Value";
797
+ const _VE = "ValidationException";
798
+ const _VEF = "ValidationExceptionField";
799
+ const _VEFa = "ValidationExceptionFields";
800
+ const _c = "client";
801
+ const _e = "error";
802
+ const _h = "http";
803
+ const _hE = "httpError";
804
+ const _hH = "httpHeader";
805
+ const _hQ = "httpQuery";
806
+ const _s = "server";
807
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.devopsguru";
808
+ const n0 = "com.amazonaws.devopsguru";
809
+ var AccessDeniedException = [
810
+ -3,
811
+ n0,
812
+ _ADE,
813
+ {
814
+ [_e]: _c,
815
+ [_hE]: 403,
816
+ },
817
+ [_M],
818
+ [0],
819
+ ];
820
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
821
+ var AccountHealth = [3, n0, _AH, 0, [_AI, _I], [0, () => AccountInsightHealth]];
822
+ var AccountInsightHealth = [3, n0, _AIH, 0, [_OPI, _ORI], [1, 1]];
823
+ var AddNotificationChannelRequest = [
824
+ 3,
825
+ n0,
826
+ _ANCR,
827
+ 0,
828
+ [_C],
829
+ [() => NotificationChannelConfig],
830
+ ];
831
+ var AddNotificationChannelResponse = [3, n0, _ANCRd, 0, [_Id], [0]];
832
+ var AmazonCodeGuruProfilerIntegration = [3, n0, _ACGPI, 0, [_S], [0]];
833
+ var AnomalousLogGroup = [
834
+ 3,
835
+ n0,
836
+ _ALG,
837
+ 0,
838
+ [_LGN, _IST, _IET, _NOLLS, _LAS],
839
+ [0, 4, 4, 1, () => LogAnomalyShowcases],
840
+ ];
841
+ var AnomalyReportedTimeRange = [3, n0, _ARTR, 0, [_OT, _CT], [4, 4]];
842
+ var AnomalyResource = [3, n0, _AR, 0, [_N, _T], [0, 0]];
843
+ var AnomalySourceDetails = [
844
+ 3,
845
+ n0,
846
+ _ASD,
847
+ 0,
848
+ [_CWM, _PIM],
849
+ [() => CloudWatchMetricsDetails, () => PerformanceInsightsMetricsDetails],
850
+ ];
851
+ var AnomalySourceMetadata = [3, n0, _ASM, 0, [_So, _SRN, _SRT], [0, 0, 0]];
852
+ var AnomalyTimeRange = [3, n0, _ATR, 0, [_ST, _ET], [4, 4]];
853
+ var CloudFormationCollection = [3, n0, _CFC, 0, [_SN], [64 | 0]];
854
+ var CloudFormationCollectionFilter = [3, n0, _CFCF, 0, [_SN], [64 | 0]];
855
+ var CloudFormationCostEstimationResourceCollectionFilter = [
856
+ 3,
857
+ n0,
858
+ _CFCERCF,
859
+ 0,
860
+ [_SN],
861
+ [64 | 0],
862
+ ];
863
+ var CloudFormationHealth = [
864
+ 3,
865
+ n0,
866
+ _CFH,
867
+ 0,
868
+ [_SNt, _I, _ARC],
869
+ [0, () => InsightHealth, 1],
870
+ ];
871
+ var CloudWatchMetricsDataSummary = [
872
+ 3,
873
+ n0,
874
+ _CWMDS,
875
+ 0,
876
+ [_TMVPL, _SC],
877
+ [() => TimestampMetricValuePairList, 0],
878
+ ];
879
+ var CloudWatchMetricsDetail = [
880
+ 3,
881
+ n0,
882
+ _CWMD,
883
+ 0,
884
+ [_MN, _Na, _D, _St, _U, _P, _MDS],
885
+ [0, 0, () => CloudWatchMetricsDimensions, 0, 0, 1, () => CloudWatchMetricsDataSummary],
886
+ ];
887
+ var CloudWatchMetricsDimension = [3, n0, _CWMDl, 0, [_N, _V], [0, 0]];
888
+ var ConflictException = [
889
+ -3,
890
+ n0,
891
+ _CE,
892
+ {
893
+ [_e]: _c,
894
+ [_hE]: 409,
895
+ },
896
+ [_M, _RI, _RT],
897
+ [0, 0, 0],
898
+ ];
899
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
900
+ var CostEstimationResourceCollectionFilter = [
901
+ 3,
902
+ n0,
903
+ _CERCF,
904
+ 0,
905
+ [_CF, _Ta],
906
+ [() => CloudFormationCostEstimationResourceCollectionFilter, () => TagCostEstimationResourceCollectionFilters],
907
+ ];
908
+ var CostEstimationTimeRange = [3, n0, _CETR, 0, [_ST, _ET], [4, 4]];
909
+ var DeleteInsightRequest = [3, n0, _DIR, 0, [_Id], [[0, 1]]];
910
+ var DeleteInsightResponse = [3, n0, _DIRe, 0, [], []];
911
+ var DescribeAccountHealthRequest = [3, n0, _DAHR, 0, [], []];
912
+ var DescribeAccountHealthResponse = [
913
+ 3,
914
+ n0,
915
+ _DAHRe,
916
+ 0,
917
+ [_ORI, _OPI, _MA, _RH, _ARC],
918
+ [1, 1, 1, 1, 1],
919
+ ];
920
+ var DescribeAccountOverviewRequest = [3, n0, _DAOR, 0, [_FT, _TT], [4, 4]];
921
+ var DescribeAccountOverviewResponse = [3, n0, _DAORe, 0, [_RIe, _PI, _MTTRIM], [1, 1, 1]];
922
+ var DescribeAnomalyRequest = [
923
+ 3,
924
+ n0,
925
+ _DAR,
926
+ 0,
927
+ [_Id, _AI],
928
+ [
929
+ [0, 1],
930
+ [
931
+ 0,
932
+ {
933
+ [_hQ]: _AI,
934
+ },
935
+ ],
936
+ ],
937
+ ];
938
+ var DescribeAnomalyResponse = [
939
+ 3,
940
+ n0,
941
+ _DARe,
942
+ 0,
943
+ [_PA, _RA],
944
+ [() => ProactiveAnomaly, () => ReactiveAnomaly],
945
+ ];
946
+ var DescribeEventSourcesConfigRequest = [3, n0, _DESCR, 0, [], []];
947
+ var DescribeEventSourcesConfigResponse = [
948
+ 3,
949
+ n0,
950
+ _DESCRe,
951
+ 0,
952
+ [_ES],
953
+ [() => EventSourcesConfig],
954
+ ];
955
+ var DescribeFeedbackRequest = [3, n0, _DFR, 0, [_II], [0]];
956
+ var DescribeFeedbackResponse = [3, n0, _DFRe, 0, [_IF], [() => InsightFeedback]];
957
+ var DescribeInsightRequest = [
958
+ 3,
959
+ n0,
960
+ _DIRes,
961
+ 0,
962
+ [_Id, _AI],
963
+ [
964
+ [0, 1],
965
+ [
966
+ 0,
967
+ {
968
+ [_hQ]: _AI,
969
+ },
970
+ ],
971
+ ],
972
+ ];
973
+ var DescribeInsightResponse = [
974
+ 3,
975
+ n0,
976
+ _DIResc,
977
+ 0,
978
+ [_PIr, _RIea],
979
+ [() => ProactiveInsight, () => ReactiveInsight],
980
+ ];
981
+ var DescribeOrganizationHealthRequest = [3, n0, _DOHR, 0, [_AIc, _OUI], [64 | 0, 64 | 0]];
982
+ var DescribeOrganizationHealthResponse = [
983
+ 3,
984
+ n0,
985
+ _DOHRe,
986
+ 0,
987
+ [_ORI, _OPI, _MA, _RH],
988
+ [1, 1, 1, 1],
989
+ ];
990
+ var DescribeOrganizationOverviewRequest = [
991
+ 3,
992
+ n0,
993
+ _DOOR,
994
+ 0,
995
+ [_FT, _TT, _AIc, _OUI],
996
+ [4, 4, 64 | 0, 64 | 0],
997
+ ];
998
+ var DescribeOrganizationOverviewResponse = [3, n0, _DOORe, 0, [_RIe, _PI], [1, 1]];
999
+ var DescribeOrganizationResourceCollectionHealthRequest = [
1000
+ 3,
1001
+ n0,
1002
+ _DORCHR,
1003
+ 0,
1004
+ [_ORCT, _AIc, _OUI, _NT, _MR],
1005
+ [0, 64 | 0, 64 | 0, 0, 1],
1006
+ ];
1007
+ var DescribeOrganizationResourceCollectionHealthResponse = [
1008
+ 3,
1009
+ n0,
1010
+ _DORCHRe,
1011
+ 0,
1012
+ [_CF, _Se, _A, _NT, _Ta],
1013
+ [() => CloudFormationHealths, () => ServiceHealths, () => AccountHealths, 0, () => TagHealths],
1014
+ ];
1015
+ var DescribeResourceCollectionHealthRequest = [
1016
+ 3,
1017
+ n0,
1018
+ _DRCHR,
1019
+ 0,
1020
+ [_RCT, _NT],
1021
+ [
1022
+ [0, 1],
1023
+ [
1024
+ 0,
1025
+ {
1026
+ [_hQ]: _NT,
1027
+ },
1028
+ ],
1029
+ ],
1030
+ ];
1031
+ var DescribeResourceCollectionHealthResponse = [
1032
+ 3,
1033
+ n0,
1034
+ _DRCHRe,
1035
+ 0,
1036
+ [_CF, _Se, _NT, _Ta],
1037
+ [() => CloudFormationHealths, () => ServiceHealths, 0, () => TagHealths],
1038
+ ];
1039
+ var DescribeServiceIntegrationRequest = [3, n0, _DSIR, 0, [], []];
1040
+ var DescribeServiceIntegrationResponse = [
1041
+ 3,
1042
+ n0,
1043
+ _DSIRe,
1044
+ 0,
1045
+ [_SI],
1046
+ [() => ServiceIntegrationConfig],
1047
+ ];
1048
+ var EndTimeRange = [3, n0, _ETR, 0, [_FT, _TT], [4, 4]];
1049
+ var Event = [
1050
+ 3,
1051
+ n0,
1052
+ _E,
1053
+ 0,
1054
+ [_RC, _Id, _Ti, _ESv, _N, _DS, _EC, _R],
1055
+ [() => ResourceCollection, 0, 4, 0, 0, 0, 0, () => EventResources],
1056
+ ];
1057
+ var EventResource = [3, n0, _ER, 0, [_T, _N, _Ar], [0, 0, 0]];
1058
+ var EventSourcesConfig = [
1059
+ 3,
1060
+ n0,
1061
+ _ESC,
1062
+ 0,
1063
+ [_ACGP],
1064
+ [() => AmazonCodeGuruProfilerIntegration],
1065
+ ];
1066
+ var EventTimeRange = [3, n0, _ETRv, 0, [_FT, _TT], [4, 4]];
1067
+ var GetCostEstimationRequest = [
1068
+ 3,
1069
+ n0,
1070
+ _GCER,
1071
+ 0,
1072
+ [_NT],
1073
+ [
1074
+ [
1075
+ 0,
1076
+ {
1077
+ [_hQ]: _NT,
1078
+ },
1079
+ ],
1080
+ ],
1081
+ ];
1082
+ var GetCostEstimationResponse = [
1083
+ 3,
1084
+ n0,
1085
+ _GCERe,
1086
+ 0,
1087
+ [_RC, _S, _Co, _TR, _TC, _NT],
1088
+ [() => CostEstimationResourceCollectionFilter, 0, () => ServiceResourceCosts, () => CostEstimationTimeRange, 1, 0],
1089
+ ];
1090
+ var GetResourceCollectionRequest = [
1091
+ 3,
1092
+ n0,
1093
+ _GRCR,
1094
+ 0,
1095
+ [_RCT, _NT],
1096
+ [
1097
+ [0, 1],
1098
+ [
1099
+ 0,
1100
+ {
1101
+ [_hQ]: _NT,
1102
+ },
1103
+ ],
1104
+ ],
1105
+ ];
1106
+ var GetResourceCollectionResponse = [
1107
+ 3,
1108
+ n0,
1109
+ _GRCRe,
1110
+ 0,
1111
+ [_RC, _NT],
1112
+ [() => ResourceCollectionFilter, 0],
1113
+ ];
1114
+ var InsightFeedback = [3, n0, _IF, 0, [_Id, _F], [0, 0]];
1115
+ var InsightHealth = [3, n0, _IH, 0, [_OPI, _ORI, _MTTRIM], [1, 1, 1]];
1116
+ var InsightTimeRange = [3, n0, _ITR, 0, [_ST, _ET], [4, 4]];
1117
+ var InternalServerException = [
1118
+ -3,
1119
+ n0,
1120
+ _ISE,
1121
+ {
1122
+ [_e]: _s,
1123
+ [_hE]: 500,
1124
+ },
1125
+ [_M, _RAS],
1126
+ [
1127
+ 0,
1128
+ [
1129
+ 1,
1130
+ {
1131
+ [_hH]: _RA_,
1132
+ },
1133
+ ],
1134
+ ],
1135
+ ];
1136
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1137
+ var KMSServerSideEncryptionIntegration = [
1138
+ 3,
1139
+ n0,
1140
+ _KMSSSEI,
1141
+ 0,
1142
+ [_KMSKI, _OIS, _T],
1143
+ [0, 0, 0],
1144
+ ];
1145
+ var KMSServerSideEncryptionIntegrationConfig = [
1146
+ 3,
1147
+ n0,
1148
+ _KMSSSEIC,
1149
+ 0,
1150
+ [_KMSKI, _OIS, _T],
1151
+ [0, 0, 0],
1152
+ ];
1153
+ var ListAnomaliesForInsightFilters = [
1154
+ 3,
1155
+ n0,
1156
+ _LAFIF,
1157
+ 0,
1158
+ [_SCe],
1159
+ [() => ServiceCollection],
1160
+ ];
1161
+ var ListAnomaliesForInsightRequest = [
1162
+ 3,
1163
+ n0,
1164
+ _LAFIR,
1165
+ 0,
1166
+ [_II, _STR, _MR, _NT, _AI, _Fi],
1167
+ [[0, 1], () => StartTimeRange, 1, 0, 0, () => ListAnomaliesForInsightFilters],
1168
+ ];
1169
+ var ListAnomaliesForInsightResponse = [
1170
+ 3,
1171
+ n0,
1172
+ _LAFIRi,
1173
+ 0,
1174
+ [_PAr, _RAe, _NT],
1175
+ [() => ProactiveAnomalies, () => ReactiveAnomalies, 0],
1176
+ ];
1177
+ var ListAnomalousLogGroupsRequest = [3, n0, _LALGR, 0, [_II, _MR, _NT], [0, 1, 0]];
1178
+ var ListAnomalousLogGroupsResponse = [
1179
+ 3,
1180
+ n0,
1181
+ _LALGRi,
1182
+ 0,
1183
+ [_II, _ALGn, _NT],
1184
+ [0, () => AnomalousLogGroups, 0],
1185
+ ];
1186
+ var ListEventsFilters = [
1187
+ 3,
1188
+ n0,
1189
+ _LEF,
1190
+ 0,
1191
+ [_II, _ETRv, _EC, _ESv, _DS, _RC],
1192
+ [0, () => EventTimeRange, 0, 0, 0, () => ResourceCollection],
1193
+ ];
1194
+ var ListEventsRequest = [
1195
+ 3,
1196
+ n0,
1197
+ _LER,
1198
+ 0,
1199
+ [_Fi, _MR, _NT, _AI],
1200
+ [() => ListEventsFilters, 1, 0, 0],
1201
+ ];
1202
+ var ListEventsResponse = [3, n0, _LERi, 0, [_Ev, _NT], [() => Events, 0]];
1203
+ var ListInsightsAnyStatusFilter = [
1204
+ 3,
1205
+ n0,
1206
+ _LIASF,
1207
+ 0,
1208
+ [_T, _STR],
1209
+ [0, () => StartTimeRange],
1210
+ ];
1211
+ var ListInsightsClosedStatusFilter = [
1212
+ 3,
1213
+ n0,
1214
+ _LICSF,
1215
+ 0,
1216
+ [_T, _ETR],
1217
+ [0, () => EndTimeRange],
1218
+ ];
1219
+ var ListInsightsOngoingStatusFilter = [3, n0, _LIOSF, 0, [_T], [0]];
1220
+ var ListInsightsRequest = [
1221
+ 3,
1222
+ n0,
1223
+ _LIR,
1224
+ 0,
1225
+ [_SF, _MR, _NT],
1226
+ [() => ListInsightsStatusFilter, 1, 0],
1227
+ ];
1228
+ var ListInsightsResponse = [
1229
+ 3,
1230
+ n0,
1231
+ _LIRi,
1232
+ 0,
1233
+ [_PI, _RIe, _NT],
1234
+ [() => ProactiveInsights, () => ReactiveInsights, 0],
1235
+ ];
1236
+ var ListInsightsStatusFilter = [
1237
+ 3,
1238
+ n0,
1239
+ _LISF,
1240
+ 0,
1241
+ [_O, _Cl, _An],
1242
+ [() => ListInsightsOngoingStatusFilter, () => ListInsightsClosedStatusFilter, () => ListInsightsAnyStatusFilter],
1243
+ ];
1244
+ var ListMonitoredResourcesFilters = [3, n0, _LMRF, 0, [_RP, _RTF], [0, 64 | 0]];
1245
+ var ListMonitoredResourcesRequest = [
1246
+ 3,
1247
+ n0,
1248
+ _LMRR,
1249
+ 0,
1250
+ [_Fi, _MR, _NT],
1251
+ [() => ListMonitoredResourcesFilters, 1, 0],
1252
+ ];
1253
+ var ListMonitoredResourcesResponse = [
1254
+ 3,
1255
+ n0,
1256
+ _LMRRi,
1257
+ 0,
1258
+ [_MRI, _NT],
1259
+ [() => MonitoredResourceIdentifiers, 0],
1260
+ ];
1261
+ var ListNotificationChannelsRequest = [3, n0, _LNCR, 0, [_NT], [0]];
1262
+ var ListNotificationChannelsResponse = [
1263
+ 3,
1264
+ n0,
1265
+ _LNCRi,
1266
+ 0,
1267
+ [_Ch, _NT],
1268
+ [() => Channels, 0],
1269
+ ];
1270
+ var ListOrganizationInsightsRequest = [
1271
+ 3,
1272
+ n0,
1273
+ _LOIR,
1274
+ 0,
1275
+ [_SF, _MR, _AIc, _OUI, _NT],
1276
+ [() => ListInsightsStatusFilter, 1, 64 | 0, 64 | 0, 0],
1277
+ ];
1278
+ var ListOrganizationInsightsResponse = [
1279
+ 3,
1280
+ n0,
1281
+ _LOIRi,
1282
+ 0,
1283
+ [_PI, _RIe, _NT],
1284
+ [() => ProactiveOrganizationInsights, () => ReactiveOrganizationInsights, 0],
1285
+ ];
1286
+ var ListRecommendationsRequest = [3, n0, _LRR, 0, [_II, _NT, _L, _AI], [0, 0, 0, 0]];
1287
+ var ListRecommendationsResponse = [
1288
+ 3,
1289
+ n0,
1290
+ _LRRi,
1291
+ 0,
1292
+ [_Re, _NT],
1293
+ [() => Recommendations, 0],
1294
+ ];
1295
+ var LogAnomalyClass = [
1296
+ 3,
1297
+ n0,
1298
+ _LAC,
1299
+ 0,
1300
+ [_LSN, _LAT, _LATo, _LEI, _Ex, _NOLLO, _LET],
1301
+ [0, 0, 0, 0, 0, 1, 4],
1302
+ ];
1303
+ var LogAnomalyShowcase = [3, n0, _LASo, 0, [_LACo], [() => LogAnomalyClasses]];
1304
+ var LogsAnomalyDetectionIntegration = [3, n0, _LADI, 0, [_OIS], [0]];
1305
+ var LogsAnomalyDetectionIntegrationConfig = [3, n0, _LADIC, 0, [_OIS], [0]];
1306
+ var MonitoredResourceIdentifier = [
1307
+ 3,
1308
+ n0,
1309
+ _MRIo,
1310
+ 0,
1311
+ [_MRN, _T, _RP, _LU, _RC],
1312
+ [0, 0, 0, 4, () => ResourceCollection],
1313
+ ];
1314
+ var NotificationChannel = [
1315
+ 3,
1316
+ n0,
1317
+ _NC,
1318
+ 0,
1319
+ [_Id, _C],
1320
+ [0, () => NotificationChannelConfig],
1321
+ ];
1322
+ var NotificationChannelConfig = [
1323
+ 3,
1324
+ n0,
1325
+ _NCC,
1326
+ 0,
1327
+ [_Sn, _Fi],
1328
+ [() => SnsChannelConfig, () => NotificationFilterConfig],
1329
+ ];
1330
+ var NotificationFilterConfig = [3, n0, _NFC, 0, [_Sev, _MT], [64 | 0, 64 | 0]];
1331
+ var OpsCenterIntegration = [3, n0, _OCI, 0, [_OIS], [0]];
1332
+ var OpsCenterIntegrationConfig = [3, n0, _OCIC, 0, [_OIS], [0]];
1333
+ var PerformanceInsightsMetricDimensionGroup = [
1334
+ 3,
1335
+ n0,
1336
+ _PIMDG,
1337
+ 0,
1338
+ [_G, _D, _Li],
1339
+ [0, 64 | 0, 1],
1340
+ ];
1341
+ var PerformanceInsightsMetricQuery = [
1342
+ 3,
1343
+ n0,
1344
+ _PIMQ,
1345
+ 0,
1346
+ [_Me, _GB, _Fil],
1347
+ [0, () => PerformanceInsightsMetricDimensionGroup, 128 | 0],
1348
+ ];
1349
+ var PerformanceInsightsMetricsDetail = [
1350
+ 3,
1351
+ n0,
1352
+ _PIMD,
1353
+ 0,
1354
+ [_MDN, _U, _MQ, _RD, _SAA, _SAB],
1355
+ [
1356
+ 0,
1357
+ 0,
1358
+ () => PerformanceInsightsMetricQuery,
1359
+ () => PerformanceInsightsReferenceDataList,
1360
+ () => PerformanceInsightsStats,
1361
+ () => PerformanceInsightsStats,
1362
+ ],
1363
+ ];
1364
+ var PerformanceInsightsReferenceComparisonValues = [
1365
+ 3,
1366
+ n0,
1367
+ _PIRCV,
1368
+ 0,
1369
+ [_RS, _RM],
1370
+ [() => PerformanceInsightsReferenceScalar, () => PerformanceInsightsReferenceMetric],
1371
+ ];
1372
+ var PerformanceInsightsReferenceData = [
1373
+ 3,
1374
+ n0,
1375
+ _PIRD,
1376
+ 0,
1377
+ [_N, _CV],
1378
+ [0, () => PerformanceInsightsReferenceComparisonValues],
1379
+ ];
1380
+ var PerformanceInsightsReferenceMetric = [
1381
+ 3,
1382
+ n0,
1383
+ _PIRM,
1384
+ 0,
1385
+ [_MQ],
1386
+ [() => PerformanceInsightsMetricQuery],
1387
+ ];
1388
+ var PerformanceInsightsReferenceScalar = [3, n0, _PIRS, 0, [_V], [1]];
1389
+ var PerformanceInsightsStat = [3, n0, _PIS, 0, [_T, _V], [0, 1]];
1390
+ var PredictionTimeRange = [3, n0, _PTR, 0, [_ST, _ET], [4, 4]];
1391
+ var ProactiveAnomaly = [
1392
+ 3,
1393
+ n0,
1394
+ _PA,
1395
+ 0,
1396
+ [_Id, _Seve, _S, _UT, _ATR, _ARTR, _PTR, _SD, _AII, _RC, _Li, _SM, _ARn, _De],
1397
+ [
1398
+ 0,
1399
+ 0,
1400
+ 0,
1401
+ 4,
1402
+ () => AnomalyTimeRange,
1403
+ () => AnomalyReportedTimeRange,
1404
+ () => PredictionTimeRange,
1405
+ () => AnomalySourceDetails,
1406
+ 0,
1407
+ () => ResourceCollection,
1408
+ 1,
1409
+ () => AnomalySourceMetadata,
1410
+ () => AnomalyResources,
1411
+ 0,
1412
+ ],
1413
+ ];
1414
+ var ProactiveAnomalySummary = [
1415
+ 3,
1416
+ n0,
1417
+ _PAS,
1418
+ 0,
1419
+ [_Id, _Seve, _S, _UT, _ATR, _ARTR, _PTR, _SD, _AII, _RC, _Li, _SM, _ARn, _De],
1420
+ [
1421
+ 0,
1422
+ 0,
1423
+ 0,
1424
+ 4,
1425
+ () => AnomalyTimeRange,
1426
+ () => AnomalyReportedTimeRange,
1427
+ () => PredictionTimeRange,
1428
+ () => AnomalySourceDetails,
1429
+ 0,
1430
+ () => ResourceCollection,
1431
+ 1,
1432
+ () => AnomalySourceMetadata,
1433
+ () => AnomalyResources,
1434
+ 0,
1435
+ ],
1436
+ ];
1437
+ var ProactiveInsight = [
1438
+ 3,
1439
+ n0,
1440
+ _PIr,
1441
+ 0,
1442
+ [_Id, _N, _Seve, _S, _ITR, _PTR, _RC, _SOII, _De],
1443
+ [0, 0, 0, 0, () => InsightTimeRange, () => PredictionTimeRange, () => ResourceCollection, 0, 0],
1444
+ ];
1445
+ var ProactiveInsightSummary = [
1446
+ 3,
1447
+ n0,
1448
+ _PISr,
1449
+ 0,
1450
+ [_Id, _N, _Seve, _S, _ITR, _PTR, _RC, _SCe, _ARA],
1451
+ [
1452
+ 0,
1453
+ 0,
1454
+ 0,
1455
+ 0,
1456
+ () => InsightTimeRange,
1457
+ () => PredictionTimeRange,
1458
+ () => ResourceCollection,
1459
+ () => ServiceCollection,
1460
+ 64 | 0,
1461
+ ],
1462
+ ];
1463
+ var ProactiveOrganizationInsightSummary = [
1464
+ 3,
1465
+ n0,
1466
+ _POIS,
1467
+ 0,
1468
+ [_Id, _AI, _OUIr, _N, _Seve, _S, _ITR, _PTR, _RC, _SCe],
1469
+ [
1470
+ 0,
1471
+ 0,
1472
+ 0,
1473
+ 0,
1474
+ 0,
1475
+ 0,
1476
+ () => InsightTimeRange,
1477
+ () => PredictionTimeRange,
1478
+ () => ResourceCollection,
1479
+ () => ServiceCollection,
1480
+ ],
1481
+ ];
1482
+ var PutFeedbackRequest = [3, n0, _PFR, 0, [_IF], [() => InsightFeedback]];
1483
+ var PutFeedbackResponse = [3, n0, _PFRu, 0, [], []];
1484
+ var ReactiveAnomaly = [
1485
+ 3,
1486
+ n0,
1487
+ _RA,
1488
+ 0,
1489
+ [_Id, _Seve, _S, _ATR, _ARTR, _SD, _AII, _RC, _T, _N, _De, _CAI, _ARn],
1490
+ [
1491
+ 0,
1492
+ 0,
1493
+ 0,
1494
+ () => AnomalyTimeRange,
1495
+ () => AnomalyReportedTimeRange,
1496
+ () => AnomalySourceDetails,
1497
+ 0,
1498
+ () => ResourceCollection,
1499
+ 0,
1500
+ 0,
1501
+ 0,
1502
+ 0,
1503
+ () => AnomalyResources,
1504
+ ],
1505
+ ];
1506
+ var ReactiveAnomalySummary = [
1507
+ 3,
1508
+ n0,
1509
+ _RASe,
1510
+ 0,
1511
+ [_Id, _Seve, _S, _ATR, _ARTR, _SD, _AII, _RC, _T, _N, _De, _CAI, _ARn],
1512
+ [
1513
+ 0,
1514
+ 0,
1515
+ 0,
1516
+ () => AnomalyTimeRange,
1517
+ () => AnomalyReportedTimeRange,
1518
+ () => AnomalySourceDetails,
1519
+ 0,
1520
+ () => ResourceCollection,
1521
+ 0,
1522
+ 0,
1523
+ 0,
1524
+ 0,
1525
+ () => AnomalyResources,
1526
+ ],
1527
+ ];
1528
+ var ReactiveInsight = [
1529
+ 3,
1530
+ n0,
1531
+ _RIea,
1532
+ 0,
1533
+ [_Id, _N, _Seve, _S, _ITR, _RC, _SOII, _De],
1534
+ [0, 0, 0, 0, () => InsightTimeRange, () => ResourceCollection, 0, 0],
1535
+ ];
1536
+ var ReactiveInsightSummary = [
1537
+ 3,
1538
+ n0,
1539
+ _RIS,
1540
+ 0,
1541
+ [_Id, _N, _Seve, _S, _ITR, _RC, _SCe, _ARA],
1542
+ [0, 0, 0, 0, () => InsightTimeRange, () => ResourceCollection, () => ServiceCollection, 64 | 0],
1543
+ ];
1544
+ var ReactiveOrganizationInsightSummary = [
1545
+ 3,
1546
+ n0,
1547
+ _ROIS,
1548
+ 0,
1549
+ [_Id, _AI, _OUIr, _N, _Seve, _S, _ITR, _RC, _SCe],
1550
+ [0, 0, 0, 0, 0, 0, () => InsightTimeRange, () => ResourceCollection, () => ServiceCollection],
1551
+ ];
1552
+ var Recommendation = [
1553
+ 3,
1554
+ n0,
1555
+ _Rec,
1556
+ 0,
1557
+ [_De, _Lin, _N, _Rea, _RE, _RAel, _Ca],
1558
+ [0, 0, 0, 0, () => RecommendationRelatedEvents, () => RecommendationRelatedAnomalies, 0],
1559
+ ];
1560
+ var RecommendationRelatedAnomaly = [
1561
+ 3,
1562
+ n0,
1563
+ _RRA,
1564
+ 0,
1565
+ [_R, _SD, _AIn],
1566
+ [() => RecommendationRelatedAnomalyResources, () => RelatedAnomalySourceDetails, 0],
1567
+ ];
1568
+ var RecommendationRelatedAnomalyResource = [3, n0, _RRAR, 0, [_N, _T], [0, 0]];
1569
+ var RecommendationRelatedAnomalySourceDetail = [
1570
+ 3,
1571
+ n0,
1572
+ _RRASD,
1573
+ 0,
1574
+ [_CWM],
1575
+ [() => RecommendationRelatedCloudWatchMetricsSourceDetails],
1576
+ ];
1577
+ var RecommendationRelatedCloudWatchMetricsSourceDetail = [
1578
+ 3,
1579
+ n0,
1580
+ _RRCWMSD,
1581
+ 0,
1582
+ [_MN, _Na],
1583
+ [0, 0],
1584
+ ];
1585
+ var RecommendationRelatedEvent = [
1586
+ 3,
1587
+ n0,
1588
+ _RRE,
1589
+ 0,
1590
+ [_N, _R],
1591
+ [0, () => RecommendationRelatedEventResources],
1592
+ ];
1593
+ var RecommendationRelatedEventResource = [3, n0, _RRER, 0, [_N, _T], [0, 0]];
1594
+ var RemoveNotificationChannelRequest = [3, n0, _RNCR, 0, [_Id], [[0, 1]]];
1595
+ var RemoveNotificationChannelResponse = [3, n0, _RNCRe, 0, [], []];
1596
+ var ResourceCollection = [
1597
+ 3,
1598
+ n0,
1599
+ _RC,
1600
+ 0,
1601
+ [_CF, _Ta],
1602
+ [() => CloudFormationCollection, () => TagCollections],
1603
+ ];
1604
+ var ResourceCollectionFilter = [
1605
+ 3,
1606
+ n0,
1607
+ _RCF,
1608
+ 0,
1609
+ [_CF, _Ta],
1610
+ [() => CloudFormationCollectionFilter, () => TagCollectionFilters],
1611
+ ];
1612
+ var ResourceNotFoundException = [
1613
+ -3,
1614
+ n0,
1615
+ _RNFE,
1616
+ {
1617
+ [_e]: _c,
1618
+ [_hE]: 404,
1619
+ },
1620
+ [_M, _RI, _RT],
1621
+ [0, 0, 0],
1622
+ ];
1623
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1624
+ var SearchInsightsFilters = [
1625
+ 3,
1626
+ n0,
1627
+ _SIF,
1628
+ 0,
1629
+ [_Sev, _Sta, _RC, _SCe],
1630
+ [64 | 0, 64 | 0, () => ResourceCollection, () => ServiceCollection],
1631
+ ];
1632
+ var SearchInsightsRequest = [
1633
+ 3,
1634
+ n0,
1635
+ _SIR,
1636
+ 0,
1637
+ [_STR, _Fi, _MR, _NT, _T],
1638
+ [() => StartTimeRange, () => SearchInsightsFilters, 1, 0, 0],
1639
+ ];
1640
+ var SearchInsightsResponse = [
1641
+ 3,
1642
+ n0,
1643
+ _SIRe,
1644
+ 0,
1645
+ [_PI, _RIe, _NT],
1646
+ [() => ProactiveInsights, () => ReactiveInsights, 0],
1647
+ ];
1648
+ var SearchOrganizationInsightsFilters = [
1649
+ 3,
1650
+ n0,
1651
+ _SOIF,
1652
+ 0,
1653
+ [_Sev, _Sta, _RC, _SCe],
1654
+ [64 | 0, 64 | 0, () => ResourceCollection, () => ServiceCollection],
1655
+ ];
1656
+ var SearchOrganizationInsightsRequest = [
1657
+ 3,
1658
+ n0,
1659
+ _SOIR,
1660
+ 0,
1661
+ [_AIc, _STR, _Fi, _MR, _NT, _T],
1662
+ [64 | 0, () => StartTimeRange, () => SearchOrganizationInsightsFilters, 1, 0, 0],
1663
+ ];
1664
+ var SearchOrganizationInsightsResponse = [
1665
+ 3,
1666
+ n0,
1667
+ _SOIRe,
1668
+ 0,
1669
+ [_PI, _RIe, _NT],
1670
+ [() => ProactiveInsights, () => ReactiveInsights, 0],
1671
+ ];
1672
+ var ServiceCollection = [3, n0, _SCe, 0, [_SNe], [64 | 0]];
1673
+ var ServiceHealth = [
1674
+ 3,
1675
+ n0,
1676
+ _SH,
1677
+ 0,
1678
+ [_SNer, _I, _ARC],
1679
+ [0, () => ServiceInsightHealth, 1],
1680
+ ];
1681
+ var ServiceInsightHealth = [3, n0, _SIH, 0, [_OPI, _ORI], [1, 1]];
1682
+ var ServiceIntegrationConfig = [
1683
+ 3,
1684
+ n0,
1685
+ _SIC,
1686
+ 0,
1687
+ [_OC, _LAD, _KMSSSE],
1688
+ [() => OpsCenterIntegration, () => LogsAnomalyDetectionIntegration, () => KMSServerSideEncryptionIntegration],
1689
+ ];
1690
+ var ServiceQuotaExceededException = [
1691
+ -3,
1692
+ n0,
1693
+ _SQEE,
1694
+ {
1695
+ [_e]: _c,
1696
+ [_hE]: 402,
1697
+ },
1698
+ [_M],
1699
+ [0],
1700
+ ];
1701
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1702
+ var ServiceResourceCost = [3, n0, _SRC, 0, [_T, _Stat, _Cou, _UC, _Cos], [0, 0, 1, 1, 1]];
1703
+ var SnsChannelConfig = [3, n0, _SCC, 0, [_TA], [0]];
1704
+ var StartCostEstimationRequest = [
1705
+ 3,
1706
+ n0,
1707
+ _SCER,
1708
+ 0,
1709
+ [_RC, _CTl],
1710
+ [() => CostEstimationResourceCollectionFilter, [0, 4]],
1711
+ ];
1712
+ var StartCostEstimationResponse = [3, n0, _SCERt, 0, [], []];
1713
+ var StartTimeRange = [3, n0, _STR, 0, [_FT, _TT], [4, 4]];
1714
+ var TagCollection = [3, n0, _TCa, 0, [_ABK, _TV], [0, 64 | 0]];
1715
+ var TagCollectionFilter = [3, n0, _TCF, 0, [_ABK, _TV], [0, 64 | 0]];
1716
+ var TagCostEstimationResourceCollectionFilter = [
1717
+ 3,
1718
+ n0,
1719
+ _TCERCF,
1720
+ 0,
1721
+ [_ABK, _TV],
1722
+ [0, 64 | 0],
1723
+ ];
1724
+ var TagHealth = [3, n0, _TH, 0, [_ABK, _TVa, _I, _ARC], [0, 0, () => InsightHealth, 1]];
1725
+ var ThrottlingException = [
1726
+ -3,
1727
+ n0,
1728
+ _TE,
1729
+ {
1730
+ [_e]: _c,
1731
+ [_hE]: 429,
1732
+ },
1733
+ [_M, _QC, _SCer, _RAS],
1734
+ [
1735
+ 0,
1736
+ 0,
1737
+ 0,
1738
+ [
1739
+ 1,
1740
+ {
1741
+ [_hH]: _RA_,
1742
+ },
1743
+ ],
1744
+ ],
1745
+ ];
1746
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1747
+ var TimestampMetricValuePair = [3, n0, _TMVP, 0, [_Tim, _MV], [4, 1]];
1748
+ var UpdateCloudFormationCollectionFilter = [3, n0, _UCFCF, 0, [_SN], [64 | 0]];
1749
+ var UpdateEventSourcesConfigRequest = [
1750
+ 3,
1751
+ n0,
1752
+ _UESCR,
1753
+ 0,
1754
+ [_ES],
1755
+ [() => EventSourcesConfig],
1756
+ ];
1757
+ var UpdateEventSourcesConfigResponse = [3, n0, _UESCRp, 0, [], []];
1758
+ var UpdateResourceCollectionFilter = [
1759
+ 3,
1760
+ n0,
1761
+ _URCF,
1762
+ 0,
1763
+ [_CF, _Ta],
1764
+ [() => UpdateCloudFormationCollectionFilter, () => UpdateTagCollectionFilters],
1765
+ ];
1766
+ var UpdateResourceCollectionRequest = [
1767
+ 3,
1768
+ n0,
1769
+ _URCR,
1770
+ 0,
1771
+ [_Ac, _RC],
1772
+ [0, () => UpdateResourceCollectionFilter],
1773
+ ];
1774
+ var UpdateResourceCollectionResponse = [3, n0, _URCRp, 0, [], []];
1775
+ var UpdateServiceIntegrationConfig = [
1776
+ 3,
1777
+ n0,
1778
+ _USIC,
1779
+ 0,
1780
+ [_OC, _LAD, _KMSSSE],
1781
+ [
1782
+ () => OpsCenterIntegrationConfig,
1783
+ () => LogsAnomalyDetectionIntegrationConfig,
1784
+ () => KMSServerSideEncryptionIntegrationConfig,
1785
+ ],
1786
+ ];
1787
+ var UpdateServiceIntegrationRequest = [
1788
+ 3,
1789
+ n0,
1790
+ _USIR,
1791
+ 0,
1792
+ [_SI],
1793
+ [() => UpdateServiceIntegrationConfig],
1794
+ ];
1795
+ var UpdateServiceIntegrationResponse = [3, n0, _USIRp, 0, [], []];
1796
+ var UpdateTagCollectionFilter = [3, n0, _UTCF, 0, [_ABK, _TV], [0, 64 | 0]];
1797
+ var ValidationException = [
1798
+ -3,
1799
+ n0,
1800
+ _VE,
1801
+ {
1802
+ [_e]: _c,
1803
+ [_hE]: 400,
1804
+ },
1805
+ [_M, _Rea, _Fie],
1806
+ [0, 0, () => ValidationExceptionFields],
1807
+ ];
1808
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1809
+ var ValidationExceptionField = [3, n0, _VEF, 0, [_N, _M], [0, 0]];
1810
+ var DevOpsGuruServiceException = [-3, _sm, "DevOpsGuruServiceException", 0, [], []];
1811
+ schema.TypeRegistry.for(_sm).registerError(DevOpsGuruServiceException, DevOpsGuruServiceException$1);
1812
+ var AccountHealths = [1, n0, _AHc, 0, () => AccountHealth];
1813
+ var AnomalousLogGroups = [1, n0, _ALGn, 0, () => AnomalousLogGroup];
1814
+ var AnomalyResources = [1, n0, _ARn, 0, () => AnomalyResource];
1815
+ var Channels = [1, n0, _Ch, 0, () => NotificationChannel];
1816
+ var CloudFormationHealths = [1, n0, _CFHl, 0, () => CloudFormationHealth];
1817
+ var CloudWatchMetricsDetails = [1, n0, _CWMDlo, 0, () => CloudWatchMetricsDetail];
1818
+ var CloudWatchMetricsDimensions = [1, n0, _CWMDlou, 0, () => CloudWatchMetricsDimension];
1819
+ var EventResources = [1, n0, _ERv, 0, () => EventResource];
1820
+ var Events = [1, n0, _Ev, 0, () => Event];
1821
+ var LogAnomalyClasses = [1, n0, _LACo, 0, () => LogAnomalyClass];
1822
+ var LogAnomalyShowcases = [1, n0, _LAS, 0, () => LogAnomalyShowcase];
1823
+ var MonitoredResourceIdentifiers = [1, n0, _MRI, 0, () => MonitoredResourceIdentifier];
1824
+ var PerformanceInsightsMetricsDetails = [
1825
+ 1,
1826
+ n0,
1827
+ _PIMDe,
1828
+ 0,
1829
+ () => PerformanceInsightsMetricsDetail,
1830
+ ];
1831
+ var PerformanceInsightsReferenceDataList = [
1832
+ 1,
1833
+ n0,
1834
+ _PIRDL,
1835
+ 0,
1836
+ () => PerformanceInsightsReferenceData,
1837
+ ];
1838
+ var PerformanceInsightsStats = [1, n0, _PISe, 0, () => PerformanceInsightsStat];
1839
+ var ProactiveAnomalies = [1, n0, _PAr, 0, () => ProactiveAnomalySummary];
1840
+ var ProactiveInsights = [1, n0, _PI, 0, () => ProactiveInsightSummary];
1841
+ var ProactiveOrganizationInsights = [
1842
+ 1,
1843
+ n0,
1844
+ _POI,
1845
+ 0,
1846
+ () => ProactiveOrganizationInsightSummary,
1847
+ ];
1848
+ var ReactiveAnomalies = [1, n0, _RAe, 0, () => ReactiveAnomalySummary];
1849
+ var ReactiveInsights = [1, n0, _RIe, 0, () => ReactiveInsightSummary];
1850
+ var ReactiveOrganizationInsights = [1, n0, _ROI, 0, () => ReactiveOrganizationInsightSummary];
1851
+ var RecommendationRelatedAnomalies = [1, n0, _RRAe, 0, () => RecommendationRelatedAnomaly];
1852
+ var RecommendationRelatedAnomalyResources = [
1853
+ 1,
1854
+ n0,
1855
+ _RRARe,
1856
+ 0,
1857
+ () => RecommendationRelatedAnomalyResource,
1858
+ ];
1859
+ var RecommendationRelatedCloudWatchMetricsSourceDetails = [
1860
+ 1,
1861
+ n0,
1862
+ _RRCWMSDe,
1863
+ 0,
1864
+ () => RecommendationRelatedCloudWatchMetricsSourceDetail,
1865
+ ];
1866
+ var RecommendationRelatedEventResources = [
1867
+ 1,
1868
+ n0,
1869
+ _RRERe,
1870
+ 0,
1871
+ () => RecommendationRelatedEventResource,
1872
+ ];
1873
+ var RecommendationRelatedEvents = [1, n0, _RREe, 0, () => RecommendationRelatedEvent];
1874
+ var Recommendations = [1, n0, _Re, 0, () => Recommendation];
1875
+ var RelatedAnomalySourceDetails = [
1876
+ 1,
1877
+ n0,
1878
+ _RASD,
1879
+ 0,
1880
+ () => RecommendationRelatedAnomalySourceDetail,
1881
+ ];
1882
+ var ServiceHealths = [1, n0, _SHe, 0, () => ServiceHealth];
1883
+ var ServiceResourceCosts = [1, n0, _SRCe, 0, () => ServiceResourceCost];
1884
+ var TagCollectionFilters = [1, n0, _TCFa, 0, () => TagCollectionFilter];
1885
+ var TagCollections = [1, n0, _TCag, 0, () => TagCollection];
1886
+ var TagCostEstimationResourceCollectionFilters = [
1887
+ 1,
1888
+ n0,
1889
+ _TCERCFa,
1890
+ 0,
1891
+ () => TagCostEstimationResourceCollectionFilter,
1892
+ ];
1893
+ var TagHealths = [1, n0, _THa, 0, () => TagHealth];
1894
+ var TimestampMetricValuePairList = [1, n0, _TMVPL, 0, () => TimestampMetricValuePair];
1895
+ var UpdateTagCollectionFilters = [1, n0, _UTCFp, 0, () => UpdateTagCollectionFilter];
1896
+ var ValidationExceptionFields = [1, n0, _VEFa, 0, () => ValidationExceptionField];
1897
+ var AddNotificationChannel = [
1898
+ 9,
1899
+ n0,
1900
+ _ANC,
1901
+ {
1902
+ [_h]: ["PUT", "/channels", 200],
1903
+ },
1904
+ () => AddNotificationChannelRequest,
1905
+ () => AddNotificationChannelResponse,
1906
+ ];
1907
+ var DeleteInsight = [
1908
+ 9,
1909
+ n0,
1910
+ _DI,
1911
+ {
1912
+ [_h]: ["DELETE", "/insights/{Id}", 200],
1913
+ },
1914
+ () => DeleteInsightRequest,
1915
+ () => DeleteInsightResponse,
1916
+ ];
1917
+ var DescribeAccountHealth = [
1918
+ 9,
1919
+ n0,
1920
+ _DAH,
1921
+ {
1922
+ [_h]: ["GET", "/accounts/health", 200],
1923
+ },
1924
+ () => DescribeAccountHealthRequest,
1925
+ () => DescribeAccountHealthResponse,
1926
+ ];
1927
+ var DescribeAccountOverview = [
1928
+ 9,
1929
+ n0,
1930
+ _DAO,
1931
+ {
1932
+ [_h]: ["POST", "/accounts/overview", 200],
1933
+ },
1934
+ () => DescribeAccountOverviewRequest,
1935
+ () => DescribeAccountOverviewResponse,
1936
+ ];
1937
+ var DescribeAnomaly = [
1938
+ 9,
1939
+ n0,
1940
+ _DA,
1941
+ {
1942
+ [_h]: ["GET", "/anomalies/{Id}", 200],
1943
+ },
1944
+ () => DescribeAnomalyRequest,
1945
+ () => DescribeAnomalyResponse,
1946
+ ];
1947
+ var DescribeEventSourcesConfig = [
1948
+ 9,
1949
+ n0,
1950
+ _DESC,
1951
+ {
1952
+ [_h]: ["POST", "/event-sources", 200],
1953
+ },
1954
+ () => DescribeEventSourcesConfigRequest,
1955
+ () => DescribeEventSourcesConfigResponse,
1956
+ ];
1957
+ var DescribeFeedback = [
1958
+ 9,
1959
+ n0,
1960
+ _DF,
1961
+ {
1962
+ [_h]: ["POST", "/feedback", 200],
1963
+ },
1964
+ () => DescribeFeedbackRequest,
1965
+ () => DescribeFeedbackResponse,
1966
+ ];
1967
+ var DescribeInsight = [
1968
+ 9,
1969
+ n0,
1970
+ _DIe,
1971
+ {
1972
+ [_h]: ["GET", "/insights/{Id}", 200],
1973
+ },
1974
+ () => DescribeInsightRequest,
1975
+ () => DescribeInsightResponse,
1976
+ ];
1977
+ var DescribeOrganizationHealth = [
1978
+ 9,
1979
+ n0,
1980
+ _DOH,
1981
+ {
1982
+ [_h]: ["POST", "/organization/health", 200],
1983
+ },
1984
+ () => DescribeOrganizationHealthRequest,
1985
+ () => DescribeOrganizationHealthResponse,
1986
+ ];
1987
+ var DescribeOrganizationOverview = [
1988
+ 9,
1989
+ n0,
1990
+ _DOO,
1991
+ {
1992
+ [_h]: ["POST", "/organization/overview", 200],
1993
+ },
1994
+ () => DescribeOrganizationOverviewRequest,
1995
+ () => DescribeOrganizationOverviewResponse,
1996
+ ];
1997
+ var DescribeOrganizationResourceCollectionHealth = [
1998
+ 9,
1999
+ n0,
2000
+ _DORCH,
2001
+ {
2002
+ [_h]: ["POST", "/organization/health/resource-collection", 200],
2003
+ },
2004
+ () => DescribeOrganizationResourceCollectionHealthRequest,
2005
+ () => DescribeOrganizationResourceCollectionHealthResponse,
2006
+ ];
2007
+ var DescribeResourceCollectionHealth = [
2008
+ 9,
2009
+ n0,
2010
+ _DRCH,
2011
+ {
2012
+ [_h]: ["GET", "/accounts/health/resource-collection/{ResourceCollectionType}", 200],
2013
+ },
2014
+ () => DescribeResourceCollectionHealthRequest,
2015
+ () => DescribeResourceCollectionHealthResponse,
2016
+ ];
2017
+ var DescribeServiceIntegration = [
2018
+ 9,
2019
+ n0,
2020
+ _DSI,
2021
+ {
2022
+ [_h]: ["GET", "/service-integrations", 200],
2023
+ },
2024
+ () => DescribeServiceIntegrationRequest,
2025
+ () => DescribeServiceIntegrationResponse,
2026
+ ];
2027
+ var GetCostEstimation = [
2028
+ 9,
2029
+ n0,
2030
+ _GCE,
2031
+ {
2032
+ [_h]: ["GET", "/cost-estimation", 200],
2033
+ },
2034
+ () => GetCostEstimationRequest,
2035
+ () => GetCostEstimationResponse,
2036
+ ];
2037
+ var GetResourceCollection = [
2038
+ 9,
2039
+ n0,
2040
+ _GRC,
2041
+ {
2042
+ [_h]: ["GET", "/resource-collections/{ResourceCollectionType}", 200],
2043
+ },
2044
+ () => GetResourceCollectionRequest,
2045
+ () => GetResourceCollectionResponse,
2046
+ ];
2047
+ var ListAnomaliesForInsight = [
2048
+ 9,
2049
+ n0,
2050
+ _LAFI,
2051
+ {
2052
+ [_h]: ["POST", "/anomalies/insight/{InsightId}", 200],
2053
+ },
2054
+ () => ListAnomaliesForInsightRequest,
2055
+ () => ListAnomaliesForInsightResponse,
2056
+ ];
2057
+ var ListAnomalousLogGroups = [
2058
+ 9,
2059
+ n0,
2060
+ _LALG,
2061
+ {
2062
+ [_h]: ["POST", "/list-log-anomalies", 200],
2063
+ },
2064
+ () => ListAnomalousLogGroupsRequest,
2065
+ () => ListAnomalousLogGroupsResponse,
2066
+ ];
2067
+ var ListEvents = [
2068
+ 9,
2069
+ n0,
2070
+ _LE,
2071
+ {
2072
+ [_h]: ["POST", "/events", 200],
2073
+ },
2074
+ () => ListEventsRequest,
2075
+ () => ListEventsResponse,
2076
+ ];
2077
+ var ListInsights = [
2078
+ 9,
2079
+ n0,
2080
+ _LI,
2081
+ {
2082
+ [_h]: ["POST", "/insights", 200],
2083
+ },
2084
+ () => ListInsightsRequest,
2085
+ () => ListInsightsResponse,
2086
+ ];
2087
+ var ListMonitoredResources = [
2088
+ 9,
2089
+ n0,
2090
+ _LMR,
2091
+ {
2092
+ [_h]: ["POST", "/monitoredResources", 200],
2093
+ },
2094
+ () => ListMonitoredResourcesRequest,
2095
+ () => ListMonitoredResourcesResponse,
2096
+ ];
2097
+ var ListNotificationChannels = [
2098
+ 9,
2099
+ n0,
2100
+ _LNC,
2101
+ {
2102
+ [_h]: ["POST", "/channels", 200],
2103
+ },
2104
+ () => ListNotificationChannelsRequest,
2105
+ () => ListNotificationChannelsResponse,
2106
+ ];
2107
+ var ListOrganizationInsights = [
2108
+ 9,
2109
+ n0,
2110
+ _LOI,
2111
+ {
2112
+ [_h]: ["POST", "/organization/insights", 200],
2113
+ },
2114
+ () => ListOrganizationInsightsRequest,
2115
+ () => ListOrganizationInsightsResponse,
2116
+ ];
2117
+ var ListRecommendations = [
2118
+ 9,
2119
+ n0,
2120
+ _LR,
2121
+ {
2122
+ [_h]: ["POST", "/recommendations", 200],
2123
+ },
2124
+ () => ListRecommendationsRequest,
2125
+ () => ListRecommendationsResponse,
2126
+ ];
2127
+ var PutFeedback = [
2128
+ 9,
2129
+ n0,
2130
+ _PF,
2131
+ {
2132
+ [_h]: ["PUT", "/feedback", 200],
2133
+ },
2134
+ () => PutFeedbackRequest,
2135
+ () => PutFeedbackResponse,
2136
+ ];
2137
+ var RemoveNotificationChannel = [
2138
+ 9,
2139
+ n0,
2140
+ _RNC,
2141
+ {
2142
+ [_h]: ["DELETE", "/channels/{Id}", 200],
2143
+ },
2144
+ () => RemoveNotificationChannelRequest,
2145
+ () => RemoveNotificationChannelResponse,
2146
+ ];
2147
+ var SearchInsights = [
2148
+ 9,
2149
+ n0,
2150
+ _SIe,
2151
+ {
2152
+ [_h]: ["POST", "/insights/search", 200],
2153
+ },
2154
+ () => SearchInsightsRequest,
2155
+ () => SearchInsightsResponse,
2156
+ ];
2157
+ var SearchOrganizationInsights = [
2158
+ 9,
2159
+ n0,
2160
+ _SOI,
2161
+ {
2162
+ [_h]: ["POST", "/organization/insights/search", 200],
2163
+ },
2164
+ () => SearchOrganizationInsightsRequest,
2165
+ () => SearchOrganizationInsightsResponse,
2166
+ ];
2167
+ var StartCostEstimation = [
2168
+ 9,
2169
+ n0,
2170
+ _SCE,
2171
+ {
2172
+ [_h]: ["PUT", "/cost-estimation", 200],
2173
+ },
2174
+ () => StartCostEstimationRequest,
2175
+ () => StartCostEstimationResponse,
2176
+ ];
2177
+ var UpdateEventSourcesConfig = [
2178
+ 9,
2179
+ n0,
2180
+ _UESC,
2181
+ {
2182
+ [_h]: ["PUT", "/event-sources", 200],
2183
+ },
2184
+ () => UpdateEventSourcesConfigRequest,
2185
+ () => UpdateEventSourcesConfigResponse,
2186
+ ];
2187
+ var UpdateResourceCollection = [
2188
+ 9,
2189
+ n0,
2190
+ _URC,
2191
+ {
2192
+ [_h]: ["PUT", "/resource-collections", 200],
2193
+ },
2194
+ () => UpdateResourceCollectionRequest,
2195
+ () => UpdateResourceCollectionResponse,
2196
+ ];
2197
+ var UpdateServiceIntegration = [
2198
+ 9,
2199
+ n0,
2200
+ _USI,
2201
+ {
2202
+ [_h]: ["PUT", "/service-integrations", 200],
2203
+ },
2204
+ () => UpdateServiceIntegrationRequest,
2205
+ () => UpdateServiceIntegrationResponse,
2206
+ ];
1922
2207
 
1923
2208
  class AddNotificationChannelCommand extends smithyClient.Command
1924
2209
  .classBuilder()
1925
2210
  .ep(commonParams)
1926
2211
  .m(function (Command, cs, config, o) {
1927
- return [
1928
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1929
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1930
- ];
2212
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1931
2213
  })
1932
2214
  .s("CapstoneControlPlaneService", "AddNotificationChannel", {})
1933
2215
  .n("DevOpsGuruClient", "AddNotificationChannelCommand")
1934
- .f(void 0, void 0)
1935
- .ser(se_AddNotificationChannelCommand)
1936
- .de(de_AddNotificationChannelCommand)
2216
+ .sc(AddNotificationChannel)
1937
2217
  .build() {
1938
2218
  }
1939
2219
 
@@ -1941,16 +2221,11 @@ class DeleteInsightCommand extends smithyClient.Command
1941
2221
  .classBuilder()
1942
2222
  .ep(commonParams)
1943
2223
  .m(function (Command, cs, config, o) {
1944
- return [
1945
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1946
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1947
- ];
2224
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1948
2225
  })
1949
2226
  .s("CapstoneControlPlaneService", "DeleteInsight", {})
1950
2227
  .n("DevOpsGuruClient", "DeleteInsightCommand")
1951
- .f(void 0, void 0)
1952
- .ser(se_DeleteInsightCommand)
1953
- .de(de_DeleteInsightCommand)
2228
+ .sc(DeleteInsight)
1954
2229
  .build() {
1955
2230
  }
1956
2231
 
@@ -1958,16 +2233,11 @@ class DescribeAccountHealthCommand extends smithyClient.Command
1958
2233
  .classBuilder()
1959
2234
  .ep(commonParams)
1960
2235
  .m(function (Command, cs, config, o) {
1961
- return [
1962
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1963
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1964
- ];
2236
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1965
2237
  })
1966
2238
  .s("CapstoneControlPlaneService", "DescribeAccountHealth", {})
1967
2239
  .n("DevOpsGuruClient", "DescribeAccountHealthCommand")
1968
- .f(void 0, void 0)
1969
- .ser(se_DescribeAccountHealthCommand)
1970
- .de(de_DescribeAccountHealthCommand)
2240
+ .sc(DescribeAccountHealth)
1971
2241
  .build() {
1972
2242
  }
1973
2243
 
@@ -1975,16 +2245,11 @@ class DescribeAccountOverviewCommand extends smithyClient.Command
1975
2245
  .classBuilder()
1976
2246
  .ep(commonParams)
1977
2247
  .m(function (Command, cs, config, o) {
1978
- return [
1979
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1980
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1981
- ];
2248
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1982
2249
  })
1983
2250
  .s("CapstoneControlPlaneService", "DescribeAccountOverview", {})
1984
2251
  .n("DevOpsGuruClient", "DescribeAccountOverviewCommand")
1985
- .f(void 0, void 0)
1986
- .ser(se_DescribeAccountOverviewCommand)
1987
- .de(de_DescribeAccountOverviewCommand)
2252
+ .sc(DescribeAccountOverview)
1988
2253
  .build() {
1989
2254
  }
1990
2255
 
@@ -1992,16 +2257,11 @@ class DescribeAnomalyCommand extends smithyClient.Command
1992
2257
  .classBuilder()
1993
2258
  .ep(commonParams)
1994
2259
  .m(function (Command, cs, config, o) {
1995
- return [
1996
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1997
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1998
- ];
2260
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1999
2261
  })
2000
2262
  .s("CapstoneControlPlaneService", "DescribeAnomaly", {})
2001
2263
  .n("DevOpsGuruClient", "DescribeAnomalyCommand")
2002
- .f(void 0, void 0)
2003
- .ser(se_DescribeAnomalyCommand)
2004
- .de(de_DescribeAnomalyCommand)
2264
+ .sc(DescribeAnomaly)
2005
2265
  .build() {
2006
2266
  }
2007
2267
 
@@ -2009,16 +2269,11 @@ class DescribeEventSourcesConfigCommand extends smithyClient.Command
2009
2269
  .classBuilder()
2010
2270
  .ep(commonParams)
2011
2271
  .m(function (Command, cs, config, o) {
2012
- return [
2013
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2014
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2015
- ];
2272
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2016
2273
  })
2017
2274
  .s("CapstoneControlPlaneService", "DescribeEventSourcesConfig", {})
2018
2275
  .n("DevOpsGuruClient", "DescribeEventSourcesConfigCommand")
2019
- .f(void 0, void 0)
2020
- .ser(se_DescribeEventSourcesConfigCommand)
2021
- .de(de_DescribeEventSourcesConfigCommand)
2276
+ .sc(DescribeEventSourcesConfig)
2022
2277
  .build() {
2023
2278
  }
2024
2279
 
@@ -2026,16 +2281,11 @@ class DescribeFeedbackCommand extends smithyClient.Command
2026
2281
  .classBuilder()
2027
2282
  .ep(commonParams)
2028
2283
  .m(function (Command, cs, config, o) {
2029
- return [
2030
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2031
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2032
- ];
2284
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2033
2285
  })
2034
2286
  .s("CapstoneControlPlaneService", "DescribeFeedback", {})
2035
2287
  .n("DevOpsGuruClient", "DescribeFeedbackCommand")
2036
- .f(void 0, void 0)
2037
- .ser(se_DescribeFeedbackCommand)
2038
- .de(de_DescribeFeedbackCommand)
2288
+ .sc(DescribeFeedback)
2039
2289
  .build() {
2040
2290
  }
2041
2291
 
@@ -2043,16 +2293,11 @@ class DescribeInsightCommand extends smithyClient.Command
2043
2293
  .classBuilder()
2044
2294
  .ep(commonParams)
2045
2295
  .m(function (Command, cs, config, o) {
2046
- return [
2047
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2048
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2049
- ];
2296
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2050
2297
  })
2051
2298
  .s("CapstoneControlPlaneService", "DescribeInsight", {})
2052
2299
  .n("DevOpsGuruClient", "DescribeInsightCommand")
2053
- .f(void 0, void 0)
2054
- .ser(se_DescribeInsightCommand)
2055
- .de(de_DescribeInsightCommand)
2300
+ .sc(DescribeInsight)
2056
2301
  .build() {
2057
2302
  }
2058
2303
 
@@ -2060,16 +2305,11 @@ class DescribeOrganizationHealthCommand extends smithyClient.Command
2060
2305
  .classBuilder()
2061
2306
  .ep(commonParams)
2062
2307
  .m(function (Command, cs, config, o) {
2063
- return [
2064
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2065
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2066
- ];
2308
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2067
2309
  })
2068
2310
  .s("CapstoneControlPlaneService", "DescribeOrganizationHealth", {})
2069
2311
  .n("DevOpsGuruClient", "DescribeOrganizationHealthCommand")
2070
- .f(void 0, void 0)
2071
- .ser(se_DescribeOrganizationHealthCommand)
2072
- .de(de_DescribeOrganizationHealthCommand)
2312
+ .sc(DescribeOrganizationHealth)
2073
2313
  .build() {
2074
2314
  }
2075
2315
 
@@ -2077,16 +2317,11 @@ class DescribeOrganizationOverviewCommand extends smithyClient.Command
2077
2317
  .classBuilder()
2078
2318
  .ep(commonParams)
2079
2319
  .m(function (Command, cs, config, o) {
2080
- return [
2081
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2082
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2083
- ];
2320
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2084
2321
  })
2085
2322
  .s("CapstoneControlPlaneService", "DescribeOrganizationOverview", {})
2086
2323
  .n("DevOpsGuruClient", "DescribeOrganizationOverviewCommand")
2087
- .f(void 0, void 0)
2088
- .ser(se_DescribeOrganizationOverviewCommand)
2089
- .de(de_DescribeOrganizationOverviewCommand)
2324
+ .sc(DescribeOrganizationOverview)
2090
2325
  .build() {
2091
2326
  }
2092
2327
 
@@ -2094,16 +2329,11 @@ class DescribeOrganizationResourceCollectionHealthCommand extends smithyClient.C
2094
2329
  .classBuilder()
2095
2330
  .ep(commonParams)
2096
2331
  .m(function (Command, cs, config, o) {
2097
- return [
2098
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2099
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2100
- ];
2332
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2101
2333
  })
2102
2334
  .s("CapstoneControlPlaneService", "DescribeOrganizationResourceCollectionHealth", {})
2103
2335
  .n("DevOpsGuruClient", "DescribeOrganizationResourceCollectionHealthCommand")
2104
- .f(void 0, void 0)
2105
- .ser(se_DescribeOrganizationResourceCollectionHealthCommand)
2106
- .de(de_DescribeOrganizationResourceCollectionHealthCommand)
2336
+ .sc(DescribeOrganizationResourceCollectionHealth)
2107
2337
  .build() {
2108
2338
  }
2109
2339
 
@@ -2111,16 +2341,11 @@ class DescribeResourceCollectionHealthCommand extends smithyClient.Command
2111
2341
  .classBuilder()
2112
2342
  .ep(commonParams)
2113
2343
  .m(function (Command, cs, config, o) {
2114
- return [
2115
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2116
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2117
- ];
2344
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2118
2345
  })
2119
2346
  .s("CapstoneControlPlaneService", "DescribeResourceCollectionHealth", {})
2120
2347
  .n("DevOpsGuruClient", "DescribeResourceCollectionHealthCommand")
2121
- .f(void 0, void 0)
2122
- .ser(se_DescribeResourceCollectionHealthCommand)
2123
- .de(de_DescribeResourceCollectionHealthCommand)
2348
+ .sc(DescribeResourceCollectionHealth)
2124
2349
  .build() {
2125
2350
  }
2126
2351
 
@@ -2128,16 +2353,11 @@ class DescribeServiceIntegrationCommand extends smithyClient.Command
2128
2353
  .classBuilder()
2129
2354
  .ep(commonParams)
2130
2355
  .m(function (Command, cs, config, o) {
2131
- return [
2132
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2133
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2134
- ];
2356
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2135
2357
  })
2136
2358
  .s("CapstoneControlPlaneService", "DescribeServiceIntegration", {})
2137
2359
  .n("DevOpsGuruClient", "DescribeServiceIntegrationCommand")
2138
- .f(void 0, void 0)
2139
- .ser(se_DescribeServiceIntegrationCommand)
2140
- .de(de_DescribeServiceIntegrationCommand)
2360
+ .sc(DescribeServiceIntegration)
2141
2361
  .build() {
2142
2362
  }
2143
2363
 
@@ -2145,16 +2365,11 @@ class GetCostEstimationCommand extends smithyClient.Command
2145
2365
  .classBuilder()
2146
2366
  .ep(commonParams)
2147
2367
  .m(function (Command, cs, config, o) {
2148
- return [
2149
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2150
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2151
- ];
2368
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2152
2369
  })
2153
2370
  .s("CapstoneControlPlaneService", "GetCostEstimation", {})
2154
2371
  .n("DevOpsGuruClient", "GetCostEstimationCommand")
2155
- .f(void 0, void 0)
2156
- .ser(se_GetCostEstimationCommand)
2157
- .de(de_GetCostEstimationCommand)
2372
+ .sc(GetCostEstimation)
2158
2373
  .build() {
2159
2374
  }
2160
2375
 
@@ -2162,16 +2377,11 @@ class GetResourceCollectionCommand extends smithyClient.Command
2162
2377
  .classBuilder()
2163
2378
  .ep(commonParams)
2164
2379
  .m(function (Command, cs, config, o) {
2165
- return [
2166
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2167
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2168
- ];
2380
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2169
2381
  })
2170
2382
  .s("CapstoneControlPlaneService", "GetResourceCollection", {})
2171
2383
  .n("DevOpsGuruClient", "GetResourceCollectionCommand")
2172
- .f(void 0, void 0)
2173
- .ser(se_GetResourceCollectionCommand)
2174
- .de(de_GetResourceCollectionCommand)
2384
+ .sc(GetResourceCollection)
2175
2385
  .build() {
2176
2386
  }
2177
2387
 
@@ -2179,16 +2389,11 @@ class ListAnomaliesForInsightCommand extends smithyClient.Command
2179
2389
  .classBuilder()
2180
2390
  .ep(commonParams)
2181
2391
  .m(function (Command, cs, config, o) {
2182
- return [
2183
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2184
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2185
- ];
2392
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2186
2393
  })
2187
2394
  .s("CapstoneControlPlaneService", "ListAnomaliesForInsight", {})
2188
2395
  .n("DevOpsGuruClient", "ListAnomaliesForInsightCommand")
2189
- .f(void 0, void 0)
2190
- .ser(se_ListAnomaliesForInsightCommand)
2191
- .de(de_ListAnomaliesForInsightCommand)
2396
+ .sc(ListAnomaliesForInsight)
2192
2397
  .build() {
2193
2398
  }
2194
2399
 
@@ -2196,16 +2401,11 @@ class ListAnomalousLogGroupsCommand extends smithyClient.Command
2196
2401
  .classBuilder()
2197
2402
  .ep(commonParams)
2198
2403
  .m(function (Command, cs, config, o) {
2199
- return [
2200
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2201
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2202
- ];
2404
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2203
2405
  })
2204
2406
  .s("CapstoneControlPlaneService", "ListAnomalousLogGroups", {})
2205
2407
  .n("DevOpsGuruClient", "ListAnomalousLogGroupsCommand")
2206
- .f(void 0, void 0)
2207
- .ser(se_ListAnomalousLogGroupsCommand)
2208
- .de(de_ListAnomalousLogGroupsCommand)
2408
+ .sc(ListAnomalousLogGroups)
2209
2409
  .build() {
2210
2410
  }
2211
2411
 
@@ -2213,16 +2413,11 @@ class ListEventsCommand extends smithyClient.Command
2213
2413
  .classBuilder()
2214
2414
  .ep(commonParams)
2215
2415
  .m(function (Command, cs, config, o) {
2216
- return [
2217
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2218
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2219
- ];
2416
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2220
2417
  })
2221
2418
  .s("CapstoneControlPlaneService", "ListEvents", {})
2222
2419
  .n("DevOpsGuruClient", "ListEventsCommand")
2223
- .f(void 0, void 0)
2224
- .ser(se_ListEventsCommand)
2225
- .de(de_ListEventsCommand)
2420
+ .sc(ListEvents)
2226
2421
  .build() {
2227
2422
  }
2228
2423
 
@@ -2230,16 +2425,11 @@ class ListInsightsCommand extends smithyClient.Command
2230
2425
  .classBuilder()
2231
2426
  .ep(commonParams)
2232
2427
  .m(function (Command, cs, config, o) {
2233
- return [
2234
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2235
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2236
- ];
2428
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2237
2429
  })
2238
2430
  .s("CapstoneControlPlaneService", "ListInsights", {})
2239
2431
  .n("DevOpsGuruClient", "ListInsightsCommand")
2240
- .f(void 0, void 0)
2241
- .ser(se_ListInsightsCommand)
2242
- .de(de_ListInsightsCommand)
2432
+ .sc(ListInsights)
2243
2433
  .build() {
2244
2434
  }
2245
2435
 
@@ -2247,16 +2437,11 @@ class ListMonitoredResourcesCommand extends smithyClient.Command
2247
2437
  .classBuilder()
2248
2438
  .ep(commonParams)
2249
2439
  .m(function (Command, cs, config, o) {
2250
- return [
2251
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2252
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2253
- ];
2440
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2254
2441
  })
2255
2442
  .s("CapstoneControlPlaneService", "ListMonitoredResources", {})
2256
2443
  .n("DevOpsGuruClient", "ListMonitoredResourcesCommand")
2257
- .f(void 0, void 0)
2258
- .ser(se_ListMonitoredResourcesCommand)
2259
- .de(de_ListMonitoredResourcesCommand)
2444
+ .sc(ListMonitoredResources)
2260
2445
  .build() {
2261
2446
  }
2262
2447
 
@@ -2264,16 +2449,11 @@ class ListNotificationChannelsCommand extends smithyClient.Command
2264
2449
  .classBuilder()
2265
2450
  .ep(commonParams)
2266
2451
  .m(function (Command, cs, config, o) {
2267
- return [
2268
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2269
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2270
- ];
2452
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2271
2453
  })
2272
2454
  .s("CapstoneControlPlaneService", "ListNotificationChannels", {})
2273
2455
  .n("DevOpsGuruClient", "ListNotificationChannelsCommand")
2274
- .f(void 0, void 0)
2275
- .ser(se_ListNotificationChannelsCommand)
2276
- .de(de_ListNotificationChannelsCommand)
2456
+ .sc(ListNotificationChannels)
2277
2457
  .build() {
2278
2458
  }
2279
2459
 
@@ -2281,16 +2461,11 @@ class ListOrganizationInsightsCommand extends smithyClient.Command
2281
2461
  .classBuilder()
2282
2462
  .ep(commonParams)
2283
2463
  .m(function (Command, cs, config, o) {
2284
- return [
2285
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2286
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2287
- ];
2464
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2288
2465
  })
2289
2466
  .s("CapstoneControlPlaneService", "ListOrganizationInsights", {})
2290
2467
  .n("DevOpsGuruClient", "ListOrganizationInsightsCommand")
2291
- .f(void 0, void 0)
2292
- .ser(se_ListOrganizationInsightsCommand)
2293
- .de(de_ListOrganizationInsightsCommand)
2468
+ .sc(ListOrganizationInsights)
2294
2469
  .build() {
2295
2470
  }
2296
2471
 
@@ -2298,16 +2473,11 @@ class ListRecommendationsCommand extends smithyClient.Command
2298
2473
  .classBuilder()
2299
2474
  .ep(commonParams)
2300
2475
  .m(function (Command, cs, config, o) {
2301
- return [
2302
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2303
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2304
- ];
2476
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2305
2477
  })
2306
2478
  .s("CapstoneControlPlaneService", "ListRecommendations", {})
2307
2479
  .n("DevOpsGuruClient", "ListRecommendationsCommand")
2308
- .f(void 0, void 0)
2309
- .ser(se_ListRecommendationsCommand)
2310
- .de(de_ListRecommendationsCommand)
2480
+ .sc(ListRecommendations)
2311
2481
  .build() {
2312
2482
  }
2313
2483
 
@@ -2315,16 +2485,11 @@ class PutFeedbackCommand extends smithyClient.Command
2315
2485
  .classBuilder()
2316
2486
  .ep(commonParams)
2317
2487
  .m(function (Command, cs, config, o) {
2318
- return [
2319
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2320
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2321
- ];
2488
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2322
2489
  })
2323
2490
  .s("CapstoneControlPlaneService", "PutFeedback", {})
2324
2491
  .n("DevOpsGuruClient", "PutFeedbackCommand")
2325
- .f(void 0, void 0)
2326
- .ser(se_PutFeedbackCommand)
2327
- .de(de_PutFeedbackCommand)
2492
+ .sc(PutFeedback)
2328
2493
  .build() {
2329
2494
  }
2330
2495
 
@@ -2332,16 +2497,11 @@ class RemoveNotificationChannelCommand extends smithyClient.Command
2332
2497
  .classBuilder()
2333
2498
  .ep(commonParams)
2334
2499
  .m(function (Command, cs, config, o) {
2335
- return [
2336
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2337
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2338
- ];
2500
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2339
2501
  })
2340
2502
  .s("CapstoneControlPlaneService", "RemoveNotificationChannel", {})
2341
2503
  .n("DevOpsGuruClient", "RemoveNotificationChannelCommand")
2342
- .f(void 0, void 0)
2343
- .ser(se_RemoveNotificationChannelCommand)
2344
- .de(de_RemoveNotificationChannelCommand)
2504
+ .sc(RemoveNotificationChannel)
2345
2505
  .build() {
2346
2506
  }
2347
2507
 
@@ -2349,16 +2509,11 @@ class SearchInsightsCommand extends smithyClient.Command
2349
2509
  .classBuilder()
2350
2510
  .ep(commonParams)
2351
2511
  .m(function (Command, cs, config, o) {
2352
- return [
2353
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2354
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2355
- ];
2512
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2356
2513
  })
2357
2514
  .s("CapstoneControlPlaneService", "SearchInsights", {})
2358
2515
  .n("DevOpsGuruClient", "SearchInsightsCommand")
2359
- .f(void 0, void 0)
2360
- .ser(se_SearchInsightsCommand)
2361
- .de(de_SearchInsightsCommand)
2516
+ .sc(SearchInsights)
2362
2517
  .build() {
2363
2518
  }
2364
2519
 
@@ -2366,16 +2521,11 @@ class SearchOrganizationInsightsCommand extends smithyClient.Command
2366
2521
  .classBuilder()
2367
2522
  .ep(commonParams)
2368
2523
  .m(function (Command, cs, config, o) {
2369
- return [
2370
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2371
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2372
- ];
2524
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2373
2525
  })
2374
2526
  .s("CapstoneControlPlaneService", "SearchOrganizationInsights", {})
2375
2527
  .n("DevOpsGuruClient", "SearchOrganizationInsightsCommand")
2376
- .f(void 0, void 0)
2377
- .ser(se_SearchOrganizationInsightsCommand)
2378
- .de(de_SearchOrganizationInsightsCommand)
2528
+ .sc(SearchOrganizationInsights)
2379
2529
  .build() {
2380
2530
  }
2381
2531
 
@@ -2383,16 +2533,11 @@ class StartCostEstimationCommand extends smithyClient.Command
2383
2533
  .classBuilder()
2384
2534
  .ep(commonParams)
2385
2535
  .m(function (Command, cs, config, o) {
2386
- return [
2387
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2388
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2389
- ];
2536
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2390
2537
  })
2391
2538
  .s("CapstoneControlPlaneService", "StartCostEstimation", {})
2392
2539
  .n("DevOpsGuruClient", "StartCostEstimationCommand")
2393
- .f(void 0, void 0)
2394
- .ser(se_StartCostEstimationCommand)
2395
- .de(de_StartCostEstimationCommand)
2540
+ .sc(StartCostEstimation)
2396
2541
  .build() {
2397
2542
  }
2398
2543
 
@@ -2400,16 +2545,11 @@ class UpdateEventSourcesConfigCommand extends smithyClient.Command
2400
2545
  .classBuilder()
2401
2546
  .ep(commonParams)
2402
2547
  .m(function (Command, cs, config, o) {
2403
- return [
2404
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2405
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2406
- ];
2548
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2407
2549
  })
2408
2550
  .s("CapstoneControlPlaneService", "UpdateEventSourcesConfig", {})
2409
2551
  .n("DevOpsGuruClient", "UpdateEventSourcesConfigCommand")
2410
- .f(void 0, void 0)
2411
- .ser(se_UpdateEventSourcesConfigCommand)
2412
- .de(de_UpdateEventSourcesConfigCommand)
2552
+ .sc(UpdateEventSourcesConfig)
2413
2553
  .build() {
2414
2554
  }
2415
2555
 
@@ -2417,16 +2557,11 @@ class UpdateResourceCollectionCommand extends smithyClient.Command
2417
2557
  .classBuilder()
2418
2558
  .ep(commonParams)
2419
2559
  .m(function (Command, cs, config, o) {
2420
- return [
2421
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2422
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2423
- ];
2560
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2424
2561
  })
2425
2562
  .s("CapstoneControlPlaneService", "UpdateResourceCollection", {})
2426
2563
  .n("DevOpsGuruClient", "UpdateResourceCollectionCommand")
2427
- .f(void 0, void 0)
2428
- .ser(se_UpdateResourceCollectionCommand)
2429
- .de(de_UpdateResourceCollectionCommand)
2564
+ .sc(UpdateResourceCollection)
2430
2565
  .build() {
2431
2566
  }
2432
2567
 
@@ -2434,16 +2569,11 @@ class UpdateServiceIntegrationCommand extends smithyClient.Command
2434
2569
  .classBuilder()
2435
2570
  .ep(commonParams)
2436
2571
  .m(function (Command, cs, config, o) {
2437
- return [
2438
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2439
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2440
- ];
2572
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2441
2573
  })
2442
2574
  .s("CapstoneControlPlaneService", "UpdateServiceIntegration", {})
2443
2575
  .n("DevOpsGuruClient", "UpdateServiceIntegrationCommand")
2444
- .f(void 0, void 0)
2445
- .ser(se_UpdateServiceIntegrationCommand)
2446
- .de(de_UpdateServiceIntegrationCommand)
2576
+ .sc(UpdateServiceIntegration)
2447
2577
  .build() {
2448
2578
  }
2449
2579
 
@@ -2520,14 +2650,14 @@ Object.defineProperty(exports, "__Client", {
2520
2650
  enumerable: true,
2521
2651
  get: function () { return smithyClient.Client; }
2522
2652
  });
2523
- exports.AccessDeniedException = AccessDeniedException;
2653
+ exports.AccessDeniedException = AccessDeniedException$1;
2524
2654
  exports.AddNotificationChannelCommand = AddNotificationChannelCommand;
2525
2655
  exports.AnomalySeverity = AnomalySeverity;
2526
2656
  exports.AnomalyStatus = AnomalyStatus;
2527
2657
  exports.AnomalyType = AnomalyType;
2528
2658
  exports.CloudWatchMetricDataStatusCode = CloudWatchMetricDataStatusCode;
2529
2659
  exports.CloudWatchMetricsStat = CloudWatchMetricsStat;
2530
- exports.ConflictException = ConflictException;
2660
+ exports.ConflictException = ConflictException$1;
2531
2661
  exports.CostEstimationServiceResourceState = CostEstimationServiceResourceState;
2532
2662
  exports.CostEstimationStatus = CostEstimationStatus;
2533
2663
  exports.DeleteInsightCommand = DeleteInsightCommand;
@@ -2544,7 +2674,7 @@ exports.DescribeResourceCollectionHealthCommand = DescribeResourceCollectionHeal
2544
2674
  exports.DescribeServiceIntegrationCommand = DescribeServiceIntegrationCommand;
2545
2675
  exports.DevOpsGuru = DevOpsGuru;
2546
2676
  exports.DevOpsGuruClient = DevOpsGuruClient;
2547
- exports.DevOpsGuruServiceException = DevOpsGuruServiceException;
2677
+ exports.DevOpsGuruServiceException = DevOpsGuruServiceException$1;
2548
2678
  exports.EventClass = EventClass;
2549
2679
  exports.EventDataSource = EventDataSource;
2550
2680
  exports.EventSourceOptInStatus = EventSourceOptInStatus;
@@ -2554,7 +2684,7 @@ exports.InsightFeedbackOption = InsightFeedbackOption;
2554
2684
  exports.InsightSeverity = InsightSeverity;
2555
2685
  exports.InsightStatus = InsightStatus;
2556
2686
  exports.InsightType = InsightType;
2557
- exports.InternalServerException = InternalServerException;
2687
+ exports.InternalServerException = InternalServerException$1;
2558
2688
  exports.ListAnomaliesForInsightCommand = ListAnomaliesForInsightCommand;
2559
2689
  exports.ListAnomalousLogGroupsCommand = ListAnomalousLogGroupsCommand;
2560
2690
  exports.ListEventsCommand = ListEventsCommand;
@@ -2571,21 +2701,21 @@ exports.OrganizationResourceCollectionType = OrganizationResourceCollectionType;
2571
2701
  exports.PutFeedbackCommand = PutFeedbackCommand;
2572
2702
  exports.RemoveNotificationChannelCommand = RemoveNotificationChannelCommand;
2573
2703
  exports.ResourceCollectionType = ResourceCollectionType;
2574
- exports.ResourceNotFoundException = ResourceNotFoundException;
2704
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
2575
2705
  exports.ResourcePermission = ResourcePermission;
2576
2706
  exports.ResourceTypeFilter = ResourceTypeFilter;
2577
2707
  exports.SearchInsightsCommand = SearchInsightsCommand;
2578
2708
  exports.SearchOrganizationInsightsCommand = SearchOrganizationInsightsCommand;
2579
2709
  exports.ServerSideEncryptionType = ServerSideEncryptionType;
2580
2710
  exports.ServiceName = ServiceName;
2581
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2711
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2582
2712
  exports.StartCostEstimationCommand = StartCostEstimationCommand;
2583
- exports.ThrottlingException = ThrottlingException;
2713
+ exports.ThrottlingException = ThrottlingException$1;
2584
2714
  exports.UpdateEventSourcesConfigCommand = UpdateEventSourcesConfigCommand;
2585
2715
  exports.UpdateResourceCollectionAction = UpdateResourceCollectionAction;
2586
2716
  exports.UpdateResourceCollectionCommand = UpdateResourceCollectionCommand;
2587
2717
  exports.UpdateServiceIntegrationCommand = UpdateServiceIntegrationCommand;
2588
- exports.ValidationException = ValidationException;
2718
+ exports.ValidationException = ValidationException$1;
2589
2719
  exports.ValidationExceptionReason = ValidationExceptionReason;
2590
2720
  exports.paginateDescribeOrganizationResourceCollectionHealth = paginateDescribeOrganizationResourceCollectionHealth;
2591
2721
  exports.paginateDescribeResourceCollectionHealth = paginateDescribeResourceCollectionHealth;