@aws-sdk/client-devops-guru 3.1075.0 → 3.1077.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 CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultDevOpsGuruHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AddNotificationChannel$, DeleteInsight$, DescribeAccountHealth$, DescribeAccountOverview$, DescribeAnomaly$, DescribeEventSourcesConfig$, DescribeFeedback$, DescribeInsight$, DescribeOrganizationHealth$, DescribeOrganizationOverview$, DescribeOrganizationResourceCollectionHealth$, DescribeResourceCollectionHealth$, DescribeServiceIntegration$, GetCostEstimation$, GetResourceCollection$, ListAnomaliesForInsight$, ListAnomalousLogGroups$, ListEvents$, ListInsights$, ListMonitoredResources$, ListNotificationChannels$, ListOrganizationInsights$, ListRecommendations$, PutFeedback$, RemoveNotificationChannel$, SearchInsights$, SearchOrganizationInsights$, StartCostEstimation$, UpdateEventSourcesConfig$, UpdateResourceCollection$, UpdateServiceIntegration$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { DevOpsGuruServiceException } = require("./models/DevOpsGuruServiceException");
18
- exports.DevOpsGuruServiceException = DevOpsGuruServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultDevOpsGuruHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "devops-guru",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultDevOpsGuruHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1663 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://devops-guru-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://devops-guru-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://devops-guru.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://devops-guru.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class DevOpsGuruServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, DevOpsGuruServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends DevOpsGuruServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ Message;
144
+ constructor(opts) {
145
+ super({
146
+ name: "AccessDeniedException",
147
+ $fault: "client",
148
+ ...opts,
149
+ });
150
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
151
+ this.Message = opts.Message;
152
+ }
153
+ }
154
+ class ConflictException extends DevOpsGuruServiceException {
155
+ name = "ConflictException";
156
+ $fault = "client";
157
+ Message;
158
+ ResourceId;
159
+ ResourceType;
160
+ constructor(opts) {
161
+ super({
162
+ name: "ConflictException",
163
+ $fault: "client",
164
+ ...opts,
165
+ });
166
+ Object.setPrototypeOf(this, ConflictException.prototype);
167
+ this.Message = opts.Message;
168
+ this.ResourceId = opts.ResourceId;
169
+ this.ResourceType = opts.ResourceType;
170
+ }
171
+ }
172
+ class InternalServerException extends DevOpsGuruServiceException {
173
+ name = "InternalServerException";
174
+ $fault = "server";
175
+ Message;
176
+ RetryAfterSeconds;
177
+ constructor(opts) {
178
+ super({
179
+ name: "InternalServerException",
180
+ $fault: "server",
181
+ ...opts,
182
+ });
183
+ Object.setPrototypeOf(this, InternalServerException.prototype);
184
+ this.Message = opts.Message;
185
+ this.RetryAfterSeconds = opts.RetryAfterSeconds;
186
+ }
187
+ }
188
+ class ResourceNotFoundException extends DevOpsGuruServiceException {
189
+ name = "ResourceNotFoundException";
190
+ $fault = "client";
191
+ Message;
192
+ ResourceId;
193
+ ResourceType;
194
+ constructor(opts) {
195
+ super({
196
+ name: "ResourceNotFoundException",
197
+ $fault: "client",
198
+ ...opts,
199
+ });
200
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
201
+ this.Message = opts.Message;
202
+ this.ResourceId = opts.ResourceId;
203
+ this.ResourceType = opts.ResourceType;
204
+ }
205
+ }
206
+ class ServiceQuotaExceededException extends DevOpsGuruServiceException {
207
+ name = "ServiceQuotaExceededException";
208
+ $fault = "client";
209
+ Message;
210
+ constructor(opts) {
211
+ super({
212
+ name: "ServiceQuotaExceededException",
213
+ $fault: "client",
214
+ ...opts,
215
+ });
216
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
217
+ this.Message = opts.Message;
218
+ }
219
+ }
220
+ class ThrottlingException extends DevOpsGuruServiceException {
221
+ name = "ThrottlingException";
222
+ $fault = "client";
223
+ Message;
224
+ QuotaCode;
225
+ ServiceCode;
226
+ RetryAfterSeconds;
227
+ constructor(opts) {
228
+ super({
229
+ name: "ThrottlingException",
230
+ $fault: "client",
231
+ ...opts,
232
+ });
233
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
234
+ this.Message = opts.Message;
235
+ this.QuotaCode = opts.QuotaCode;
236
+ this.ServiceCode = opts.ServiceCode;
237
+ this.RetryAfterSeconds = opts.RetryAfterSeconds;
238
+ }
239
+ }
240
+ class ValidationException extends DevOpsGuruServiceException {
241
+ name = "ValidationException";
242
+ $fault = "client";
243
+ Message;
244
+ Reason;
245
+ Fields;
246
+ constructor(opts) {
247
+ super({
248
+ name: "ValidationException",
249
+ $fault: "client",
250
+ ...opts,
251
+ });
252
+ Object.setPrototypeOf(this, ValidationException.prototype);
253
+ this.Message = opts.Message;
254
+ this.Reason = opts.Reason;
255
+ this.Fields = opts.Fields;
256
+ }
257
+ }
258
+
259
+ const _A = "Account";
260
+ const _ABK = "AppBoundaryKey";
261
+ const _ACGP = "AmazonCodeGuruProfiler";
262
+ const _ACGPI = "AmazonCodeGuruProfilerIntegration";
263
+ const _ADE = "AccessDeniedException";
264
+ const _AH = "AccountHealth";
265
+ const _AHc = "AccountHealths";
266
+ const _AI = "AccountId";
267
+ const _AIH = "AccountInsightHealth";
268
+ const _AII = "AssociatedInsightId";
269
+ const _AIc = "AccountIds";
270
+ const _AIn = "AnomalyId";
271
+ const _ALG = "AnomalousLogGroup";
272
+ const _ALGn = "AnomalousLogGroups";
273
+ const _ANC = "AddNotificationChannel";
274
+ const _ANCR = "AddNotificationChannelRequest";
275
+ const _ANCRd = "AddNotificationChannelResponse";
276
+ const _AR = "AnomalyResource";
277
+ const _ARA = "AssociatedResourceArns";
278
+ const _ARC = "AnalyzedResourceCount";
279
+ const _ARTR = "AnomalyReportedTimeRange";
280
+ const _ARn = "AnomalyResources";
281
+ const _ASD = "AnomalySourceDetails";
282
+ const _ASM = "AnomalySourceMetadata";
283
+ const _ATR = "AnomalyTimeRange";
284
+ const _Ac = "Action";
285
+ const _An = "Any";
286
+ const _Ar = "Arn";
287
+ const _C = "Config";
288
+ const _CAI = "CausalAnomalyId";
289
+ const _CE = "ConflictException";
290
+ const _CERCF = "CostEstimationResourceCollectionFilter";
291
+ const _CETR = "CostEstimationTimeRange";
292
+ const _CF = "CloudFormation";
293
+ const _CFC = "CloudFormationCollection";
294
+ const _CFCERCF = "CloudFormationCostEstimationResourceCollectionFilter";
295
+ const _CFCF = "CloudFormationCollectionFilter";
296
+ const _CFH = "CloudFormationHealth";
297
+ const _CFHl = "CloudFormationHealths";
298
+ const _CT = "CloseTime";
299
+ const _CTl = "ClientToken";
300
+ const _CV = "ComparisonValues";
301
+ const _CWM = "CloudWatchMetrics";
302
+ const _CWMD = "CloudWatchMetricsDetail";
303
+ const _CWMDS = "CloudWatchMetricsDataSummary";
304
+ const _CWMDl = "CloudWatchMetricsDimension";
305
+ const _CWMDlo = "CloudWatchMetricsDetails";
306
+ const _CWMDlou = "CloudWatchMetricsDimensions";
307
+ const _Ca = "Category";
308
+ const _Ch = "Channels";
309
+ const _Cl = "Closed";
310
+ const _Co = "Costs";
311
+ const _Cos = "Cost";
312
+ const _Cou = "Count";
313
+ const _D = "Dimensions";
314
+ const _DA = "DescribeAnomaly";
315
+ const _DAH = "DescribeAccountHealth";
316
+ const _DAHR = "DescribeAccountHealthRequest";
317
+ const _DAHRe = "DescribeAccountHealthResponse";
318
+ const _DAO = "DescribeAccountOverview";
319
+ const _DAOR = "DescribeAccountOverviewRequest";
320
+ const _DAORe = "DescribeAccountOverviewResponse";
321
+ const _DAR = "DescribeAnomalyRequest";
322
+ const _DARe = "DescribeAnomalyResponse";
323
+ const _DESC = "DescribeEventSourcesConfig";
324
+ const _DESCR = "DescribeEventSourcesConfigRequest";
325
+ const _DESCRe = "DescribeEventSourcesConfigResponse";
326
+ const _DF = "DescribeFeedback";
327
+ const _DFR = "DescribeFeedbackRequest";
328
+ const _DFRe = "DescribeFeedbackResponse";
329
+ const _DI = "DeleteInsight";
330
+ const _DIR = "DeleteInsightRequest";
331
+ const _DIRe = "DeleteInsightResponse";
332
+ const _DIRes = "DescribeInsightRequest";
333
+ const _DIResc = "DescribeInsightResponse";
334
+ const _DIe = "DescribeInsight";
335
+ const _DOH = "DescribeOrganizationHealth";
336
+ const _DOHR = "DescribeOrganizationHealthRequest";
337
+ const _DOHRe = "DescribeOrganizationHealthResponse";
338
+ const _DOO = "DescribeOrganizationOverview";
339
+ const _DOOR = "DescribeOrganizationOverviewRequest";
340
+ const _DOORe = "DescribeOrganizationOverviewResponse";
341
+ const _DORCH = "DescribeOrganizationResourceCollectionHealth";
342
+ const _DORCHR = "DescribeOrganizationResourceCollectionHealthRequest";
343
+ const _DORCHRe = "DescribeOrganizationResourceCollectionHealthResponse";
344
+ const _DRCH = "DescribeResourceCollectionHealth";
345
+ const _DRCHR = "DescribeResourceCollectionHealthRequest";
346
+ const _DRCHRe = "DescribeResourceCollectionHealthResponse";
347
+ const _DS = "DataSource";
348
+ const _DSI = "DescribeServiceIntegration";
349
+ const _DSIR = "DescribeServiceIntegrationRequest";
350
+ const _DSIRe = "DescribeServiceIntegrationResponse";
351
+ const _De = "Description";
352
+ const _E = "Event";
353
+ const _EC = "EventClass";
354
+ const _ER = "EventResource";
355
+ const _ERv = "EventResources";
356
+ const _ES = "EventSources";
357
+ const _ESC = "EventSourcesConfig";
358
+ const _ESv = "EventSource";
359
+ const _ET = "EndTime";
360
+ const _ETR = "EndTimeRange";
361
+ const _ETRv = "EventTimeRange";
362
+ const _Ev = "Events";
363
+ const _Ex = "Explanation";
364
+ const _F = "Fields";
365
+ const _FT = "FromTime";
366
+ const _Fe = "Feedback";
367
+ const _Fi = "Filters";
368
+ const _Fil = "Filter";
369
+ const _G = "Group";
370
+ const _GB = "GroupBy";
371
+ const _GCE = "GetCostEstimation";
372
+ const _GCER = "GetCostEstimationRequest";
373
+ const _GCERe = "GetCostEstimationResponse";
374
+ const _GRC = "GetResourceCollection";
375
+ const _GRCR = "GetResourceCollectionRequest";
376
+ const _GRCRe = "GetResourceCollectionResponse";
377
+ const _I = "Insight";
378
+ const _IET = "ImpactEndTime";
379
+ const _IF = "InsightFeedback";
380
+ const _IH = "InsightHealth";
381
+ const _II = "InsightId";
382
+ const _ISE = "InternalServerException";
383
+ const _IST = "ImpactStartTime";
384
+ const _ITR = "InsightTimeRange";
385
+ const _Id = "Id";
386
+ const _KMSKI = "KMSKeyId";
387
+ const _KMSSSE = "KMSServerSideEncryption";
388
+ const _KMSSSEI = "KMSServerSideEncryptionIntegration";
389
+ const _KMSSSEIC = "KMSServerSideEncryptionIntegrationConfig";
390
+ const _L = "Locale";
391
+ const _LAC = "LogAnomalyClass";
392
+ const _LACo = "LogAnomalyClasses";
393
+ const _LAD = "LogsAnomalyDetection";
394
+ const _LADI = "LogsAnomalyDetectionIntegration";
395
+ const _LADIC = "LogsAnomalyDetectionIntegrationConfig";
396
+ const _LAFI = "ListAnomaliesForInsight";
397
+ const _LAFIF = "ListAnomaliesForInsightFilters";
398
+ const _LAFIR = "ListAnomaliesForInsightRequest";
399
+ const _LAFIRi = "ListAnomaliesForInsightResponse";
400
+ const _LALG = "ListAnomalousLogGroups";
401
+ const _LALGR = "ListAnomalousLogGroupsRequest";
402
+ const _LALGRi = "ListAnomalousLogGroupsResponse";
403
+ const _LAS = "LogAnomalyShowcases";
404
+ const _LASo = "LogAnomalyShowcase";
405
+ const _LAT = "LogAnomalyType";
406
+ const _LATo = "LogAnomalyToken";
407
+ const _LE = "ListEvents";
408
+ const _LEF = "ListEventsFilters";
409
+ const _LEI = "LogEventId";
410
+ const _LER = "ListEventsRequest";
411
+ const _LERi = "ListEventsResponse";
412
+ const _LET = "LogEventTimestamp";
413
+ const _LGN = "LogGroupName";
414
+ const _LI = "ListInsights";
415
+ const _LIASF = "ListInsightsAnyStatusFilter";
416
+ const _LICSF = "ListInsightsClosedStatusFilter";
417
+ const _LIOSF = "ListInsightsOngoingStatusFilter";
418
+ const _LIR = "ListInsightsRequest";
419
+ const _LIRi = "ListInsightsResponse";
420
+ const _LISF = "ListInsightsStatusFilter";
421
+ const _LMR = "ListMonitoredResources";
422
+ const _LMRF = "ListMonitoredResourcesFilters";
423
+ const _LMRR = "ListMonitoredResourcesRequest";
424
+ const _LMRRi = "ListMonitoredResourcesResponse";
425
+ const _LNC = "ListNotificationChannels";
426
+ const _LNCR = "ListNotificationChannelsRequest";
427
+ const _LNCRi = "ListNotificationChannelsResponse";
428
+ const _LOI = "ListOrganizationInsights";
429
+ const _LOIR = "ListOrganizationInsightsRequest";
430
+ const _LOIRi = "ListOrganizationInsightsResponse";
431
+ const _LR = "ListRecommendations";
432
+ const _LRR = "ListRecommendationsRequest";
433
+ const _LRRi = "ListRecommendationsResponse";
434
+ const _LSN = "LogStreamName";
435
+ const _LU = "LastUpdated";
436
+ const _Li = "Limit";
437
+ const _Lin = "Link";
438
+ const _M = "Message";
439
+ const _MA = "MetricsAnalyzed";
440
+ const _MDN = "MetricDisplayName";
441
+ const _MDS = "MetricDataSummary";
442
+ const _MN = "MetricName";
443
+ const _MQ = "MetricQuery";
444
+ const _MR = "MaxResults";
445
+ const _MRI = "MonitoredResourceIdentifiers";
446
+ const _MRIo = "MonitoredResourceIdentifier";
447
+ const _MRN = "MonitoredResourceName";
448
+ const _MT = "MessageTypes";
449
+ const _MTTRIM = "MeanTimeToRecoverInMilliseconds";
450
+ const _MV = "MetricValue";
451
+ const _Me = "Metric";
452
+ const _N = "Name";
453
+ const _NC = "NotificationChannel";
454
+ const _NCC = "NotificationChannelConfig";
455
+ const _NFC = "NotificationFilterConfig";
456
+ const _NOLLO = "NumberOfLogLinesOccurrences";
457
+ const _NOLLS = "NumberOfLogLinesScanned";
458
+ const _NT = "NextToken";
459
+ const _Na = "Namespace";
460
+ const _O = "Ongoing";
461
+ const _OC = "OpsCenter";
462
+ const _OCI = "OpsCenterIntegration";
463
+ const _OCIC = "OpsCenterIntegrationConfig";
464
+ const _OIS = "OptInStatus";
465
+ const _OPI = "OpenProactiveInsights";
466
+ const _ORCT = "OrganizationResourceCollectionType";
467
+ const _ORI = "OpenReactiveInsights";
468
+ const _OT = "OpenTime";
469
+ const _OUI = "OrganizationalUnitIds";
470
+ const _OUIr = "OrganizationalUnitId";
471
+ const _P = "Period";
472
+ const _PA = "ProactiveAnomaly";
473
+ const _PAS = "ProactiveAnomalySummary";
474
+ const _PAr = "ProactiveAnomalies";
475
+ const _PF = "PutFeedback";
476
+ const _PFR = "PutFeedbackRequest";
477
+ const _PFRu = "PutFeedbackResponse";
478
+ const _PI = "ProactiveInsights";
479
+ const _PIM = "PerformanceInsightsMetrics";
480
+ const _PIMD = "PerformanceInsightsMetricsDetail";
481
+ const _PIMDG = "PerformanceInsightsMetricDimensionGroup";
482
+ const _PIMDe = "PerformanceInsightsMetricsDetails";
483
+ const _PIMQ = "PerformanceInsightsMetricQuery";
484
+ const _PIRCV = "PerformanceInsightsReferenceComparisonValues";
485
+ const _PIRD = "PerformanceInsightsReferenceData";
486
+ const _PIRDL = "PerformanceInsightsReferenceDataList";
487
+ const _PIRM = "PerformanceInsightsReferenceMetric";
488
+ const _PIRS = "PerformanceInsightsReferenceScalar";
489
+ const _PIS = "PerformanceInsightsStat";
490
+ const _PISe = "PerformanceInsightsStats";
491
+ const _PISr = "ProactiveInsightSummary";
492
+ const _PIr = "ProactiveInsight";
493
+ const _POI = "ProactiveOrganizationInsights";
494
+ const _POIS = "ProactiveOrganizationInsightSummary";
495
+ const _PTR = "PredictionTimeRange";
496
+ const _QC = "QuotaCode";
497
+ const _R = "Reason";
498
+ const _RA = "Retry-After";
499
+ const _RAS = "RetryAfterSeconds";
500
+ const _RASD = "RelatedAnomalySourceDetails";
501
+ const _RASe = "ReactiveAnomalySummary";
502
+ const _RAe = "ReactiveAnomaly";
503
+ const _RAea = "ReactiveAnomalies";
504
+ const _RAel = "RelatedAnomalies";
505
+ const _RC = "ResourceCollection";
506
+ const _RCF = "ResourceCollectionFilter";
507
+ const _RCT = "ResourceCollectionType";
508
+ const _RD = "ReferenceData";
509
+ const _RE = "RelatedEvents";
510
+ const _RH = "ResourceHours";
511
+ const _RI = "ResourceId";
512
+ const _RIS = "ReactiveInsightSummary";
513
+ const _RIe = "ReactiveInsights";
514
+ const _RIea = "ReactiveInsight";
515
+ const _RM = "ReferenceMetric";
516
+ const _RNC = "RemoveNotificationChannel";
517
+ const _RNCR = "RemoveNotificationChannelRequest";
518
+ const _RNCRe = "RemoveNotificationChannelResponse";
519
+ const _RNFE = "ResourceNotFoundException";
520
+ const _ROI = "ReactiveOrganizationInsights";
521
+ const _ROIS = "ReactiveOrganizationInsightSummary";
522
+ const _RP = "ResourcePermission";
523
+ const _RRA = "RecommendationRelatedAnomaly";
524
+ const _RRAR = "RecommendationRelatedAnomalyResource";
525
+ const _RRARe = "RecommendationRelatedAnomalyResources";
526
+ const _RRASD = "RecommendationRelatedAnomalySourceDetail";
527
+ const _RRAe = "RecommendationRelatedAnomalies";
528
+ const _RRCWMSD = "RecommendationRelatedCloudWatchMetricsSourceDetail";
529
+ const _RRCWMSDe = "RecommendationRelatedCloudWatchMetricsSourceDetails";
530
+ const _RRE = "RecommendationRelatedEvent";
531
+ const _RRER = "RecommendationRelatedEventResource";
532
+ const _RRERe = "RecommendationRelatedEventResources";
533
+ const _RREe = "RecommendationRelatedEvents";
534
+ const _RS = "ReferenceScalar";
535
+ const _RT = "ResourceType";
536
+ const _RTF = "ResourceTypeFilters";
537
+ const _Re = "Resources";
538
+ const _Rec = "Recommendations";
539
+ const _Reco = "Recommendation";
540
+ const _S = "Status";
541
+ const _SAA = "StatsAtAnomaly";
542
+ const _SAB = "StatsAtBaseline";
543
+ const _SC = "ServiceCode";
544
+ const _SCC = "SnsChannelConfig";
545
+ const _SCE = "StartCostEstimation";
546
+ const _SCER = "StartCostEstimationRequest";
547
+ const _SCERt = "StartCostEstimationResponse";
548
+ const _SCe = "ServiceCollection";
549
+ const _SCt = "StatusCode";
550
+ const _SD = "SourceDetails";
551
+ const _SF = "StatusFilter";
552
+ const _SH = "ServiceHealth";
553
+ const _SHe = "ServiceHealths";
554
+ const _SI = "ServiceIntegration";
555
+ const _SIC = "ServiceIntegrationConfig";
556
+ const _SIF = "SearchInsightsFilters";
557
+ const _SIH = "ServiceInsightHealth";
558
+ const _SIR = "SearchInsightsRequest";
559
+ const _SIRe = "SearchInsightsResponse";
560
+ const _SIe = "SearchInsights";
561
+ const _SM = "SourceMetadata";
562
+ const _SN = "StackNames";
563
+ const _SNe = "ServiceNames";
564
+ const _SNer = "ServiceName";
565
+ const _SNt = "StackName";
566
+ const _SOI = "SearchOrganizationInsights";
567
+ const _SOIF = "SearchOrganizationInsightsFilters";
568
+ const _SOII = "SsmOpsItemId";
569
+ const _SOIR = "SearchOrganizationInsightsRequest";
570
+ const _SOIRe = "SearchOrganizationInsightsResponse";
571
+ const _SQEE = "ServiceQuotaExceededException";
572
+ const _SRC = "ServiceResourceCost";
573
+ const _SRCe = "ServiceResourceCosts";
574
+ const _SRN = "SourceResourceName";
575
+ const _SRT = "SourceResourceType";
576
+ const _ST = "StartTime";
577
+ const _STR = "StartTimeRange";
578
+ const _Se = "Service";
579
+ const _Sev = "Severities";
580
+ const _Seve = "Severity";
581
+ const _Sn = "Sns";
582
+ const _So = "Source";
583
+ const _St = "Stat";
584
+ const _Sta = "Statuses";
585
+ const _Stat = "State";
586
+ const _T = "Type";
587
+ const _TA = "TopicArn";
588
+ const _TC = "TotalCost";
589
+ const _TCERCF = "TagCostEstimationResourceCollectionFilter";
590
+ const _TCERCFa = "TagCostEstimationResourceCollectionFilters";
591
+ const _TCF = "TagCollectionFilter";
592
+ const _TCFa = "TagCollectionFilters";
593
+ const _TCa = "TagCollection";
594
+ const _TCag = "TagCollections";
595
+ const _TE = "ThrottlingException";
596
+ const _TH = "TagHealth";
597
+ const _THa = "TagHealths";
598
+ const _TMVP = "TimestampMetricValuePair";
599
+ const _TMVPL = "TimestampMetricValuePairList";
600
+ const _TR = "TimeRange";
601
+ const _TT = "ToTime";
602
+ const _TV = "TagValues";
603
+ const _TVa = "TagValue";
604
+ const _Ta = "Tags";
605
+ const _Ti = "Time";
606
+ const _Tim = "Timestamp";
607
+ const _U = "Unit";
608
+ const _UC = "UnitCost";
609
+ const _UCFCF = "UpdateCloudFormationCollectionFilter";
610
+ const _UESC = "UpdateEventSourcesConfig";
611
+ const _UESCR = "UpdateEventSourcesConfigRequest";
612
+ const _UESCRp = "UpdateEventSourcesConfigResponse";
613
+ const _URC = "UpdateResourceCollection";
614
+ const _URCF = "UpdateResourceCollectionFilter";
615
+ const _URCR = "UpdateResourceCollectionRequest";
616
+ const _URCRp = "UpdateResourceCollectionResponse";
617
+ const _USI = "UpdateServiceIntegration";
618
+ const _USIC = "UpdateServiceIntegrationConfig";
619
+ const _USIR = "UpdateServiceIntegrationRequest";
620
+ const _USIRp = "UpdateServiceIntegrationResponse";
621
+ const _UT = "UpdateTime";
622
+ const _UTCF = "UpdateTagCollectionFilter";
623
+ const _UTCFp = "UpdateTagCollectionFilters";
624
+ const _V = "Value";
625
+ const _VE = "ValidationException";
626
+ const _VEF = "ValidationExceptionField";
627
+ const _VEFa = "ValidationExceptionFields";
628
+ const _c = "client";
629
+ const _e = "error";
630
+ const _h = "http";
631
+ const _hE = "httpError";
632
+ const _hH = "httpHeader";
633
+ const _hQ = "httpQuery";
634
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.devopsguru";
635
+ const _se = "server";
636
+ const n0 = "com.amazonaws.devopsguru";
637
+ const _s_registry = TypeRegistry.for(_s);
638
+ var DevOpsGuruServiceException$ = [-3, _s, "DevOpsGuruServiceException", 0, [], []];
639
+ _s_registry.registerError(DevOpsGuruServiceException$, DevOpsGuruServiceException);
640
+ const n0_registry = TypeRegistry.for(n0);
641
+ var AccessDeniedException$ = [-3, n0, _ADE,
642
+ { [_e]: _c, [_hE]: 403 },
643
+ [_M],
644
+ [0], 1
645
+ ];
646
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
647
+ var ConflictException$ = [-3, n0, _CE,
648
+ { [_e]: _c, [_hE]: 409 },
649
+ [_M, _RI, _RT],
650
+ [0, 0, 0], 3
651
+ ];
652
+ n0_registry.registerError(ConflictException$, ConflictException);
653
+ var InternalServerException$ = [-3, n0, _ISE,
654
+ { [_e]: _se, [_hE]: 500 },
655
+ [_M, _RAS],
656
+ [0, [1, { [_hH]: _RA }]], 1
657
+ ];
658
+ n0_registry.registerError(InternalServerException$, InternalServerException);
659
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
660
+ { [_e]: _c, [_hE]: 404 },
661
+ [_M, _RI, _RT],
662
+ [0, 0, 0], 3
663
+ ];
664
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
665
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
666
+ { [_e]: _c, [_hE]: 402 },
667
+ [_M],
668
+ [0]
669
+ ];
670
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
671
+ var ThrottlingException$ = [-3, n0, _TE,
672
+ { [_e]: _c, [_hE]: 429 },
673
+ [_M, _QC, _SC, _RAS],
674
+ [0, 0, 0, [1, { [_hH]: _RA }]], 1
675
+ ];
676
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
677
+ var ValidationException$ = [-3, n0, _VE,
678
+ { [_e]: _c, [_hE]: 400 },
679
+ [_M, _R, _F],
680
+ [0, 0, () => ValidationExceptionFields], 1
681
+ ];
682
+ n0_registry.registerError(ValidationException$, ValidationException);
683
+ const errorTypeRegistries = [
684
+ _s_registry,
685
+ n0_registry,
686
+ ];
687
+ var AccountHealth$ = [3, n0, _AH,
688
+ 0,
689
+ [_AI, _I],
690
+ [0, () => AccountInsightHealth$]
691
+ ];
692
+ var AccountInsightHealth$ = [3, n0, _AIH,
693
+ 0,
694
+ [_OPI, _ORI],
695
+ [1, 1]
696
+ ];
697
+ var AddNotificationChannelRequest$ = [3, n0, _ANCR,
698
+ 0,
699
+ [_C],
700
+ [() => NotificationChannelConfig$], 1
701
+ ];
702
+ var AddNotificationChannelResponse$ = [3, n0, _ANCRd,
703
+ 0,
704
+ [_Id],
705
+ [0], 1
706
+ ];
707
+ var AmazonCodeGuruProfilerIntegration$ = [3, n0, _ACGPI,
708
+ 0,
709
+ [_S],
710
+ [0]
711
+ ];
712
+ var AnomalousLogGroup$ = [3, n0, _ALG,
713
+ 0,
714
+ [_LGN, _IST, _IET, _NOLLS, _LAS],
715
+ [0, 4, 4, 1, () => LogAnomalyShowcases]
716
+ ];
717
+ var AnomalyReportedTimeRange$ = [3, n0, _ARTR,
718
+ 0,
719
+ [_OT, _CT],
720
+ [4, 4], 1
721
+ ];
722
+ var AnomalyResource$ = [3, n0, _AR,
723
+ 0,
724
+ [_N, _T],
725
+ [0, 0]
726
+ ];
727
+ var AnomalySourceDetails$ = [3, n0, _ASD,
728
+ 0,
729
+ [_CWM, _PIM],
730
+ [() => CloudWatchMetricsDetails, () => PerformanceInsightsMetricsDetails]
731
+ ];
732
+ var AnomalySourceMetadata$ = [3, n0, _ASM,
733
+ 0,
734
+ [_So, _SRN, _SRT],
735
+ [0, 0, 0]
736
+ ];
737
+ var AnomalyTimeRange$ = [3, n0, _ATR,
738
+ 0,
739
+ [_ST, _ET],
740
+ [4, 4], 1
741
+ ];
742
+ var CloudFormationCollection$ = [3, n0, _CFC,
743
+ 0,
744
+ [_SN],
745
+ [64 | 0]
746
+ ];
747
+ var CloudFormationCollectionFilter$ = [3, n0, _CFCF,
748
+ 0,
749
+ [_SN],
750
+ [64 | 0]
751
+ ];
752
+ var CloudFormationCostEstimationResourceCollectionFilter$ = [3, n0, _CFCERCF,
753
+ 0,
754
+ [_SN],
755
+ [64 | 0]
756
+ ];
757
+ var CloudFormationHealth$ = [3, n0, _CFH,
758
+ 0,
759
+ [_SNt, _I, _ARC],
760
+ [0, () => InsightHealth$, 1]
761
+ ];
762
+ var CloudWatchMetricsDataSummary$ = [3, n0, _CWMDS,
763
+ 0,
764
+ [_TMVPL, _SCt],
765
+ [() => TimestampMetricValuePairList, 0]
766
+ ];
767
+ var CloudWatchMetricsDetail$ = [3, n0, _CWMD,
768
+ 0,
769
+ [_MN, _Na, _D, _St, _U, _P, _MDS],
770
+ [0, 0, () => CloudWatchMetricsDimensions, 0, 0, 1, () => CloudWatchMetricsDataSummary$]
771
+ ];
772
+ var CloudWatchMetricsDimension$ = [3, n0, _CWMDl,
773
+ 0,
774
+ [_N, _V],
775
+ [0, 0]
776
+ ];
777
+ var CostEstimationResourceCollectionFilter$ = [3, n0, _CERCF,
778
+ 0,
779
+ [_CF, _Ta],
780
+ [() => CloudFormationCostEstimationResourceCollectionFilter$, () => TagCostEstimationResourceCollectionFilters]
781
+ ];
782
+ var CostEstimationTimeRange$ = [3, n0, _CETR,
783
+ 0,
784
+ [_ST, _ET],
785
+ [4, 4]
786
+ ];
787
+ var DeleteInsightRequest$ = [3, n0, _DIR,
788
+ 0,
789
+ [_Id],
790
+ [[0, 1]], 1
791
+ ];
792
+ var DeleteInsightResponse$ = [3, n0, _DIRe,
793
+ 0,
794
+ [],
795
+ []
796
+ ];
797
+ var DescribeAccountHealthRequest$ = [3, n0, _DAHR,
798
+ 0,
799
+ [],
800
+ []
801
+ ];
802
+ var DescribeAccountHealthResponse$ = [3, n0, _DAHRe,
803
+ 0,
804
+ [_ORI, _OPI, _MA, _RH, _ARC],
805
+ [1, 1, 1, 1, 1], 4
806
+ ];
807
+ var DescribeAccountOverviewRequest$ = [3, n0, _DAOR,
808
+ 0,
809
+ [_FT, _TT],
810
+ [4, 4], 1
811
+ ];
812
+ var DescribeAccountOverviewResponse$ = [3, n0, _DAORe,
813
+ 0,
814
+ [_RIe, _PI, _MTTRIM],
815
+ [1, 1, 1], 3
816
+ ];
817
+ var DescribeAnomalyRequest$ = [3, n0, _DAR,
818
+ 0,
819
+ [_Id, _AI],
820
+ [[0, 1], [0, { [_hQ]: _AI }]], 1
821
+ ];
822
+ var DescribeAnomalyResponse$ = [3, n0, _DARe,
823
+ 0,
824
+ [_PA, _RAe],
825
+ [() => ProactiveAnomaly$, () => ReactiveAnomaly$]
826
+ ];
827
+ var DescribeEventSourcesConfigRequest$ = [3, n0, _DESCR,
828
+ 0,
829
+ [],
830
+ []
831
+ ];
832
+ var DescribeEventSourcesConfigResponse$ = [3, n0, _DESCRe,
833
+ 0,
834
+ [_ES],
835
+ [() => EventSourcesConfig$]
836
+ ];
837
+ var DescribeFeedbackRequest$ = [3, n0, _DFR,
838
+ 0,
839
+ [_II],
840
+ [0]
841
+ ];
842
+ var DescribeFeedbackResponse$ = [3, n0, _DFRe,
843
+ 0,
844
+ [_IF],
845
+ [() => InsightFeedback$]
846
+ ];
847
+ var DescribeInsightRequest$ = [3, n0, _DIRes,
848
+ 0,
849
+ [_Id, _AI],
850
+ [[0, 1], [0, { [_hQ]: _AI }]], 1
851
+ ];
852
+ var DescribeInsightResponse$ = [3, n0, _DIResc,
853
+ 0,
854
+ [_PIr, _RIea],
855
+ [() => ProactiveInsight$, () => ReactiveInsight$]
856
+ ];
857
+ var DescribeOrganizationHealthRequest$ = [3, n0, _DOHR,
858
+ 0,
859
+ [_AIc, _OUI],
860
+ [64 | 0, 64 | 0]
861
+ ];
862
+ var DescribeOrganizationHealthResponse$ = [3, n0, _DOHRe,
863
+ 0,
864
+ [_ORI, _OPI, _MA, _RH],
865
+ [1, 1, 1, 1], 4
866
+ ];
867
+ var DescribeOrganizationOverviewRequest$ = [3, n0, _DOOR,
868
+ 0,
869
+ [_FT, _TT, _AIc, _OUI],
870
+ [4, 4, 64 | 0, 64 | 0], 1
871
+ ];
872
+ var DescribeOrganizationOverviewResponse$ = [3, n0, _DOORe,
873
+ 0,
874
+ [_RIe, _PI],
875
+ [1, 1], 2
876
+ ];
877
+ var DescribeOrganizationResourceCollectionHealthRequest$ = [3, n0, _DORCHR,
878
+ 0,
879
+ [_ORCT, _AIc, _OUI, _NT, _MR],
880
+ [0, 64 | 0, 64 | 0, 0, 1], 1
881
+ ];
882
+ var DescribeOrganizationResourceCollectionHealthResponse$ = [3, n0, _DORCHRe,
883
+ 0,
884
+ [_CF, _Se, _A, _NT, _Ta],
885
+ [() => CloudFormationHealths, () => ServiceHealths, () => AccountHealths, 0, () => TagHealths]
886
+ ];
887
+ var DescribeResourceCollectionHealthRequest$ = [3, n0, _DRCHR,
888
+ 0,
889
+ [_RCT, _NT],
890
+ [[0, 1], [0, { [_hQ]: _NT }]], 1
891
+ ];
892
+ var DescribeResourceCollectionHealthResponse$ = [3, n0, _DRCHRe,
893
+ 0,
894
+ [_CF, _Se, _NT, _Ta],
895
+ [() => CloudFormationHealths, () => ServiceHealths, 0, () => TagHealths]
896
+ ];
897
+ var DescribeServiceIntegrationRequest$ = [3, n0, _DSIR,
898
+ 0,
899
+ [],
900
+ []
901
+ ];
902
+ var DescribeServiceIntegrationResponse$ = [3, n0, _DSIRe,
903
+ 0,
904
+ [_SI],
905
+ [() => ServiceIntegrationConfig$]
906
+ ];
907
+ var EndTimeRange$ = [3, n0, _ETR,
908
+ 0,
909
+ [_FT, _TT],
910
+ [4, 4]
911
+ ];
912
+ var Event$ = [3, n0, _E,
913
+ 0,
914
+ [_RC, _Id, _Ti, _ESv, _N, _DS, _EC, _Re],
915
+ [() => ResourceCollection$, 0, 4, 0, 0, 0, 0, () => EventResources]
916
+ ];
917
+ var EventResource$ = [3, n0, _ER,
918
+ 0,
919
+ [_T, _N, _Ar],
920
+ [0, 0, 0]
921
+ ];
922
+ var EventSourcesConfig$ = [3, n0, _ESC,
923
+ 0,
924
+ [_ACGP],
925
+ [() => AmazonCodeGuruProfilerIntegration$]
926
+ ];
927
+ var EventTimeRange$ = [3, n0, _ETRv,
928
+ 0,
929
+ [_FT, _TT],
930
+ [4, 4], 2
931
+ ];
932
+ var GetCostEstimationRequest$ = [3, n0, _GCER,
933
+ 0,
934
+ [_NT],
935
+ [[0, { [_hQ]: _NT }]]
936
+ ];
937
+ var GetCostEstimationResponse$ = [3, n0, _GCERe,
938
+ 0,
939
+ [_RC, _S, _Co, _TR, _TC, _NT],
940
+ [() => CostEstimationResourceCollectionFilter$, 0, () => ServiceResourceCosts, () => CostEstimationTimeRange$, 1, 0]
941
+ ];
942
+ var GetResourceCollectionRequest$ = [3, n0, _GRCR,
943
+ 0,
944
+ [_RCT, _NT],
945
+ [[0, 1], [0, { [_hQ]: _NT }]], 1
946
+ ];
947
+ var GetResourceCollectionResponse$ = [3, n0, _GRCRe,
948
+ 0,
949
+ [_RC, _NT],
950
+ [() => ResourceCollectionFilter$, 0]
951
+ ];
952
+ var InsightFeedback$ = [3, n0, _IF,
953
+ 0,
954
+ [_Id, _Fe],
955
+ [0, 0]
956
+ ];
957
+ var InsightHealth$ = [3, n0, _IH,
958
+ 0,
959
+ [_OPI, _ORI, _MTTRIM],
960
+ [1, 1, 1]
961
+ ];
962
+ var InsightTimeRange$ = [3, n0, _ITR,
963
+ 0,
964
+ [_ST, _ET],
965
+ [4, 4], 1
966
+ ];
967
+ var KMSServerSideEncryptionIntegration$ = [3, n0, _KMSSSEI,
968
+ 0,
969
+ [_KMSKI, _OIS, _T],
970
+ [0, 0, 0]
971
+ ];
972
+ var KMSServerSideEncryptionIntegrationConfig$ = [3, n0, _KMSSSEIC,
973
+ 0,
974
+ [_KMSKI, _OIS, _T],
975
+ [0, 0, 0]
976
+ ];
977
+ var ListAnomaliesForInsightFilters$ = [3, n0, _LAFIF,
978
+ 0,
979
+ [_SCe],
980
+ [() => ServiceCollection$]
981
+ ];
982
+ var ListAnomaliesForInsightRequest$ = [3, n0, _LAFIR,
983
+ 0,
984
+ [_II, _STR, _MR, _NT, _AI, _Fi],
985
+ [[0, 1], () => StartTimeRange$, 1, 0, 0, () => ListAnomaliesForInsightFilters$], 1
986
+ ];
987
+ var ListAnomaliesForInsightResponse$ = [3, n0, _LAFIRi,
988
+ 0,
989
+ [_PAr, _RAea, _NT],
990
+ [() => ProactiveAnomalies, () => ReactiveAnomalies, 0]
991
+ ];
992
+ var ListAnomalousLogGroupsRequest$ = [3, n0, _LALGR,
993
+ 0,
994
+ [_II, _MR, _NT],
995
+ [0, 1, 0], 1
996
+ ];
997
+ var ListAnomalousLogGroupsResponse$ = [3, n0, _LALGRi,
998
+ 0,
999
+ [_II, _ALGn, _NT],
1000
+ [0, () => AnomalousLogGroups, 0], 2
1001
+ ];
1002
+ var ListEventsFilters$ = [3, n0, _LEF,
1003
+ 0,
1004
+ [_II, _ETRv, _EC, _ESv, _DS, _RC],
1005
+ [0, () => EventTimeRange$, 0, 0, 0, () => ResourceCollection$]
1006
+ ];
1007
+ var ListEventsRequest$ = [3, n0, _LER,
1008
+ 0,
1009
+ [_Fi, _MR, _NT, _AI],
1010
+ [() => ListEventsFilters$, 1, 0, 0], 1
1011
+ ];
1012
+ var ListEventsResponse$ = [3, n0, _LERi,
1013
+ 0,
1014
+ [_Ev, _NT],
1015
+ [() => Events, 0], 1
1016
+ ];
1017
+ var ListInsightsAnyStatusFilter$ = [3, n0, _LIASF,
1018
+ 0,
1019
+ [_T, _STR],
1020
+ [0, () => StartTimeRange$], 2
1021
+ ];
1022
+ var ListInsightsClosedStatusFilter$ = [3, n0, _LICSF,
1023
+ 0,
1024
+ [_T, _ETR],
1025
+ [0, () => EndTimeRange$], 2
1026
+ ];
1027
+ var ListInsightsOngoingStatusFilter$ = [3, n0, _LIOSF,
1028
+ 0,
1029
+ [_T],
1030
+ [0], 1
1031
+ ];
1032
+ var ListInsightsRequest$ = [3, n0, _LIR,
1033
+ 0,
1034
+ [_SF, _MR, _NT],
1035
+ [() => ListInsightsStatusFilter$, 1, 0], 1
1036
+ ];
1037
+ var ListInsightsResponse$ = [3, n0, _LIRi,
1038
+ 0,
1039
+ [_PI, _RIe, _NT],
1040
+ [() => ProactiveInsights, () => ReactiveInsights, 0]
1041
+ ];
1042
+ var ListInsightsStatusFilter$ = [3, n0, _LISF,
1043
+ 0,
1044
+ [_O, _Cl, _An],
1045
+ [() => ListInsightsOngoingStatusFilter$, () => ListInsightsClosedStatusFilter$, () => ListInsightsAnyStatusFilter$]
1046
+ ];
1047
+ var ListMonitoredResourcesFilters$ = [3, n0, _LMRF,
1048
+ 0,
1049
+ [_RP, _RTF],
1050
+ [0, 64 | 0], 2
1051
+ ];
1052
+ var ListMonitoredResourcesRequest$ = [3, n0, _LMRR,
1053
+ 0,
1054
+ [_Fi, _MR, _NT],
1055
+ [() => ListMonitoredResourcesFilters$, 1, 0]
1056
+ ];
1057
+ var ListMonitoredResourcesResponse$ = [3, n0, _LMRRi,
1058
+ 0,
1059
+ [_MRI, _NT],
1060
+ [() => MonitoredResourceIdentifiers, 0], 1
1061
+ ];
1062
+ var ListNotificationChannelsRequest$ = [3, n0, _LNCR,
1063
+ 0,
1064
+ [_NT],
1065
+ [0]
1066
+ ];
1067
+ var ListNotificationChannelsResponse$ = [3, n0, _LNCRi,
1068
+ 0,
1069
+ [_Ch, _NT],
1070
+ [() => Channels, 0]
1071
+ ];
1072
+ var ListOrganizationInsightsRequest$ = [3, n0, _LOIR,
1073
+ 0,
1074
+ [_SF, _MR, _AIc, _OUI, _NT],
1075
+ [() => ListInsightsStatusFilter$, 1, 64 | 0, 64 | 0, 0], 1
1076
+ ];
1077
+ var ListOrganizationInsightsResponse$ = [3, n0, _LOIRi,
1078
+ 0,
1079
+ [_PI, _RIe, _NT],
1080
+ [() => ProactiveOrganizationInsights, () => ReactiveOrganizationInsights, 0]
1081
+ ];
1082
+ var ListRecommendationsRequest$ = [3, n0, _LRR,
1083
+ 0,
1084
+ [_II, _NT, _L, _AI],
1085
+ [0, 0, 0, 0], 1
1086
+ ];
1087
+ var ListRecommendationsResponse$ = [3, n0, _LRRi,
1088
+ 0,
1089
+ [_Rec, _NT],
1090
+ [() => Recommendations, 0]
1091
+ ];
1092
+ var LogAnomalyClass$ = [3, n0, _LAC,
1093
+ 0,
1094
+ [_LSN, _LAT, _LATo, _LEI, _Ex, _NOLLO, _LET],
1095
+ [0, 0, 0, 0, 0, 1, 4]
1096
+ ];
1097
+ var LogAnomalyShowcase$ = [3, n0, _LASo,
1098
+ 0,
1099
+ [_LACo],
1100
+ [() => LogAnomalyClasses]
1101
+ ];
1102
+ var LogsAnomalyDetectionIntegration$ = [3, n0, _LADI,
1103
+ 0,
1104
+ [_OIS],
1105
+ [0]
1106
+ ];
1107
+ var LogsAnomalyDetectionIntegrationConfig$ = [3, n0, _LADIC,
1108
+ 0,
1109
+ [_OIS],
1110
+ [0]
1111
+ ];
1112
+ var MonitoredResourceIdentifier$ = [3, n0, _MRIo,
1113
+ 0,
1114
+ [_MRN, _T, _RP, _LU, _RC],
1115
+ [0, 0, 0, 4, () => ResourceCollection$]
1116
+ ];
1117
+ var NotificationChannel$ = [3, n0, _NC,
1118
+ 0,
1119
+ [_Id, _C],
1120
+ [0, () => NotificationChannelConfig$]
1121
+ ];
1122
+ var NotificationChannelConfig$ = [3, n0, _NCC,
1123
+ 0,
1124
+ [_Sn, _Fi],
1125
+ [() => SnsChannelConfig$, () => NotificationFilterConfig$], 1
1126
+ ];
1127
+ var NotificationFilterConfig$ = [3, n0, _NFC,
1128
+ 0,
1129
+ [_Sev, _MT],
1130
+ [64 | 0, 64 | 0]
1131
+ ];
1132
+ var OpsCenterIntegration$ = [3, n0, _OCI,
1133
+ 0,
1134
+ [_OIS],
1135
+ [0]
1136
+ ];
1137
+ var OpsCenterIntegrationConfig$ = [3, n0, _OCIC,
1138
+ 0,
1139
+ [_OIS],
1140
+ [0]
1141
+ ];
1142
+ var PerformanceInsightsMetricDimensionGroup$ = [3, n0, _PIMDG,
1143
+ 0,
1144
+ [_G, _D, _Li],
1145
+ [0, 64 | 0, 1]
1146
+ ];
1147
+ var PerformanceInsightsMetricQuery$ = [3, n0, _PIMQ,
1148
+ 0,
1149
+ [_Me, _GB, _Fil],
1150
+ [0, () => PerformanceInsightsMetricDimensionGroup$, 128 | 0]
1151
+ ];
1152
+ var PerformanceInsightsMetricsDetail$ = [3, n0, _PIMD,
1153
+ 0,
1154
+ [_MDN, _U, _MQ, _RD, _SAA, _SAB],
1155
+ [0, 0, () => PerformanceInsightsMetricQuery$, () => PerformanceInsightsReferenceDataList, () => PerformanceInsightsStats, () => PerformanceInsightsStats]
1156
+ ];
1157
+ var PerformanceInsightsReferenceComparisonValues$ = [3, n0, _PIRCV,
1158
+ 0,
1159
+ [_RS, _RM],
1160
+ [() => PerformanceInsightsReferenceScalar$, () => PerformanceInsightsReferenceMetric$]
1161
+ ];
1162
+ var PerformanceInsightsReferenceData$ = [3, n0, _PIRD,
1163
+ 0,
1164
+ [_N, _CV],
1165
+ [0, () => PerformanceInsightsReferenceComparisonValues$]
1166
+ ];
1167
+ var PerformanceInsightsReferenceMetric$ = [3, n0, _PIRM,
1168
+ 0,
1169
+ [_MQ],
1170
+ [() => PerformanceInsightsMetricQuery$]
1171
+ ];
1172
+ var PerformanceInsightsReferenceScalar$ = [3, n0, _PIRS,
1173
+ 0,
1174
+ [_V],
1175
+ [1]
1176
+ ];
1177
+ var PerformanceInsightsStat$ = [3, n0, _PIS,
1178
+ 0,
1179
+ [_T, _V],
1180
+ [0, 1]
1181
+ ];
1182
+ var PredictionTimeRange$ = [3, n0, _PTR,
1183
+ 0,
1184
+ [_ST, _ET],
1185
+ [4, 4], 1
1186
+ ];
1187
+ var ProactiveAnomaly$ = [3, n0, _PA,
1188
+ 0,
1189
+ [_Id, _Seve, _S, _UT, _ATR, _ARTR, _PTR, _SD, _AII, _RC, _Li, _SM, _ARn, _De],
1190
+ [0, 0, 0, 4, () => AnomalyTimeRange$, () => AnomalyReportedTimeRange$, () => PredictionTimeRange$, () => AnomalySourceDetails$, 0, () => ResourceCollection$, 1, () => AnomalySourceMetadata$, () => AnomalyResources, 0]
1191
+ ];
1192
+ var ProactiveAnomalySummary$ = [3, n0, _PAS,
1193
+ 0,
1194
+ [_Id, _Seve, _S, _UT, _ATR, _ARTR, _PTR, _SD, _AII, _RC, _Li, _SM, _ARn, _De],
1195
+ [0, 0, 0, 4, () => AnomalyTimeRange$, () => AnomalyReportedTimeRange$, () => PredictionTimeRange$, () => AnomalySourceDetails$, 0, () => ResourceCollection$, 1, () => AnomalySourceMetadata$, () => AnomalyResources, 0]
1196
+ ];
1197
+ var ProactiveInsight$ = [3, n0, _PIr,
1198
+ 0,
1199
+ [_Id, _N, _Seve, _S, _ITR, _PTR, _RC, _SOII, _De],
1200
+ [0, 0, 0, 0, () => InsightTimeRange$, () => PredictionTimeRange$, () => ResourceCollection$, 0, 0]
1201
+ ];
1202
+ var ProactiveInsightSummary$ = [3, n0, _PISr,
1203
+ 0,
1204
+ [_Id, _N, _Seve, _S, _ITR, _PTR, _RC, _SCe, _ARA],
1205
+ [0, 0, 0, 0, () => InsightTimeRange$, () => PredictionTimeRange$, () => ResourceCollection$, () => ServiceCollection$, 64 | 0]
1206
+ ];
1207
+ var ProactiveOrganizationInsightSummary$ = [3, n0, _POIS,
1208
+ 0,
1209
+ [_Id, _AI, _OUIr, _N, _Seve, _S, _ITR, _PTR, _RC, _SCe],
1210
+ [0, 0, 0, 0, 0, 0, () => InsightTimeRange$, () => PredictionTimeRange$, () => ResourceCollection$, () => ServiceCollection$]
1211
+ ];
1212
+ var PutFeedbackRequest$ = [3, n0, _PFR,
1213
+ 0,
1214
+ [_IF],
1215
+ [() => InsightFeedback$]
1216
+ ];
1217
+ var PutFeedbackResponse$ = [3, n0, _PFRu,
1218
+ 0,
1219
+ [],
1220
+ []
1221
+ ];
1222
+ var ReactiveAnomaly$ = [3, n0, _RAe,
1223
+ 0,
1224
+ [_Id, _Seve, _S, _ATR, _ARTR, _SD, _AII, _RC, _T, _N, _De, _CAI, _ARn],
1225
+ [0, 0, 0, () => AnomalyTimeRange$, () => AnomalyReportedTimeRange$, () => AnomalySourceDetails$, 0, () => ResourceCollection$, 0, 0, 0, 0, () => AnomalyResources]
1226
+ ];
1227
+ var ReactiveAnomalySummary$ = [3, n0, _RASe,
1228
+ 0,
1229
+ [_Id, _Seve, _S, _ATR, _ARTR, _SD, _AII, _RC, _T, _N, _De, _CAI, _ARn],
1230
+ [0, 0, 0, () => AnomalyTimeRange$, () => AnomalyReportedTimeRange$, () => AnomalySourceDetails$, 0, () => ResourceCollection$, 0, 0, 0, 0, () => AnomalyResources]
1231
+ ];
1232
+ var ReactiveInsight$ = [3, n0, _RIea,
1233
+ 0,
1234
+ [_Id, _N, _Seve, _S, _ITR, _RC, _SOII, _De],
1235
+ [0, 0, 0, 0, () => InsightTimeRange$, () => ResourceCollection$, 0, 0]
1236
+ ];
1237
+ var ReactiveInsightSummary$ = [3, n0, _RIS,
1238
+ 0,
1239
+ [_Id, _N, _Seve, _S, _ITR, _RC, _SCe, _ARA],
1240
+ [0, 0, 0, 0, () => InsightTimeRange$, () => ResourceCollection$, () => ServiceCollection$, 64 | 0]
1241
+ ];
1242
+ var ReactiveOrganizationInsightSummary$ = [3, n0, _ROIS,
1243
+ 0,
1244
+ [_Id, _AI, _OUIr, _N, _Seve, _S, _ITR, _RC, _SCe],
1245
+ [0, 0, 0, 0, 0, 0, () => InsightTimeRange$, () => ResourceCollection$, () => ServiceCollection$]
1246
+ ];
1247
+ var Recommendation$ = [3, n0, _Reco,
1248
+ 0,
1249
+ [_De, _Lin, _N, _R, _RE, _RAel, _Ca],
1250
+ [0, 0, 0, 0, () => RecommendationRelatedEvents, () => RecommendationRelatedAnomalies, 0]
1251
+ ];
1252
+ var RecommendationRelatedAnomaly$ = [3, n0, _RRA,
1253
+ 0,
1254
+ [_Re, _SD, _AIn],
1255
+ [() => RecommendationRelatedAnomalyResources, () => RelatedAnomalySourceDetails, 0]
1256
+ ];
1257
+ var RecommendationRelatedAnomalyResource$ = [3, n0, _RRAR,
1258
+ 0,
1259
+ [_N, _T],
1260
+ [0, 0]
1261
+ ];
1262
+ var RecommendationRelatedAnomalySourceDetail$ = [3, n0, _RRASD,
1263
+ 0,
1264
+ [_CWM],
1265
+ [() => RecommendationRelatedCloudWatchMetricsSourceDetails]
1266
+ ];
1267
+ var RecommendationRelatedCloudWatchMetricsSourceDetail$ = [3, n0, _RRCWMSD,
1268
+ 0,
1269
+ [_MN, _Na],
1270
+ [0, 0]
1271
+ ];
1272
+ var RecommendationRelatedEvent$ = [3, n0, _RRE,
1273
+ 0,
1274
+ [_N, _Re],
1275
+ [0, () => RecommendationRelatedEventResources]
1276
+ ];
1277
+ var RecommendationRelatedEventResource$ = [3, n0, _RRER,
1278
+ 0,
1279
+ [_N, _T],
1280
+ [0, 0]
1281
+ ];
1282
+ var RemoveNotificationChannelRequest$ = [3, n0, _RNCR,
1283
+ 0,
1284
+ [_Id],
1285
+ [[0, 1]], 1
1286
+ ];
1287
+ var RemoveNotificationChannelResponse$ = [3, n0, _RNCRe,
1288
+ 0,
1289
+ [],
1290
+ []
1291
+ ];
1292
+ var ResourceCollection$ = [3, n0, _RC,
1293
+ 0,
1294
+ [_CF, _Ta],
1295
+ [() => CloudFormationCollection$, () => TagCollections]
1296
+ ];
1297
+ var ResourceCollectionFilter$ = [3, n0, _RCF,
1298
+ 0,
1299
+ [_CF, _Ta],
1300
+ [() => CloudFormationCollectionFilter$, () => TagCollectionFilters]
1301
+ ];
1302
+ var SearchInsightsFilters$ = [3, n0, _SIF,
1303
+ 0,
1304
+ [_Sev, _Sta, _RC, _SCe],
1305
+ [64 | 0, 64 | 0, () => ResourceCollection$, () => ServiceCollection$]
1306
+ ];
1307
+ var SearchInsightsRequest$ = [3, n0, _SIR,
1308
+ 0,
1309
+ [_STR, _T, _Fi, _MR, _NT],
1310
+ [() => StartTimeRange$, 0, () => SearchInsightsFilters$, 1, 0], 2
1311
+ ];
1312
+ var SearchInsightsResponse$ = [3, n0, _SIRe,
1313
+ 0,
1314
+ [_PI, _RIe, _NT],
1315
+ [() => ProactiveInsights, () => ReactiveInsights, 0]
1316
+ ];
1317
+ var SearchOrganizationInsightsFilters$ = [3, n0, _SOIF,
1318
+ 0,
1319
+ [_Sev, _Sta, _RC, _SCe],
1320
+ [64 | 0, 64 | 0, () => ResourceCollection$, () => ServiceCollection$]
1321
+ ];
1322
+ var SearchOrganizationInsightsRequest$ = [3, n0, _SOIR,
1323
+ 0,
1324
+ [_AIc, _STR, _T, _Fi, _MR, _NT],
1325
+ [64 | 0, () => StartTimeRange$, 0, () => SearchOrganizationInsightsFilters$, 1, 0], 3
1326
+ ];
1327
+ var SearchOrganizationInsightsResponse$ = [3, n0, _SOIRe,
1328
+ 0,
1329
+ [_PI, _RIe, _NT],
1330
+ [() => ProactiveInsights, () => ReactiveInsights, 0]
1331
+ ];
1332
+ var ServiceCollection$ = [3, n0, _SCe,
1333
+ 0,
1334
+ [_SNe],
1335
+ [64 | 0]
1336
+ ];
1337
+ var ServiceHealth$ = [3, n0, _SH,
1338
+ 0,
1339
+ [_SNer, _I, _ARC],
1340
+ [0, () => ServiceInsightHealth$, 1]
1341
+ ];
1342
+ var ServiceInsightHealth$ = [3, n0, _SIH,
1343
+ 0,
1344
+ [_OPI, _ORI],
1345
+ [1, 1]
1346
+ ];
1347
+ var ServiceIntegrationConfig$ = [3, n0, _SIC,
1348
+ 0,
1349
+ [_OC, _LAD, _KMSSSE],
1350
+ [() => OpsCenterIntegration$, () => LogsAnomalyDetectionIntegration$, () => KMSServerSideEncryptionIntegration$]
1351
+ ];
1352
+ var ServiceResourceCost$ = [3, n0, _SRC,
1353
+ 0,
1354
+ [_T, _Stat, _Cou, _UC, _Cos],
1355
+ [0, 0, 1, 1, 1]
1356
+ ];
1357
+ var SnsChannelConfig$ = [3, n0, _SCC,
1358
+ 0,
1359
+ [_TA],
1360
+ [0]
1361
+ ];
1362
+ var StartCostEstimationRequest$ = [3, n0, _SCER,
1363
+ 0,
1364
+ [_RC, _CTl],
1365
+ [() => CostEstimationResourceCollectionFilter$, [0, 4]], 1
1366
+ ];
1367
+ var StartCostEstimationResponse$ = [3, n0, _SCERt,
1368
+ 0,
1369
+ [],
1370
+ []
1371
+ ];
1372
+ var StartTimeRange$ = [3, n0, _STR,
1373
+ 0,
1374
+ [_FT, _TT],
1375
+ [4, 4]
1376
+ ];
1377
+ var TagCollection$ = [3, n0, _TCa,
1378
+ 0,
1379
+ [_ABK, _TV],
1380
+ [0, 64 | 0], 2
1381
+ ];
1382
+ var TagCollectionFilter$ = [3, n0, _TCF,
1383
+ 0,
1384
+ [_ABK, _TV],
1385
+ [0, 64 | 0], 2
1386
+ ];
1387
+ var TagCostEstimationResourceCollectionFilter$ = [3, n0, _TCERCF,
1388
+ 0,
1389
+ [_ABK, _TV],
1390
+ [0, 64 | 0], 2
1391
+ ];
1392
+ var TagHealth$ = [3, n0, _TH,
1393
+ 0,
1394
+ [_ABK, _TVa, _I, _ARC],
1395
+ [0, 0, () => InsightHealth$, 1]
1396
+ ];
1397
+ var TimestampMetricValuePair$ = [3, n0, _TMVP,
1398
+ 0,
1399
+ [_Tim, _MV],
1400
+ [4, 1]
1401
+ ];
1402
+ var UpdateCloudFormationCollectionFilter$ = [3, n0, _UCFCF,
1403
+ 0,
1404
+ [_SN],
1405
+ [64 | 0]
1406
+ ];
1407
+ var UpdateEventSourcesConfigRequest$ = [3, n0, _UESCR,
1408
+ 0,
1409
+ [_ES],
1410
+ [() => EventSourcesConfig$]
1411
+ ];
1412
+ var UpdateEventSourcesConfigResponse$ = [3, n0, _UESCRp,
1413
+ 0,
1414
+ [],
1415
+ []
1416
+ ];
1417
+ var UpdateResourceCollectionFilter$ = [3, n0, _URCF,
1418
+ 0,
1419
+ [_CF, _Ta],
1420
+ [() => UpdateCloudFormationCollectionFilter$, () => UpdateTagCollectionFilters]
1421
+ ];
1422
+ var UpdateResourceCollectionRequest$ = [3, n0, _URCR,
1423
+ 0,
1424
+ [_Ac, _RC],
1425
+ [0, () => UpdateResourceCollectionFilter$], 2
1426
+ ];
1427
+ var UpdateResourceCollectionResponse$ = [3, n0, _URCRp,
1428
+ 0,
1429
+ [],
1430
+ []
1431
+ ];
1432
+ var UpdateServiceIntegrationConfig$ = [3, n0, _USIC,
1433
+ 0,
1434
+ [_OC, _LAD, _KMSSSE],
1435
+ [() => OpsCenterIntegrationConfig$, () => LogsAnomalyDetectionIntegrationConfig$, () => KMSServerSideEncryptionIntegrationConfig$]
1436
+ ];
1437
+ var UpdateServiceIntegrationRequest$ = [3, n0, _USIR,
1438
+ 0,
1439
+ [_SI],
1440
+ [() => UpdateServiceIntegrationConfig$], 1
1441
+ ];
1442
+ var UpdateServiceIntegrationResponse$ = [3, n0, _USIRp,
1443
+ 0,
1444
+ [],
1445
+ []
1446
+ ];
1447
+ var UpdateTagCollectionFilter$ = [3, n0, _UTCF,
1448
+ 0,
1449
+ [_ABK, _TV],
1450
+ [0, 64 | 0], 2
1451
+ ];
1452
+ var ValidationExceptionField$ = [3, n0, _VEF,
1453
+ 0,
1454
+ [_N, _M],
1455
+ [0, 0], 2
1456
+ ];
1457
+ var AccountHealths = [1, n0, _AHc,
1458
+ 0, () => AccountHealth$
1459
+ ];
1460
+ var AnomalousLogGroups = [1, n0, _ALGn,
1461
+ 0, () => AnomalousLogGroup$
1462
+ ];
1463
+ var AnomalyResources = [1, n0, _ARn,
1464
+ 0, () => AnomalyResource$
1465
+ ];
1466
+ var Channels = [1, n0, _Ch,
1467
+ 0, () => NotificationChannel$
1468
+ ];
1469
+ var CloudFormationHealths = [1, n0, _CFHl,
1470
+ 0, () => CloudFormationHealth$
1471
+ ];
1472
+ var CloudWatchMetricsDetails = [1, n0, _CWMDlo,
1473
+ 0, () => CloudWatchMetricsDetail$
1474
+ ];
1475
+ var CloudWatchMetricsDimensions = [1, n0, _CWMDlou,
1476
+ 0, () => CloudWatchMetricsDimension$
1477
+ ];
1478
+ var EventResources = [1, n0, _ERv,
1479
+ 0, () => EventResource$
1480
+ ];
1481
+ var Events = [1, n0, _Ev,
1482
+ 0, () => Event$
1483
+ ];
1484
+ var LogAnomalyClasses = [1, n0, _LACo,
1485
+ 0, () => LogAnomalyClass$
1486
+ ];
1487
+ var LogAnomalyShowcases = [1, n0, _LAS,
1488
+ 0, () => LogAnomalyShowcase$
1489
+ ];
1490
+ var MonitoredResourceIdentifiers = [1, n0, _MRI,
1491
+ 0, () => MonitoredResourceIdentifier$
1492
+ ];
1493
+ var PerformanceInsightsMetricsDetails = [1, n0, _PIMDe,
1494
+ 0, () => PerformanceInsightsMetricsDetail$
1495
+ ];
1496
+ var PerformanceInsightsReferenceDataList = [1, n0, _PIRDL,
1497
+ 0, () => PerformanceInsightsReferenceData$
1498
+ ];
1499
+ var PerformanceInsightsStats = [1, n0, _PISe,
1500
+ 0, () => PerformanceInsightsStat$
1501
+ ];
1502
+ var ProactiveAnomalies = [1, n0, _PAr,
1503
+ 0, () => ProactiveAnomalySummary$
1504
+ ];
1505
+ var ProactiveInsights = [1, n0, _PI,
1506
+ 0, () => ProactiveInsightSummary$
1507
+ ];
1508
+ var ProactiveOrganizationInsights = [1, n0, _POI,
1509
+ 0, () => ProactiveOrganizationInsightSummary$
1510
+ ];
1511
+ var ReactiveAnomalies = [1, n0, _RAea,
1512
+ 0, () => ReactiveAnomalySummary$
1513
+ ];
1514
+ var ReactiveInsights = [1, n0, _RIe,
1515
+ 0, () => ReactiveInsightSummary$
1516
+ ];
1517
+ var ReactiveOrganizationInsights = [1, n0, _ROI,
1518
+ 0, () => ReactiveOrganizationInsightSummary$
1519
+ ];
1520
+ var RecommendationRelatedAnomalies = [1, n0, _RRAe,
1521
+ 0, () => RecommendationRelatedAnomaly$
1522
+ ];
1523
+ var RecommendationRelatedAnomalyResources = [1, n0, _RRARe,
1524
+ 0, () => RecommendationRelatedAnomalyResource$
1525
+ ];
1526
+ var RecommendationRelatedCloudWatchMetricsSourceDetails = [1, n0, _RRCWMSDe,
1527
+ 0, () => RecommendationRelatedCloudWatchMetricsSourceDetail$
1528
+ ];
1529
+ var RecommendationRelatedEventResources = [1, n0, _RRERe,
1530
+ 0, () => RecommendationRelatedEventResource$
1531
+ ];
1532
+ var RecommendationRelatedEvents = [1, n0, _RREe,
1533
+ 0, () => RecommendationRelatedEvent$
1534
+ ];
1535
+ var Recommendations = [1, n0, _Rec,
1536
+ 0, () => Recommendation$
1537
+ ];
1538
+ var RelatedAnomalySourceDetails = [1, n0, _RASD,
1539
+ 0, () => RecommendationRelatedAnomalySourceDetail$
1540
+ ];
1541
+ var ServiceHealths = [1, n0, _SHe,
1542
+ 0, () => ServiceHealth$
1543
+ ];
1544
+ var ServiceResourceCosts = [1, n0, _SRCe,
1545
+ 0, () => ServiceResourceCost$
1546
+ ];
1547
+ var TagCollectionFilters = [1, n0, _TCFa,
1548
+ 0, () => TagCollectionFilter$
1549
+ ];
1550
+ var TagCollections = [1, n0, _TCag,
1551
+ 0, () => TagCollection$
1552
+ ];
1553
+ var TagCostEstimationResourceCollectionFilters = [1, n0, _TCERCFa,
1554
+ 0, () => TagCostEstimationResourceCollectionFilter$
1555
+ ];
1556
+ var TagHealths = [1, n0, _THa,
1557
+ 0, () => TagHealth$
1558
+ ];
1559
+ var TimestampMetricValuePairList = [1, n0, _TMVPL,
1560
+ 0, () => TimestampMetricValuePair$
1561
+ ];
1562
+ var UpdateTagCollectionFilters = [1, n0, _UTCFp,
1563
+ 0, () => UpdateTagCollectionFilter$
1564
+ ];
1565
+ var ValidationExceptionFields = [1, n0, _VEFa,
1566
+ 0, () => ValidationExceptionField$
1567
+ ];
1568
+ var AddNotificationChannel$ = [9, n0, _ANC,
1569
+ { [_h]: ["PUT", "/channels", 200] }, () => AddNotificationChannelRequest$, () => AddNotificationChannelResponse$
1570
+ ];
1571
+ var DeleteInsight$ = [9, n0, _DI,
1572
+ { [_h]: ["DELETE", "/insights/{Id}", 200] }, () => DeleteInsightRequest$, () => DeleteInsightResponse$
1573
+ ];
1574
+ var DescribeAccountHealth$ = [9, n0, _DAH,
1575
+ { [_h]: ["GET", "/accounts/health", 200] }, () => DescribeAccountHealthRequest$, () => DescribeAccountHealthResponse$
1576
+ ];
1577
+ var DescribeAccountOverview$ = [9, n0, _DAO,
1578
+ { [_h]: ["POST", "/accounts/overview", 200] }, () => DescribeAccountOverviewRequest$, () => DescribeAccountOverviewResponse$
1579
+ ];
1580
+ var DescribeAnomaly$ = [9, n0, _DA,
1581
+ { [_h]: ["GET", "/anomalies/{Id}", 200] }, () => DescribeAnomalyRequest$, () => DescribeAnomalyResponse$
1582
+ ];
1583
+ var DescribeEventSourcesConfig$ = [9, n0, _DESC,
1584
+ { [_h]: ["POST", "/event-sources", 200] }, () => DescribeEventSourcesConfigRequest$, () => DescribeEventSourcesConfigResponse$
1585
+ ];
1586
+ var DescribeFeedback$ = [9, n0, _DF,
1587
+ { [_h]: ["POST", "/feedback", 200] }, () => DescribeFeedbackRequest$, () => DescribeFeedbackResponse$
1588
+ ];
1589
+ var DescribeInsight$ = [9, n0, _DIe,
1590
+ { [_h]: ["GET", "/insights/{Id}", 200] }, () => DescribeInsightRequest$, () => DescribeInsightResponse$
1591
+ ];
1592
+ var DescribeOrganizationHealth$ = [9, n0, _DOH,
1593
+ { [_h]: ["POST", "/organization/health", 200] }, () => DescribeOrganizationHealthRequest$, () => DescribeOrganizationHealthResponse$
1594
+ ];
1595
+ var DescribeOrganizationOverview$ = [9, n0, _DOO,
1596
+ { [_h]: ["POST", "/organization/overview", 200] }, () => DescribeOrganizationOverviewRequest$, () => DescribeOrganizationOverviewResponse$
1597
+ ];
1598
+ var DescribeOrganizationResourceCollectionHealth$ = [9, n0, _DORCH,
1599
+ { [_h]: ["POST", "/organization/health/resource-collection", 200] }, () => DescribeOrganizationResourceCollectionHealthRequest$, () => DescribeOrganizationResourceCollectionHealthResponse$
1600
+ ];
1601
+ var DescribeResourceCollectionHealth$ = [9, n0, _DRCH,
1602
+ { [_h]: ["GET", "/accounts/health/resource-collection/{ResourceCollectionType}", 200] }, () => DescribeResourceCollectionHealthRequest$, () => DescribeResourceCollectionHealthResponse$
1603
+ ];
1604
+ var DescribeServiceIntegration$ = [9, n0, _DSI,
1605
+ { [_h]: ["GET", "/service-integrations", 200] }, () => DescribeServiceIntegrationRequest$, () => DescribeServiceIntegrationResponse$
1606
+ ];
1607
+ var GetCostEstimation$ = [9, n0, _GCE,
1608
+ { [_h]: ["GET", "/cost-estimation", 200] }, () => GetCostEstimationRequest$, () => GetCostEstimationResponse$
1609
+ ];
1610
+ var GetResourceCollection$ = [9, n0, _GRC,
1611
+ { [_h]: ["GET", "/resource-collections/{ResourceCollectionType}", 200] }, () => GetResourceCollectionRequest$, () => GetResourceCollectionResponse$
1612
+ ];
1613
+ var ListAnomaliesForInsight$ = [9, n0, _LAFI,
1614
+ { [_h]: ["POST", "/anomalies/insight/{InsightId}", 200] }, () => ListAnomaliesForInsightRequest$, () => ListAnomaliesForInsightResponse$
1615
+ ];
1616
+ var ListAnomalousLogGroups$ = [9, n0, _LALG,
1617
+ { [_h]: ["POST", "/list-log-anomalies", 200] }, () => ListAnomalousLogGroupsRequest$, () => ListAnomalousLogGroupsResponse$
1618
+ ];
1619
+ var ListEvents$ = [9, n0, _LE,
1620
+ { [_h]: ["POST", "/events", 200] }, () => ListEventsRequest$, () => ListEventsResponse$
1621
+ ];
1622
+ var ListInsights$ = [9, n0, _LI,
1623
+ { [_h]: ["POST", "/insights", 200] }, () => ListInsightsRequest$, () => ListInsightsResponse$
1624
+ ];
1625
+ var ListMonitoredResources$ = [9, n0, _LMR,
1626
+ { [_h]: ["POST", "/monitoredResources", 200] }, () => ListMonitoredResourcesRequest$, () => ListMonitoredResourcesResponse$
1627
+ ];
1628
+ var ListNotificationChannels$ = [9, n0, _LNC,
1629
+ { [_h]: ["POST", "/channels", 200] }, () => ListNotificationChannelsRequest$, () => ListNotificationChannelsResponse$
1630
+ ];
1631
+ var ListOrganizationInsights$ = [9, n0, _LOI,
1632
+ { [_h]: ["POST", "/organization/insights", 200] }, () => ListOrganizationInsightsRequest$, () => ListOrganizationInsightsResponse$
1633
+ ];
1634
+ var ListRecommendations$ = [9, n0, _LR,
1635
+ { [_h]: ["POST", "/recommendations", 200] }, () => ListRecommendationsRequest$, () => ListRecommendationsResponse$
1636
+ ];
1637
+ var PutFeedback$ = [9, n0, _PF,
1638
+ { [_h]: ["PUT", "/feedback", 200] }, () => PutFeedbackRequest$, () => PutFeedbackResponse$
1639
+ ];
1640
+ var RemoveNotificationChannel$ = [9, n0, _RNC,
1641
+ { [_h]: ["DELETE", "/channels/{Id}", 200] }, () => RemoveNotificationChannelRequest$, () => RemoveNotificationChannelResponse$
1642
+ ];
1643
+ var SearchInsights$ = [9, n0, _SIe,
1644
+ { [_h]: ["POST", "/insights/search", 200] }, () => SearchInsightsRequest$, () => SearchInsightsResponse$
1645
+ ];
1646
+ var SearchOrganizationInsights$ = [9, n0, _SOI,
1647
+ { [_h]: ["POST", "/organization/insights/search", 200] }, () => SearchOrganizationInsightsRequest$, () => SearchOrganizationInsightsResponse$
1648
+ ];
1649
+ var StartCostEstimation$ = [9, n0, _SCE,
1650
+ { [_h]: ["PUT", "/cost-estimation", 200] }, () => StartCostEstimationRequest$, () => StartCostEstimationResponse$
1651
+ ];
1652
+ var UpdateEventSourcesConfig$ = [9, n0, _UESC,
1653
+ { [_h]: ["PUT", "/event-sources", 200] }, () => UpdateEventSourcesConfigRequest$, () => UpdateEventSourcesConfigResponse$
1654
+ ];
1655
+ var UpdateResourceCollection$ = [9, n0, _URC,
1656
+ { [_h]: ["PUT", "/resource-collections", 200] }, () => UpdateResourceCollectionRequest$, () => UpdateResourceCollectionResponse$
1657
+ ];
1658
+ var UpdateServiceIntegration$ = [9, n0, _USI,
1659
+ { [_h]: ["PUT", "/service-integrations", 200] }, () => UpdateServiceIntegrationRequest$, () => UpdateServiceIntegrationResponse$
1660
+ ];
1661
+
1662
+ const getRuntimeConfig$1 = (config) => {
1663
+ return {
1664
+ apiVersion: "2020-12-01",
1665
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1666
+ base64Encoder: config?.base64Encoder ?? toBase64,
1667
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1668
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1669
+ extensions: config?.extensions ?? [],
1670
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultDevOpsGuruHttpAuthSchemeProvider,
1671
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1672
+ {
1673
+ schemeId: "aws.auth#sigv4",
1674
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1675
+ signer: new AwsSdkSigV4Signer(),
1676
+ },
1677
+ ],
1678
+ logger: config?.logger ?? new NoOpLogger(),
1679
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1680
+ protocolSettings: config?.protocolSettings ?? {
1681
+ defaultNamespace: "com.amazonaws.devopsguru",
1682
+ errorTypeRegistries,
1683
+ version: "2020-12-01",
1684
+ serviceTarget: "CapstoneControlPlaneService",
1685
+ },
1686
+ serviceId: config?.serviceId ?? "DevOps Guru",
1687
+ sha256: config?.sha256 ?? Sha256,
1688
+ urlParser: config?.urlParser ?? parseUrl,
1689
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1690
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1691
+ };
1692
+ };
1693
+
1694
+ const getRuntimeConfig = (config) => {
1695
+ emitWarningIfUnsupportedVersion(process.version);
1696
+ const defaultsMode = resolveDefaultsModeConfig(config);
1697
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1698
+ const clientSharedValues = getRuntimeConfig$1(config);
1699
+ emitWarningIfUnsupportedVersion$1(process.version);
1700
+ const loaderConfig = {
1701
+ profile: config?.profile,
1702
+ logger: clientSharedValues.logger,
1703
+ };
1704
+ return {
1705
+ ...clientSharedValues,
1706
+ ...config,
1707
+ runtime: "node",
1708
+ defaultsMode,
1709
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1710
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1711
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1712
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1713
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1714
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1715
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1716
+ retryMode: config?.retryMode ??
1717
+ loadConfig({
1718
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1719
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1720
+ }, config),
1721
+ streamCollector: config?.streamCollector ?? streamCollector,
1722
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1723
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1724
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1725
+ };
1726
+ };
1727
+
34
1728
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1729
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1730
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -757,65 +2451,267 @@ const UpdateResourceCollectionAction = {
757
2451
  REMOVE: "REMOVE",
758
2452
  };
759
2453
 
2454
+ exports.AccessDeniedException = AccessDeniedException;
2455
+ exports.AccessDeniedException$ = AccessDeniedException$;
2456
+ exports.AccountHealth$ = AccountHealth$;
2457
+ exports.AccountInsightHealth$ = AccountInsightHealth$;
2458
+ exports.AddNotificationChannel$ = AddNotificationChannel$;
760
2459
  exports.AddNotificationChannelCommand = AddNotificationChannelCommand;
2460
+ exports.AddNotificationChannelRequest$ = AddNotificationChannelRequest$;
2461
+ exports.AddNotificationChannelResponse$ = AddNotificationChannelResponse$;
2462
+ exports.AmazonCodeGuruProfilerIntegration$ = AmazonCodeGuruProfilerIntegration$;
2463
+ exports.AnomalousLogGroup$ = AnomalousLogGroup$;
2464
+ exports.AnomalyReportedTimeRange$ = AnomalyReportedTimeRange$;
2465
+ exports.AnomalyResource$ = AnomalyResource$;
761
2466
  exports.AnomalySeverity = AnomalySeverity;
2467
+ exports.AnomalySourceDetails$ = AnomalySourceDetails$;
2468
+ exports.AnomalySourceMetadata$ = AnomalySourceMetadata$;
762
2469
  exports.AnomalyStatus = AnomalyStatus;
2470
+ exports.AnomalyTimeRange$ = AnomalyTimeRange$;
763
2471
  exports.AnomalyType = AnomalyType;
2472
+ exports.CloudFormationCollection$ = CloudFormationCollection$;
2473
+ exports.CloudFormationCollectionFilter$ = CloudFormationCollectionFilter$;
2474
+ exports.CloudFormationCostEstimationResourceCollectionFilter$ = CloudFormationCostEstimationResourceCollectionFilter$;
2475
+ exports.CloudFormationHealth$ = CloudFormationHealth$;
764
2476
  exports.CloudWatchMetricDataStatusCode = CloudWatchMetricDataStatusCode;
2477
+ exports.CloudWatchMetricsDataSummary$ = CloudWatchMetricsDataSummary$;
2478
+ exports.CloudWatchMetricsDetail$ = CloudWatchMetricsDetail$;
2479
+ exports.CloudWatchMetricsDimension$ = CloudWatchMetricsDimension$;
765
2480
  exports.CloudWatchMetricsStat = CloudWatchMetricsStat;
2481
+ exports.ConflictException = ConflictException;
2482
+ exports.ConflictException$ = ConflictException$;
2483
+ exports.CostEstimationResourceCollectionFilter$ = CostEstimationResourceCollectionFilter$;
766
2484
  exports.CostEstimationServiceResourceState = CostEstimationServiceResourceState;
767
2485
  exports.CostEstimationStatus = CostEstimationStatus;
2486
+ exports.CostEstimationTimeRange$ = CostEstimationTimeRange$;
2487
+ exports.DeleteInsight$ = DeleteInsight$;
768
2488
  exports.DeleteInsightCommand = DeleteInsightCommand;
2489
+ exports.DeleteInsightRequest$ = DeleteInsightRequest$;
2490
+ exports.DeleteInsightResponse$ = DeleteInsightResponse$;
2491
+ exports.DescribeAccountHealth$ = DescribeAccountHealth$;
769
2492
  exports.DescribeAccountHealthCommand = DescribeAccountHealthCommand;
2493
+ exports.DescribeAccountHealthRequest$ = DescribeAccountHealthRequest$;
2494
+ exports.DescribeAccountHealthResponse$ = DescribeAccountHealthResponse$;
2495
+ exports.DescribeAccountOverview$ = DescribeAccountOverview$;
770
2496
  exports.DescribeAccountOverviewCommand = DescribeAccountOverviewCommand;
2497
+ exports.DescribeAccountOverviewRequest$ = DescribeAccountOverviewRequest$;
2498
+ exports.DescribeAccountOverviewResponse$ = DescribeAccountOverviewResponse$;
2499
+ exports.DescribeAnomaly$ = DescribeAnomaly$;
771
2500
  exports.DescribeAnomalyCommand = DescribeAnomalyCommand;
2501
+ exports.DescribeAnomalyRequest$ = DescribeAnomalyRequest$;
2502
+ exports.DescribeAnomalyResponse$ = DescribeAnomalyResponse$;
2503
+ exports.DescribeEventSourcesConfig$ = DescribeEventSourcesConfig$;
772
2504
  exports.DescribeEventSourcesConfigCommand = DescribeEventSourcesConfigCommand;
2505
+ exports.DescribeEventSourcesConfigRequest$ = DescribeEventSourcesConfigRequest$;
2506
+ exports.DescribeEventSourcesConfigResponse$ = DescribeEventSourcesConfigResponse$;
2507
+ exports.DescribeFeedback$ = DescribeFeedback$;
773
2508
  exports.DescribeFeedbackCommand = DescribeFeedbackCommand;
2509
+ exports.DescribeFeedbackRequest$ = DescribeFeedbackRequest$;
2510
+ exports.DescribeFeedbackResponse$ = DescribeFeedbackResponse$;
2511
+ exports.DescribeInsight$ = DescribeInsight$;
774
2512
  exports.DescribeInsightCommand = DescribeInsightCommand;
2513
+ exports.DescribeInsightRequest$ = DescribeInsightRequest$;
2514
+ exports.DescribeInsightResponse$ = DescribeInsightResponse$;
2515
+ exports.DescribeOrganizationHealth$ = DescribeOrganizationHealth$;
775
2516
  exports.DescribeOrganizationHealthCommand = DescribeOrganizationHealthCommand;
2517
+ exports.DescribeOrganizationHealthRequest$ = DescribeOrganizationHealthRequest$;
2518
+ exports.DescribeOrganizationHealthResponse$ = DescribeOrganizationHealthResponse$;
2519
+ exports.DescribeOrganizationOverview$ = DescribeOrganizationOverview$;
776
2520
  exports.DescribeOrganizationOverviewCommand = DescribeOrganizationOverviewCommand;
2521
+ exports.DescribeOrganizationOverviewRequest$ = DescribeOrganizationOverviewRequest$;
2522
+ exports.DescribeOrganizationOverviewResponse$ = DescribeOrganizationOverviewResponse$;
2523
+ exports.DescribeOrganizationResourceCollectionHealth$ = DescribeOrganizationResourceCollectionHealth$;
777
2524
  exports.DescribeOrganizationResourceCollectionHealthCommand = DescribeOrganizationResourceCollectionHealthCommand;
2525
+ exports.DescribeOrganizationResourceCollectionHealthRequest$ = DescribeOrganizationResourceCollectionHealthRequest$;
2526
+ exports.DescribeOrganizationResourceCollectionHealthResponse$ = DescribeOrganizationResourceCollectionHealthResponse$;
2527
+ exports.DescribeResourceCollectionHealth$ = DescribeResourceCollectionHealth$;
778
2528
  exports.DescribeResourceCollectionHealthCommand = DescribeResourceCollectionHealthCommand;
2529
+ exports.DescribeResourceCollectionHealthRequest$ = DescribeResourceCollectionHealthRequest$;
2530
+ exports.DescribeResourceCollectionHealthResponse$ = DescribeResourceCollectionHealthResponse$;
2531
+ exports.DescribeServiceIntegration$ = DescribeServiceIntegration$;
779
2532
  exports.DescribeServiceIntegrationCommand = DescribeServiceIntegrationCommand;
2533
+ exports.DescribeServiceIntegrationRequest$ = DescribeServiceIntegrationRequest$;
2534
+ exports.DescribeServiceIntegrationResponse$ = DescribeServiceIntegrationResponse$;
780
2535
  exports.DevOpsGuru = DevOpsGuru;
781
2536
  exports.DevOpsGuruClient = DevOpsGuruClient;
2537
+ exports.DevOpsGuruServiceException = DevOpsGuruServiceException;
2538
+ exports.DevOpsGuruServiceException$ = DevOpsGuruServiceException$;
2539
+ exports.EndTimeRange$ = EndTimeRange$;
2540
+ exports.Event$ = Event$;
782
2541
  exports.EventClass = EventClass;
783
2542
  exports.EventDataSource = EventDataSource;
2543
+ exports.EventResource$ = EventResource$;
784
2544
  exports.EventSourceOptInStatus = EventSourceOptInStatus;
2545
+ exports.EventSourcesConfig$ = EventSourcesConfig$;
2546
+ exports.EventTimeRange$ = EventTimeRange$;
2547
+ exports.GetCostEstimation$ = GetCostEstimation$;
785
2548
  exports.GetCostEstimationCommand = GetCostEstimationCommand;
2549
+ exports.GetCostEstimationRequest$ = GetCostEstimationRequest$;
2550
+ exports.GetCostEstimationResponse$ = GetCostEstimationResponse$;
2551
+ exports.GetResourceCollection$ = GetResourceCollection$;
786
2552
  exports.GetResourceCollectionCommand = GetResourceCollectionCommand;
2553
+ exports.GetResourceCollectionRequest$ = GetResourceCollectionRequest$;
2554
+ exports.GetResourceCollectionResponse$ = GetResourceCollectionResponse$;
2555
+ exports.InsightFeedback$ = InsightFeedback$;
787
2556
  exports.InsightFeedbackOption = InsightFeedbackOption;
2557
+ exports.InsightHealth$ = InsightHealth$;
788
2558
  exports.InsightSeverity = InsightSeverity;
789
2559
  exports.InsightStatus = InsightStatus;
2560
+ exports.InsightTimeRange$ = InsightTimeRange$;
790
2561
  exports.InsightType = InsightType;
2562
+ exports.InternalServerException = InternalServerException;
2563
+ exports.InternalServerException$ = InternalServerException$;
2564
+ exports.KMSServerSideEncryptionIntegration$ = KMSServerSideEncryptionIntegration$;
2565
+ exports.KMSServerSideEncryptionIntegrationConfig$ = KMSServerSideEncryptionIntegrationConfig$;
2566
+ exports.ListAnomaliesForInsight$ = ListAnomaliesForInsight$;
791
2567
  exports.ListAnomaliesForInsightCommand = ListAnomaliesForInsightCommand;
2568
+ exports.ListAnomaliesForInsightFilters$ = ListAnomaliesForInsightFilters$;
2569
+ exports.ListAnomaliesForInsightRequest$ = ListAnomaliesForInsightRequest$;
2570
+ exports.ListAnomaliesForInsightResponse$ = ListAnomaliesForInsightResponse$;
2571
+ exports.ListAnomalousLogGroups$ = ListAnomalousLogGroups$;
792
2572
  exports.ListAnomalousLogGroupsCommand = ListAnomalousLogGroupsCommand;
2573
+ exports.ListAnomalousLogGroupsRequest$ = ListAnomalousLogGroupsRequest$;
2574
+ exports.ListAnomalousLogGroupsResponse$ = ListAnomalousLogGroupsResponse$;
2575
+ exports.ListEvents$ = ListEvents$;
793
2576
  exports.ListEventsCommand = ListEventsCommand;
2577
+ exports.ListEventsFilters$ = ListEventsFilters$;
2578
+ exports.ListEventsRequest$ = ListEventsRequest$;
2579
+ exports.ListEventsResponse$ = ListEventsResponse$;
2580
+ exports.ListInsights$ = ListInsights$;
2581
+ exports.ListInsightsAnyStatusFilter$ = ListInsightsAnyStatusFilter$;
2582
+ exports.ListInsightsClosedStatusFilter$ = ListInsightsClosedStatusFilter$;
794
2583
  exports.ListInsightsCommand = ListInsightsCommand;
2584
+ exports.ListInsightsOngoingStatusFilter$ = ListInsightsOngoingStatusFilter$;
2585
+ exports.ListInsightsRequest$ = ListInsightsRequest$;
2586
+ exports.ListInsightsResponse$ = ListInsightsResponse$;
2587
+ exports.ListInsightsStatusFilter$ = ListInsightsStatusFilter$;
2588
+ exports.ListMonitoredResources$ = ListMonitoredResources$;
795
2589
  exports.ListMonitoredResourcesCommand = ListMonitoredResourcesCommand;
2590
+ exports.ListMonitoredResourcesFilters$ = ListMonitoredResourcesFilters$;
2591
+ exports.ListMonitoredResourcesRequest$ = ListMonitoredResourcesRequest$;
2592
+ exports.ListMonitoredResourcesResponse$ = ListMonitoredResourcesResponse$;
2593
+ exports.ListNotificationChannels$ = ListNotificationChannels$;
796
2594
  exports.ListNotificationChannelsCommand = ListNotificationChannelsCommand;
2595
+ exports.ListNotificationChannelsRequest$ = ListNotificationChannelsRequest$;
2596
+ exports.ListNotificationChannelsResponse$ = ListNotificationChannelsResponse$;
2597
+ exports.ListOrganizationInsights$ = ListOrganizationInsights$;
797
2598
  exports.ListOrganizationInsightsCommand = ListOrganizationInsightsCommand;
2599
+ exports.ListOrganizationInsightsRequest$ = ListOrganizationInsightsRequest$;
2600
+ exports.ListOrganizationInsightsResponse$ = ListOrganizationInsightsResponse$;
2601
+ exports.ListRecommendations$ = ListRecommendations$;
798
2602
  exports.ListRecommendationsCommand = ListRecommendationsCommand;
2603
+ exports.ListRecommendationsRequest$ = ListRecommendationsRequest$;
2604
+ exports.ListRecommendationsResponse$ = ListRecommendationsResponse$;
799
2605
  exports.Locale = Locale;
2606
+ exports.LogAnomalyClass$ = LogAnomalyClass$;
2607
+ exports.LogAnomalyShowcase$ = LogAnomalyShowcase$;
800
2608
  exports.LogAnomalyType = LogAnomalyType;
2609
+ exports.LogsAnomalyDetectionIntegration$ = LogsAnomalyDetectionIntegration$;
2610
+ exports.LogsAnomalyDetectionIntegrationConfig$ = LogsAnomalyDetectionIntegrationConfig$;
2611
+ exports.MonitoredResourceIdentifier$ = MonitoredResourceIdentifier$;
2612
+ exports.NotificationChannel$ = NotificationChannel$;
2613
+ exports.NotificationChannelConfig$ = NotificationChannelConfig$;
2614
+ exports.NotificationFilterConfig$ = NotificationFilterConfig$;
801
2615
  exports.NotificationMessageType = NotificationMessageType;
2616
+ exports.OpsCenterIntegration$ = OpsCenterIntegration$;
2617
+ exports.OpsCenterIntegrationConfig$ = OpsCenterIntegrationConfig$;
802
2618
  exports.OptInStatus = OptInStatus;
803
2619
  exports.OrganizationResourceCollectionType = OrganizationResourceCollectionType;
2620
+ exports.PerformanceInsightsMetricDimensionGroup$ = PerformanceInsightsMetricDimensionGroup$;
2621
+ exports.PerformanceInsightsMetricQuery$ = PerformanceInsightsMetricQuery$;
2622
+ exports.PerformanceInsightsMetricsDetail$ = PerformanceInsightsMetricsDetail$;
2623
+ exports.PerformanceInsightsReferenceComparisonValues$ = PerformanceInsightsReferenceComparisonValues$;
2624
+ exports.PerformanceInsightsReferenceData$ = PerformanceInsightsReferenceData$;
2625
+ exports.PerformanceInsightsReferenceMetric$ = PerformanceInsightsReferenceMetric$;
2626
+ exports.PerformanceInsightsReferenceScalar$ = PerformanceInsightsReferenceScalar$;
2627
+ exports.PerformanceInsightsStat$ = PerformanceInsightsStat$;
2628
+ exports.PredictionTimeRange$ = PredictionTimeRange$;
2629
+ exports.ProactiveAnomaly$ = ProactiveAnomaly$;
2630
+ exports.ProactiveAnomalySummary$ = ProactiveAnomalySummary$;
2631
+ exports.ProactiveInsight$ = ProactiveInsight$;
2632
+ exports.ProactiveInsightSummary$ = ProactiveInsightSummary$;
2633
+ exports.ProactiveOrganizationInsightSummary$ = ProactiveOrganizationInsightSummary$;
2634
+ exports.PutFeedback$ = PutFeedback$;
804
2635
  exports.PutFeedbackCommand = PutFeedbackCommand;
2636
+ exports.PutFeedbackRequest$ = PutFeedbackRequest$;
2637
+ exports.PutFeedbackResponse$ = PutFeedbackResponse$;
2638
+ exports.ReactiveAnomaly$ = ReactiveAnomaly$;
2639
+ exports.ReactiveAnomalySummary$ = ReactiveAnomalySummary$;
2640
+ exports.ReactiveInsight$ = ReactiveInsight$;
2641
+ exports.ReactiveInsightSummary$ = ReactiveInsightSummary$;
2642
+ exports.ReactiveOrganizationInsightSummary$ = ReactiveOrganizationInsightSummary$;
2643
+ exports.Recommendation$ = Recommendation$;
2644
+ exports.RecommendationRelatedAnomaly$ = RecommendationRelatedAnomaly$;
2645
+ exports.RecommendationRelatedAnomalyResource$ = RecommendationRelatedAnomalyResource$;
2646
+ exports.RecommendationRelatedAnomalySourceDetail$ = RecommendationRelatedAnomalySourceDetail$;
2647
+ exports.RecommendationRelatedCloudWatchMetricsSourceDetail$ = RecommendationRelatedCloudWatchMetricsSourceDetail$;
2648
+ exports.RecommendationRelatedEvent$ = RecommendationRelatedEvent$;
2649
+ exports.RecommendationRelatedEventResource$ = RecommendationRelatedEventResource$;
2650
+ exports.RemoveNotificationChannel$ = RemoveNotificationChannel$;
805
2651
  exports.RemoveNotificationChannelCommand = RemoveNotificationChannelCommand;
2652
+ exports.RemoveNotificationChannelRequest$ = RemoveNotificationChannelRequest$;
2653
+ exports.RemoveNotificationChannelResponse$ = RemoveNotificationChannelResponse$;
2654
+ exports.ResourceCollection$ = ResourceCollection$;
2655
+ exports.ResourceCollectionFilter$ = ResourceCollectionFilter$;
806
2656
  exports.ResourceCollectionType = ResourceCollectionType;
2657
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2658
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
807
2659
  exports.ResourcePermission = ResourcePermission;
808
2660
  exports.ResourceTypeFilter = ResourceTypeFilter;
2661
+ exports.SearchInsights$ = SearchInsights$;
809
2662
  exports.SearchInsightsCommand = SearchInsightsCommand;
2663
+ exports.SearchInsightsFilters$ = SearchInsightsFilters$;
2664
+ exports.SearchInsightsRequest$ = SearchInsightsRequest$;
2665
+ exports.SearchInsightsResponse$ = SearchInsightsResponse$;
2666
+ exports.SearchOrganizationInsights$ = SearchOrganizationInsights$;
810
2667
  exports.SearchOrganizationInsightsCommand = SearchOrganizationInsightsCommand;
2668
+ exports.SearchOrganizationInsightsFilters$ = SearchOrganizationInsightsFilters$;
2669
+ exports.SearchOrganizationInsightsRequest$ = SearchOrganizationInsightsRequest$;
2670
+ exports.SearchOrganizationInsightsResponse$ = SearchOrganizationInsightsResponse$;
811
2671
  exports.ServerSideEncryptionType = ServerSideEncryptionType;
2672
+ exports.ServiceCollection$ = ServiceCollection$;
2673
+ exports.ServiceHealth$ = ServiceHealth$;
2674
+ exports.ServiceInsightHealth$ = ServiceInsightHealth$;
2675
+ exports.ServiceIntegrationConfig$ = ServiceIntegrationConfig$;
812
2676
  exports.ServiceName = ServiceName;
2677
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2678
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2679
+ exports.ServiceResourceCost$ = ServiceResourceCost$;
2680
+ exports.SnsChannelConfig$ = SnsChannelConfig$;
2681
+ exports.StartCostEstimation$ = StartCostEstimation$;
813
2682
  exports.StartCostEstimationCommand = StartCostEstimationCommand;
2683
+ exports.StartCostEstimationRequest$ = StartCostEstimationRequest$;
2684
+ exports.StartCostEstimationResponse$ = StartCostEstimationResponse$;
2685
+ exports.StartTimeRange$ = StartTimeRange$;
2686
+ exports.TagCollection$ = TagCollection$;
2687
+ exports.TagCollectionFilter$ = TagCollectionFilter$;
2688
+ exports.TagCostEstimationResourceCollectionFilter$ = TagCostEstimationResourceCollectionFilter$;
2689
+ exports.TagHealth$ = TagHealth$;
2690
+ exports.ThrottlingException = ThrottlingException;
2691
+ exports.ThrottlingException$ = ThrottlingException$;
2692
+ exports.TimestampMetricValuePair$ = TimestampMetricValuePair$;
2693
+ exports.UpdateCloudFormationCollectionFilter$ = UpdateCloudFormationCollectionFilter$;
2694
+ exports.UpdateEventSourcesConfig$ = UpdateEventSourcesConfig$;
814
2695
  exports.UpdateEventSourcesConfigCommand = UpdateEventSourcesConfigCommand;
2696
+ exports.UpdateEventSourcesConfigRequest$ = UpdateEventSourcesConfigRequest$;
2697
+ exports.UpdateEventSourcesConfigResponse$ = UpdateEventSourcesConfigResponse$;
2698
+ exports.UpdateResourceCollection$ = UpdateResourceCollection$;
815
2699
  exports.UpdateResourceCollectionAction = UpdateResourceCollectionAction;
816
2700
  exports.UpdateResourceCollectionCommand = UpdateResourceCollectionCommand;
2701
+ exports.UpdateResourceCollectionFilter$ = UpdateResourceCollectionFilter$;
2702
+ exports.UpdateResourceCollectionRequest$ = UpdateResourceCollectionRequest$;
2703
+ exports.UpdateResourceCollectionResponse$ = UpdateResourceCollectionResponse$;
2704
+ exports.UpdateServiceIntegration$ = UpdateServiceIntegration$;
817
2705
  exports.UpdateServiceIntegrationCommand = UpdateServiceIntegrationCommand;
2706
+ exports.UpdateServiceIntegrationConfig$ = UpdateServiceIntegrationConfig$;
2707
+ exports.UpdateServiceIntegrationRequest$ = UpdateServiceIntegrationRequest$;
2708
+ exports.UpdateServiceIntegrationResponse$ = UpdateServiceIntegrationResponse$;
2709
+ exports.UpdateTagCollectionFilter$ = UpdateTagCollectionFilter$;
2710
+ exports.ValidationException = ValidationException;
2711
+ exports.ValidationException$ = ValidationException$;
2712
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
818
2713
  exports.ValidationExceptionReason = ValidationExceptionReason;
2714
+ exports.errorTypeRegistries = errorTypeRegistries;
819
2715
  exports.paginateDescribeOrganizationResourceCollectionHealth = paginateDescribeOrganizationResourceCollectionHealth;
820
2716
  exports.paginateDescribeResourceCollectionHealth = paginateDescribeResourceCollectionHealth;
821
2717
  exports.paginateGetCostEstimation = paginateGetCostEstimation;