@aws-sdk/client-devops-guru 3.952.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +647 -451
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AddNotificationChannelCommand.js +2 -2
- package/dist-es/commands/DeleteInsightCommand.js +2 -2
- package/dist-es/commands/DescribeAccountHealthCommand.js +2 -2
- package/dist-es/commands/DescribeAccountOverviewCommand.js +2 -2
- package/dist-es/commands/DescribeAnomalyCommand.js +2 -2
- package/dist-es/commands/DescribeEventSourcesConfigCommand.js +2 -2
- package/dist-es/commands/DescribeFeedbackCommand.js +2 -2
- package/dist-es/commands/DescribeInsightCommand.js +2 -2
- package/dist-es/commands/DescribeOrganizationHealthCommand.js +2 -2
- package/dist-es/commands/DescribeOrganizationOverviewCommand.js +2 -2
- package/dist-es/commands/DescribeOrganizationResourceCollectionHealthCommand.js +2 -2
- package/dist-es/commands/DescribeResourceCollectionHealthCommand.js +2 -2
- package/dist-es/commands/DescribeServiceIntegrationCommand.js +2 -2
- package/dist-es/commands/GetCostEstimationCommand.js +2 -2
- package/dist-es/commands/GetResourceCollectionCommand.js +2 -2
- package/dist-es/commands/ListAnomaliesForInsightCommand.js +2 -2
- package/dist-es/commands/ListAnomalousLogGroupsCommand.js +2 -2
- package/dist-es/commands/ListEventsCommand.js +2 -2
- package/dist-es/commands/ListInsightsCommand.js +2 -2
- package/dist-es/commands/ListMonitoredResourcesCommand.js +2 -2
- package/dist-es/commands/ListNotificationChannelsCommand.js +2 -2
- package/dist-es/commands/ListOrganizationInsightsCommand.js +2 -2
- package/dist-es/commands/ListRecommendationsCommand.js +2 -2
- package/dist-es/commands/PutFeedbackCommand.js +2 -2
- package/dist-es/commands/RemoveNotificationChannelCommand.js +2 -2
- package/dist-es/commands/SearchInsightsCommand.js +2 -2
- package/dist-es/commands/SearchOrganizationInsightsCommand.js +2 -2
- package/dist-es/commands/StartCostEstimationCommand.js +2 -2
- package/dist-es/commands/UpdateEventSourcesConfigCommand.js +2 -2
- package/dist-es/commands/UpdateResourceCollectionCommand.js +2 -2
- package/dist-es/commands/UpdateServiceIntegrationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +428 -425
- package/dist-types/DevOpsGuruClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +194 -250
- package/dist-types/ts3.4/DevOpsGuruClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +193 -250
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class DevOpsGuruClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class DevOpsGuruServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, DevOpsGuruServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends DevOpsGuruServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends DevOpsGuruServ
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class ConflictException extends DevOpsGuruServiceException {
|
|
135
135
|
name = "ConflictException";
|
|
136
136
|
$fault = "client";
|
|
137
137
|
Message;
|
|
@@ -148,8 +148,8 @@ let ConflictException$1 = class ConflictException extends DevOpsGuruServiceExcep
|
|
|
148
148
|
this.ResourceId = opts.ResourceId;
|
|
149
149
|
this.ResourceType = opts.ResourceType;
|
|
150
150
|
}
|
|
151
|
-
}
|
|
152
|
-
|
|
151
|
+
}
|
|
152
|
+
class InternalServerException extends DevOpsGuruServiceException {
|
|
153
153
|
name = "InternalServerException";
|
|
154
154
|
$fault = "server";
|
|
155
155
|
Message;
|
|
@@ -164,8 +164,8 @@ let InternalServerException$1 = class InternalServerException extends DevOpsGuru
|
|
|
164
164
|
this.Message = opts.Message;
|
|
165
165
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
167
|
+
}
|
|
168
|
+
class ResourceNotFoundException extends DevOpsGuruServiceException {
|
|
169
169
|
name = "ResourceNotFoundException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
Message;
|
|
@@ -182,8 +182,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends DevOps
|
|
|
182
182
|
this.ResourceId = opts.ResourceId;
|
|
183
183
|
this.ResourceType = opts.ResourceType;
|
|
184
184
|
}
|
|
185
|
-
}
|
|
186
|
-
|
|
185
|
+
}
|
|
186
|
+
class ServiceQuotaExceededException extends DevOpsGuruServiceException {
|
|
187
187
|
name = "ServiceQuotaExceededException";
|
|
188
188
|
$fault = "client";
|
|
189
189
|
Message;
|
|
@@ -196,8 +196,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
196
196
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
197
197
|
this.Message = opts.Message;
|
|
198
198
|
}
|
|
199
|
-
}
|
|
200
|
-
|
|
199
|
+
}
|
|
200
|
+
class ThrottlingException extends DevOpsGuruServiceException {
|
|
201
201
|
name = "ThrottlingException";
|
|
202
202
|
$fault = "client";
|
|
203
203
|
Message;
|
|
@@ -216,8 +216,8 @@ let ThrottlingException$1 = class ThrottlingException extends DevOpsGuruServiceE
|
|
|
216
216
|
this.ServiceCode = opts.ServiceCode;
|
|
217
217
|
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
218
218
|
}
|
|
219
|
-
}
|
|
220
|
-
|
|
219
|
+
}
|
|
220
|
+
class ValidationException extends DevOpsGuruServiceException {
|
|
221
221
|
name = "ValidationException";
|
|
222
222
|
$fault = "client";
|
|
223
223
|
Message;
|
|
@@ -234,7 +234,7 @@ let ValidationException$1 = class ValidationException extends DevOpsGuruServiceE
|
|
|
234
234
|
this.Reason = opts.Reason;
|
|
235
235
|
this.Fields = opts.Fields;
|
|
236
236
|
}
|
|
237
|
-
}
|
|
237
|
+
}
|
|
238
238
|
|
|
239
239
|
const _A = "Account";
|
|
240
240
|
const _ABK = "AppBoundaryKey";
|
|
@@ -614,21 +614,21 @@ const _hQ = "httpQuery";
|
|
|
614
614
|
const _s = "server";
|
|
615
615
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.devopsguru";
|
|
616
616
|
const n0 = "com.amazonaws.devopsguru";
|
|
617
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
618
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
619
|
-
var AccountHealth = [3, n0, _AH, 0, [_AI, _I], [0, () => AccountInsightHealth]];
|
|
620
|
-
var AccountInsightHealth = [3, n0, _AIH, 0, [_OPI, _ORI], [1, 1]];
|
|
621
|
-
var AddNotificationChannelRequest = [
|
|
617
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
618
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
619
|
+
var AccountHealth$ = [3, n0, _AH, 0, [_AI, _I], [0, () => AccountInsightHealth$]];
|
|
620
|
+
var AccountInsightHealth$ = [3, n0, _AIH, 0, [_OPI, _ORI], [1, 1]];
|
|
621
|
+
var AddNotificationChannelRequest$ = [
|
|
622
622
|
3,
|
|
623
623
|
n0,
|
|
624
624
|
_ANCR,
|
|
625
625
|
0,
|
|
626
626
|
[_C],
|
|
627
|
-
[() => NotificationChannelConfig],
|
|
627
|
+
[() => NotificationChannelConfig$],
|
|
628
628
|
];
|
|
629
|
-
var AddNotificationChannelResponse = [3, n0, _ANCRd, 0, [_Id], [0]];
|
|
630
|
-
var AmazonCodeGuruProfilerIntegration = [3, n0, _ACGPI, 0, [_S], [0]];
|
|
631
|
-
var AnomalousLogGroup = [
|
|
629
|
+
var AddNotificationChannelResponse$ = [3, n0, _ANCRd, 0, [_Id], [0]];
|
|
630
|
+
var AmazonCodeGuruProfilerIntegration$ = [3, n0, _ACGPI, 0, [_S], [0]];
|
|
631
|
+
var AnomalousLogGroup$ = [
|
|
632
632
|
3,
|
|
633
633
|
n0,
|
|
634
634
|
_ALG,
|
|
@@ -636,9 +636,9 @@ var AnomalousLogGroup = [
|
|
|
636
636
|
[_LGN, _IST, _IET, _NOLLS, _LAS],
|
|
637
637
|
[0, 4, 4, 1, () => LogAnomalyShowcases],
|
|
638
638
|
];
|
|
639
|
-
var AnomalyReportedTimeRange = [3, n0, _ARTR, 0, [_OT, _CT], [4, 4]];
|
|
640
|
-
var AnomalyResource = [3, n0, _AR, 0, [_N, _T], [0, 0]];
|
|
641
|
-
var AnomalySourceDetails = [
|
|
639
|
+
var AnomalyReportedTimeRange$ = [3, n0, _ARTR, 0, [_OT, _CT], [4, 4]];
|
|
640
|
+
var AnomalyResource$ = [3, n0, _AR, 0, [_N, _T], [0, 0]];
|
|
641
|
+
var AnomalySourceDetails$ = [
|
|
642
642
|
3,
|
|
643
643
|
n0,
|
|
644
644
|
_ASD,
|
|
@@ -646,11 +646,11 @@ var AnomalySourceDetails = [
|
|
|
646
646
|
[_CWM, _PIM],
|
|
647
647
|
[() => CloudWatchMetricsDetails, () => PerformanceInsightsMetricsDetails],
|
|
648
648
|
];
|
|
649
|
-
var AnomalySourceMetadata = [3, n0, _ASM, 0, [_So, _SRN, _SRT], [0, 0, 0]];
|
|
650
|
-
var AnomalyTimeRange = [3, n0, _ATR, 0, [_ST, _ET], [4, 4]];
|
|
651
|
-
var CloudFormationCollection = [3, n0, _CFC, 0, [_SN], [64 | 0]];
|
|
652
|
-
var CloudFormationCollectionFilter = [3, n0, _CFCF, 0, [_SN], [64 | 0]];
|
|
653
|
-
var CloudFormationCostEstimationResourceCollectionFilter = [
|
|
649
|
+
var AnomalySourceMetadata$ = [3, n0, _ASM, 0, [_So, _SRN, _SRT], [0, 0, 0]];
|
|
650
|
+
var AnomalyTimeRange$ = [3, n0, _ATR, 0, [_ST, _ET], [4, 4]];
|
|
651
|
+
var CloudFormationCollection$ = [3, n0, _CFC, 0, [_SN], [64 | 0]];
|
|
652
|
+
var CloudFormationCollectionFilter$ = [3, n0, _CFCF, 0, [_SN], [64 | 0]];
|
|
653
|
+
var CloudFormationCostEstimationResourceCollectionFilter$ = [
|
|
654
654
|
3,
|
|
655
655
|
n0,
|
|
656
656
|
_CFCERCF,
|
|
@@ -658,15 +658,15 @@ var CloudFormationCostEstimationResourceCollectionFilter = [
|
|
|
658
658
|
[_SN],
|
|
659
659
|
[64 | 0],
|
|
660
660
|
];
|
|
661
|
-
var CloudFormationHealth = [
|
|
661
|
+
var CloudFormationHealth$ = [
|
|
662
662
|
3,
|
|
663
663
|
n0,
|
|
664
664
|
_CFH,
|
|
665
665
|
0,
|
|
666
666
|
[_SNt, _I, _ARC],
|
|
667
|
-
[0, () => InsightHealth
|
|
667
|
+
[0, () => InsightHealth$, 1],
|
|
668
668
|
];
|
|
669
|
-
var CloudWatchMetricsDataSummary = [
|
|
669
|
+
var CloudWatchMetricsDataSummary$ = [
|
|
670
670
|
3,
|
|
671
671
|
n0,
|
|
672
672
|
_CWMDS,
|
|
@@ -674,30 +674,30 @@ var CloudWatchMetricsDataSummary = [
|
|
|
674
674
|
[_TMVPL, _SC],
|
|
675
675
|
[() => TimestampMetricValuePairList, 0],
|
|
676
676
|
];
|
|
677
|
-
var CloudWatchMetricsDetail = [
|
|
677
|
+
var CloudWatchMetricsDetail$ = [
|
|
678
678
|
3,
|
|
679
679
|
n0,
|
|
680
680
|
_CWMD,
|
|
681
681
|
0,
|
|
682
682
|
[_MN, _Na, _D, _St, _U, _P, _MDS],
|
|
683
|
-
[0, 0, () => CloudWatchMetricsDimensions, 0, 0, 1, () => CloudWatchMetricsDataSummary],
|
|
683
|
+
[0, 0, () => CloudWatchMetricsDimensions, 0, 0, 1, () => CloudWatchMetricsDataSummary$],
|
|
684
684
|
];
|
|
685
|
-
var CloudWatchMetricsDimension = [3, n0, _CWMDl, 0, [_N, _V], [0, 0]];
|
|
686
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _RI, _RT], [0, 0, 0]];
|
|
687
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
688
|
-
var CostEstimationResourceCollectionFilter = [
|
|
685
|
+
var CloudWatchMetricsDimension$ = [3, n0, _CWMDl, 0, [_N, _V], [0, 0]];
|
|
686
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _RI, _RT], [0, 0, 0]];
|
|
687
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
688
|
+
var CostEstimationResourceCollectionFilter$ = [
|
|
689
689
|
3,
|
|
690
690
|
n0,
|
|
691
691
|
_CERCF,
|
|
692
692
|
0,
|
|
693
693
|
[_CF, _Ta],
|
|
694
|
-
[() => CloudFormationCostEstimationResourceCollectionFilter
|
|
694
|
+
[() => CloudFormationCostEstimationResourceCollectionFilter$, () => TagCostEstimationResourceCollectionFilters],
|
|
695
695
|
];
|
|
696
|
-
var CostEstimationTimeRange = [3, n0, _CETR, 0, [_ST, _ET], [4, 4]];
|
|
697
|
-
var DeleteInsightRequest = [3, n0, _DIR, 0, [_Id], [[0, 1]]];
|
|
698
|
-
var DeleteInsightResponse = [3, n0, _DIRe, 0, [], []];
|
|
699
|
-
var DescribeAccountHealthRequest = [3, n0, _DAHR, 0, [], []];
|
|
700
|
-
var DescribeAccountHealthResponse = [
|
|
696
|
+
var CostEstimationTimeRange$ = [3, n0, _CETR, 0, [_ST, _ET], [4, 4]];
|
|
697
|
+
var DeleteInsightRequest$ = [3, n0, _DIR, 0, [_Id], [[0, 1]]];
|
|
698
|
+
var DeleteInsightResponse$ = [3, n0, _DIRe, 0, [], []];
|
|
699
|
+
var DescribeAccountHealthRequest$ = [3, n0, _DAHR, 0, [], []];
|
|
700
|
+
var DescribeAccountHealthResponse$ = [
|
|
701
701
|
3,
|
|
702
702
|
n0,
|
|
703
703
|
_DAHRe,
|
|
@@ -705,9 +705,16 @@ var DescribeAccountHealthResponse = [
|
|
|
705
705
|
[_ORI, _OPI, _MA, _RH, _ARC],
|
|
706
706
|
[1, 1, 1, 1, 1],
|
|
707
707
|
];
|
|
708
|
-
var DescribeAccountOverviewRequest = [3, n0, _DAOR, 0, [_FT, _TT], [4, 4]];
|
|
709
|
-
var DescribeAccountOverviewResponse = [
|
|
710
|
-
|
|
708
|
+
var DescribeAccountOverviewRequest$ = [3, n0, _DAOR, 0, [_FT, _TT], [4, 4]];
|
|
709
|
+
var DescribeAccountOverviewResponse$ = [
|
|
710
|
+
3,
|
|
711
|
+
n0,
|
|
712
|
+
_DAORe,
|
|
713
|
+
0,
|
|
714
|
+
[_RIe, _PI, _MTTRIM],
|
|
715
|
+
[1, 1, 1],
|
|
716
|
+
];
|
|
717
|
+
var DescribeAnomalyRequest$ = [
|
|
711
718
|
3,
|
|
712
719
|
n0,
|
|
713
720
|
_DAR,
|
|
@@ -718,26 +725,26 @@ var DescribeAnomalyRequest = [
|
|
|
718
725
|
[0, { [_hQ]: _AI }],
|
|
719
726
|
],
|
|
720
727
|
];
|
|
721
|
-
var DescribeAnomalyResponse = [
|
|
728
|
+
var DescribeAnomalyResponse$ = [
|
|
722
729
|
3,
|
|
723
730
|
n0,
|
|
724
731
|
_DARe,
|
|
725
732
|
0,
|
|
726
733
|
[_PA, _RA],
|
|
727
|
-
[() => ProactiveAnomaly
|
|
734
|
+
[() => ProactiveAnomaly$, () => ReactiveAnomaly$],
|
|
728
735
|
];
|
|
729
|
-
var DescribeEventSourcesConfigRequest = [3, n0, _DESCR, 0, [], []];
|
|
730
|
-
var DescribeEventSourcesConfigResponse = [
|
|
736
|
+
var DescribeEventSourcesConfigRequest$ = [3, n0, _DESCR, 0, [], []];
|
|
737
|
+
var DescribeEventSourcesConfigResponse$ = [
|
|
731
738
|
3,
|
|
732
739
|
n0,
|
|
733
740
|
_DESCRe,
|
|
734
741
|
0,
|
|
735
742
|
[_ES],
|
|
736
|
-
[() => EventSourcesConfig],
|
|
743
|
+
[() => EventSourcesConfig$],
|
|
737
744
|
];
|
|
738
|
-
var DescribeFeedbackRequest = [3, n0, _DFR, 0, [_II], [0]];
|
|
739
|
-
var DescribeFeedbackResponse = [3, n0, _DFRe, 0, [_IF], [() => InsightFeedback]];
|
|
740
|
-
var DescribeInsightRequest = [
|
|
745
|
+
var DescribeFeedbackRequest$ = [3, n0, _DFR, 0, [_II], [0]];
|
|
746
|
+
var DescribeFeedbackResponse$ = [3, n0, _DFRe, 0, [_IF], [() => InsightFeedback$]];
|
|
747
|
+
var DescribeInsightRequest$ = [
|
|
741
748
|
3,
|
|
742
749
|
n0,
|
|
743
750
|
_DIRes,
|
|
@@ -748,16 +755,23 @@ var DescribeInsightRequest = [
|
|
|
748
755
|
[0, { [_hQ]: _AI }],
|
|
749
756
|
],
|
|
750
757
|
];
|
|
751
|
-
var DescribeInsightResponse = [
|
|
758
|
+
var DescribeInsightResponse$ = [
|
|
752
759
|
3,
|
|
753
760
|
n0,
|
|
754
761
|
_DIResc,
|
|
755
762
|
0,
|
|
756
763
|
[_PIr, _RIea],
|
|
757
|
-
[() => ProactiveInsight
|
|
764
|
+
[() => ProactiveInsight$, () => ReactiveInsight$],
|
|
758
765
|
];
|
|
759
|
-
var DescribeOrganizationHealthRequest = [
|
|
760
|
-
|
|
766
|
+
var DescribeOrganizationHealthRequest$ = [
|
|
767
|
+
3,
|
|
768
|
+
n0,
|
|
769
|
+
_DOHR,
|
|
770
|
+
0,
|
|
771
|
+
[_AIc, _OUI],
|
|
772
|
+
[64 | 0, 64 | 0],
|
|
773
|
+
];
|
|
774
|
+
var DescribeOrganizationHealthResponse$ = [
|
|
761
775
|
3,
|
|
762
776
|
n0,
|
|
763
777
|
_DOHRe,
|
|
@@ -765,7 +779,7 @@ var DescribeOrganizationHealthResponse = [
|
|
|
765
779
|
[_ORI, _OPI, _MA, _RH],
|
|
766
780
|
[1, 1, 1, 1],
|
|
767
781
|
];
|
|
768
|
-
var DescribeOrganizationOverviewRequest = [
|
|
782
|
+
var DescribeOrganizationOverviewRequest$ = [
|
|
769
783
|
3,
|
|
770
784
|
n0,
|
|
771
785
|
_DOOR,
|
|
@@ -773,8 +787,8 @@ var DescribeOrganizationOverviewRequest = [
|
|
|
773
787
|
[_FT, _TT, _AIc, _OUI],
|
|
774
788
|
[4, 4, 64 | 0, 64 | 0],
|
|
775
789
|
];
|
|
776
|
-
var DescribeOrganizationOverviewResponse = [3, n0, _DOORe, 0, [_RIe, _PI], [1, 1]];
|
|
777
|
-
var DescribeOrganizationResourceCollectionHealthRequest = [
|
|
790
|
+
var DescribeOrganizationOverviewResponse$ = [3, n0, _DOORe, 0, [_RIe, _PI], [1, 1]];
|
|
791
|
+
var DescribeOrganizationResourceCollectionHealthRequest$ = [
|
|
778
792
|
3,
|
|
779
793
|
n0,
|
|
780
794
|
_DORCHR,
|
|
@@ -782,7 +796,7 @@ var DescribeOrganizationResourceCollectionHealthRequest = [
|
|
|
782
796
|
[_ORCT, _AIc, _OUI, _NT, _MR],
|
|
783
797
|
[0, 64 | 0, 64 | 0, 0, 1],
|
|
784
798
|
];
|
|
785
|
-
var DescribeOrganizationResourceCollectionHealthResponse = [
|
|
799
|
+
var DescribeOrganizationResourceCollectionHealthResponse$ = [
|
|
786
800
|
3,
|
|
787
801
|
n0,
|
|
788
802
|
_DORCHRe,
|
|
@@ -790,7 +804,7 @@ var DescribeOrganizationResourceCollectionHealthResponse = [
|
|
|
790
804
|
[_CF, _Se, _A, _NT, _Ta],
|
|
791
805
|
[() => CloudFormationHealths, () => ServiceHealths, () => AccountHealths, 0, () => TagHealths],
|
|
792
806
|
];
|
|
793
|
-
var DescribeResourceCollectionHealthRequest = [
|
|
807
|
+
var DescribeResourceCollectionHealthRequest$ = [
|
|
794
808
|
3,
|
|
795
809
|
n0,
|
|
796
810
|
_DRCHR,
|
|
@@ -801,7 +815,7 @@ var DescribeResourceCollectionHealthRequest = [
|
|
|
801
815
|
[0, { [_hQ]: _NT }],
|
|
802
816
|
],
|
|
803
817
|
];
|
|
804
|
-
var DescribeResourceCollectionHealthResponse = [
|
|
818
|
+
var DescribeResourceCollectionHealthResponse$ = [
|
|
805
819
|
3,
|
|
806
820
|
n0,
|
|
807
821
|
_DRCHRe,
|
|
@@ -809,44 +823,44 @@ var DescribeResourceCollectionHealthResponse = [
|
|
|
809
823
|
[_CF, _Se, _NT, _Ta],
|
|
810
824
|
[() => CloudFormationHealths, () => ServiceHealths, 0, () => TagHealths],
|
|
811
825
|
];
|
|
812
|
-
var DescribeServiceIntegrationRequest = [3, n0, _DSIR, 0, [], []];
|
|
813
|
-
var DescribeServiceIntegrationResponse = [
|
|
826
|
+
var DescribeServiceIntegrationRequest$ = [3, n0, _DSIR, 0, [], []];
|
|
827
|
+
var DescribeServiceIntegrationResponse$ = [
|
|
814
828
|
3,
|
|
815
829
|
n0,
|
|
816
830
|
_DSIRe,
|
|
817
831
|
0,
|
|
818
832
|
[_SI],
|
|
819
|
-
[() => ServiceIntegrationConfig],
|
|
833
|
+
[() => ServiceIntegrationConfig$],
|
|
820
834
|
];
|
|
821
|
-
var EndTimeRange = [3, n0, _ETR, 0, [_FT, _TT], [4, 4]];
|
|
822
|
-
var Event = [
|
|
835
|
+
var EndTimeRange$ = [3, n0, _ETR, 0, [_FT, _TT], [4, 4]];
|
|
836
|
+
var Event$ = [
|
|
823
837
|
3,
|
|
824
838
|
n0,
|
|
825
839
|
_E,
|
|
826
840
|
0,
|
|
827
841
|
[_RC, _Id, _Ti, _ESv, _N, _DS, _EC, _R],
|
|
828
|
-
[() => ResourceCollection
|
|
842
|
+
[() => ResourceCollection$, 0, 4, 0, 0, 0, 0, () => EventResources],
|
|
829
843
|
];
|
|
830
|
-
var EventResource = [3, n0, _ER, 0, [_T, _N, _Ar], [0, 0, 0]];
|
|
831
|
-
var EventSourcesConfig = [
|
|
844
|
+
var EventResource$ = [3, n0, _ER, 0, [_T, _N, _Ar], [0, 0, 0]];
|
|
845
|
+
var EventSourcesConfig$ = [
|
|
832
846
|
3,
|
|
833
847
|
n0,
|
|
834
848
|
_ESC,
|
|
835
849
|
0,
|
|
836
850
|
[_ACGP],
|
|
837
|
-
[() => AmazonCodeGuruProfilerIntegration],
|
|
851
|
+
[() => AmazonCodeGuruProfilerIntegration$],
|
|
838
852
|
];
|
|
839
|
-
var EventTimeRange = [3, n0, _ETRv, 0, [_FT, _TT], [4, 4]];
|
|
840
|
-
var GetCostEstimationRequest = [3, n0, _GCER, 0, [_NT], [[0, { [_hQ]: _NT }]]];
|
|
841
|
-
var GetCostEstimationResponse = [
|
|
853
|
+
var EventTimeRange$ = [3, n0, _ETRv, 0, [_FT, _TT], [4, 4]];
|
|
854
|
+
var GetCostEstimationRequest$ = [3, n0, _GCER, 0, [_NT], [[0, { [_hQ]: _NT }]]];
|
|
855
|
+
var GetCostEstimationResponse$ = [
|
|
842
856
|
3,
|
|
843
857
|
n0,
|
|
844
858
|
_GCERe,
|
|
845
859
|
0,
|
|
846
860
|
[_RC, _S, _Co, _TR, _TC, _NT],
|
|
847
|
-
[() => CostEstimationResourceCollectionFilter
|
|
861
|
+
[() => CostEstimationResourceCollectionFilter$, 0, () => ServiceResourceCosts, () => CostEstimationTimeRange$, 1, 0],
|
|
848
862
|
];
|
|
849
|
-
var GetResourceCollectionRequest = [
|
|
863
|
+
var GetResourceCollectionRequest$ = [
|
|
850
864
|
3,
|
|
851
865
|
n0,
|
|
852
866
|
_GRCR,
|
|
@@ -857,18 +871,18 @@ var GetResourceCollectionRequest = [
|
|
|
857
871
|
[0, { [_hQ]: _NT }],
|
|
858
872
|
],
|
|
859
873
|
];
|
|
860
|
-
var GetResourceCollectionResponse = [
|
|
874
|
+
var GetResourceCollectionResponse$ = [
|
|
861
875
|
3,
|
|
862
876
|
n0,
|
|
863
877
|
_GRCRe,
|
|
864
878
|
0,
|
|
865
879
|
[_RC, _NT],
|
|
866
|
-
[() => ResourceCollectionFilter
|
|
880
|
+
[() => ResourceCollectionFilter$, 0],
|
|
867
881
|
];
|
|
868
|
-
var InsightFeedback = [3, n0, _IF, 0, [_Id, _F], [0, 0]];
|
|
869
|
-
var InsightHealth = [3, n0, _IH, 0, [_OPI, _ORI, _MTTRIM], [1, 1, 1]];
|
|
870
|
-
var InsightTimeRange = [3, n0, _ITR, 0, [_ST, _ET], [4, 4]];
|
|
871
|
-
var InternalServerException = [
|
|
882
|
+
var InsightFeedback$ = [3, n0, _IF, 0, [_Id, _F], [0, 0]];
|
|
883
|
+
var InsightHealth$ = [3, n0, _IH, 0, [_OPI, _ORI, _MTTRIM], [1, 1, 1]];
|
|
884
|
+
var InsightTimeRange$ = [3, n0, _ITR, 0, [_ST, _ET], [4, 4]];
|
|
885
|
+
var InternalServerException$ = [
|
|
872
886
|
-3,
|
|
873
887
|
n0,
|
|
874
888
|
_ISE,
|
|
@@ -876,8 +890,8 @@ var InternalServerException = [
|
|
|
876
890
|
[_M, _RAS],
|
|
877
891
|
[0, [1, { [_hH]: _RA_ }]],
|
|
878
892
|
];
|
|
879
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
880
|
-
var KMSServerSideEncryptionIntegration = [
|
|
893
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
894
|
+
var KMSServerSideEncryptionIntegration$ = [
|
|
881
895
|
3,
|
|
882
896
|
n0,
|
|
883
897
|
_KMSSSEI,
|
|
@@ -885,7 +899,7 @@ var KMSServerSideEncryptionIntegration = [
|
|
|
885
899
|
[_KMSKI, _OIS, _T],
|
|
886
900
|
[0, 0, 0],
|
|
887
901
|
];
|
|
888
|
-
var KMSServerSideEncryptionIntegrationConfig = [
|
|
902
|
+
var KMSServerSideEncryptionIntegrationConfig$ = [
|
|
889
903
|
3,
|
|
890
904
|
n0,
|
|
891
905
|
_KMSSSEIC,
|
|
@@ -893,23 +907,23 @@ var KMSServerSideEncryptionIntegrationConfig = [
|
|
|
893
907
|
[_KMSKI, _OIS, _T],
|
|
894
908
|
[0, 0, 0],
|
|
895
909
|
];
|
|
896
|
-
var ListAnomaliesForInsightFilters = [
|
|
910
|
+
var ListAnomaliesForInsightFilters$ = [
|
|
897
911
|
3,
|
|
898
912
|
n0,
|
|
899
913
|
_LAFIF,
|
|
900
914
|
0,
|
|
901
915
|
[_SCe],
|
|
902
|
-
[() => ServiceCollection],
|
|
916
|
+
[() => ServiceCollection$],
|
|
903
917
|
];
|
|
904
|
-
var ListAnomaliesForInsightRequest = [
|
|
918
|
+
var ListAnomaliesForInsightRequest$ = [
|
|
905
919
|
3,
|
|
906
920
|
n0,
|
|
907
921
|
_LAFIR,
|
|
908
922
|
0,
|
|
909
923
|
[_II, _STR, _MR, _NT, _AI, _Fi],
|
|
910
|
-
[[0, 1], () => StartTimeRange
|
|
924
|
+
[[0, 1], () => StartTimeRange$, 1, 0, 0, () => ListAnomaliesForInsightFilters$],
|
|
911
925
|
];
|
|
912
|
-
var ListAnomaliesForInsightResponse = [
|
|
926
|
+
var ListAnomaliesForInsightResponse$ = [
|
|
913
927
|
3,
|
|
914
928
|
n0,
|
|
915
929
|
_LAFIRi,
|
|
@@ -917,8 +931,8 @@ var ListAnomaliesForInsightResponse = [
|
|
|
917
931
|
[_PAr, _RAe, _NT],
|
|
918
932
|
[() => ProactiveAnomalies, () => ReactiveAnomalies, 0],
|
|
919
933
|
];
|
|
920
|
-
var ListAnomalousLogGroupsRequest = [3, n0, _LALGR, 0, [_II, _MR, _NT], [0, 1, 0]];
|
|
921
|
-
var ListAnomalousLogGroupsResponse = [
|
|
934
|
+
var ListAnomalousLogGroupsRequest$ = [3, n0, _LALGR, 0, [_II, _MR, _NT], [0, 1, 0]];
|
|
935
|
+
var ListAnomalousLogGroupsResponse$ = [
|
|
922
936
|
3,
|
|
923
937
|
n0,
|
|
924
938
|
_LALGRi,
|
|
@@ -926,49 +940,49 @@ var ListAnomalousLogGroupsResponse = [
|
|
|
926
940
|
[_II, _ALGn, _NT],
|
|
927
941
|
[0, () => AnomalousLogGroups, 0],
|
|
928
942
|
];
|
|
929
|
-
var ListEventsFilters = [
|
|
943
|
+
var ListEventsFilters$ = [
|
|
930
944
|
3,
|
|
931
945
|
n0,
|
|
932
946
|
_LEF,
|
|
933
947
|
0,
|
|
934
948
|
[_II, _ETRv, _EC, _ESv, _DS, _RC],
|
|
935
|
-
[0, () => EventTimeRange
|
|
949
|
+
[0, () => EventTimeRange$, 0, 0, 0, () => ResourceCollection$],
|
|
936
950
|
];
|
|
937
|
-
var ListEventsRequest = [
|
|
951
|
+
var ListEventsRequest$ = [
|
|
938
952
|
3,
|
|
939
953
|
n0,
|
|
940
954
|
_LER,
|
|
941
955
|
0,
|
|
942
956
|
[_Fi, _MR, _NT, _AI],
|
|
943
|
-
[() => ListEventsFilters
|
|
957
|
+
[() => ListEventsFilters$, 1, 0, 0],
|
|
944
958
|
];
|
|
945
|
-
var ListEventsResponse = [3, n0, _LERi, 0, [_Ev, _NT], [() => Events, 0]];
|
|
946
|
-
var ListInsightsAnyStatusFilter = [
|
|
959
|
+
var ListEventsResponse$ = [3, n0, _LERi, 0, [_Ev, _NT], [() => Events, 0]];
|
|
960
|
+
var ListInsightsAnyStatusFilter$ = [
|
|
947
961
|
3,
|
|
948
962
|
n0,
|
|
949
963
|
_LIASF,
|
|
950
964
|
0,
|
|
951
965
|
[_T, _STR],
|
|
952
|
-
[0, () => StartTimeRange],
|
|
966
|
+
[0, () => StartTimeRange$],
|
|
953
967
|
];
|
|
954
|
-
var ListInsightsClosedStatusFilter = [
|
|
968
|
+
var ListInsightsClosedStatusFilter$ = [
|
|
955
969
|
3,
|
|
956
970
|
n0,
|
|
957
971
|
_LICSF,
|
|
958
972
|
0,
|
|
959
973
|
[_T, _ETR],
|
|
960
|
-
[0, () => EndTimeRange],
|
|
974
|
+
[0, () => EndTimeRange$],
|
|
961
975
|
];
|
|
962
|
-
var ListInsightsOngoingStatusFilter = [3, n0, _LIOSF, 0, [_T], [0]];
|
|
963
|
-
var ListInsightsRequest = [
|
|
976
|
+
var ListInsightsOngoingStatusFilter$ = [3, n0, _LIOSF, 0, [_T], [0]];
|
|
977
|
+
var ListInsightsRequest$ = [
|
|
964
978
|
3,
|
|
965
979
|
n0,
|
|
966
980
|
_LIR,
|
|
967
981
|
0,
|
|
968
982
|
[_SF, _MR, _NT],
|
|
969
|
-
[() => ListInsightsStatusFilter
|
|
983
|
+
[() => ListInsightsStatusFilter$, 1, 0],
|
|
970
984
|
];
|
|
971
|
-
var ListInsightsResponse = [
|
|
985
|
+
var ListInsightsResponse$ = [
|
|
972
986
|
3,
|
|
973
987
|
n0,
|
|
974
988
|
_LIRi,
|
|
@@ -976,24 +990,24 @@ var ListInsightsResponse = [
|
|
|
976
990
|
[_PI, _RIe, _NT],
|
|
977
991
|
[() => ProactiveInsights, () => ReactiveInsights, 0],
|
|
978
992
|
];
|
|
979
|
-
var ListInsightsStatusFilter = [
|
|
993
|
+
var ListInsightsStatusFilter$ = [
|
|
980
994
|
3,
|
|
981
995
|
n0,
|
|
982
996
|
_LISF,
|
|
983
997
|
0,
|
|
984
998
|
[_O, _Cl, _An],
|
|
985
|
-
[() => ListInsightsOngoingStatusFilter
|
|
999
|
+
[() => ListInsightsOngoingStatusFilter$, () => ListInsightsClosedStatusFilter$, () => ListInsightsAnyStatusFilter$],
|
|
986
1000
|
];
|
|
987
|
-
var ListMonitoredResourcesFilters = [3, n0, _LMRF, 0, [_RP, _RTF], [0, 64 | 0]];
|
|
988
|
-
var ListMonitoredResourcesRequest = [
|
|
1001
|
+
var ListMonitoredResourcesFilters$ = [3, n0, _LMRF, 0, [_RP, _RTF], [0, 64 | 0]];
|
|
1002
|
+
var ListMonitoredResourcesRequest$ = [
|
|
989
1003
|
3,
|
|
990
1004
|
n0,
|
|
991
1005
|
_LMRR,
|
|
992
1006
|
0,
|
|
993
1007
|
[_Fi, _MR, _NT],
|
|
994
|
-
[() => ListMonitoredResourcesFilters
|
|
1008
|
+
[() => ListMonitoredResourcesFilters$, 1, 0],
|
|
995
1009
|
];
|
|
996
|
-
var ListMonitoredResourcesResponse = [
|
|
1010
|
+
var ListMonitoredResourcesResponse$ = [
|
|
997
1011
|
3,
|
|
998
1012
|
n0,
|
|
999
1013
|
_LMRRi,
|
|
@@ -1001,8 +1015,8 @@ var ListMonitoredResourcesResponse = [
|
|
|
1001
1015
|
[_MRI, _NT],
|
|
1002
1016
|
[() => MonitoredResourceIdentifiers, 0],
|
|
1003
1017
|
];
|
|
1004
|
-
var ListNotificationChannelsRequest = [3, n0, _LNCR, 0, [_NT], [0]];
|
|
1005
|
-
var ListNotificationChannelsResponse = [
|
|
1018
|
+
var ListNotificationChannelsRequest$ = [3, n0, _LNCR, 0, [_NT], [0]];
|
|
1019
|
+
var ListNotificationChannelsResponse$ = [
|
|
1006
1020
|
3,
|
|
1007
1021
|
n0,
|
|
1008
1022
|
_LNCRi,
|
|
@@ -1010,15 +1024,15 @@ var ListNotificationChannelsResponse = [
|
|
|
1010
1024
|
[_Ch, _NT],
|
|
1011
1025
|
[() => Channels, 0],
|
|
1012
1026
|
];
|
|
1013
|
-
var ListOrganizationInsightsRequest = [
|
|
1027
|
+
var ListOrganizationInsightsRequest$ = [
|
|
1014
1028
|
3,
|
|
1015
1029
|
n0,
|
|
1016
1030
|
_LOIR,
|
|
1017
1031
|
0,
|
|
1018
1032
|
[_SF, _MR, _AIc, _OUI, _NT],
|
|
1019
|
-
[() => ListInsightsStatusFilter
|
|
1033
|
+
[() => ListInsightsStatusFilter$, 1, 64 | 0, 64 | 0, 0],
|
|
1020
1034
|
];
|
|
1021
|
-
var ListOrganizationInsightsResponse = [
|
|
1035
|
+
var ListOrganizationInsightsResponse$ = [
|
|
1022
1036
|
3,
|
|
1023
1037
|
n0,
|
|
1024
1038
|
_LOIRi,
|
|
@@ -1026,8 +1040,8 @@ var ListOrganizationInsightsResponse = [
|
|
|
1026
1040
|
[_PI, _RIe, _NT],
|
|
1027
1041
|
[() => ProactiveOrganizationInsights, () => ReactiveOrganizationInsights, 0],
|
|
1028
1042
|
];
|
|
1029
|
-
var ListRecommendationsRequest = [3, n0, _LRR, 0, [_II, _NT, _L, _AI], [0, 0, 0, 0]];
|
|
1030
|
-
var ListRecommendationsResponse = [
|
|
1043
|
+
var ListRecommendationsRequest$ = [3, n0, _LRR, 0, [_II, _NT, _L, _AI], [0, 0, 0, 0]];
|
|
1044
|
+
var ListRecommendationsResponse$ = [
|
|
1031
1045
|
3,
|
|
1032
1046
|
n0,
|
|
1033
1047
|
_LRRi,
|
|
@@ -1035,7 +1049,7 @@ var ListRecommendationsResponse = [
|
|
|
1035
1049
|
[_Re, _NT],
|
|
1036
1050
|
[() => Recommendations, 0],
|
|
1037
1051
|
];
|
|
1038
|
-
var LogAnomalyClass = [
|
|
1052
|
+
var LogAnomalyClass$ = [
|
|
1039
1053
|
3,
|
|
1040
1054
|
n0,
|
|
1041
1055
|
_LAC,
|
|
@@ -1043,37 +1057,37 @@ var LogAnomalyClass = [
|
|
|
1043
1057
|
[_LSN, _LAT, _LATo, _LEI, _Ex, _NOLLO, _LET],
|
|
1044
1058
|
[0, 0, 0, 0, 0, 1, 4],
|
|
1045
1059
|
];
|
|
1046
|
-
var LogAnomalyShowcase = [3, n0, _LASo, 0, [_LACo], [() => LogAnomalyClasses]];
|
|
1047
|
-
var LogsAnomalyDetectionIntegration = [3, n0, _LADI, 0, [_OIS], [0]];
|
|
1048
|
-
var LogsAnomalyDetectionIntegrationConfig = [3, n0, _LADIC, 0, [_OIS], [0]];
|
|
1049
|
-
var MonitoredResourceIdentifier = [
|
|
1060
|
+
var LogAnomalyShowcase$ = [3, n0, _LASo, 0, [_LACo], [() => LogAnomalyClasses]];
|
|
1061
|
+
var LogsAnomalyDetectionIntegration$ = [3, n0, _LADI, 0, [_OIS], [0]];
|
|
1062
|
+
var LogsAnomalyDetectionIntegrationConfig$ = [3, n0, _LADIC, 0, [_OIS], [0]];
|
|
1063
|
+
var MonitoredResourceIdentifier$ = [
|
|
1050
1064
|
3,
|
|
1051
1065
|
n0,
|
|
1052
1066
|
_MRIo,
|
|
1053
1067
|
0,
|
|
1054
1068
|
[_MRN, _T, _RP, _LU, _RC],
|
|
1055
|
-
[0, 0, 0, 4, () => ResourceCollection],
|
|
1069
|
+
[0, 0, 0, 4, () => ResourceCollection$],
|
|
1056
1070
|
];
|
|
1057
|
-
var NotificationChannel = [
|
|
1071
|
+
var NotificationChannel$ = [
|
|
1058
1072
|
3,
|
|
1059
1073
|
n0,
|
|
1060
1074
|
_NC,
|
|
1061
1075
|
0,
|
|
1062
1076
|
[_Id, _C],
|
|
1063
|
-
[0, () => NotificationChannelConfig],
|
|
1077
|
+
[0, () => NotificationChannelConfig$],
|
|
1064
1078
|
];
|
|
1065
|
-
var NotificationChannelConfig = [
|
|
1079
|
+
var NotificationChannelConfig$ = [
|
|
1066
1080
|
3,
|
|
1067
1081
|
n0,
|
|
1068
1082
|
_NCC,
|
|
1069
1083
|
0,
|
|
1070
1084
|
[_Sn, _Fi],
|
|
1071
|
-
[() => SnsChannelConfig
|
|
1085
|
+
[() => SnsChannelConfig$, () => NotificationFilterConfig$],
|
|
1072
1086
|
];
|
|
1073
|
-
var NotificationFilterConfig = [3, n0, _NFC, 0, [_Sev, _MT], [64 | 0, 64 | 0]];
|
|
1074
|
-
var OpsCenterIntegration = [3, n0, _OCI, 0, [_OIS], [0]];
|
|
1075
|
-
var OpsCenterIntegrationConfig = [3, n0, _OCIC, 0, [_OIS], [0]];
|
|
1076
|
-
var PerformanceInsightsMetricDimensionGroup = [
|
|
1087
|
+
var NotificationFilterConfig$ = [3, n0, _NFC, 0, [_Sev, _MT], [64 | 0, 64 | 0]];
|
|
1088
|
+
var OpsCenterIntegration$ = [3, n0, _OCI, 0, [_OIS], [0]];
|
|
1089
|
+
var OpsCenterIntegrationConfig$ = [3, n0, _OCIC, 0, [_OIS], [0]];
|
|
1090
|
+
var PerformanceInsightsMetricDimensionGroup$ = [
|
|
1077
1091
|
3,
|
|
1078
1092
|
n0,
|
|
1079
1093
|
_PIMDG,
|
|
@@ -1081,15 +1095,15 @@ var PerformanceInsightsMetricDimensionGroup = [
|
|
|
1081
1095
|
[_G, _D, _Li],
|
|
1082
1096
|
[0, 64 | 0, 1],
|
|
1083
1097
|
];
|
|
1084
|
-
var PerformanceInsightsMetricQuery = [
|
|
1098
|
+
var PerformanceInsightsMetricQuery$ = [
|
|
1085
1099
|
3,
|
|
1086
1100
|
n0,
|
|
1087
1101
|
_PIMQ,
|
|
1088
1102
|
0,
|
|
1089
1103
|
[_Me, _GB, _Fil],
|
|
1090
|
-
[0, () => PerformanceInsightsMetricDimensionGroup
|
|
1104
|
+
[0, () => PerformanceInsightsMetricDimensionGroup$, 128 | 0],
|
|
1091
1105
|
];
|
|
1092
|
-
var PerformanceInsightsMetricsDetail = [
|
|
1106
|
+
var PerformanceInsightsMetricsDetail$ = [
|
|
1093
1107
|
3,
|
|
1094
1108
|
n0,
|
|
1095
1109
|
_PIMD,
|
|
@@ -1098,40 +1112,40 @@ var PerformanceInsightsMetricsDetail = [
|
|
|
1098
1112
|
[
|
|
1099
1113
|
0,
|
|
1100
1114
|
0,
|
|
1101
|
-
() => PerformanceInsightsMetricQuery
|
|
1115
|
+
() => PerformanceInsightsMetricQuery$,
|
|
1102
1116
|
() => PerformanceInsightsReferenceDataList,
|
|
1103
1117
|
() => PerformanceInsightsStats,
|
|
1104
1118
|
() => PerformanceInsightsStats,
|
|
1105
1119
|
],
|
|
1106
1120
|
];
|
|
1107
|
-
var PerformanceInsightsReferenceComparisonValues = [
|
|
1121
|
+
var PerformanceInsightsReferenceComparisonValues$ = [
|
|
1108
1122
|
3,
|
|
1109
1123
|
n0,
|
|
1110
1124
|
_PIRCV,
|
|
1111
1125
|
0,
|
|
1112
1126
|
[_RS, _RM],
|
|
1113
|
-
[() => PerformanceInsightsReferenceScalar
|
|
1127
|
+
[() => PerformanceInsightsReferenceScalar$, () => PerformanceInsightsReferenceMetric$],
|
|
1114
1128
|
];
|
|
1115
|
-
var PerformanceInsightsReferenceData = [
|
|
1129
|
+
var PerformanceInsightsReferenceData$ = [
|
|
1116
1130
|
3,
|
|
1117
1131
|
n0,
|
|
1118
1132
|
_PIRD,
|
|
1119
1133
|
0,
|
|
1120
1134
|
[_N, _CV],
|
|
1121
|
-
[0, () => PerformanceInsightsReferenceComparisonValues],
|
|
1135
|
+
[0, () => PerformanceInsightsReferenceComparisonValues$],
|
|
1122
1136
|
];
|
|
1123
|
-
var PerformanceInsightsReferenceMetric = [
|
|
1137
|
+
var PerformanceInsightsReferenceMetric$ = [
|
|
1124
1138
|
3,
|
|
1125
1139
|
n0,
|
|
1126
1140
|
_PIRM,
|
|
1127
1141
|
0,
|
|
1128
1142
|
[_MQ],
|
|
1129
|
-
[() => PerformanceInsightsMetricQuery],
|
|
1143
|
+
[() => PerformanceInsightsMetricQuery$],
|
|
1130
1144
|
];
|
|
1131
|
-
var PerformanceInsightsReferenceScalar = [3, n0, _PIRS, 0, [_V], [1]];
|
|
1132
|
-
var PerformanceInsightsStat = [3, n0, _PIS, 0, [_T, _V], [0, 1]];
|
|
1133
|
-
var PredictionTimeRange = [3, n0, _PTR, 0, [_ST, _ET], [4, 4]];
|
|
1134
|
-
var ProactiveAnomaly = [
|
|
1145
|
+
var PerformanceInsightsReferenceScalar$ = [3, n0, _PIRS, 0, [_V], [1]];
|
|
1146
|
+
var PerformanceInsightsStat$ = [3, n0, _PIS, 0, [_T, _V], [0, 1]];
|
|
1147
|
+
var PredictionTimeRange$ = [3, n0, _PTR, 0, [_ST, _ET], [4, 4]];
|
|
1148
|
+
var ProactiveAnomaly$ = [
|
|
1135
1149
|
3,
|
|
1136
1150
|
n0,
|
|
1137
1151
|
_PA,
|
|
@@ -1142,19 +1156,19 @@ var ProactiveAnomaly = [
|
|
|
1142
1156
|
0,
|
|
1143
1157
|
0,
|
|
1144
1158
|
4,
|
|
1145
|
-
() => AnomalyTimeRange
|
|
1146
|
-
() => AnomalyReportedTimeRange
|
|
1147
|
-
() => PredictionTimeRange
|
|
1148
|
-
() => AnomalySourceDetails
|
|
1159
|
+
() => AnomalyTimeRange$,
|
|
1160
|
+
() => AnomalyReportedTimeRange$,
|
|
1161
|
+
() => PredictionTimeRange$,
|
|
1162
|
+
() => AnomalySourceDetails$,
|
|
1149
1163
|
0,
|
|
1150
|
-
() => ResourceCollection
|
|
1164
|
+
() => ResourceCollection$,
|
|
1151
1165
|
1,
|
|
1152
|
-
() => AnomalySourceMetadata
|
|
1166
|
+
() => AnomalySourceMetadata$,
|
|
1153
1167
|
() => AnomalyResources,
|
|
1154
1168
|
0,
|
|
1155
1169
|
],
|
|
1156
1170
|
];
|
|
1157
|
-
var ProactiveAnomalySummary = [
|
|
1171
|
+
var ProactiveAnomalySummary$ = [
|
|
1158
1172
|
3,
|
|
1159
1173
|
n0,
|
|
1160
1174
|
_PAS,
|
|
@@ -1165,27 +1179,27 @@ var ProactiveAnomalySummary = [
|
|
|
1165
1179
|
0,
|
|
1166
1180
|
0,
|
|
1167
1181
|
4,
|
|
1168
|
-
() => AnomalyTimeRange
|
|
1169
|
-
() => AnomalyReportedTimeRange
|
|
1170
|
-
() => PredictionTimeRange
|
|
1171
|
-
() => AnomalySourceDetails
|
|
1182
|
+
() => AnomalyTimeRange$,
|
|
1183
|
+
() => AnomalyReportedTimeRange$,
|
|
1184
|
+
() => PredictionTimeRange$,
|
|
1185
|
+
() => AnomalySourceDetails$,
|
|
1172
1186
|
0,
|
|
1173
|
-
() => ResourceCollection
|
|
1187
|
+
() => ResourceCollection$,
|
|
1174
1188
|
1,
|
|
1175
|
-
() => AnomalySourceMetadata
|
|
1189
|
+
() => AnomalySourceMetadata$,
|
|
1176
1190
|
() => AnomalyResources,
|
|
1177
1191
|
0,
|
|
1178
1192
|
],
|
|
1179
1193
|
];
|
|
1180
|
-
var ProactiveInsight = [
|
|
1194
|
+
var ProactiveInsight$ = [
|
|
1181
1195
|
3,
|
|
1182
1196
|
n0,
|
|
1183
1197
|
_PIr,
|
|
1184
1198
|
0,
|
|
1185
1199
|
[_Id, _N, _Seve, _S, _ITR, _PTR, _RC, _SOII, _De],
|
|
1186
|
-
[0, 0, 0, 0, () => InsightTimeRange
|
|
1200
|
+
[0, 0, 0, 0, () => InsightTimeRange$, () => PredictionTimeRange$, () => ResourceCollection$, 0, 0],
|
|
1187
1201
|
];
|
|
1188
|
-
var ProactiveInsightSummary = [
|
|
1202
|
+
var ProactiveInsightSummary$ = [
|
|
1189
1203
|
3,
|
|
1190
1204
|
n0,
|
|
1191
1205
|
_PISr,
|
|
@@ -1196,14 +1210,14 @@ var ProactiveInsightSummary = [
|
|
|
1196
1210
|
0,
|
|
1197
1211
|
0,
|
|
1198
1212
|
0,
|
|
1199
|
-
() => InsightTimeRange
|
|
1200
|
-
() => PredictionTimeRange
|
|
1201
|
-
() => ResourceCollection
|
|
1202
|
-
() => ServiceCollection
|
|
1213
|
+
() => InsightTimeRange$,
|
|
1214
|
+
() => PredictionTimeRange$,
|
|
1215
|
+
() => ResourceCollection$,
|
|
1216
|
+
() => ServiceCollection$,
|
|
1203
1217
|
64 | 0,
|
|
1204
1218
|
],
|
|
1205
1219
|
];
|
|
1206
|
-
var ProactiveOrganizationInsightSummary = [
|
|
1220
|
+
var ProactiveOrganizationInsightSummary$ = [
|
|
1207
1221
|
3,
|
|
1208
1222
|
n0,
|
|
1209
1223
|
_POIS,
|
|
@@ -1216,15 +1230,15 @@ var ProactiveOrganizationInsightSummary = [
|
|
|
1216
1230
|
0,
|
|
1217
1231
|
0,
|
|
1218
1232
|
0,
|
|
1219
|
-
() => InsightTimeRange
|
|
1220
|
-
() => PredictionTimeRange
|
|
1221
|
-
() => ResourceCollection
|
|
1222
|
-
() => ServiceCollection
|
|
1233
|
+
() => InsightTimeRange$,
|
|
1234
|
+
() => PredictionTimeRange$,
|
|
1235
|
+
() => ResourceCollection$,
|
|
1236
|
+
() => ServiceCollection$,
|
|
1223
1237
|
],
|
|
1224
1238
|
];
|
|
1225
|
-
var PutFeedbackRequest = [3, n0, _PFR, 0, [_IF], [() => InsightFeedback]];
|
|
1226
|
-
var PutFeedbackResponse = [3, n0, _PFRu, 0, [], []];
|
|
1227
|
-
var ReactiveAnomaly = [
|
|
1239
|
+
var PutFeedbackRequest$ = [3, n0, _PFR, 0, [_IF], [() => InsightFeedback$]];
|
|
1240
|
+
var PutFeedbackResponse$ = [3, n0, _PFRu, 0, [], []];
|
|
1241
|
+
var ReactiveAnomaly$ = [
|
|
1228
1242
|
3,
|
|
1229
1243
|
n0,
|
|
1230
1244
|
_RA,
|
|
@@ -1234,11 +1248,11 @@ var ReactiveAnomaly = [
|
|
|
1234
1248
|
0,
|
|
1235
1249
|
0,
|
|
1236
1250
|
0,
|
|
1237
|
-
() => AnomalyTimeRange
|
|
1238
|
-
() => AnomalyReportedTimeRange
|
|
1239
|
-
() => AnomalySourceDetails
|
|
1251
|
+
() => AnomalyTimeRange$,
|
|
1252
|
+
() => AnomalyReportedTimeRange$,
|
|
1253
|
+
() => AnomalySourceDetails$,
|
|
1240
1254
|
0,
|
|
1241
|
-
() => ResourceCollection
|
|
1255
|
+
() => ResourceCollection$,
|
|
1242
1256
|
0,
|
|
1243
1257
|
0,
|
|
1244
1258
|
0,
|
|
@@ -1246,7 +1260,7 @@ var ReactiveAnomaly = [
|
|
|
1246
1260
|
() => AnomalyResources,
|
|
1247
1261
|
],
|
|
1248
1262
|
];
|
|
1249
|
-
var ReactiveAnomalySummary = [
|
|
1263
|
+
var ReactiveAnomalySummary$ = [
|
|
1250
1264
|
3,
|
|
1251
1265
|
n0,
|
|
1252
1266
|
_RASe,
|
|
@@ -1256,11 +1270,11 @@ var ReactiveAnomalySummary = [
|
|
|
1256
1270
|
0,
|
|
1257
1271
|
0,
|
|
1258
1272
|
0,
|
|
1259
|
-
() => AnomalyTimeRange
|
|
1260
|
-
() => AnomalyReportedTimeRange
|
|
1261
|
-
() => AnomalySourceDetails
|
|
1273
|
+
() => AnomalyTimeRange$,
|
|
1274
|
+
() => AnomalyReportedTimeRange$,
|
|
1275
|
+
() => AnomalySourceDetails$,
|
|
1262
1276
|
0,
|
|
1263
|
-
() => ResourceCollection
|
|
1277
|
+
() => ResourceCollection$,
|
|
1264
1278
|
0,
|
|
1265
1279
|
0,
|
|
1266
1280
|
0,
|
|
@@ -1268,31 +1282,31 @@ var ReactiveAnomalySummary = [
|
|
|
1268
1282
|
() => AnomalyResources,
|
|
1269
1283
|
],
|
|
1270
1284
|
];
|
|
1271
|
-
var ReactiveInsight = [
|
|
1285
|
+
var ReactiveInsight$ = [
|
|
1272
1286
|
3,
|
|
1273
1287
|
n0,
|
|
1274
1288
|
_RIea,
|
|
1275
1289
|
0,
|
|
1276
1290
|
[_Id, _N, _Seve, _S, _ITR, _RC, _SOII, _De],
|
|
1277
|
-
[0, 0, 0, 0, () => InsightTimeRange
|
|
1291
|
+
[0, 0, 0, 0, () => InsightTimeRange$, () => ResourceCollection$, 0, 0],
|
|
1278
1292
|
];
|
|
1279
|
-
var ReactiveInsightSummary = [
|
|
1293
|
+
var ReactiveInsightSummary$ = [
|
|
1280
1294
|
3,
|
|
1281
1295
|
n0,
|
|
1282
1296
|
_RIS,
|
|
1283
1297
|
0,
|
|
1284
1298
|
[_Id, _N, _Seve, _S, _ITR, _RC, _SCe, _ARA],
|
|
1285
|
-
[0, 0, 0, 0, () => InsightTimeRange
|
|
1299
|
+
[0, 0, 0, 0, () => InsightTimeRange$, () => ResourceCollection$, () => ServiceCollection$, 64 | 0],
|
|
1286
1300
|
];
|
|
1287
|
-
var ReactiveOrganizationInsightSummary = [
|
|
1301
|
+
var ReactiveOrganizationInsightSummary$ = [
|
|
1288
1302
|
3,
|
|
1289
1303
|
n0,
|
|
1290
1304
|
_ROIS,
|
|
1291
1305
|
0,
|
|
1292
1306
|
[_Id, _AI, _OUIr, _N, _Seve, _S, _ITR, _RC, _SCe],
|
|
1293
|
-
[0, 0, 0, 0, 0, 0, () => InsightTimeRange
|
|
1307
|
+
[0, 0, 0, 0, 0, 0, () => InsightTimeRange$, () => ResourceCollection$, () => ServiceCollection$],
|
|
1294
1308
|
];
|
|
1295
|
-
var Recommendation = [
|
|
1309
|
+
var Recommendation$ = [
|
|
1296
1310
|
3,
|
|
1297
1311
|
n0,
|
|
1298
1312
|
_Rec,
|
|
@@ -1300,7 +1314,7 @@ var Recommendation = [
|
|
|
1300
1314
|
[_De, _Lin, _N, _Rea, _RE, _RAel, _Ca],
|
|
1301
1315
|
[0, 0, 0, 0, () => RecommendationRelatedEvents, () => RecommendationRelatedAnomalies, 0],
|
|
1302
1316
|
];
|
|
1303
|
-
var RecommendationRelatedAnomaly = [
|
|
1317
|
+
var RecommendationRelatedAnomaly$ = [
|
|
1304
1318
|
3,
|
|
1305
1319
|
n0,
|
|
1306
1320
|
_RRA,
|
|
@@ -1308,8 +1322,8 @@ var RecommendationRelatedAnomaly = [
|
|
|
1308
1322
|
[_R, _SD, _AIn],
|
|
1309
1323
|
[() => RecommendationRelatedAnomalyResources, () => RelatedAnomalySourceDetails, 0],
|
|
1310
1324
|
];
|
|
1311
|
-
var RecommendationRelatedAnomalyResource = [3, n0, _RRAR, 0, [_N, _T], [0, 0]];
|
|
1312
|
-
var RecommendationRelatedAnomalySourceDetail = [
|
|
1325
|
+
var RecommendationRelatedAnomalyResource$ = [3, n0, _RRAR, 0, [_N, _T], [0, 0]];
|
|
1326
|
+
var RecommendationRelatedAnomalySourceDetail$ = [
|
|
1313
1327
|
3,
|
|
1314
1328
|
n0,
|
|
1315
1329
|
_RRASD,
|
|
@@ -1317,7 +1331,7 @@ var RecommendationRelatedAnomalySourceDetail = [
|
|
|
1317
1331
|
[_CWM],
|
|
1318
1332
|
[() => RecommendationRelatedCloudWatchMetricsSourceDetails],
|
|
1319
1333
|
];
|
|
1320
|
-
var RecommendationRelatedCloudWatchMetricsSourceDetail = [
|
|
1334
|
+
var RecommendationRelatedCloudWatchMetricsSourceDetail$ = [
|
|
1321
1335
|
3,
|
|
1322
1336
|
n0,
|
|
1323
1337
|
_RRCWMSD,
|
|
@@ -1325,7 +1339,7 @@ var RecommendationRelatedCloudWatchMetricsSourceDetail = [
|
|
|
1325
1339
|
[_MN, _Na],
|
|
1326
1340
|
[0, 0],
|
|
1327
1341
|
];
|
|
1328
|
-
var RecommendationRelatedEvent = [
|
|
1342
|
+
var RecommendationRelatedEvent$ = [
|
|
1329
1343
|
3,
|
|
1330
1344
|
n0,
|
|
1331
1345
|
_RRE,
|
|
@@ -1333,26 +1347,26 @@ var RecommendationRelatedEvent = [
|
|
|
1333
1347
|
[_N, _R],
|
|
1334
1348
|
[0, () => RecommendationRelatedEventResources],
|
|
1335
1349
|
];
|
|
1336
|
-
var RecommendationRelatedEventResource = [3, n0, _RRER, 0, [_N, _T], [0, 0]];
|
|
1337
|
-
var RemoveNotificationChannelRequest = [3, n0, _RNCR, 0, [_Id], [[0, 1]]];
|
|
1338
|
-
var RemoveNotificationChannelResponse = [3, n0, _RNCRe, 0, [], []];
|
|
1339
|
-
var ResourceCollection = [
|
|
1350
|
+
var RecommendationRelatedEventResource$ = [3, n0, _RRER, 0, [_N, _T], [0, 0]];
|
|
1351
|
+
var RemoveNotificationChannelRequest$ = [3, n0, _RNCR, 0, [_Id], [[0, 1]]];
|
|
1352
|
+
var RemoveNotificationChannelResponse$ = [3, n0, _RNCRe, 0, [], []];
|
|
1353
|
+
var ResourceCollection$ = [
|
|
1340
1354
|
3,
|
|
1341
1355
|
n0,
|
|
1342
1356
|
_RC,
|
|
1343
1357
|
0,
|
|
1344
1358
|
[_CF, _Ta],
|
|
1345
|
-
[() => CloudFormationCollection
|
|
1359
|
+
[() => CloudFormationCollection$, () => TagCollections],
|
|
1346
1360
|
];
|
|
1347
|
-
var ResourceCollectionFilter = [
|
|
1361
|
+
var ResourceCollectionFilter$ = [
|
|
1348
1362
|
3,
|
|
1349
1363
|
n0,
|
|
1350
1364
|
_RCF,
|
|
1351
1365
|
0,
|
|
1352
1366
|
[_CF, _Ta],
|
|
1353
|
-
[() => CloudFormationCollectionFilter
|
|
1367
|
+
[() => CloudFormationCollectionFilter$, () => TagCollectionFilters],
|
|
1354
1368
|
];
|
|
1355
|
-
var ResourceNotFoundException = [
|
|
1369
|
+
var ResourceNotFoundException$ = [
|
|
1356
1370
|
-3,
|
|
1357
1371
|
n0,
|
|
1358
1372
|
_RNFE,
|
|
@@ -1360,24 +1374,24 @@ var ResourceNotFoundException = [
|
|
|
1360
1374
|
[_M, _RI, _RT],
|
|
1361
1375
|
[0, 0, 0],
|
|
1362
1376
|
];
|
|
1363
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
1364
|
-
var SearchInsightsFilters = [
|
|
1377
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1378
|
+
var SearchInsightsFilters$ = [
|
|
1365
1379
|
3,
|
|
1366
1380
|
n0,
|
|
1367
1381
|
_SIF,
|
|
1368
1382
|
0,
|
|
1369
1383
|
[_Sev, _Sta, _RC, _SCe],
|
|
1370
|
-
[64 | 0, 64 | 0, () => ResourceCollection
|
|
1384
|
+
[64 | 0, 64 | 0, () => ResourceCollection$, () => ServiceCollection$],
|
|
1371
1385
|
];
|
|
1372
|
-
var SearchInsightsRequest = [
|
|
1386
|
+
var SearchInsightsRequest$ = [
|
|
1373
1387
|
3,
|
|
1374
1388
|
n0,
|
|
1375
1389
|
_SIR,
|
|
1376
1390
|
0,
|
|
1377
1391
|
[_STR, _Fi, _MR, _NT, _T],
|
|
1378
|
-
[() => StartTimeRange
|
|
1392
|
+
[() => StartTimeRange$, () => SearchInsightsFilters$, 1, 0, 0],
|
|
1379
1393
|
];
|
|
1380
|
-
var SearchInsightsResponse = [
|
|
1394
|
+
var SearchInsightsResponse$ = [
|
|
1381
1395
|
3,
|
|
1382
1396
|
n0,
|
|
1383
1397
|
_SIRe,
|
|
@@ -1385,23 +1399,23 @@ var SearchInsightsResponse = [
|
|
|
1385
1399
|
[_PI, _RIe, _NT],
|
|
1386
1400
|
[() => ProactiveInsights, () => ReactiveInsights, 0],
|
|
1387
1401
|
];
|
|
1388
|
-
var SearchOrganizationInsightsFilters = [
|
|
1402
|
+
var SearchOrganizationInsightsFilters$ = [
|
|
1389
1403
|
3,
|
|
1390
1404
|
n0,
|
|
1391
1405
|
_SOIF,
|
|
1392
1406
|
0,
|
|
1393
1407
|
[_Sev, _Sta, _RC, _SCe],
|
|
1394
|
-
[64 | 0, 64 | 0, () => ResourceCollection
|
|
1408
|
+
[64 | 0, 64 | 0, () => ResourceCollection$, () => ServiceCollection$],
|
|
1395
1409
|
];
|
|
1396
|
-
var SearchOrganizationInsightsRequest = [
|
|
1410
|
+
var SearchOrganizationInsightsRequest$ = [
|
|
1397
1411
|
3,
|
|
1398
1412
|
n0,
|
|
1399
1413
|
_SOIR,
|
|
1400
1414
|
0,
|
|
1401
1415
|
[_AIc, _STR, _Fi, _MR, _NT, _T],
|
|
1402
|
-
[64 | 0, () => StartTimeRange
|
|
1416
|
+
[64 | 0, () => StartTimeRange$, () => SearchOrganizationInsightsFilters$, 1, 0, 0],
|
|
1403
1417
|
];
|
|
1404
|
-
var SearchOrganizationInsightsResponse = [
|
|
1418
|
+
var SearchOrganizationInsightsResponse$ = [
|
|
1405
1419
|
3,
|
|
1406
1420
|
n0,
|
|
1407
1421
|
_SOIRe,
|
|
@@ -1409,41 +1423,48 @@ var SearchOrganizationInsightsResponse = [
|
|
|
1409
1423
|
[_PI, _RIe, _NT],
|
|
1410
1424
|
[() => ProactiveInsights, () => ReactiveInsights, 0],
|
|
1411
1425
|
];
|
|
1412
|
-
var ServiceCollection = [3, n0, _SCe, 0, [_SNe], [64 | 0]];
|
|
1413
|
-
var ServiceHealth = [
|
|
1426
|
+
var ServiceCollection$ = [3, n0, _SCe, 0, [_SNe], [64 | 0]];
|
|
1427
|
+
var ServiceHealth$ = [
|
|
1414
1428
|
3,
|
|
1415
1429
|
n0,
|
|
1416
1430
|
_SH,
|
|
1417
1431
|
0,
|
|
1418
1432
|
[_SNer, _I, _ARC],
|
|
1419
|
-
[0, () => ServiceInsightHealth
|
|
1433
|
+
[0, () => ServiceInsightHealth$, 1],
|
|
1420
1434
|
];
|
|
1421
|
-
var ServiceInsightHealth = [3, n0, _SIH, 0, [_OPI, _ORI], [1, 1]];
|
|
1422
|
-
var ServiceIntegrationConfig = [
|
|
1435
|
+
var ServiceInsightHealth$ = [3, n0, _SIH, 0, [_OPI, _ORI], [1, 1]];
|
|
1436
|
+
var ServiceIntegrationConfig$ = [
|
|
1423
1437
|
3,
|
|
1424
1438
|
n0,
|
|
1425
1439
|
_SIC,
|
|
1426
1440
|
0,
|
|
1427
1441
|
[_OC, _LAD, _KMSSSE],
|
|
1428
|
-
[() => OpsCenterIntegration
|
|
1442
|
+
[() => OpsCenterIntegration$, () => LogsAnomalyDetectionIntegration$, () => KMSServerSideEncryptionIntegration$],
|
|
1443
|
+
];
|
|
1444
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
|
|
1445
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1446
|
+
var ServiceResourceCost$ = [
|
|
1447
|
+
3,
|
|
1448
|
+
n0,
|
|
1449
|
+
_SRC,
|
|
1450
|
+
0,
|
|
1451
|
+
[_T, _Stat, _Cou, _UC, _Cos],
|
|
1452
|
+
[0, 0, 1, 1, 1],
|
|
1429
1453
|
];
|
|
1430
|
-
var
|
|
1431
|
-
|
|
1432
|
-
var ServiceResourceCost = [3, n0, _SRC, 0, [_T, _Stat, _Cou, _UC, _Cos], [0, 0, 1, 1, 1]];
|
|
1433
|
-
var SnsChannelConfig = [3, n0, _SCC, 0, [_TA], [0]];
|
|
1434
|
-
var StartCostEstimationRequest = [
|
|
1454
|
+
var SnsChannelConfig$ = [3, n0, _SCC, 0, [_TA], [0]];
|
|
1455
|
+
var StartCostEstimationRequest$ = [
|
|
1435
1456
|
3,
|
|
1436
1457
|
n0,
|
|
1437
1458
|
_SCER,
|
|
1438
1459
|
0,
|
|
1439
1460
|
[_RC, _CTl],
|
|
1440
|
-
[() => CostEstimationResourceCollectionFilter
|
|
1461
|
+
[() => CostEstimationResourceCollectionFilter$, [0, 4]],
|
|
1441
1462
|
];
|
|
1442
|
-
var StartCostEstimationResponse = [3, n0, _SCERt, 0, [], []];
|
|
1443
|
-
var StartTimeRange = [3, n0, _STR, 0, [_FT, _TT], [4, 4]];
|
|
1444
|
-
var TagCollection = [3, n0, _TCa, 0, [_ABK, _TV], [0, 64 | 0]];
|
|
1445
|
-
var TagCollectionFilter = [3, n0, _TCF, 0, [_ABK, _TV], [0, 64 | 0]];
|
|
1446
|
-
var TagCostEstimationResourceCollectionFilter = [
|
|
1463
|
+
var StartCostEstimationResponse$ = [3, n0, _SCERt, 0, [], []];
|
|
1464
|
+
var StartTimeRange$ = [3, n0, _STR, 0, [_FT, _TT], [4, 4]];
|
|
1465
|
+
var TagCollection$ = [3, n0, _TCa, 0, [_ABK, _TV], [0, 64 | 0]];
|
|
1466
|
+
var TagCollectionFilter$ = [3, n0, _TCF, 0, [_ABK, _TV], [0, 64 | 0]];
|
|
1467
|
+
var TagCostEstimationResourceCollectionFilter$ = [
|
|
1447
1468
|
3,
|
|
1448
1469
|
n0,
|
|
1449
1470
|
_TCERCF,
|
|
@@ -1451,8 +1472,8 @@ var TagCostEstimationResourceCollectionFilter = [
|
|
|
1451
1472
|
[_ABK, _TV],
|
|
1452
1473
|
[0, 64 | 0],
|
|
1453
1474
|
];
|
|
1454
|
-
var TagHealth = [3, n0, _TH, 0, [_ABK, _TVa, _I, _ARC], [0, 0, () => InsightHealth
|
|
1455
|
-
var ThrottlingException = [
|
|
1475
|
+
var TagHealth$ = [3, n0, _TH, 0, [_ABK, _TVa, _I, _ARC], [0, 0, () => InsightHealth$, 1]];
|
|
1476
|
+
var ThrottlingException$ = [
|
|
1456
1477
|
-3,
|
|
1457
1478
|
n0,
|
|
1458
1479
|
_TE,
|
|
@@ -1460,58 +1481,58 @@ var ThrottlingException = [
|
|
|
1460
1481
|
[_M, _QC, _SCer, _RAS],
|
|
1461
1482
|
[0, 0, 0, [1, { [_hH]: _RA_ }]],
|
|
1462
1483
|
];
|
|
1463
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
1464
|
-
var TimestampMetricValuePair = [3, n0, _TMVP, 0, [_Tim, _MV], [4, 1]];
|
|
1465
|
-
var UpdateCloudFormationCollectionFilter = [3, n0, _UCFCF, 0, [_SN], [64 | 0]];
|
|
1466
|
-
var UpdateEventSourcesConfigRequest = [
|
|
1484
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1485
|
+
var TimestampMetricValuePair$ = [3, n0, _TMVP, 0, [_Tim, _MV], [4, 1]];
|
|
1486
|
+
var UpdateCloudFormationCollectionFilter$ = [3, n0, _UCFCF, 0, [_SN], [64 | 0]];
|
|
1487
|
+
var UpdateEventSourcesConfigRequest$ = [
|
|
1467
1488
|
3,
|
|
1468
1489
|
n0,
|
|
1469
1490
|
_UESCR,
|
|
1470
1491
|
0,
|
|
1471
1492
|
[_ES],
|
|
1472
|
-
[() => EventSourcesConfig],
|
|
1493
|
+
[() => EventSourcesConfig$],
|
|
1473
1494
|
];
|
|
1474
|
-
var UpdateEventSourcesConfigResponse = [3, n0, _UESCRp, 0, [], []];
|
|
1475
|
-
var UpdateResourceCollectionFilter = [
|
|
1495
|
+
var UpdateEventSourcesConfigResponse$ = [3, n0, _UESCRp, 0, [], []];
|
|
1496
|
+
var UpdateResourceCollectionFilter$ = [
|
|
1476
1497
|
3,
|
|
1477
1498
|
n0,
|
|
1478
1499
|
_URCF,
|
|
1479
1500
|
0,
|
|
1480
1501
|
[_CF, _Ta],
|
|
1481
|
-
[() => UpdateCloudFormationCollectionFilter
|
|
1502
|
+
[() => UpdateCloudFormationCollectionFilter$, () => UpdateTagCollectionFilters],
|
|
1482
1503
|
];
|
|
1483
|
-
var UpdateResourceCollectionRequest = [
|
|
1504
|
+
var UpdateResourceCollectionRequest$ = [
|
|
1484
1505
|
3,
|
|
1485
1506
|
n0,
|
|
1486
1507
|
_URCR,
|
|
1487
1508
|
0,
|
|
1488
1509
|
[_Ac, _RC],
|
|
1489
|
-
[0, () => UpdateResourceCollectionFilter],
|
|
1510
|
+
[0, () => UpdateResourceCollectionFilter$],
|
|
1490
1511
|
];
|
|
1491
|
-
var UpdateResourceCollectionResponse = [3, n0, _URCRp, 0, [], []];
|
|
1492
|
-
var UpdateServiceIntegrationConfig = [
|
|
1512
|
+
var UpdateResourceCollectionResponse$ = [3, n0, _URCRp, 0, [], []];
|
|
1513
|
+
var UpdateServiceIntegrationConfig$ = [
|
|
1493
1514
|
3,
|
|
1494
1515
|
n0,
|
|
1495
1516
|
_USIC,
|
|
1496
1517
|
0,
|
|
1497
1518
|
[_OC, _LAD, _KMSSSE],
|
|
1498
1519
|
[
|
|
1499
|
-
() => OpsCenterIntegrationConfig
|
|
1500
|
-
() => LogsAnomalyDetectionIntegrationConfig
|
|
1501
|
-
() => KMSServerSideEncryptionIntegrationConfig
|
|
1520
|
+
() => OpsCenterIntegrationConfig$,
|
|
1521
|
+
() => LogsAnomalyDetectionIntegrationConfig$,
|
|
1522
|
+
() => KMSServerSideEncryptionIntegrationConfig$,
|
|
1502
1523
|
],
|
|
1503
1524
|
];
|
|
1504
|
-
var UpdateServiceIntegrationRequest = [
|
|
1525
|
+
var UpdateServiceIntegrationRequest$ = [
|
|
1505
1526
|
3,
|
|
1506
1527
|
n0,
|
|
1507
1528
|
_USIR,
|
|
1508
1529
|
0,
|
|
1509
1530
|
[_SI],
|
|
1510
|
-
[() => UpdateServiceIntegrationConfig],
|
|
1531
|
+
[() => UpdateServiceIntegrationConfig$],
|
|
1511
1532
|
];
|
|
1512
|
-
var UpdateServiceIntegrationResponse = [3, n0, _USIRp, 0, [], []];
|
|
1513
|
-
var UpdateTagCollectionFilter = [3, n0, _UTCF, 0, [_ABK, _TV], [0, 64 | 0]];
|
|
1514
|
-
var ValidationException = [
|
|
1533
|
+
var UpdateServiceIntegrationResponse$ = [3, n0, _USIRp, 0, [], []];
|
|
1534
|
+
var UpdateTagCollectionFilter$ = [3, n0, _UTCF, 0, [_ABK, _TV], [0, 64 | 0]];
|
|
1535
|
+
var ValidationException$ = [
|
|
1515
1536
|
-3,
|
|
1516
1537
|
n0,
|
|
1517
1538
|
_VE,
|
|
@@ -1519,342 +1540,324 @@ var ValidationException = [
|
|
|
1519
1540
|
[_M, _Rea, _Fie],
|
|
1520
1541
|
[0, 0, () => ValidationExceptionFields],
|
|
1521
1542
|
];
|
|
1522
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
1523
|
-
var ValidationExceptionField = [3, n0, _VEF, 0, [_N, _M], [0, 0]];
|
|
1524
|
-
var DevOpsGuruServiceException = [-3, _sm, "DevOpsGuruServiceException", 0, [], []];
|
|
1525
|
-
schema.TypeRegistry.for(_sm).registerError(DevOpsGuruServiceException
|
|
1526
|
-
var AccountHealths = [1, n0, _AHc, 0, () => AccountHealth];
|
|
1527
|
-
var AnomalousLogGroups = [1, n0, _ALGn, 0, () => AnomalousLogGroup];
|
|
1528
|
-
var AnomalyResources = [1, n0, _ARn, 0, () => AnomalyResource];
|
|
1529
|
-
var Channels = [1, n0, _Ch, 0, () => NotificationChannel];
|
|
1530
|
-
var CloudFormationHealths = [1, n0, _CFHl, 0, () => CloudFormationHealth];
|
|
1531
|
-
var CloudWatchMetricsDetails = [1, n0, _CWMDlo, 0, () => CloudWatchMetricsDetail];
|
|
1532
|
-
var CloudWatchMetricsDimensions = [1, n0, _CWMDlou, 0, () => CloudWatchMetricsDimension];
|
|
1533
|
-
var EventResources = [1, n0, _ERv, 0, () => EventResource];
|
|
1534
|
-
var Events = [1, n0, _Ev, 0, () => Event];
|
|
1535
|
-
var LogAnomalyClasses = [1, n0, _LACo, 0, () => LogAnomalyClass];
|
|
1536
|
-
var LogAnomalyShowcases = [1, n0, _LAS, 0, () => LogAnomalyShowcase];
|
|
1537
|
-
var MonitoredResourceIdentifiers = [1, n0, _MRI, 0, () => MonitoredResourceIdentifier];
|
|
1538
|
-
var PerformanceInsightsMetricsDetails = [
|
|
1539
|
-
1,
|
|
1540
|
-
n0,
|
|
1541
|
-
_PIMDe,
|
|
1542
|
-
0,
|
|
1543
|
-
() => PerformanceInsightsMetricsDetail,
|
|
1544
|
-
];
|
|
1543
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1544
|
+
var ValidationExceptionField$ = [3, n0, _VEF, 0, [_N, _M], [0, 0]];
|
|
1545
|
+
var DevOpsGuruServiceException$ = [-3, _sm, "DevOpsGuruServiceException", 0, [], []];
|
|
1546
|
+
schema.TypeRegistry.for(_sm).registerError(DevOpsGuruServiceException$, DevOpsGuruServiceException);
|
|
1547
|
+
var AccountHealths = [1, n0, _AHc, 0, () => AccountHealth$];
|
|
1548
|
+
var AnomalousLogGroups = [1, n0, _ALGn, 0, () => AnomalousLogGroup$];
|
|
1549
|
+
var AnomalyResources = [1, n0, _ARn, 0, () => AnomalyResource$];
|
|
1550
|
+
var Channels = [1, n0, _Ch, 0, () => NotificationChannel$];
|
|
1551
|
+
var CloudFormationHealths = [1, n0, _CFHl, 0, () => CloudFormationHealth$];
|
|
1552
|
+
var CloudWatchMetricsDetails = [1, n0, _CWMDlo, 0, () => CloudWatchMetricsDetail$];
|
|
1553
|
+
var CloudWatchMetricsDimensions = [1, n0, _CWMDlou, 0, () => CloudWatchMetricsDimension$];
|
|
1554
|
+
var EventResources = [1, n0, _ERv, 0, () => EventResource$];
|
|
1555
|
+
var Events = [1, n0, _Ev, 0, () => Event$];
|
|
1556
|
+
var LogAnomalyClasses = [1, n0, _LACo, 0, () => LogAnomalyClass$];
|
|
1557
|
+
var LogAnomalyShowcases = [1, n0, _LAS, 0, () => LogAnomalyShowcase$];
|
|
1558
|
+
var MonitoredResourceIdentifiers = [1, n0, _MRI, 0, () => MonitoredResourceIdentifier$];
|
|
1559
|
+
var PerformanceInsightsMetricsDetails = [1, n0, _PIMDe, 0, () => PerformanceInsightsMetricsDetail$];
|
|
1545
1560
|
var PerformanceInsightsReferenceDataList = [
|
|
1546
1561
|
1,
|
|
1547
1562
|
n0,
|
|
1548
1563
|
_PIRDL,
|
|
1549
1564
|
0,
|
|
1550
|
-
() => PerformanceInsightsReferenceData
|
|
1551
|
-
];
|
|
1552
|
-
var PerformanceInsightsStats = [1, n0, _PISe, 0, () => PerformanceInsightsStat];
|
|
1553
|
-
var ProactiveAnomalies = [1, n0, _PAr, 0, () => ProactiveAnomalySummary];
|
|
1554
|
-
var ProactiveInsights = [1, n0, _PI, 0, () => ProactiveInsightSummary];
|
|
1555
|
-
var ProactiveOrganizationInsights = [
|
|
1556
|
-
1,
|
|
1557
|
-
n0,
|
|
1558
|
-
_POI,
|
|
1559
|
-
0,
|
|
1560
|
-
() => ProactiveOrganizationInsightSummary,
|
|
1565
|
+
() => PerformanceInsightsReferenceData$,
|
|
1561
1566
|
];
|
|
1562
|
-
var
|
|
1563
|
-
var
|
|
1564
|
-
var
|
|
1565
|
-
var
|
|
1567
|
+
var PerformanceInsightsStats = [1, n0, _PISe, 0, () => PerformanceInsightsStat$];
|
|
1568
|
+
var ProactiveAnomalies = [1, n0, _PAr, 0, () => ProactiveAnomalySummary$];
|
|
1569
|
+
var ProactiveInsights = [1, n0, _PI, 0, () => ProactiveInsightSummary$];
|
|
1570
|
+
var ProactiveOrganizationInsights = [1, n0, _POI, 0, () => ProactiveOrganizationInsightSummary$];
|
|
1571
|
+
var ReactiveAnomalies = [1, n0, _RAe, 0, () => ReactiveAnomalySummary$];
|
|
1572
|
+
var ReactiveInsights = [1, n0, _RIe, 0, () => ReactiveInsightSummary$];
|
|
1573
|
+
var ReactiveOrganizationInsights = [1, n0, _ROI, 0, () => ReactiveOrganizationInsightSummary$];
|
|
1574
|
+
var RecommendationRelatedAnomalies = [1, n0, _RRAe, 0, () => RecommendationRelatedAnomaly$];
|
|
1566
1575
|
var RecommendationRelatedAnomalyResources = [
|
|
1567
1576
|
1,
|
|
1568
1577
|
n0,
|
|
1569
1578
|
_RRARe,
|
|
1570
1579
|
0,
|
|
1571
|
-
() => RecommendationRelatedAnomalyResource
|
|
1580
|
+
() => RecommendationRelatedAnomalyResource$,
|
|
1572
1581
|
];
|
|
1573
1582
|
var RecommendationRelatedCloudWatchMetricsSourceDetails = [
|
|
1574
1583
|
1,
|
|
1575
1584
|
n0,
|
|
1576
1585
|
_RRCWMSDe,
|
|
1577
1586
|
0,
|
|
1578
|
-
() => RecommendationRelatedCloudWatchMetricsSourceDetail
|
|
1587
|
+
() => RecommendationRelatedCloudWatchMetricsSourceDetail$,
|
|
1579
1588
|
];
|
|
1580
1589
|
var RecommendationRelatedEventResources = [
|
|
1581
1590
|
1,
|
|
1582
1591
|
n0,
|
|
1583
1592
|
_RRERe,
|
|
1584
1593
|
0,
|
|
1585
|
-
() => RecommendationRelatedEventResource
|
|
1586
|
-
];
|
|
1587
|
-
var RecommendationRelatedEvents = [1, n0, _RREe, 0, () => RecommendationRelatedEvent];
|
|
1588
|
-
var Recommendations = [1, n0, _Re, 0, () => Recommendation];
|
|
1589
|
-
var RelatedAnomalySourceDetails = [
|
|
1590
|
-
1,
|
|
1591
|
-
n0,
|
|
1592
|
-
_RASD,
|
|
1593
|
-
0,
|
|
1594
|
-
() => RecommendationRelatedAnomalySourceDetail,
|
|
1594
|
+
() => RecommendationRelatedEventResource$,
|
|
1595
1595
|
];
|
|
1596
|
-
var
|
|
1597
|
-
var
|
|
1598
|
-
var
|
|
1599
|
-
var
|
|
1596
|
+
var RecommendationRelatedEvents = [1, n0, _RREe, 0, () => RecommendationRelatedEvent$];
|
|
1597
|
+
var Recommendations = [1, n0, _Re, 0, () => Recommendation$];
|
|
1598
|
+
var RelatedAnomalySourceDetails = [1, n0, _RASD, 0, () => RecommendationRelatedAnomalySourceDetail$];
|
|
1599
|
+
var ServiceHealths = [1, n0, _SHe, 0, () => ServiceHealth$];
|
|
1600
|
+
var ServiceResourceCosts = [1, n0, _SRCe, 0, () => ServiceResourceCost$];
|
|
1601
|
+
var TagCollectionFilters = [1, n0, _TCFa, 0, () => TagCollectionFilter$];
|
|
1602
|
+
var TagCollections = [1, n0, _TCag, 0, () => TagCollection$];
|
|
1600
1603
|
var TagCostEstimationResourceCollectionFilters = [
|
|
1601
1604
|
1,
|
|
1602
1605
|
n0,
|
|
1603
1606
|
_TCERCFa,
|
|
1604
1607
|
0,
|
|
1605
|
-
() => TagCostEstimationResourceCollectionFilter
|
|
1608
|
+
() => TagCostEstimationResourceCollectionFilter$,
|
|
1606
1609
|
];
|
|
1607
|
-
var TagHealths = [1, n0, _THa, 0, () => TagHealth];
|
|
1608
|
-
var TimestampMetricValuePairList = [1, n0, _TMVPL, 0, () => TimestampMetricValuePair];
|
|
1609
|
-
var UpdateTagCollectionFilters = [1, n0, _UTCFp, 0, () => UpdateTagCollectionFilter];
|
|
1610
|
-
var ValidationExceptionFields = [1, n0, _VEFa, 0, () => ValidationExceptionField];
|
|
1611
|
-
var AddNotificationChannel = [
|
|
1610
|
+
var TagHealths = [1, n0, _THa, 0, () => TagHealth$];
|
|
1611
|
+
var TimestampMetricValuePairList = [1, n0, _TMVPL, 0, () => TimestampMetricValuePair$];
|
|
1612
|
+
var UpdateTagCollectionFilters = [1, n0, _UTCFp, 0, () => UpdateTagCollectionFilter$];
|
|
1613
|
+
var ValidationExceptionFields = [1, n0, _VEFa, 0, () => ValidationExceptionField$];
|
|
1614
|
+
var AddNotificationChannel$ = [
|
|
1612
1615
|
9,
|
|
1613
1616
|
n0,
|
|
1614
1617
|
_ANC,
|
|
1615
1618
|
{ [_h]: ["PUT", "/channels", 200] },
|
|
1616
|
-
() => AddNotificationChannelRequest
|
|
1617
|
-
() => AddNotificationChannelResponse
|
|
1619
|
+
() => AddNotificationChannelRequest$,
|
|
1620
|
+
() => AddNotificationChannelResponse$,
|
|
1618
1621
|
];
|
|
1619
|
-
var DeleteInsight = [
|
|
1622
|
+
var DeleteInsight$ = [
|
|
1620
1623
|
9,
|
|
1621
1624
|
n0,
|
|
1622
1625
|
_DI,
|
|
1623
1626
|
{ [_h]: ["DELETE", "/insights/{Id}", 200] },
|
|
1624
|
-
() => DeleteInsightRequest
|
|
1625
|
-
() => DeleteInsightResponse
|
|
1627
|
+
() => DeleteInsightRequest$,
|
|
1628
|
+
() => DeleteInsightResponse$,
|
|
1626
1629
|
];
|
|
1627
|
-
var DescribeAccountHealth = [
|
|
1630
|
+
var DescribeAccountHealth$ = [
|
|
1628
1631
|
9,
|
|
1629
1632
|
n0,
|
|
1630
1633
|
_DAH,
|
|
1631
1634
|
{ [_h]: ["GET", "/accounts/health", 200] },
|
|
1632
|
-
() => DescribeAccountHealthRequest
|
|
1633
|
-
() => DescribeAccountHealthResponse
|
|
1635
|
+
() => DescribeAccountHealthRequest$,
|
|
1636
|
+
() => DescribeAccountHealthResponse$,
|
|
1634
1637
|
];
|
|
1635
|
-
var DescribeAccountOverview = [
|
|
1638
|
+
var DescribeAccountOverview$ = [
|
|
1636
1639
|
9,
|
|
1637
1640
|
n0,
|
|
1638
1641
|
_DAO,
|
|
1639
1642
|
{ [_h]: ["POST", "/accounts/overview", 200] },
|
|
1640
|
-
() => DescribeAccountOverviewRequest
|
|
1641
|
-
() => DescribeAccountOverviewResponse
|
|
1643
|
+
() => DescribeAccountOverviewRequest$,
|
|
1644
|
+
() => DescribeAccountOverviewResponse$,
|
|
1642
1645
|
];
|
|
1643
|
-
var DescribeAnomaly = [
|
|
1646
|
+
var DescribeAnomaly$ = [
|
|
1644
1647
|
9,
|
|
1645
1648
|
n0,
|
|
1646
1649
|
_DA,
|
|
1647
1650
|
{ [_h]: ["GET", "/anomalies/{Id}", 200] },
|
|
1648
|
-
() => DescribeAnomalyRequest
|
|
1649
|
-
() => DescribeAnomalyResponse
|
|
1651
|
+
() => DescribeAnomalyRequest$,
|
|
1652
|
+
() => DescribeAnomalyResponse$,
|
|
1650
1653
|
];
|
|
1651
|
-
var DescribeEventSourcesConfig = [
|
|
1654
|
+
var DescribeEventSourcesConfig$ = [
|
|
1652
1655
|
9,
|
|
1653
1656
|
n0,
|
|
1654
1657
|
_DESC,
|
|
1655
1658
|
{ [_h]: ["POST", "/event-sources", 200] },
|
|
1656
|
-
() => DescribeEventSourcesConfigRequest
|
|
1657
|
-
() => DescribeEventSourcesConfigResponse
|
|
1659
|
+
() => DescribeEventSourcesConfigRequest$,
|
|
1660
|
+
() => DescribeEventSourcesConfigResponse$,
|
|
1658
1661
|
];
|
|
1659
|
-
var DescribeFeedback = [
|
|
1662
|
+
var DescribeFeedback$ = [
|
|
1660
1663
|
9,
|
|
1661
1664
|
n0,
|
|
1662
1665
|
_DF,
|
|
1663
1666
|
{ [_h]: ["POST", "/feedback", 200] },
|
|
1664
|
-
() => DescribeFeedbackRequest
|
|
1665
|
-
() => DescribeFeedbackResponse
|
|
1667
|
+
() => DescribeFeedbackRequest$,
|
|
1668
|
+
() => DescribeFeedbackResponse$,
|
|
1666
1669
|
];
|
|
1667
|
-
var DescribeInsight = [
|
|
1670
|
+
var DescribeInsight$ = [
|
|
1668
1671
|
9,
|
|
1669
1672
|
n0,
|
|
1670
1673
|
_DIe,
|
|
1671
1674
|
{ [_h]: ["GET", "/insights/{Id}", 200] },
|
|
1672
|
-
() => DescribeInsightRequest
|
|
1673
|
-
() => DescribeInsightResponse
|
|
1675
|
+
() => DescribeInsightRequest$,
|
|
1676
|
+
() => DescribeInsightResponse$,
|
|
1674
1677
|
];
|
|
1675
|
-
var DescribeOrganizationHealth = [
|
|
1678
|
+
var DescribeOrganizationHealth$ = [
|
|
1676
1679
|
9,
|
|
1677
1680
|
n0,
|
|
1678
1681
|
_DOH,
|
|
1679
1682
|
{ [_h]: ["POST", "/organization/health", 200] },
|
|
1680
|
-
() => DescribeOrganizationHealthRequest
|
|
1681
|
-
() => DescribeOrganizationHealthResponse
|
|
1683
|
+
() => DescribeOrganizationHealthRequest$,
|
|
1684
|
+
() => DescribeOrganizationHealthResponse$,
|
|
1682
1685
|
];
|
|
1683
|
-
var DescribeOrganizationOverview = [
|
|
1686
|
+
var DescribeOrganizationOverview$ = [
|
|
1684
1687
|
9,
|
|
1685
1688
|
n0,
|
|
1686
1689
|
_DOO,
|
|
1687
1690
|
{ [_h]: ["POST", "/organization/overview", 200] },
|
|
1688
|
-
() => DescribeOrganizationOverviewRequest
|
|
1689
|
-
() => DescribeOrganizationOverviewResponse
|
|
1691
|
+
() => DescribeOrganizationOverviewRequest$,
|
|
1692
|
+
() => DescribeOrganizationOverviewResponse$,
|
|
1690
1693
|
];
|
|
1691
|
-
var DescribeOrganizationResourceCollectionHealth = [
|
|
1694
|
+
var DescribeOrganizationResourceCollectionHealth$ = [
|
|
1692
1695
|
9,
|
|
1693
1696
|
n0,
|
|
1694
1697
|
_DORCH,
|
|
1695
1698
|
{ [_h]: ["POST", "/organization/health/resource-collection", 200] },
|
|
1696
|
-
() => DescribeOrganizationResourceCollectionHealthRequest
|
|
1697
|
-
() => DescribeOrganizationResourceCollectionHealthResponse
|
|
1699
|
+
() => DescribeOrganizationResourceCollectionHealthRequest$,
|
|
1700
|
+
() => DescribeOrganizationResourceCollectionHealthResponse$,
|
|
1698
1701
|
];
|
|
1699
|
-
var DescribeResourceCollectionHealth = [
|
|
1702
|
+
var DescribeResourceCollectionHealth$ = [
|
|
1700
1703
|
9,
|
|
1701
1704
|
n0,
|
|
1702
1705
|
_DRCH,
|
|
1703
1706
|
{ [_h]: ["GET", "/accounts/health/resource-collection/{ResourceCollectionType}", 200] },
|
|
1704
|
-
() => DescribeResourceCollectionHealthRequest
|
|
1705
|
-
() => DescribeResourceCollectionHealthResponse
|
|
1707
|
+
() => DescribeResourceCollectionHealthRequest$,
|
|
1708
|
+
() => DescribeResourceCollectionHealthResponse$,
|
|
1706
1709
|
];
|
|
1707
|
-
var DescribeServiceIntegration = [
|
|
1710
|
+
var DescribeServiceIntegration$ = [
|
|
1708
1711
|
9,
|
|
1709
1712
|
n0,
|
|
1710
1713
|
_DSI,
|
|
1711
1714
|
{ [_h]: ["GET", "/service-integrations", 200] },
|
|
1712
|
-
() => DescribeServiceIntegrationRequest
|
|
1713
|
-
() => DescribeServiceIntegrationResponse
|
|
1715
|
+
() => DescribeServiceIntegrationRequest$,
|
|
1716
|
+
() => DescribeServiceIntegrationResponse$,
|
|
1714
1717
|
];
|
|
1715
|
-
var GetCostEstimation = [
|
|
1718
|
+
var GetCostEstimation$ = [
|
|
1716
1719
|
9,
|
|
1717
1720
|
n0,
|
|
1718
1721
|
_GCE,
|
|
1719
1722
|
{ [_h]: ["GET", "/cost-estimation", 200] },
|
|
1720
|
-
() => GetCostEstimationRequest
|
|
1721
|
-
() => GetCostEstimationResponse
|
|
1723
|
+
() => GetCostEstimationRequest$,
|
|
1724
|
+
() => GetCostEstimationResponse$,
|
|
1722
1725
|
];
|
|
1723
|
-
var GetResourceCollection = [
|
|
1726
|
+
var GetResourceCollection$ = [
|
|
1724
1727
|
9,
|
|
1725
1728
|
n0,
|
|
1726
1729
|
_GRC,
|
|
1727
1730
|
{ [_h]: ["GET", "/resource-collections/{ResourceCollectionType}", 200] },
|
|
1728
|
-
() => GetResourceCollectionRequest
|
|
1729
|
-
() => GetResourceCollectionResponse
|
|
1731
|
+
() => GetResourceCollectionRequest$,
|
|
1732
|
+
() => GetResourceCollectionResponse$,
|
|
1730
1733
|
];
|
|
1731
|
-
var ListAnomaliesForInsight = [
|
|
1734
|
+
var ListAnomaliesForInsight$ = [
|
|
1732
1735
|
9,
|
|
1733
1736
|
n0,
|
|
1734
1737
|
_LAFI,
|
|
1735
1738
|
{ [_h]: ["POST", "/anomalies/insight/{InsightId}", 200] },
|
|
1736
|
-
() => ListAnomaliesForInsightRequest
|
|
1737
|
-
() => ListAnomaliesForInsightResponse
|
|
1739
|
+
() => ListAnomaliesForInsightRequest$,
|
|
1740
|
+
() => ListAnomaliesForInsightResponse$,
|
|
1738
1741
|
];
|
|
1739
|
-
var ListAnomalousLogGroups = [
|
|
1742
|
+
var ListAnomalousLogGroups$ = [
|
|
1740
1743
|
9,
|
|
1741
1744
|
n0,
|
|
1742
1745
|
_LALG,
|
|
1743
1746
|
{ [_h]: ["POST", "/list-log-anomalies", 200] },
|
|
1744
|
-
() => ListAnomalousLogGroupsRequest
|
|
1745
|
-
() => ListAnomalousLogGroupsResponse
|
|
1747
|
+
() => ListAnomalousLogGroupsRequest$,
|
|
1748
|
+
() => ListAnomalousLogGroupsResponse$,
|
|
1746
1749
|
];
|
|
1747
|
-
var ListEvents = [
|
|
1750
|
+
var ListEvents$ = [
|
|
1748
1751
|
9,
|
|
1749
1752
|
n0,
|
|
1750
1753
|
_LE,
|
|
1751
1754
|
{ [_h]: ["POST", "/events", 200] },
|
|
1752
|
-
() => ListEventsRequest
|
|
1753
|
-
() => ListEventsResponse
|
|
1755
|
+
() => ListEventsRequest$,
|
|
1756
|
+
() => ListEventsResponse$,
|
|
1754
1757
|
];
|
|
1755
|
-
var ListInsights = [
|
|
1758
|
+
var ListInsights$ = [
|
|
1756
1759
|
9,
|
|
1757
1760
|
n0,
|
|
1758
1761
|
_LI,
|
|
1759
1762
|
{ [_h]: ["POST", "/insights", 200] },
|
|
1760
|
-
() => ListInsightsRequest
|
|
1761
|
-
() => ListInsightsResponse
|
|
1763
|
+
() => ListInsightsRequest$,
|
|
1764
|
+
() => ListInsightsResponse$,
|
|
1762
1765
|
];
|
|
1763
|
-
var ListMonitoredResources = [
|
|
1766
|
+
var ListMonitoredResources$ = [
|
|
1764
1767
|
9,
|
|
1765
1768
|
n0,
|
|
1766
1769
|
_LMR,
|
|
1767
1770
|
{ [_h]: ["POST", "/monitoredResources", 200] },
|
|
1768
|
-
() => ListMonitoredResourcesRequest
|
|
1769
|
-
() => ListMonitoredResourcesResponse
|
|
1771
|
+
() => ListMonitoredResourcesRequest$,
|
|
1772
|
+
() => ListMonitoredResourcesResponse$,
|
|
1770
1773
|
];
|
|
1771
|
-
var ListNotificationChannels = [
|
|
1774
|
+
var ListNotificationChannels$ = [
|
|
1772
1775
|
9,
|
|
1773
1776
|
n0,
|
|
1774
1777
|
_LNC,
|
|
1775
1778
|
{ [_h]: ["POST", "/channels", 200] },
|
|
1776
|
-
() => ListNotificationChannelsRequest
|
|
1777
|
-
() => ListNotificationChannelsResponse
|
|
1779
|
+
() => ListNotificationChannelsRequest$,
|
|
1780
|
+
() => ListNotificationChannelsResponse$,
|
|
1778
1781
|
];
|
|
1779
|
-
var ListOrganizationInsights = [
|
|
1782
|
+
var ListOrganizationInsights$ = [
|
|
1780
1783
|
9,
|
|
1781
1784
|
n0,
|
|
1782
1785
|
_LOI,
|
|
1783
1786
|
{ [_h]: ["POST", "/organization/insights", 200] },
|
|
1784
|
-
() => ListOrganizationInsightsRequest
|
|
1785
|
-
() => ListOrganizationInsightsResponse
|
|
1787
|
+
() => ListOrganizationInsightsRequest$,
|
|
1788
|
+
() => ListOrganizationInsightsResponse$,
|
|
1786
1789
|
];
|
|
1787
|
-
var ListRecommendations = [
|
|
1790
|
+
var ListRecommendations$ = [
|
|
1788
1791
|
9,
|
|
1789
1792
|
n0,
|
|
1790
1793
|
_LR,
|
|
1791
1794
|
{ [_h]: ["POST", "/recommendations", 200] },
|
|
1792
|
-
() => ListRecommendationsRequest
|
|
1793
|
-
() => ListRecommendationsResponse
|
|
1795
|
+
() => ListRecommendationsRequest$,
|
|
1796
|
+
() => ListRecommendationsResponse$,
|
|
1794
1797
|
];
|
|
1795
|
-
var PutFeedback = [
|
|
1798
|
+
var PutFeedback$ = [
|
|
1796
1799
|
9,
|
|
1797
1800
|
n0,
|
|
1798
1801
|
_PF,
|
|
1799
1802
|
{ [_h]: ["PUT", "/feedback", 200] },
|
|
1800
|
-
() => PutFeedbackRequest
|
|
1801
|
-
() => PutFeedbackResponse
|
|
1803
|
+
() => PutFeedbackRequest$,
|
|
1804
|
+
() => PutFeedbackResponse$,
|
|
1802
1805
|
];
|
|
1803
|
-
var RemoveNotificationChannel = [
|
|
1806
|
+
var RemoveNotificationChannel$ = [
|
|
1804
1807
|
9,
|
|
1805
1808
|
n0,
|
|
1806
1809
|
_RNC,
|
|
1807
1810
|
{ [_h]: ["DELETE", "/channels/{Id}", 200] },
|
|
1808
|
-
() => RemoveNotificationChannelRequest
|
|
1809
|
-
() => RemoveNotificationChannelResponse
|
|
1811
|
+
() => RemoveNotificationChannelRequest$,
|
|
1812
|
+
() => RemoveNotificationChannelResponse$,
|
|
1810
1813
|
];
|
|
1811
|
-
var SearchInsights = [
|
|
1814
|
+
var SearchInsights$ = [
|
|
1812
1815
|
9,
|
|
1813
1816
|
n0,
|
|
1814
1817
|
_SIe,
|
|
1815
1818
|
{ [_h]: ["POST", "/insights/search", 200] },
|
|
1816
|
-
() => SearchInsightsRequest
|
|
1817
|
-
() => SearchInsightsResponse
|
|
1819
|
+
() => SearchInsightsRequest$,
|
|
1820
|
+
() => SearchInsightsResponse$,
|
|
1818
1821
|
];
|
|
1819
|
-
var SearchOrganizationInsights = [
|
|
1822
|
+
var SearchOrganizationInsights$ = [
|
|
1820
1823
|
9,
|
|
1821
1824
|
n0,
|
|
1822
1825
|
_SOI,
|
|
1823
1826
|
{ [_h]: ["POST", "/organization/insights/search", 200] },
|
|
1824
|
-
() => SearchOrganizationInsightsRequest
|
|
1825
|
-
() => SearchOrganizationInsightsResponse
|
|
1827
|
+
() => SearchOrganizationInsightsRequest$,
|
|
1828
|
+
() => SearchOrganizationInsightsResponse$,
|
|
1826
1829
|
];
|
|
1827
|
-
var StartCostEstimation = [
|
|
1830
|
+
var StartCostEstimation$ = [
|
|
1828
1831
|
9,
|
|
1829
1832
|
n0,
|
|
1830
1833
|
_SCE,
|
|
1831
1834
|
{ [_h]: ["PUT", "/cost-estimation", 200] },
|
|
1832
|
-
() => StartCostEstimationRequest
|
|
1833
|
-
() => StartCostEstimationResponse
|
|
1835
|
+
() => StartCostEstimationRequest$,
|
|
1836
|
+
() => StartCostEstimationResponse$,
|
|
1834
1837
|
];
|
|
1835
|
-
var UpdateEventSourcesConfig = [
|
|
1838
|
+
var UpdateEventSourcesConfig$ = [
|
|
1836
1839
|
9,
|
|
1837
1840
|
n0,
|
|
1838
1841
|
_UESC,
|
|
1839
1842
|
{ [_h]: ["PUT", "/event-sources", 200] },
|
|
1840
|
-
() => UpdateEventSourcesConfigRequest
|
|
1841
|
-
() => UpdateEventSourcesConfigResponse
|
|
1843
|
+
() => UpdateEventSourcesConfigRequest$,
|
|
1844
|
+
() => UpdateEventSourcesConfigResponse$,
|
|
1842
1845
|
];
|
|
1843
|
-
var UpdateResourceCollection = [
|
|
1846
|
+
var UpdateResourceCollection$ = [
|
|
1844
1847
|
9,
|
|
1845
1848
|
n0,
|
|
1846
1849
|
_URC,
|
|
1847
1850
|
{ [_h]: ["PUT", "/resource-collections", 200] },
|
|
1848
|
-
() => UpdateResourceCollectionRequest
|
|
1849
|
-
() => UpdateResourceCollectionResponse
|
|
1851
|
+
() => UpdateResourceCollectionRequest$,
|
|
1852
|
+
() => UpdateResourceCollectionResponse$,
|
|
1850
1853
|
];
|
|
1851
|
-
var UpdateServiceIntegration = [
|
|
1854
|
+
var UpdateServiceIntegration$ = [
|
|
1852
1855
|
9,
|
|
1853
1856
|
n0,
|
|
1854
1857
|
_USI,
|
|
1855
1858
|
{ [_h]: ["PUT", "/service-integrations", 200] },
|
|
1856
|
-
() => UpdateServiceIntegrationRequest
|
|
1857
|
-
() => UpdateServiceIntegrationResponse
|
|
1859
|
+
() => UpdateServiceIntegrationRequest$,
|
|
1860
|
+
() => UpdateServiceIntegrationResponse$,
|
|
1858
1861
|
];
|
|
1859
1862
|
|
|
1860
1863
|
class AddNotificationChannelCommand extends smithyClient.Command
|
|
@@ -1865,7 +1868,7 @@ class AddNotificationChannelCommand extends smithyClient.Command
|
|
|
1865
1868
|
})
|
|
1866
1869
|
.s("CapstoneControlPlaneService", "AddNotificationChannel", {})
|
|
1867
1870
|
.n("DevOpsGuruClient", "AddNotificationChannelCommand")
|
|
1868
|
-
.sc(AddNotificationChannel)
|
|
1871
|
+
.sc(AddNotificationChannel$)
|
|
1869
1872
|
.build() {
|
|
1870
1873
|
}
|
|
1871
1874
|
|
|
@@ -1877,7 +1880,7 @@ class DeleteInsightCommand extends smithyClient.Command
|
|
|
1877
1880
|
})
|
|
1878
1881
|
.s("CapstoneControlPlaneService", "DeleteInsight", {})
|
|
1879
1882
|
.n("DevOpsGuruClient", "DeleteInsightCommand")
|
|
1880
|
-
.sc(DeleteInsight)
|
|
1883
|
+
.sc(DeleteInsight$)
|
|
1881
1884
|
.build() {
|
|
1882
1885
|
}
|
|
1883
1886
|
|
|
@@ -1889,7 +1892,7 @@ class DescribeAccountHealthCommand extends smithyClient.Command
|
|
|
1889
1892
|
})
|
|
1890
1893
|
.s("CapstoneControlPlaneService", "DescribeAccountHealth", {})
|
|
1891
1894
|
.n("DevOpsGuruClient", "DescribeAccountHealthCommand")
|
|
1892
|
-
.sc(DescribeAccountHealth)
|
|
1895
|
+
.sc(DescribeAccountHealth$)
|
|
1893
1896
|
.build() {
|
|
1894
1897
|
}
|
|
1895
1898
|
|
|
@@ -1901,7 +1904,7 @@ class DescribeAccountOverviewCommand extends smithyClient.Command
|
|
|
1901
1904
|
})
|
|
1902
1905
|
.s("CapstoneControlPlaneService", "DescribeAccountOverview", {})
|
|
1903
1906
|
.n("DevOpsGuruClient", "DescribeAccountOverviewCommand")
|
|
1904
|
-
.sc(DescribeAccountOverview)
|
|
1907
|
+
.sc(DescribeAccountOverview$)
|
|
1905
1908
|
.build() {
|
|
1906
1909
|
}
|
|
1907
1910
|
|
|
@@ -1913,7 +1916,7 @@ class DescribeAnomalyCommand extends smithyClient.Command
|
|
|
1913
1916
|
})
|
|
1914
1917
|
.s("CapstoneControlPlaneService", "DescribeAnomaly", {})
|
|
1915
1918
|
.n("DevOpsGuruClient", "DescribeAnomalyCommand")
|
|
1916
|
-
.sc(DescribeAnomaly)
|
|
1919
|
+
.sc(DescribeAnomaly$)
|
|
1917
1920
|
.build() {
|
|
1918
1921
|
}
|
|
1919
1922
|
|
|
@@ -1925,7 +1928,7 @@ class DescribeEventSourcesConfigCommand extends smithyClient.Command
|
|
|
1925
1928
|
})
|
|
1926
1929
|
.s("CapstoneControlPlaneService", "DescribeEventSourcesConfig", {})
|
|
1927
1930
|
.n("DevOpsGuruClient", "DescribeEventSourcesConfigCommand")
|
|
1928
|
-
.sc(DescribeEventSourcesConfig)
|
|
1931
|
+
.sc(DescribeEventSourcesConfig$)
|
|
1929
1932
|
.build() {
|
|
1930
1933
|
}
|
|
1931
1934
|
|
|
@@ -1937,7 +1940,7 @@ class DescribeFeedbackCommand extends smithyClient.Command
|
|
|
1937
1940
|
})
|
|
1938
1941
|
.s("CapstoneControlPlaneService", "DescribeFeedback", {})
|
|
1939
1942
|
.n("DevOpsGuruClient", "DescribeFeedbackCommand")
|
|
1940
|
-
.sc(DescribeFeedback)
|
|
1943
|
+
.sc(DescribeFeedback$)
|
|
1941
1944
|
.build() {
|
|
1942
1945
|
}
|
|
1943
1946
|
|
|
@@ -1949,7 +1952,7 @@ class DescribeInsightCommand extends smithyClient.Command
|
|
|
1949
1952
|
})
|
|
1950
1953
|
.s("CapstoneControlPlaneService", "DescribeInsight", {})
|
|
1951
1954
|
.n("DevOpsGuruClient", "DescribeInsightCommand")
|
|
1952
|
-
.sc(DescribeInsight)
|
|
1955
|
+
.sc(DescribeInsight$)
|
|
1953
1956
|
.build() {
|
|
1954
1957
|
}
|
|
1955
1958
|
|
|
@@ -1961,7 +1964,7 @@ class DescribeOrganizationHealthCommand extends smithyClient.Command
|
|
|
1961
1964
|
})
|
|
1962
1965
|
.s("CapstoneControlPlaneService", "DescribeOrganizationHealth", {})
|
|
1963
1966
|
.n("DevOpsGuruClient", "DescribeOrganizationHealthCommand")
|
|
1964
|
-
.sc(DescribeOrganizationHealth)
|
|
1967
|
+
.sc(DescribeOrganizationHealth$)
|
|
1965
1968
|
.build() {
|
|
1966
1969
|
}
|
|
1967
1970
|
|
|
@@ -1973,7 +1976,7 @@ class DescribeOrganizationOverviewCommand extends smithyClient.Command
|
|
|
1973
1976
|
})
|
|
1974
1977
|
.s("CapstoneControlPlaneService", "DescribeOrganizationOverview", {})
|
|
1975
1978
|
.n("DevOpsGuruClient", "DescribeOrganizationOverviewCommand")
|
|
1976
|
-
.sc(DescribeOrganizationOverview)
|
|
1979
|
+
.sc(DescribeOrganizationOverview$)
|
|
1977
1980
|
.build() {
|
|
1978
1981
|
}
|
|
1979
1982
|
|
|
@@ -1985,7 +1988,7 @@ class DescribeOrganizationResourceCollectionHealthCommand extends smithyClient.C
|
|
|
1985
1988
|
})
|
|
1986
1989
|
.s("CapstoneControlPlaneService", "DescribeOrganizationResourceCollectionHealth", {})
|
|
1987
1990
|
.n("DevOpsGuruClient", "DescribeOrganizationResourceCollectionHealthCommand")
|
|
1988
|
-
.sc(DescribeOrganizationResourceCollectionHealth)
|
|
1991
|
+
.sc(DescribeOrganizationResourceCollectionHealth$)
|
|
1989
1992
|
.build() {
|
|
1990
1993
|
}
|
|
1991
1994
|
|
|
@@ -1997,7 +2000,7 @@ class DescribeResourceCollectionHealthCommand extends smithyClient.Command
|
|
|
1997
2000
|
})
|
|
1998
2001
|
.s("CapstoneControlPlaneService", "DescribeResourceCollectionHealth", {})
|
|
1999
2002
|
.n("DevOpsGuruClient", "DescribeResourceCollectionHealthCommand")
|
|
2000
|
-
.sc(DescribeResourceCollectionHealth)
|
|
2003
|
+
.sc(DescribeResourceCollectionHealth$)
|
|
2001
2004
|
.build() {
|
|
2002
2005
|
}
|
|
2003
2006
|
|
|
@@ -2009,7 +2012,7 @@ class DescribeServiceIntegrationCommand extends smithyClient.Command
|
|
|
2009
2012
|
})
|
|
2010
2013
|
.s("CapstoneControlPlaneService", "DescribeServiceIntegration", {})
|
|
2011
2014
|
.n("DevOpsGuruClient", "DescribeServiceIntegrationCommand")
|
|
2012
|
-
.sc(DescribeServiceIntegration)
|
|
2015
|
+
.sc(DescribeServiceIntegration$)
|
|
2013
2016
|
.build() {
|
|
2014
2017
|
}
|
|
2015
2018
|
|
|
@@ -2021,7 +2024,7 @@ class GetCostEstimationCommand extends smithyClient.Command
|
|
|
2021
2024
|
})
|
|
2022
2025
|
.s("CapstoneControlPlaneService", "GetCostEstimation", {})
|
|
2023
2026
|
.n("DevOpsGuruClient", "GetCostEstimationCommand")
|
|
2024
|
-
.sc(GetCostEstimation)
|
|
2027
|
+
.sc(GetCostEstimation$)
|
|
2025
2028
|
.build() {
|
|
2026
2029
|
}
|
|
2027
2030
|
|
|
@@ -2033,7 +2036,7 @@ class GetResourceCollectionCommand extends smithyClient.Command
|
|
|
2033
2036
|
})
|
|
2034
2037
|
.s("CapstoneControlPlaneService", "GetResourceCollection", {})
|
|
2035
2038
|
.n("DevOpsGuruClient", "GetResourceCollectionCommand")
|
|
2036
|
-
.sc(GetResourceCollection)
|
|
2039
|
+
.sc(GetResourceCollection$)
|
|
2037
2040
|
.build() {
|
|
2038
2041
|
}
|
|
2039
2042
|
|
|
@@ -2045,7 +2048,7 @@ class ListAnomaliesForInsightCommand extends smithyClient.Command
|
|
|
2045
2048
|
})
|
|
2046
2049
|
.s("CapstoneControlPlaneService", "ListAnomaliesForInsight", {})
|
|
2047
2050
|
.n("DevOpsGuruClient", "ListAnomaliesForInsightCommand")
|
|
2048
|
-
.sc(ListAnomaliesForInsight)
|
|
2051
|
+
.sc(ListAnomaliesForInsight$)
|
|
2049
2052
|
.build() {
|
|
2050
2053
|
}
|
|
2051
2054
|
|
|
@@ -2057,7 +2060,7 @@ class ListAnomalousLogGroupsCommand extends smithyClient.Command
|
|
|
2057
2060
|
})
|
|
2058
2061
|
.s("CapstoneControlPlaneService", "ListAnomalousLogGroups", {})
|
|
2059
2062
|
.n("DevOpsGuruClient", "ListAnomalousLogGroupsCommand")
|
|
2060
|
-
.sc(ListAnomalousLogGroups)
|
|
2063
|
+
.sc(ListAnomalousLogGroups$)
|
|
2061
2064
|
.build() {
|
|
2062
2065
|
}
|
|
2063
2066
|
|
|
@@ -2069,7 +2072,7 @@ class ListEventsCommand extends smithyClient.Command
|
|
|
2069
2072
|
})
|
|
2070
2073
|
.s("CapstoneControlPlaneService", "ListEvents", {})
|
|
2071
2074
|
.n("DevOpsGuruClient", "ListEventsCommand")
|
|
2072
|
-
.sc(ListEvents)
|
|
2075
|
+
.sc(ListEvents$)
|
|
2073
2076
|
.build() {
|
|
2074
2077
|
}
|
|
2075
2078
|
|
|
@@ -2081,7 +2084,7 @@ class ListInsightsCommand extends smithyClient.Command
|
|
|
2081
2084
|
})
|
|
2082
2085
|
.s("CapstoneControlPlaneService", "ListInsights", {})
|
|
2083
2086
|
.n("DevOpsGuruClient", "ListInsightsCommand")
|
|
2084
|
-
.sc(ListInsights)
|
|
2087
|
+
.sc(ListInsights$)
|
|
2085
2088
|
.build() {
|
|
2086
2089
|
}
|
|
2087
2090
|
|
|
@@ -2093,7 +2096,7 @@ class ListMonitoredResourcesCommand extends smithyClient.Command
|
|
|
2093
2096
|
})
|
|
2094
2097
|
.s("CapstoneControlPlaneService", "ListMonitoredResources", {})
|
|
2095
2098
|
.n("DevOpsGuruClient", "ListMonitoredResourcesCommand")
|
|
2096
|
-
.sc(ListMonitoredResources)
|
|
2099
|
+
.sc(ListMonitoredResources$)
|
|
2097
2100
|
.build() {
|
|
2098
2101
|
}
|
|
2099
2102
|
|
|
@@ -2105,7 +2108,7 @@ class ListNotificationChannelsCommand extends smithyClient.Command
|
|
|
2105
2108
|
})
|
|
2106
2109
|
.s("CapstoneControlPlaneService", "ListNotificationChannels", {})
|
|
2107
2110
|
.n("DevOpsGuruClient", "ListNotificationChannelsCommand")
|
|
2108
|
-
.sc(ListNotificationChannels)
|
|
2111
|
+
.sc(ListNotificationChannels$)
|
|
2109
2112
|
.build() {
|
|
2110
2113
|
}
|
|
2111
2114
|
|
|
@@ -2117,7 +2120,7 @@ class ListOrganizationInsightsCommand extends smithyClient.Command
|
|
|
2117
2120
|
})
|
|
2118
2121
|
.s("CapstoneControlPlaneService", "ListOrganizationInsights", {})
|
|
2119
2122
|
.n("DevOpsGuruClient", "ListOrganizationInsightsCommand")
|
|
2120
|
-
.sc(ListOrganizationInsights)
|
|
2123
|
+
.sc(ListOrganizationInsights$)
|
|
2121
2124
|
.build() {
|
|
2122
2125
|
}
|
|
2123
2126
|
|
|
@@ -2129,7 +2132,7 @@ class ListRecommendationsCommand extends smithyClient.Command
|
|
|
2129
2132
|
})
|
|
2130
2133
|
.s("CapstoneControlPlaneService", "ListRecommendations", {})
|
|
2131
2134
|
.n("DevOpsGuruClient", "ListRecommendationsCommand")
|
|
2132
|
-
.sc(ListRecommendations)
|
|
2135
|
+
.sc(ListRecommendations$)
|
|
2133
2136
|
.build() {
|
|
2134
2137
|
}
|
|
2135
2138
|
|
|
@@ -2141,7 +2144,7 @@ class PutFeedbackCommand extends smithyClient.Command
|
|
|
2141
2144
|
})
|
|
2142
2145
|
.s("CapstoneControlPlaneService", "PutFeedback", {})
|
|
2143
2146
|
.n("DevOpsGuruClient", "PutFeedbackCommand")
|
|
2144
|
-
.sc(PutFeedback)
|
|
2147
|
+
.sc(PutFeedback$)
|
|
2145
2148
|
.build() {
|
|
2146
2149
|
}
|
|
2147
2150
|
|
|
@@ -2153,7 +2156,7 @@ class RemoveNotificationChannelCommand extends smithyClient.Command
|
|
|
2153
2156
|
})
|
|
2154
2157
|
.s("CapstoneControlPlaneService", "RemoveNotificationChannel", {})
|
|
2155
2158
|
.n("DevOpsGuruClient", "RemoveNotificationChannelCommand")
|
|
2156
|
-
.sc(RemoveNotificationChannel)
|
|
2159
|
+
.sc(RemoveNotificationChannel$)
|
|
2157
2160
|
.build() {
|
|
2158
2161
|
}
|
|
2159
2162
|
|
|
@@ -2165,7 +2168,7 @@ class SearchInsightsCommand extends smithyClient.Command
|
|
|
2165
2168
|
})
|
|
2166
2169
|
.s("CapstoneControlPlaneService", "SearchInsights", {})
|
|
2167
2170
|
.n("DevOpsGuruClient", "SearchInsightsCommand")
|
|
2168
|
-
.sc(SearchInsights)
|
|
2171
|
+
.sc(SearchInsights$)
|
|
2169
2172
|
.build() {
|
|
2170
2173
|
}
|
|
2171
2174
|
|
|
@@ -2177,7 +2180,7 @@ class SearchOrganizationInsightsCommand extends smithyClient.Command
|
|
|
2177
2180
|
})
|
|
2178
2181
|
.s("CapstoneControlPlaneService", "SearchOrganizationInsights", {})
|
|
2179
2182
|
.n("DevOpsGuruClient", "SearchOrganizationInsightsCommand")
|
|
2180
|
-
.sc(SearchOrganizationInsights)
|
|
2183
|
+
.sc(SearchOrganizationInsights$)
|
|
2181
2184
|
.build() {
|
|
2182
2185
|
}
|
|
2183
2186
|
|
|
@@ -2189,7 +2192,7 @@ class StartCostEstimationCommand extends smithyClient.Command
|
|
|
2189
2192
|
})
|
|
2190
2193
|
.s("CapstoneControlPlaneService", "StartCostEstimation", {})
|
|
2191
2194
|
.n("DevOpsGuruClient", "StartCostEstimationCommand")
|
|
2192
|
-
.sc(StartCostEstimation)
|
|
2195
|
+
.sc(StartCostEstimation$)
|
|
2193
2196
|
.build() {
|
|
2194
2197
|
}
|
|
2195
2198
|
|
|
@@ -2201,7 +2204,7 @@ class UpdateEventSourcesConfigCommand extends smithyClient.Command
|
|
|
2201
2204
|
})
|
|
2202
2205
|
.s("CapstoneControlPlaneService", "UpdateEventSourcesConfig", {})
|
|
2203
2206
|
.n("DevOpsGuruClient", "UpdateEventSourcesConfigCommand")
|
|
2204
|
-
.sc(UpdateEventSourcesConfig)
|
|
2207
|
+
.sc(UpdateEventSourcesConfig$)
|
|
2205
2208
|
.build() {
|
|
2206
2209
|
}
|
|
2207
2210
|
|
|
@@ -2213,7 +2216,7 @@ class UpdateResourceCollectionCommand extends smithyClient.Command
|
|
|
2213
2216
|
})
|
|
2214
2217
|
.s("CapstoneControlPlaneService", "UpdateResourceCollection", {})
|
|
2215
2218
|
.n("DevOpsGuruClient", "UpdateResourceCollectionCommand")
|
|
2216
|
-
.sc(UpdateResourceCollection)
|
|
2219
|
+
.sc(UpdateResourceCollection$)
|
|
2217
2220
|
.build() {
|
|
2218
2221
|
}
|
|
2219
2222
|
|
|
@@ -2225,7 +2228,7 @@ class UpdateServiceIntegrationCommand extends smithyClient.Command
|
|
|
2225
2228
|
})
|
|
2226
2229
|
.s("CapstoneControlPlaneService", "UpdateServiceIntegration", {})
|
|
2227
2230
|
.n("DevOpsGuruClient", "UpdateServiceIntegrationCommand")
|
|
2228
|
-
.sc(UpdateServiceIntegration)
|
|
2231
|
+
.sc(UpdateServiceIntegration$)
|
|
2229
2232
|
.build() {
|
|
2230
2233
|
}
|
|
2231
2234
|
|
|
@@ -2495,72 +2498,265 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2495
2498
|
enumerable: true,
|
|
2496
2499
|
get: function () { return smithyClient.Client; }
|
|
2497
2500
|
});
|
|
2498
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
2501
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2502
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2503
|
+
exports.AccountHealth$ = AccountHealth$;
|
|
2504
|
+
exports.AccountInsightHealth$ = AccountInsightHealth$;
|
|
2505
|
+
exports.AddNotificationChannel$ = AddNotificationChannel$;
|
|
2499
2506
|
exports.AddNotificationChannelCommand = AddNotificationChannelCommand;
|
|
2507
|
+
exports.AddNotificationChannelRequest$ = AddNotificationChannelRequest$;
|
|
2508
|
+
exports.AddNotificationChannelResponse$ = AddNotificationChannelResponse$;
|
|
2509
|
+
exports.AmazonCodeGuruProfilerIntegration$ = AmazonCodeGuruProfilerIntegration$;
|
|
2510
|
+
exports.AnomalousLogGroup$ = AnomalousLogGroup$;
|
|
2511
|
+
exports.AnomalyReportedTimeRange$ = AnomalyReportedTimeRange$;
|
|
2512
|
+
exports.AnomalyResource$ = AnomalyResource$;
|
|
2500
2513
|
exports.AnomalySeverity = AnomalySeverity;
|
|
2514
|
+
exports.AnomalySourceDetails$ = AnomalySourceDetails$;
|
|
2515
|
+
exports.AnomalySourceMetadata$ = AnomalySourceMetadata$;
|
|
2501
2516
|
exports.AnomalyStatus = AnomalyStatus;
|
|
2517
|
+
exports.AnomalyTimeRange$ = AnomalyTimeRange$;
|
|
2502
2518
|
exports.AnomalyType = AnomalyType;
|
|
2519
|
+
exports.CloudFormationCollection$ = CloudFormationCollection$;
|
|
2520
|
+
exports.CloudFormationCollectionFilter$ = CloudFormationCollectionFilter$;
|
|
2521
|
+
exports.CloudFormationCostEstimationResourceCollectionFilter$ = CloudFormationCostEstimationResourceCollectionFilter$;
|
|
2522
|
+
exports.CloudFormationHealth$ = CloudFormationHealth$;
|
|
2503
2523
|
exports.CloudWatchMetricDataStatusCode = CloudWatchMetricDataStatusCode;
|
|
2524
|
+
exports.CloudWatchMetricsDataSummary$ = CloudWatchMetricsDataSummary$;
|
|
2525
|
+
exports.CloudWatchMetricsDetail$ = CloudWatchMetricsDetail$;
|
|
2526
|
+
exports.CloudWatchMetricsDimension$ = CloudWatchMetricsDimension$;
|
|
2504
2527
|
exports.CloudWatchMetricsStat = CloudWatchMetricsStat;
|
|
2505
|
-
exports.ConflictException = ConflictException
|
|
2528
|
+
exports.ConflictException = ConflictException;
|
|
2529
|
+
exports.ConflictException$ = ConflictException$;
|
|
2530
|
+
exports.CostEstimationResourceCollectionFilter$ = CostEstimationResourceCollectionFilter$;
|
|
2506
2531
|
exports.CostEstimationServiceResourceState = CostEstimationServiceResourceState;
|
|
2507
2532
|
exports.CostEstimationStatus = CostEstimationStatus;
|
|
2533
|
+
exports.CostEstimationTimeRange$ = CostEstimationTimeRange$;
|
|
2534
|
+
exports.DeleteInsight$ = DeleteInsight$;
|
|
2508
2535
|
exports.DeleteInsightCommand = DeleteInsightCommand;
|
|
2536
|
+
exports.DeleteInsightRequest$ = DeleteInsightRequest$;
|
|
2537
|
+
exports.DeleteInsightResponse$ = DeleteInsightResponse$;
|
|
2538
|
+
exports.DescribeAccountHealth$ = DescribeAccountHealth$;
|
|
2509
2539
|
exports.DescribeAccountHealthCommand = DescribeAccountHealthCommand;
|
|
2540
|
+
exports.DescribeAccountHealthRequest$ = DescribeAccountHealthRequest$;
|
|
2541
|
+
exports.DescribeAccountHealthResponse$ = DescribeAccountHealthResponse$;
|
|
2542
|
+
exports.DescribeAccountOverview$ = DescribeAccountOverview$;
|
|
2510
2543
|
exports.DescribeAccountOverviewCommand = DescribeAccountOverviewCommand;
|
|
2544
|
+
exports.DescribeAccountOverviewRequest$ = DescribeAccountOverviewRequest$;
|
|
2545
|
+
exports.DescribeAccountOverviewResponse$ = DescribeAccountOverviewResponse$;
|
|
2546
|
+
exports.DescribeAnomaly$ = DescribeAnomaly$;
|
|
2511
2547
|
exports.DescribeAnomalyCommand = DescribeAnomalyCommand;
|
|
2548
|
+
exports.DescribeAnomalyRequest$ = DescribeAnomalyRequest$;
|
|
2549
|
+
exports.DescribeAnomalyResponse$ = DescribeAnomalyResponse$;
|
|
2550
|
+
exports.DescribeEventSourcesConfig$ = DescribeEventSourcesConfig$;
|
|
2512
2551
|
exports.DescribeEventSourcesConfigCommand = DescribeEventSourcesConfigCommand;
|
|
2552
|
+
exports.DescribeEventSourcesConfigRequest$ = DescribeEventSourcesConfigRequest$;
|
|
2553
|
+
exports.DescribeEventSourcesConfigResponse$ = DescribeEventSourcesConfigResponse$;
|
|
2554
|
+
exports.DescribeFeedback$ = DescribeFeedback$;
|
|
2513
2555
|
exports.DescribeFeedbackCommand = DescribeFeedbackCommand;
|
|
2556
|
+
exports.DescribeFeedbackRequest$ = DescribeFeedbackRequest$;
|
|
2557
|
+
exports.DescribeFeedbackResponse$ = DescribeFeedbackResponse$;
|
|
2558
|
+
exports.DescribeInsight$ = DescribeInsight$;
|
|
2514
2559
|
exports.DescribeInsightCommand = DescribeInsightCommand;
|
|
2560
|
+
exports.DescribeInsightRequest$ = DescribeInsightRequest$;
|
|
2561
|
+
exports.DescribeInsightResponse$ = DescribeInsightResponse$;
|
|
2562
|
+
exports.DescribeOrganizationHealth$ = DescribeOrganizationHealth$;
|
|
2515
2563
|
exports.DescribeOrganizationHealthCommand = DescribeOrganizationHealthCommand;
|
|
2564
|
+
exports.DescribeOrganizationHealthRequest$ = DescribeOrganizationHealthRequest$;
|
|
2565
|
+
exports.DescribeOrganizationHealthResponse$ = DescribeOrganizationHealthResponse$;
|
|
2566
|
+
exports.DescribeOrganizationOverview$ = DescribeOrganizationOverview$;
|
|
2516
2567
|
exports.DescribeOrganizationOverviewCommand = DescribeOrganizationOverviewCommand;
|
|
2568
|
+
exports.DescribeOrganizationOverviewRequest$ = DescribeOrganizationOverviewRequest$;
|
|
2569
|
+
exports.DescribeOrganizationOverviewResponse$ = DescribeOrganizationOverviewResponse$;
|
|
2570
|
+
exports.DescribeOrganizationResourceCollectionHealth$ = DescribeOrganizationResourceCollectionHealth$;
|
|
2517
2571
|
exports.DescribeOrganizationResourceCollectionHealthCommand = DescribeOrganizationResourceCollectionHealthCommand;
|
|
2572
|
+
exports.DescribeOrganizationResourceCollectionHealthRequest$ = DescribeOrganizationResourceCollectionHealthRequest$;
|
|
2573
|
+
exports.DescribeOrganizationResourceCollectionHealthResponse$ = DescribeOrganizationResourceCollectionHealthResponse$;
|
|
2574
|
+
exports.DescribeResourceCollectionHealth$ = DescribeResourceCollectionHealth$;
|
|
2518
2575
|
exports.DescribeResourceCollectionHealthCommand = DescribeResourceCollectionHealthCommand;
|
|
2576
|
+
exports.DescribeResourceCollectionHealthRequest$ = DescribeResourceCollectionHealthRequest$;
|
|
2577
|
+
exports.DescribeResourceCollectionHealthResponse$ = DescribeResourceCollectionHealthResponse$;
|
|
2578
|
+
exports.DescribeServiceIntegration$ = DescribeServiceIntegration$;
|
|
2519
2579
|
exports.DescribeServiceIntegrationCommand = DescribeServiceIntegrationCommand;
|
|
2580
|
+
exports.DescribeServiceIntegrationRequest$ = DescribeServiceIntegrationRequest$;
|
|
2581
|
+
exports.DescribeServiceIntegrationResponse$ = DescribeServiceIntegrationResponse$;
|
|
2520
2582
|
exports.DevOpsGuru = DevOpsGuru;
|
|
2521
2583
|
exports.DevOpsGuruClient = DevOpsGuruClient;
|
|
2522
|
-
exports.DevOpsGuruServiceException = DevOpsGuruServiceException
|
|
2584
|
+
exports.DevOpsGuruServiceException = DevOpsGuruServiceException;
|
|
2585
|
+
exports.DevOpsGuruServiceException$ = DevOpsGuruServiceException$;
|
|
2586
|
+
exports.EndTimeRange$ = EndTimeRange$;
|
|
2587
|
+
exports.Event$ = Event$;
|
|
2523
2588
|
exports.EventClass = EventClass;
|
|
2524
2589
|
exports.EventDataSource = EventDataSource;
|
|
2590
|
+
exports.EventResource$ = EventResource$;
|
|
2525
2591
|
exports.EventSourceOptInStatus = EventSourceOptInStatus;
|
|
2592
|
+
exports.EventSourcesConfig$ = EventSourcesConfig$;
|
|
2593
|
+
exports.EventTimeRange$ = EventTimeRange$;
|
|
2594
|
+
exports.GetCostEstimation$ = GetCostEstimation$;
|
|
2526
2595
|
exports.GetCostEstimationCommand = GetCostEstimationCommand;
|
|
2596
|
+
exports.GetCostEstimationRequest$ = GetCostEstimationRequest$;
|
|
2597
|
+
exports.GetCostEstimationResponse$ = GetCostEstimationResponse$;
|
|
2598
|
+
exports.GetResourceCollection$ = GetResourceCollection$;
|
|
2527
2599
|
exports.GetResourceCollectionCommand = GetResourceCollectionCommand;
|
|
2600
|
+
exports.GetResourceCollectionRequest$ = GetResourceCollectionRequest$;
|
|
2601
|
+
exports.GetResourceCollectionResponse$ = GetResourceCollectionResponse$;
|
|
2602
|
+
exports.InsightFeedback$ = InsightFeedback$;
|
|
2528
2603
|
exports.InsightFeedbackOption = InsightFeedbackOption;
|
|
2604
|
+
exports.InsightHealth$ = InsightHealth$;
|
|
2529
2605
|
exports.InsightSeverity = InsightSeverity;
|
|
2530
2606
|
exports.InsightStatus = InsightStatus;
|
|
2607
|
+
exports.InsightTimeRange$ = InsightTimeRange$;
|
|
2531
2608
|
exports.InsightType = InsightType;
|
|
2532
|
-
exports.InternalServerException = InternalServerException
|
|
2609
|
+
exports.InternalServerException = InternalServerException;
|
|
2610
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2611
|
+
exports.KMSServerSideEncryptionIntegration$ = KMSServerSideEncryptionIntegration$;
|
|
2612
|
+
exports.KMSServerSideEncryptionIntegrationConfig$ = KMSServerSideEncryptionIntegrationConfig$;
|
|
2613
|
+
exports.ListAnomaliesForInsight$ = ListAnomaliesForInsight$;
|
|
2533
2614
|
exports.ListAnomaliesForInsightCommand = ListAnomaliesForInsightCommand;
|
|
2615
|
+
exports.ListAnomaliesForInsightFilters$ = ListAnomaliesForInsightFilters$;
|
|
2616
|
+
exports.ListAnomaliesForInsightRequest$ = ListAnomaliesForInsightRequest$;
|
|
2617
|
+
exports.ListAnomaliesForInsightResponse$ = ListAnomaliesForInsightResponse$;
|
|
2618
|
+
exports.ListAnomalousLogGroups$ = ListAnomalousLogGroups$;
|
|
2534
2619
|
exports.ListAnomalousLogGroupsCommand = ListAnomalousLogGroupsCommand;
|
|
2620
|
+
exports.ListAnomalousLogGroupsRequest$ = ListAnomalousLogGroupsRequest$;
|
|
2621
|
+
exports.ListAnomalousLogGroupsResponse$ = ListAnomalousLogGroupsResponse$;
|
|
2622
|
+
exports.ListEvents$ = ListEvents$;
|
|
2535
2623
|
exports.ListEventsCommand = ListEventsCommand;
|
|
2624
|
+
exports.ListEventsFilters$ = ListEventsFilters$;
|
|
2625
|
+
exports.ListEventsRequest$ = ListEventsRequest$;
|
|
2626
|
+
exports.ListEventsResponse$ = ListEventsResponse$;
|
|
2627
|
+
exports.ListInsights$ = ListInsights$;
|
|
2628
|
+
exports.ListInsightsAnyStatusFilter$ = ListInsightsAnyStatusFilter$;
|
|
2629
|
+
exports.ListInsightsClosedStatusFilter$ = ListInsightsClosedStatusFilter$;
|
|
2536
2630
|
exports.ListInsightsCommand = ListInsightsCommand;
|
|
2631
|
+
exports.ListInsightsOngoingStatusFilter$ = ListInsightsOngoingStatusFilter$;
|
|
2632
|
+
exports.ListInsightsRequest$ = ListInsightsRequest$;
|
|
2633
|
+
exports.ListInsightsResponse$ = ListInsightsResponse$;
|
|
2634
|
+
exports.ListInsightsStatusFilter$ = ListInsightsStatusFilter$;
|
|
2635
|
+
exports.ListMonitoredResources$ = ListMonitoredResources$;
|
|
2537
2636
|
exports.ListMonitoredResourcesCommand = ListMonitoredResourcesCommand;
|
|
2637
|
+
exports.ListMonitoredResourcesFilters$ = ListMonitoredResourcesFilters$;
|
|
2638
|
+
exports.ListMonitoredResourcesRequest$ = ListMonitoredResourcesRequest$;
|
|
2639
|
+
exports.ListMonitoredResourcesResponse$ = ListMonitoredResourcesResponse$;
|
|
2640
|
+
exports.ListNotificationChannels$ = ListNotificationChannels$;
|
|
2538
2641
|
exports.ListNotificationChannelsCommand = ListNotificationChannelsCommand;
|
|
2642
|
+
exports.ListNotificationChannelsRequest$ = ListNotificationChannelsRequest$;
|
|
2643
|
+
exports.ListNotificationChannelsResponse$ = ListNotificationChannelsResponse$;
|
|
2644
|
+
exports.ListOrganizationInsights$ = ListOrganizationInsights$;
|
|
2539
2645
|
exports.ListOrganizationInsightsCommand = ListOrganizationInsightsCommand;
|
|
2646
|
+
exports.ListOrganizationInsightsRequest$ = ListOrganizationInsightsRequest$;
|
|
2647
|
+
exports.ListOrganizationInsightsResponse$ = ListOrganizationInsightsResponse$;
|
|
2648
|
+
exports.ListRecommendations$ = ListRecommendations$;
|
|
2540
2649
|
exports.ListRecommendationsCommand = ListRecommendationsCommand;
|
|
2650
|
+
exports.ListRecommendationsRequest$ = ListRecommendationsRequest$;
|
|
2651
|
+
exports.ListRecommendationsResponse$ = ListRecommendationsResponse$;
|
|
2541
2652
|
exports.Locale = Locale;
|
|
2653
|
+
exports.LogAnomalyClass$ = LogAnomalyClass$;
|
|
2654
|
+
exports.LogAnomalyShowcase$ = LogAnomalyShowcase$;
|
|
2542
2655
|
exports.LogAnomalyType = LogAnomalyType;
|
|
2656
|
+
exports.LogsAnomalyDetectionIntegration$ = LogsAnomalyDetectionIntegration$;
|
|
2657
|
+
exports.LogsAnomalyDetectionIntegrationConfig$ = LogsAnomalyDetectionIntegrationConfig$;
|
|
2658
|
+
exports.MonitoredResourceIdentifier$ = MonitoredResourceIdentifier$;
|
|
2659
|
+
exports.NotificationChannel$ = NotificationChannel$;
|
|
2660
|
+
exports.NotificationChannelConfig$ = NotificationChannelConfig$;
|
|
2661
|
+
exports.NotificationFilterConfig$ = NotificationFilterConfig$;
|
|
2543
2662
|
exports.NotificationMessageType = NotificationMessageType;
|
|
2663
|
+
exports.OpsCenterIntegration$ = OpsCenterIntegration$;
|
|
2664
|
+
exports.OpsCenterIntegrationConfig$ = OpsCenterIntegrationConfig$;
|
|
2544
2665
|
exports.OptInStatus = OptInStatus;
|
|
2545
2666
|
exports.OrganizationResourceCollectionType = OrganizationResourceCollectionType;
|
|
2667
|
+
exports.PerformanceInsightsMetricDimensionGroup$ = PerformanceInsightsMetricDimensionGroup$;
|
|
2668
|
+
exports.PerformanceInsightsMetricQuery$ = PerformanceInsightsMetricQuery$;
|
|
2669
|
+
exports.PerformanceInsightsMetricsDetail$ = PerformanceInsightsMetricsDetail$;
|
|
2670
|
+
exports.PerformanceInsightsReferenceComparisonValues$ = PerformanceInsightsReferenceComparisonValues$;
|
|
2671
|
+
exports.PerformanceInsightsReferenceData$ = PerformanceInsightsReferenceData$;
|
|
2672
|
+
exports.PerformanceInsightsReferenceMetric$ = PerformanceInsightsReferenceMetric$;
|
|
2673
|
+
exports.PerformanceInsightsReferenceScalar$ = PerformanceInsightsReferenceScalar$;
|
|
2674
|
+
exports.PerformanceInsightsStat$ = PerformanceInsightsStat$;
|
|
2675
|
+
exports.PredictionTimeRange$ = PredictionTimeRange$;
|
|
2676
|
+
exports.ProactiveAnomaly$ = ProactiveAnomaly$;
|
|
2677
|
+
exports.ProactiveAnomalySummary$ = ProactiveAnomalySummary$;
|
|
2678
|
+
exports.ProactiveInsight$ = ProactiveInsight$;
|
|
2679
|
+
exports.ProactiveInsightSummary$ = ProactiveInsightSummary$;
|
|
2680
|
+
exports.ProactiveOrganizationInsightSummary$ = ProactiveOrganizationInsightSummary$;
|
|
2681
|
+
exports.PutFeedback$ = PutFeedback$;
|
|
2546
2682
|
exports.PutFeedbackCommand = PutFeedbackCommand;
|
|
2683
|
+
exports.PutFeedbackRequest$ = PutFeedbackRequest$;
|
|
2684
|
+
exports.PutFeedbackResponse$ = PutFeedbackResponse$;
|
|
2685
|
+
exports.ReactiveAnomaly$ = ReactiveAnomaly$;
|
|
2686
|
+
exports.ReactiveAnomalySummary$ = ReactiveAnomalySummary$;
|
|
2687
|
+
exports.ReactiveInsight$ = ReactiveInsight$;
|
|
2688
|
+
exports.ReactiveInsightSummary$ = ReactiveInsightSummary$;
|
|
2689
|
+
exports.ReactiveOrganizationInsightSummary$ = ReactiveOrganizationInsightSummary$;
|
|
2690
|
+
exports.Recommendation$ = Recommendation$;
|
|
2691
|
+
exports.RecommendationRelatedAnomaly$ = RecommendationRelatedAnomaly$;
|
|
2692
|
+
exports.RecommendationRelatedAnomalyResource$ = RecommendationRelatedAnomalyResource$;
|
|
2693
|
+
exports.RecommendationRelatedAnomalySourceDetail$ = RecommendationRelatedAnomalySourceDetail$;
|
|
2694
|
+
exports.RecommendationRelatedCloudWatchMetricsSourceDetail$ = RecommendationRelatedCloudWatchMetricsSourceDetail$;
|
|
2695
|
+
exports.RecommendationRelatedEvent$ = RecommendationRelatedEvent$;
|
|
2696
|
+
exports.RecommendationRelatedEventResource$ = RecommendationRelatedEventResource$;
|
|
2697
|
+
exports.RemoveNotificationChannel$ = RemoveNotificationChannel$;
|
|
2547
2698
|
exports.RemoveNotificationChannelCommand = RemoveNotificationChannelCommand;
|
|
2699
|
+
exports.RemoveNotificationChannelRequest$ = RemoveNotificationChannelRequest$;
|
|
2700
|
+
exports.RemoveNotificationChannelResponse$ = RemoveNotificationChannelResponse$;
|
|
2701
|
+
exports.ResourceCollection$ = ResourceCollection$;
|
|
2702
|
+
exports.ResourceCollectionFilter$ = ResourceCollectionFilter$;
|
|
2548
2703
|
exports.ResourceCollectionType = ResourceCollectionType;
|
|
2549
|
-
exports.ResourceNotFoundException = ResourceNotFoundException
|
|
2704
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2705
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2550
2706
|
exports.ResourcePermission = ResourcePermission;
|
|
2551
2707
|
exports.ResourceTypeFilter = ResourceTypeFilter;
|
|
2708
|
+
exports.SearchInsights$ = SearchInsights$;
|
|
2552
2709
|
exports.SearchInsightsCommand = SearchInsightsCommand;
|
|
2710
|
+
exports.SearchInsightsFilters$ = SearchInsightsFilters$;
|
|
2711
|
+
exports.SearchInsightsRequest$ = SearchInsightsRequest$;
|
|
2712
|
+
exports.SearchInsightsResponse$ = SearchInsightsResponse$;
|
|
2713
|
+
exports.SearchOrganizationInsights$ = SearchOrganizationInsights$;
|
|
2553
2714
|
exports.SearchOrganizationInsightsCommand = SearchOrganizationInsightsCommand;
|
|
2715
|
+
exports.SearchOrganizationInsightsFilters$ = SearchOrganizationInsightsFilters$;
|
|
2716
|
+
exports.SearchOrganizationInsightsRequest$ = SearchOrganizationInsightsRequest$;
|
|
2717
|
+
exports.SearchOrganizationInsightsResponse$ = SearchOrganizationInsightsResponse$;
|
|
2554
2718
|
exports.ServerSideEncryptionType = ServerSideEncryptionType;
|
|
2719
|
+
exports.ServiceCollection$ = ServiceCollection$;
|
|
2720
|
+
exports.ServiceHealth$ = ServiceHealth$;
|
|
2721
|
+
exports.ServiceInsightHealth$ = ServiceInsightHealth$;
|
|
2722
|
+
exports.ServiceIntegrationConfig$ = ServiceIntegrationConfig$;
|
|
2555
2723
|
exports.ServiceName = ServiceName;
|
|
2556
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException
|
|
2724
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2725
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2726
|
+
exports.ServiceResourceCost$ = ServiceResourceCost$;
|
|
2727
|
+
exports.SnsChannelConfig$ = SnsChannelConfig$;
|
|
2728
|
+
exports.StartCostEstimation$ = StartCostEstimation$;
|
|
2557
2729
|
exports.StartCostEstimationCommand = StartCostEstimationCommand;
|
|
2558
|
-
exports.
|
|
2730
|
+
exports.StartCostEstimationRequest$ = StartCostEstimationRequest$;
|
|
2731
|
+
exports.StartCostEstimationResponse$ = StartCostEstimationResponse$;
|
|
2732
|
+
exports.StartTimeRange$ = StartTimeRange$;
|
|
2733
|
+
exports.TagCollection$ = TagCollection$;
|
|
2734
|
+
exports.TagCollectionFilter$ = TagCollectionFilter$;
|
|
2735
|
+
exports.TagCostEstimationResourceCollectionFilter$ = TagCostEstimationResourceCollectionFilter$;
|
|
2736
|
+
exports.TagHealth$ = TagHealth$;
|
|
2737
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2738
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2739
|
+
exports.TimestampMetricValuePair$ = TimestampMetricValuePair$;
|
|
2740
|
+
exports.UpdateCloudFormationCollectionFilter$ = UpdateCloudFormationCollectionFilter$;
|
|
2741
|
+
exports.UpdateEventSourcesConfig$ = UpdateEventSourcesConfig$;
|
|
2559
2742
|
exports.UpdateEventSourcesConfigCommand = UpdateEventSourcesConfigCommand;
|
|
2743
|
+
exports.UpdateEventSourcesConfigRequest$ = UpdateEventSourcesConfigRequest$;
|
|
2744
|
+
exports.UpdateEventSourcesConfigResponse$ = UpdateEventSourcesConfigResponse$;
|
|
2745
|
+
exports.UpdateResourceCollection$ = UpdateResourceCollection$;
|
|
2560
2746
|
exports.UpdateResourceCollectionAction = UpdateResourceCollectionAction;
|
|
2561
2747
|
exports.UpdateResourceCollectionCommand = UpdateResourceCollectionCommand;
|
|
2748
|
+
exports.UpdateResourceCollectionFilter$ = UpdateResourceCollectionFilter$;
|
|
2749
|
+
exports.UpdateResourceCollectionRequest$ = UpdateResourceCollectionRequest$;
|
|
2750
|
+
exports.UpdateResourceCollectionResponse$ = UpdateResourceCollectionResponse$;
|
|
2751
|
+
exports.UpdateServiceIntegration$ = UpdateServiceIntegration$;
|
|
2562
2752
|
exports.UpdateServiceIntegrationCommand = UpdateServiceIntegrationCommand;
|
|
2563
|
-
exports.
|
|
2753
|
+
exports.UpdateServiceIntegrationConfig$ = UpdateServiceIntegrationConfig$;
|
|
2754
|
+
exports.UpdateServiceIntegrationRequest$ = UpdateServiceIntegrationRequest$;
|
|
2755
|
+
exports.UpdateServiceIntegrationResponse$ = UpdateServiceIntegrationResponse$;
|
|
2756
|
+
exports.UpdateTagCollectionFilter$ = UpdateTagCollectionFilter$;
|
|
2757
|
+
exports.ValidationException = ValidationException;
|
|
2758
|
+
exports.ValidationException$ = ValidationException$;
|
|
2759
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2564
2760
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2565
2761
|
exports.paginateDescribeOrganizationResourceCollectionHealth = paginateDescribeOrganizationResourceCollectionHealth;
|
|
2566
2762
|
exports.paginateDescribeResourceCollectionHealth = paginateDescribeResourceCollectionHealth;
|