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