@aws-sdk/client-compute-optimizer 3.1075.0 → 3.1077.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +2119 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- 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/ComputeOptimizerServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -109
- 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 -1818
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
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
|
-
const {
|
|
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, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultComputeOptimizerHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "compute-optimizer",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultComputeOptimizerHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1863 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://compute-optimizer-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://compute-optimizer-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://compute-optimizer.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://compute-optimizer.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class ComputeOptimizerServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, ComputeOptimizerServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class AccessDeniedException extends ComputeOptimizerServiceException {
|
|
141
|
+
name = "AccessDeniedException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class InternalServerException extends ComputeOptimizerServiceException {
|
|
153
|
+
name = "InternalServerException";
|
|
154
|
+
$fault = "server";
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "InternalServerException",
|
|
158
|
+
$fault: "server",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class InvalidParameterValueException extends ComputeOptimizerServiceException {
|
|
165
|
+
name = "InvalidParameterValueException";
|
|
166
|
+
$fault = "client";
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "InvalidParameterValueException",
|
|
170
|
+
$fault: "client",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
class MissingAuthenticationToken extends ComputeOptimizerServiceException {
|
|
177
|
+
name = "MissingAuthenticationToken";
|
|
178
|
+
$fault = "client";
|
|
179
|
+
constructor(opts) {
|
|
180
|
+
super({
|
|
181
|
+
name: "MissingAuthenticationToken",
|
|
182
|
+
$fault: "client",
|
|
183
|
+
...opts,
|
|
184
|
+
});
|
|
185
|
+
Object.setPrototypeOf(this, MissingAuthenticationToken.prototype);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
class OptInRequiredException extends ComputeOptimizerServiceException {
|
|
189
|
+
name = "OptInRequiredException";
|
|
190
|
+
$fault = "client";
|
|
191
|
+
constructor(opts) {
|
|
192
|
+
super({
|
|
193
|
+
name: "OptInRequiredException",
|
|
194
|
+
$fault: "client",
|
|
195
|
+
...opts,
|
|
196
|
+
});
|
|
197
|
+
Object.setPrototypeOf(this, OptInRequiredException.prototype);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
class ResourceNotFoundException extends ComputeOptimizerServiceException {
|
|
201
|
+
name = "ResourceNotFoundException";
|
|
202
|
+
$fault = "client";
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "ResourceNotFoundException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
class ServiceUnavailableException extends ComputeOptimizerServiceException {
|
|
213
|
+
name = "ServiceUnavailableException";
|
|
214
|
+
$fault = "server";
|
|
215
|
+
constructor(opts) {
|
|
216
|
+
super({
|
|
217
|
+
name: "ServiceUnavailableException",
|
|
218
|
+
$fault: "server",
|
|
219
|
+
...opts,
|
|
220
|
+
});
|
|
221
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
class ThrottlingException extends ComputeOptimizerServiceException {
|
|
225
|
+
name = "ThrottlingException";
|
|
226
|
+
$fault = "client";
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "ThrottlingException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
class LimitExceededException extends ComputeOptimizerServiceException {
|
|
237
|
+
name = "LimitExceededException";
|
|
238
|
+
$fault = "client";
|
|
239
|
+
constructor(opts) {
|
|
240
|
+
super({
|
|
241
|
+
name: "LimitExceededException",
|
|
242
|
+
$fault: "client",
|
|
243
|
+
...opts,
|
|
244
|
+
});
|
|
245
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
const _ADE = "AccessDeniedException";
|
|
250
|
+
const _AES = "AccountEnrollmentStatus";
|
|
251
|
+
const _AESc = "AccountEnrollmentStatuses";
|
|
252
|
+
const _ASGC = "AutoScalingGroupConfiguration";
|
|
253
|
+
const _ASGEMS = "AutoScalingGroupEstimatedMonthlySavings";
|
|
254
|
+
const _ASGR = "AutoScalingGroupRecommendation";
|
|
255
|
+
const _ASGRO = "AutoScalingGroupRecommendationOption";
|
|
256
|
+
const _ASGROu = "AutoScalingGroupRecommendationOptions";
|
|
257
|
+
const _ASGRu = "AutoScalingGroupRecommendations";
|
|
258
|
+
const _ASGSOAD = "AutoScalingGroupSavingsOpportunityAfterDiscounts";
|
|
259
|
+
const _CC = "ContainerConfiguration";
|
|
260
|
+
const _CCo = "ContainerConfigurations";
|
|
261
|
+
const _CMP = "CustomizableMetricParameters";
|
|
262
|
+
const _CPRR = "CurrentPerformanceRiskRatings";
|
|
263
|
+
const _CR = "ContainerRecommendation";
|
|
264
|
+
const _CRo = "ContainerRecommendations";
|
|
265
|
+
const _DBSC = "DBStorageConfiguration";
|
|
266
|
+
const _DREJ = "DescribeRecommendationExportJobs";
|
|
267
|
+
const _DREJR = "DescribeRecommendationExportJobsRequest";
|
|
268
|
+
const _DREJRe = "DescribeRecommendationExportJobsResponse";
|
|
269
|
+
const _DRP = "DeleteRecommendationPreferences";
|
|
270
|
+
const _DRPR = "DeleteRecommendationPreferencesRequest";
|
|
271
|
+
const _DRPRe = "DeleteRecommendationPreferencesResponse";
|
|
272
|
+
const _EASGR = "ExportAutoScalingGroupRecommendations";
|
|
273
|
+
const _EASGRR = "ExportAutoScalingGroupRecommendationsRequest";
|
|
274
|
+
const _EASGRRx = "ExportAutoScalingGroupRecommendationsResponse";
|
|
275
|
+
const _EBSEMS = "EBSEstimatedMonthlySavings";
|
|
276
|
+
const _EBSERP = "EBSEffectiveRecommendationPreferences";
|
|
277
|
+
const _EBSF = "EBSFilter";
|
|
278
|
+
const _EBSFi = "EBSFilters";
|
|
279
|
+
const _EBSSEM = "EBSSavingsEstimationMode";
|
|
280
|
+
const _EBSSOAD = "EBSSavingsOpportunityAfterDiscounts";
|
|
281
|
+
const _EBSUM = "EBSUtilizationMetric";
|
|
282
|
+
const _EBSUMt = "EBSUtilizationMetrics";
|
|
283
|
+
const _ECSEMS = "ECSEstimatedMonthlySavings";
|
|
284
|
+
const _ECSERP = "ECSEffectiveRecommendationPreferences";
|
|
285
|
+
const _ECSSEM = "ECSSavingsEstimationMode";
|
|
286
|
+
const _ECSSOAD = "ECSSavingsOpportunityAfterDiscounts";
|
|
287
|
+
const _ECSSPM = "ECSServiceProjectedMetric";
|
|
288
|
+
const _ECSSPMe = "ECSServiceProjectedMetrics";
|
|
289
|
+
const _ECSSPUM = "ECSServiceProjectedUtilizationMetric";
|
|
290
|
+
const _ECSSPUMe = "ECSServiceProjectedUtilizationMetrics";
|
|
291
|
+
const _ECSSR = "ECSServiceRecommendation";
|
|
292
|
+
const _ECSSRF = "ECSServiceRecommendationFilter";
|
|
293
|
+
const _ECSSRFe = "ECSServiceRecommendationFilters";
|
|
294
|
+
const _ECSSRO = "ECSServiceRecommendationOption";
|
|
295
|
+
const _ECSSROPM = "ECSServiceRecommendedOptionProjectedMetric";
|
|
296
|
+
const _ECSSROPMe = "ECSServiceRecommendedOptionProjectedMetrics";
|
|
297
|
+
const _ECSSROe = "ECSServiceRecommendationOptions";
|
|
298
|
+
const _ECSSRe = "ECSServiceRecommendations";
|
|
299
|
+
const _ECSSUM = "ECSServiceUtilizationMetric";
|
|
300
|
+
const _ECSSUMe = "ECSServiceUtilizationMetrics";
|
|
301
|
+
const _ED = "ExportDestination";
|
|
302
|
+
const _EEBSVR = "ExportEBSVolumeRecommendations";
|
|
303
|
+
const _EEBSVRR = "ExportEBSVolumeRecommendationsRequest";
|
|
304
|
+
const _EEBSVRRx = "ExportEBSVolumeRecommendationsResponse";
|
|
305
|
+
const _EECIR = "ExportEC2InstanceRecommendations";
|
|
306
|
+
const _EECIRR = "ExportEC2InstanceRecommendationsRequest";
|
|
307
|
+
const _EECIRRx = "ExportEC2InstanceRecommendationsResponse";
|
|
308
|
+
const _EECSSR = "ExportECSServiceRecommendations";
|
|
309
|
+
const _EECSSRR = "ExportECSServiceRecommendationsRequest";
|
|
310
|
+
const _EECSSRRx = "ExportECSServiceRecommendationsResponse";
|
|
311
|
+
const _EF = "EnrollmentFilter";
|
|
312
|
+
const _EFn = "EnrollmentFilters";
|
|
313
|
+
const _EIR = "ExportIdleRecommendations";
|
|
314
|
+
const _EIRR = "ExportIdleRecommendationsRequest";
|
|
315
|
+
const _EIRRx = "ExportIdleRecommendationsResponse";
|
|
316
|
+
const _ELFR = "ExportLambdaFunctionRecommendations";
|
|
317
|
+
const _ELFRR = "ExportLambdaFunctionRecommendationsRequest";
|
|
318
|
+
const _ELFRRx = "ExportLambdaFunctionRecommendationsResponse";
|
|
319
|
+
const _ELR = "ExportLicenseRecommendations";
|
|
320
|
+
const _ELRR = "ExportLicenseRecommendationsRequest";
|
|
321
|
+
const _ELRRx = "ExportLicenseRecommendationsResponse";
|
|
322
|
+
const _EMP = "ExternalMetricsPreference";
|
|
323
|
+
const _EMS = "EstimatedMonthlySavings";
|
|
324
|
+
const _EMSx = "ExternalMetricStatus";
|
|
325
|
+
const _EPR = "EffectivePreferredResource";
|
|
326
|
+
const _EPRf = "EffectivePreferredResources";
|
|
327
|
+
const _ERDSDR = "ExportRDSDatabaseRecommendations";
|
|
328
|
+
const _ERDSDRR = "ExportRDSDatabaseRecommendationsRequest";
|
|
329
|
+
const _ERDSDRRx = "ExportRDSDatabaseRecommendationsResponse";
|
|
330
|
+
const _ERP = "EffectiveRecommendationPreferences";
|
|
331
|
+
const _F = "Filter";
|
|
332
|
+
const _Fi = "Filters";
|
|
333
|
+
const _G = "Gpu";
|
|
334
|
+
const _GASGR = "GetAutoScalingGroupRecommendations";
|
|
335
|
+
const _GASGRR = "GetAutoScalingGroupRecommendationsRequest";
|
|
336
|
+
const _GASGRRe = "GetAutoScalingGroupRecommendationsResponse";
|
|
337
|
+
const _GEBSVR = "GetEBSVolumeRecommendations";
|
|
338
|
+
const _GEBSVRR = "GetEBSVolumeRecommendationsRequest";
|
|
339
|
+
const _GEBSVRRe = "GetEBSVolumeRecommendationsResponse";
|
|
340
|
+
const _GECIR = "GetEC2InstanceRecommendations";
|
|
341
|
+
const _GECIRR = "GetEC2InstanceRecommendationsRequest";
|
|
342
|
+
const _GECIRRe = "GetEC2InstanceRecommendationsResponse";
|
|
343
|
+
const _GECRPM = "GetEC2RecommendationProjectedMetrics";
|
|
344
|
+
const _GECRPMR = "GetEC2RecommendationProjectedMetricsRequest";
|
|
345
|
+
const _GECRPMRe = "GetEC2RecommendationProjectedMetricsResponse";
|
|
346
|
+
const _GECSSR = "GetECSServiceRecommendations";
|
|
347
|
+
const _GECSSRPM = "GetECSServiceRecommendationProjectedMetrics";
|
|
348
|
+
const _GECSSRPMR = "GetECSServiceRecommendationProjectedMetricsRequest";
|
|
349
|
+
const _GECSSRPMRe = "GetECSServiceRecommendationProjectedMetricsResponse";
|
|
350
|
+
const _GECSSRR = "GetECSServiceRecommendationsRequest";
|
|
351
|
+
const _GECSSRRe = "GetECSServiceRecommendationsResponse";
|
|
352
|
+
const _GERP = "GetEffectiveRecommendationPreferences";
|
|
353
|
+
const _GERPR = "GetEffectiveRecommendationPreferencesRequest";
|
|
354
|
+
const _GERPRe = "GetEffectiveRecommendationPreferencesResponse";
|
|
355
|
+
const _GES = "GetEnrollmentStatus";
|
|
356
|
+
const _GESFO = "GetEnrollmentStatusesForOrganization";
|
|
357
|
+
const _GESFOR = "GetEnrollmentStatusesForOrganizationRequest";
|
|
358
|
+
const _GESFORe = "GetEnrollmentStatusesForOrganizationResponse";
|
|
359
|
+
const _GESR = "GetEnrollmentStatusRequest";
|
|
360
|
+
const _GESRe = "GetEnrollmentStatusResponse";
|
|
361
|
+
const _GI = "GpuInfo";
|
|
362
|
+
const _GIR = "GetIdleRecommendations";
|
|
363
|
+
const _GIRR = "GetIdleRecommendationsRequest";
|
|
364
|
+
const _GIRRe = "GetIdleRecommendationsResponse";
|
|
365
|
+
const _GLFR = "GetLambdaFunctionRecommendations";
|
|
366
|
+
const _GLFRR = "GetLambdaFunctionRecommendationsRequest";
|
|
367
|
+
const _GLFRRe = "GetLambdaFunctionRecommendationsResponse";
|
|
368
|
+
const _GLR = "GetLicenseRecommendations";
|
|
369
|
+
const _GLRR = "GetLicenseRecommendationsRequest";
|
|
370
|
+
const _GLRRe = "GetLicenseRecommendationsResponse";
|
|
371
|
+
const _GRDSDR = "GetRDSDatabaseRecommendations";
|
|
372
|
+
const _GRDSDRPM = "GetRDSDatabaseRecommendationProjectedMetrics";
|
|
373
|
+
const _GRDSDRPMR = "GetRDSDatabaseRecommendationProjectedMetricsRequest";
|
|
374
|
+
const _GRDSDRPMRe = "GetRDSDatabaseRecommendationProjectedMetricsResponse";
|
|
375
|
+
const _GRDSDRR = "GetRDSDatabaseRecommendationsRequest";
|
|
376
|
+
const _GRDSDRRe = "GetRDSDatabaseRecommendationsResponse";
|
|
377
|
+
const _GRE = "GetRecommendationError";
|
|
378
|
+
const _GREe = "GetRecommendationErrors";
|
|
379
|
+
const _GRP = "GetRecommendationPreferences";
|
|
380
|
+
const _GRPR = "GetRecommendationPreferencesRequest";
|
|
381
|
+
const _GRPRe = "GetRecommendationPreferencesResponse";
|
|
382
|
+
const _GRS = "GetRecommendationSummaries";
|
|
383
|
+
const _GRSR = "GetRecommendationSummariesRequest";
|
|
384
|
+
const _GRSRe = "GetRecommendationSummariesResponse";
|
|
385
|
+
const _Gp = "Gpus";
|
|
386
|
+
const _ID = "IdleDimension";
|
|
387
|
+
const _IDd = "IdleDimensions";
|
|
388
|
+
const _IEMS = "IdleEstimatedMonthlySavings";
|
|
389
|
+
const _IEMSn = "InstanceEstimatedMonthlySavings";
|
|
390
|
+
const _IPVE = "InvalidParameterValueException";
|
|
391
|
+
const _IR = "IdleRecommendation";
|
|
392
|
+
const _IRE = "IdleRecommendationError";
|
|
393
|
+
const _IREd = "IdleRecommendationErrors";
|
|
394
|
+
const _IRF = "IdleRecommendationFilter";
|
|
395
|
+
const _IRFd = "IdleRecommendationFilters";
|
|
396
|
+
const _IRO = "InstanceRecommendationOption";
|
|
397
|
+
const _IRd = "IdleRecommendations";
|
|
398
|
+
const _IRn = "InstanceRecommendation";
|
|
399
|
+
const _IRns = "InstanceRecommendations";
|
|
400
|
+
const _IS = "IdleSummary";
|
|
401
|
+
const _ISE = "InternalServerException";
|
|
402
|
+
const _ISEM = "InstanceSavingsEstimationMode";
|
|
403
|
+
const _ISO = "IdleSavingsOpportunity";
|
|
404
|
+
const _ISOAD = "IdleSavingsOpportunityAfterDiscounts";
|
|
405
|
+
const _ISOADn = "InstanceSavingsOpportunityAfterDiscounts";
|
|
406
|
+
const _ISd = "IdleSummaries";
|
|
407
|
+
const _IUM = "IdleUtilizationMetric";
|
|
408
|
+
const _IUMd = "IdleUtilizationMetrics";
|
|
409
|
+
const _IWS = "InferredWorkloadSaving";
|
|
410
|
+
const _IWSn = "InferredWorkloadSavings";
|
|
411
|
+
const _JF = "JobFilter";
|
|
412
|
+
const _JFo = "JobFilters";
|
|
413
|
+
const _LC = "LicenseConfiguration";
|
|
414
|
+
const _LEE = "LimitExceededException";
|
|
415
|
+
const _LEMS = "LambdaEstimatedMonthlySavings";
|
|
416
|
+
const _LERP = "LambdaEffectiveRecommendationPreferences";
|
|
417
|
+
const _LFMPM = "LambdaFunctionMemoryProjectedMetric";
|
|
418
|
+
const _LFMPMa = "LambdaFunctionMemoryProjectedMetrics";
|
|
419
|
+
const _LFMRO = "LambdaFunctionMemoryRecommendationOption";
|
|
420
|
+
const _LFMROa = "LambdaFunctionMemoryRecommendationOptions";
|
|
421
|
+
const _LFR = "LambdaFunctionRecommendation";
|
|
422
|
+
const _LFRF = "LambdaFunctionRecommendationFilter";
|
|
423
|
+
const _LFRFa = "LambdaFunctionRecommendationFilters";
|
|
424
|
+
const _LFRa = "LambdaFunctionRecommendations";
|
|
425
|
+
const _LFUM = "LambdaFunctionUtilizationMetric";
|
|
426
|
+
const _LFUMa = "LambdaFunctionUtilizationMetrics";
|
|
427
|
+
const _LR = "LicenseRecommendation";
|
|
428
|
+
const _LRF = "LicenseRecommendationFilter";
|
|
429
|
+
const _LRFi = "LicenseRecommendationFilters";
|
|
430
|
+
const _LRO = "LicenseRecommendationOption";
|
|
431
|
+
const _LROi = "LicenseRecommendationOptions";
|
|
432
|
+
const _LRi = "LicenseRecommendations";
|
|
433
|
+
const _LSEM = "LambdaSavingsEstimationMode";
|
|
434
|
+
const _LSOAD = "LambdaSavingsOpportunityAfterDiscounts";
|
|
435
|
+
const _MAT = "MissingAuthenticationToken";
|
|
436
|
+
const _MS = "MetricSource";
|
|
437
|
+
const _MSC = "MemorySizeConfiguration";
|
|
438
|
+
const _MSe = "MetricsSource";
|
|
439
|
+
const _OB = "OrderBy";
|
|
440
|
+
const _OIRE = "OptInRequiredException";
|
|
441
|
+
const _PM = "ProjectedMetric";
|
|
442
|
+
const _PMr = "ProjectedMetrics";
|
|
443
|
+
const _PR = "PreferredResource";
|
|
444
|
+
const _PRP = "PutRecommendationPreferences";
|
|
445
|
+
const _PRPR = "PutRecommendationPreferencesRequest";
|
|
446
|
+
const _PRPRu = "PutRecommendationPreferencesResponse";
|
|
447
|
+
const _PRr = "PreferredResources";
|
|
448
|
+
const _PUM = "ProjectedUtilizationMetrics";
|
|
449
|
+
const _RCS = "ReasonCodeSummary";
|
|
450
|
+
const _RCSe = "ReasonCodeSummaries";
|
|
451
|
+
const _RDSDBIRO = "RDSDBInstanceRecommendationOption";
|
|
452
|
+
const _RDSDBIROn = "RDSDBInstanceRecommendationOptions";
|
|
453
|
+
const _RDSDBPUM = "RDSDBProjectedUtilizationMetrics";
|
|
454
|
+
const _RDSDBR = "RDSDBRecommendation";
|
|
455
|
+
const _RDSDBRF = "RDSDBRecommendationFilter";
|
|
456
|
+
const _RDSDBRFe = "RDSDBRecommendationFilters";
|
|
457
|
+
const _RDSDBRe = "RDSDBRecommendations";
|
|
458
|
+
const _RDSDBSRO = "RDSDBStorageRecommendationOption";
|
|
459
|
+
const _RDSDBSROt = "RDSDBStorageRecommendationOptions";
|
|
460
|
+
const _RDSDBUM = "RDSDBUtilizationMetric";
|
|
461
|
+
const _RDSDBUMt = "RDSDBUtilizationMetrics";
|
|
462
|
+
const _RDSDPM = "RDSDatabaseProjectedMetric";
|
|
463
|
+
const _RDSDPMa = "RDSDatabaseProjectedMetrics";
|
|
464
|
+
const _RDSDROPM = "RDSDatabaseRecommendedOptionProjectedMetric";
|
|
465
|
+
const _RDSDROPMa = "RDSDatabaseRecommendedOptionProjectedMetrics";
|
|
466
|
+
const _RDSERP = "RDSEffectiveRecommendationPreferences";
|
|
467
|
+
const _RDSIEMS = "RDSInstanceEstimatedMonthlySavings";
|
|
468
|
+
const _RDSISOAD = "RDSInstanceSavingsOpportunityAfterDiscounts";
|
|
469
|
+
const _RDSSEM = "RDSSavingsEstimationMode";
|
|
470
|
+
const _RDSSEMS = "RDSStorageEstimatedMonthlySavings";
|
|
471
|
+
const _RDSSSOAD = "RDSStorageSavingsOpportunityAfterDiscounts";
|
|
472
|
+
const _REJ = "RecommendationExportJob";
|
|
473
|
+
const _REJe = "RecommendationExportJobs";
|
|
474
|
+
const _RNFE = "ResourceNotFoundException";
|
|
475
|
+
const _RO = "RecommendationOptions";
|
|
476
|
+
const _ROPM = "RecommendedOptionProjectedMetric";
|
|
477
|
+
const _ROPMe = "RecommendedOptionProjectedMetrics";
|
|
478
|
+
const _RP = "RecommendationPreferences";
|
|
479
|
+
const _RPD = "RecommendationPreferencesDetail";
|
|
480
|
+
const _RPDe = "RecommendationPreferencesDetails";
|
|
481
|
+
const _RS = "RecommendationSource";
|
|
482
|
+
const _RSe = "RecommendationSummary";
|
|
483
|
+
const _RSec = "RecommendationSources";
|
|
484
|
+
const _RSeco = "RecommendationSummaries";
|
|
485
|
+
const _S = "Scope";
|
|
486
|
+
const _SC = "ServiceConfiguration";
|
|
487
|
+
const _SD = "S3Destination";
|
|
488
|
+
const _SDC = "S3DestinationConfig";
|
|
489
|
+
const _SO = "SavingsOpportunity";
|
|
490
|
+
const _SUE = "ServiceUnavailableException";
|
|
491
|
+
const _Su = "Summary";
|
|
492
|
+
const _Sum = "Summaries";
|
|
493
|
+
const _T = "Tag";
|
|
494
|
+
const _TE = "ThrottlingException";
|
|
495
|
+
const _Ta = "Tags";
|
|
496
|
+
const _UES = "UpdateEnrollmentStatus";
|
|
497
|
+
const _UESR = "UpdateEnrollmentStatusRequest";
|
|
498
|
+
const _UESRp = "UpdateEnrollmentStatusResponse";
|
|
499
|
+
const _UM = "UtilizationMetric";
|
|
500
|
+
const _UMt = "UtilizationMetrics";
|
|
501
|
+
const _UP = "UtilizationPreference";
|
|
502
|
+
const _UPt = "UtilizationPreferences";
|
|
503
|
+
const _VC = "VolumeConfiguration";
|
|
504
|
+
const _VR = "VolumeRecommendation";
|
|
505
|
+
const _VRO = "VolumeRecommendationOption";
|
|
506
|
+
const _VROo = "VolumeRecommendationOptions";
|
|
507
|
+
const _VRo = "VolumeRecommendations";
|
|
508
|
+
const _aES = "accountEnrollmentStatuses";
|
|
509
|
+
const _aI = "accountId";
|
|
510
|
+
const _aIc = "accountIds";
|
|
511
|
+
const _aS = "allocationStrategy";
|
|
512
|
+
const _aSC = "autoScalingConfiguration";
|
|
513
|
+
const _aSGA = "autoScalingGroupArn";
|
|
514
|
+
const _aSGAu = "autoScalingGroupArns";
|
|
515
|
+
const _aSGN = "autoScalingGroupName";
|
|
516
|
+
const _aSGR = "autoScalingGroupRecommendations";
|
|
517
|
+
const _aSO = "aggregatedSavingsOpportunity";
|
|
518
|
+
const _aSl = "allocatedStorage";
|
|
519
|
+
const _b = "bucket";
|
|
520
|
+
const _c = "client";
|
|
521
|
+
const _cC = "currentConfiguration";
|
|
522
|
+
const _cCo = "containerConfigurations";
|
|
523
|
+
const _cDBIC = "currentDBInstanceClass";
|
|
524
|
+
const _cIGI = "currentInstanceGpuInfo";
|
|
525
|
+
const _cIPR = "currentInstancePerformanceRisk";
|
|
526
|
+
const _cIT = "currentInstanceType";
|
|
527
|
+
const _cLC = "currentLicenseConfiguration";
|
|
528
|
+
const _cMS = "currentMemorySize";
|
|
529
|
+
const _cN = "containerName";
|
|
530
|
+
const _cPR = "currentPerformanceRisk";
|
|
531
|
+
const _cPRR = "currentPerformanceRiskRatings";
|
|
532
|
+
const _cR = "containerRecommendations";
|
|
533
|
+
const _cSC = "currentServiceConfiguration";
|
|
534
|
+
const _cSCu = "currentStorageConfiguration";
|
|
535
|
+
const _cSEMVIOPCV = "currentStorageEstimatedMonthlyVolumeIOPsCostVariation";
|
|
536
|
+
const _cT = "creationTimestamp";
|
|
537
|
+
const _cVA = "cpuVendorArchitectures";
|
|
538
|
+
const _co = "configuration";
|
|
539
|
+
const _cod = "code";
|
|
540
|
+
const _cp = "cpu";
|
|
541
|
+
const _cu = "currency";
|
|
542
|
+
const _d = "dimensions";
|
|
543
|
+
const _dC = "desiredCapacity";
|
|
544
|
+
const _dCI = "dbClusterIdentifier";
|
|
545
|
+
const _dIC = "dbInstanceClass";
|
|
546
|
+
const _de = "destination";
|
|
547
|
+
const _di = "dimension";
|
|
548
|
+
const _e = "error";
|
|
549
|
+
const _eIHRP = "estimatedInstanceHourReductionPercentage";
|
|
550
|
+
const _eIL = "effectiveIncludeList";
|
|
551
|
+
const _eIM = "enhancedInfrastructureMetrics";
|
|
552
|
+
const _eL = "excludeList";
|
|
553
|
+
const _eMP = "externalMetricsPreference";
|
|
554
|
+
const _eMS = "estimatedMonthlySavings";
|
|
555
|
+
const _eMSx = "externalMetricStatus";
|
|
556
|
+
const _eMVIOPCV = "estimatedMonthlyVolumeIOPsCostVariation";
|
|
557
|
+
const _eRP = "effectiveRecommendationPreferences";
|
|
558
|
+
const _eSR = "ecsServiceRecommendations";
|
|
559
|
+
const _eT = "endTime";
|
|
560
|
+
const _eV = "engineVersion";
|
|
561
|
+
const _en = "engine";
|
|
562
|
+
const _er = "errors";
|
|
563
|
+
const _f = "finding";
|
|
564
|
+
const _fA = "functionArns";
|
|
565
|
+
const _fAu = "functionArn";
|
|
566
|
+
const _fD = "findingDescription";
|
|
567
|
+
const _fF = "fileFormat";
|
|
568
|
+
const _fR = "failureReason";
|
|
569
|
+
const _fRC = "findingReasonCodes";
|
|
570
|
+
const _fTE = "fieldsToExport";
|
|
571
|
+
const _fV = "functionVersion";
|
|
572
|
+
const _fi = "filters";
|
|
573
|
+
const _g = "gpus";
|
|
574
|
+
const _gC = "gpuCount";
|
|
575
|
+
const _gMSIMB = "gpuMemorySizeInMiB";
|
|
576
|
+
const _h = "high";
|
|
577
|
+
const _hE = "httpError";
|
|
578
|
+
const _he = "headroom";
|
|
579
|
+
const _i = "iops";
|
|
580
|
+
const _iA = "instanceArns";
|
|
581
|
+
const _iAn = "instanceArn";
|
|
582
|
+
const _iF = "instanceFinding";
|
|
583
|
+
const _iFRC = "instanceFindingReasonCodes";
|
|
584
|
+
const _iGI = "instanceGpuInfo";
|
|
585
|
+
const _iL = "includeList";
|
|
586
|
+
const _iMA = "includeMemberAccounts";
|
|
587
|
+
const _iN = "instanceName";
|
|
588
|
+
const _iR = "instanceRecommendations";
|
|
589
|
+
const _iRO = "instanceRecommendationOptions";
|
|
590
|
+
const _iRd = "idleRecommendations";
|
|
591
|
+
const _iS = "instanceState";
|
|
592
|
+
const _iSO = "idleSavingsOpportunity";
|
|
593
|
+
const _iSd = "idleSummaries";
|
|
594
|
+
const _iT = "instanceType";
|
|
595
|
+
const _iWS = "inferredWorkloadSavings";
|
|
596
|
+
const _iWT = "inferredWorkloadTypes";
|
|
597
|
+
const _id = "identifier";
|
|
598
|
+
const _idl = "idle";
|
|
599
|
+
const _jI = "jobIds";
|
|
600
|
+
const _jIo = "jobId";
|
|
601
|
+
const _k = "key";
|
|
602
|
+
const _kP = "keyPrefix";
|
|
603
|
+
const _l = "low";
|
|
604
|
+
const _lBP = "lookBackPeriod";
|
|
605
|
+
const _lBPID = "lookBackPeriodInDays";
|
|
606
|
+
const _lBV = "lowerBoundValues";
|
|
607
|
+
const _lBVo = "lowerBoundValue";
|
|
608
|
+
const _lE = "licenseEdition";
|
|
609
|
+
const _lFR = "lambdaFunctionRecommendations";
|
|
610
|
+
const _lM = "licenseModel";
|
|
611
|
+
const _lN = "licenseName";
|
|
612
|
+
const _lPID = "lookbackPeriodInDays";
|
|
613
|
+
const _lR = "licenseRecommendations";
|
|
614
|
+
const _lRO = "licenseRecommendationOptions";
|
|
615
|
+
const _lRT = "lastRefreshTimestamp";
|
|
616
|
+
const _lT = "launchType";
|
|
617
|
+
const _lUT = "lastUpdatedTimestamp";
|
|
618
|
+
const _lV = "licenseVersion";
|
|
619
|
+
const _m = "message";
|
|
620
|
+
const _mAE = "memberAccountsEnrolled";
|
|
621
|
+
const _mAS = "maxAllocatedStorage";
|
|
622
|
+
const _mE = "migrationEffort";
|
|
623
|
+
const _mIT = "mixedInstanceTypes";
|
|
624
|
+
const _mK = "metadataKey";
|
|
625
|
+
const _mN = "metricName";
|
|
626
|
+
const _mP = "metricParameters";
|
|
627
|
+
const _mR = "maxResults";
|
|
628
|
+
const _mRe = "memoryReservation";
|
|
629
|
+
const _mS = "minSize";
|
|
630
|
+
const _mSC = "memorySizeConfiguration";
|
|
631
|
+
const _mSRO = "memorySizeRecommendationOptions";
|
|
632
|
+
const _mSa = "maxSize";
|
|
633
|
+
const _mSe = "memorySize";
|
|
634
|
+
const _mSet = "metricsSource";
|
|
635
|
+
const _me = "medium";
|
|
636
|
+
const _mem = "memory";
|
|
637
|
+
const _n = "name";
|
|
638
|
+
const _nOC = "numberOfCores";
|
|
639
|
+
const _nOI = "numberOfInvocations";
|
|
640
|
+
const _nOMAOI = "numberOfMemberAccountsOptedIn";
|
|
641
|
+
const _nT = "nextToken";
|
|
642
|
+
const _o = "order";
|
|
643
|
+
const _oB = "orderBy";
|
|
644
|
+
const _oS = "operatingSystem";
|
|
645
|
+
const _p = "period";
|
|
646
|
+
const _pA = "providerArn";
|
|
647
|
+
const _pD = "platformDifferences";
|
|
648
|
+
const _pM = "projectedMetrics";
|
|
649
|
+
const _pR = "performanceRisk";
|
|
650
|
+
const _pRr = "preferredResources";
|
|
651
|
+
const _pT = "promotionTier";
|
|
652
|
+
const _pUM = "projectedUtilizationMetrics";
|
|
653
|
+
const _pr = "provider";
|
|
654
|
+
const _r = "rank";
|
|
655
|
+
const _rA = "resourceArn";
|
|
656
|
+
const _rAe = "resourceArns";
|
|
657
|
+
const _rCS = "reasonCodeSummaries";
|
|
658
|
+
const _rCU = "recommendedCpuUnits";
|
|
659
|
+
const _rDBIC = "recommendedDBInstanceClass";
|
|
660
|
+
const _rDBR = "rdsDBRecommendations";
|
|
661
|
+
const _rEJ = "recommendationExportJobs";
|
|
662
|
+
const _rI = "resourceId";
|
|
663
|
+
const _rIT = "recommendedInstanceType";
|
|
664
|
+
const _rMS = "recommendedMemorySize";
|
|
665
|
+
const _rO = "recommendationOptions";
|
|
666
|
+
const _rOPM = "recommendedOptionProjectedMetrics";
|
|
667
|
+
const _rP = "recommendationPreferences";
|
|
668
|
+
const _rPD = "recommendationPreferencesDetails";
|
|
669
|
+
const _rPN = "recommendationPreferenceNames";
|
|
670
|
+
const _rRT = "recommendationResourceType";
|
|
671
|
+
const _rS = "recommendationSummaries";
|
|
672
|
+
const _rSA = "recommendationSourceArn";
|
|
673
|
+
const _rST = "recommendationSourceType";
|
|
674
|
+
const _rSe = "recommendationSources";
|
|
675
|
+
const _rT = "resourceType";
|
|
676
|
+
const _rV = "rootVolume";
|
|
677
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.computeoptimizer";
|
|
678
|
+
const _sA = "serviceArn";
|
|
679
|
+
const _sAe = "serviceArns";
|
|
680
|
+
const _sC = "statusCode";
|
|
681
|
+
const _sCt = "storageConfiguration";
|
|
682
|
+
const _sD = "s3Destination";
|
|
683
|
+
const _sDC = "s3DestinationConfig";
|
|
684
|
+
const _sEM = "savingsEstimationMode";
|
|
685
|
+
const _sF = "storageFinding";
|
|
686
|
+
const _sFRC = "storageFindingReasonCodes";
|
|
687
|
+
const _sO = "savingsOpportunity";
|
|
688
|
+
const _sOAD = "savingsOpportunityAfterDiscounts";
|
|
689
|
+
const _sOP = "savingsOpportunityPercentage";
|
|
690
|
+
const _sR = "statusReason";
|
|
691
|
+
const _sRO = "serviceRecommendationOptions";
|
|
692
|
+
const _sROt = "storageRecommendationOptions";
|
|
693
|
+
const _sT = "storageType";
|
|
694
|
+
const _sTt = "storageThroughput";
|
|
695
|
+
const _sTta = "startTime";
|
|
696
|
+
const _s_ = "s3";
|
|
697
|
+
const _sc = "scope";
|
|
698
|
+
const _se = "server";
|
|
699
|
+
const _so = "source";
|
|
700
|
+
const _st = "status";
|
|
701
|
+
const _sta = "statistic";
|
|
702
|
+
const _stat = "stat";
|
|
703
|
+
const _su = "summaries";
|
|
704
|
+
const _t = "type";
|
|
705
|
+
const _tDA = "taskDefinitionArn";
|
|
706
|
+
const _ta = "tags";
|
|
707
|
+
const _th = "threshold";
|
|
708
|
+
const _ti = "timestamps";
|
|
709
|
+
const _uBV = "upperBoundValues";
|
|
710
|
+
const _uBVp = "upperBoundValue";
|
|
711
|
+
const _uM = "utilizationMetrics";
|
|
712
|
+
const _uP = "utilizationPreferences";
|
|
713
|
+
const _v = "value";
|
|
714
|
+
const _vA = "volumeArns";
|
|
715
|
+
const _vAo = "volumeArn";
|
|
716
|
+
const _vBIOPS = "volumeBaselineIOPS";
|
|
717
|
+
const _vBIOPSo = "volumeBurstIOPS";
|
|
718
|
+
const _vBT = "volumeBaselineThroughput";
|
|
719
|
+
const _vBTo = "volumeBurstThroughput";
|
|
720
|
+
const _vL = "veryLow";
|
|
721
|
+
const _vR = "volumeRecommendations";
|
|
722
|
+
const _vRO = "volumeRecommendationOptions";
|
|
723
|
+
const _vS = "volumeSize";
|
|
724
|
+
const _vT = "volumeType";
|
|
725
|
+
const _va = "values";
|
|
726
|
+
const n0 = "com.amazonaws.computeoptimizer";
|
|
727
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
728
|
+
var ComputeOptimizerServiceException$ = [-3, _s, "ComputeOptimizerServiceException", 0, [], []];
|
|
729
|
+
_s_registry.registerError(ComputeOptimizerServiceException$, ComputeOptimizerServiceException);
|
|
730
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
731
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
732
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
733
|
+
[_m],
|
|
734
|
+
[0]
|
|
735
|
+
];
|
|
736
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
737
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
738
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
739
|
+
[_m],
|
|
740
|
+
[0]
|
|
741
|
+
];
|
|
742
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
743
|
+
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
744
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
745
|
+
[_m],
|
|
746
|
+
[0]
|
|
747
|
+
];
|
|
748
|
+
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
749
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
750
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
751
|
+
[_m],
|
|
752
|
+
[0]
|
|
753
|
+
];
|
|
754
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
755
|
+
var MissingAuthenticationToken$ = [-3, n0, _MAT,
|
|
756
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
757
|
+
[_m],
|
|
758
|
+
[0]
|
|
759
|
+
];
|
|
760
|
+
n0_registry.registerError(MissingAuthenticationToken$, MissingAuthenticationToken);
|
|
761
|
+
var OptInRequiredException$ = [-3, n0, _OIRE,
|
|
762
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
763
|
+
[_m],
|
|
764
|
+
[0]
|
|
765
|
+
];
|
|
766
|
+
n0_registry.registerError(OptInRequiredException$, OptInRequiredException);
|
|
767
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
768
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
769
|
+
[_m],
|
|
770
|
+
[0]
|
|
771
|
+
];
|
|
772
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
773
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
774
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
775
|
+
[_m],
|
|
776
|
+
[0]
|
|
777
|
+
];
|
|
778
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
779
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
780
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
781
|
+
[_m],
|
|
782
|
+
[0], 1
|
|
783
|
+
];
|
|
784
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
785
|
+
const errorTypeRegistries = [
|
|
786
|
+
_s_registry,
|
|
787
|
+
n0_registry,
|
|
788
|
+
];
|
|
789
|
+
var AccountEnrollmentStatus$ = [3, n0, _AES,
|
|
790
|
+
0,
|
|
791
|
+
[_aI, _st, _sR, _lUT],
|
|
792
|
+
[0, 0, 0, 4]
|
|
793
|
+
];
|
|
794
|
+
var AutoScalingGroupConfiguration$ = [3, n0, _ASGC,
|
|
795
|
+
0,
|
|
796
|
+
[_dC, _mS, _mSa, _iT, _aS, _eIHRP, _t, _mIT],
|
|
797
|
+
[1, 1, 1, 0, 0, 1, 0, 64 | 0]
|
|
798
|
+
];
|
|
799
|
+
var AutoScalingGroupEstimatedMonthlySavings$ = [3, n0, _ASGEMS,
|
|
800
|
+
0,
|
|
801
|
+
[_cu, _v],
|
|
802
|
+
[0, 1]
|
|
803
|
+
];
|
|
804
|
+
var AutoScalingGroupRecommendation$ = [3, n0, _ASGR,
|
|
805
|
+
0,
|
|
806
|
+
[_aI, _aSGA, _aSGN, _f, _uM, _lBPID, _cC, _cIGI, _rO, _lRT, _cPR, _eRP, _iWT],
|
|
807
|
+
[0, 0, 0, 0, () => UtilizationMetrics, 1, () => AutoScalingGroupConfiguration$, () => GpuInfo$, () => AutoScalingGroupRecommendationOptions, 4, 0, () => EffectiveRecommendationPreferences$, 64 | 0]
|
|
808
|
+
];
|
|
809
|
+
var AutoScalingGroupRecommendationOption$ = [3, n0, _ASGRO,
|
|
810
|
+
0,
|
|
811
|
+
[_co, _iGI, _pUM, _pR, _r, _sO, _sOAD, _mE],
|
|
812
|
+
[() => AutoScalingGroupConfiguration$, () => GpuInfo$, () => ProjectedUtilizationMetrics, 1, 1, () => SavingsOpportunity$, () => AutoScalingGroupSavingsOpportunityAfterDiscounts$, 0]
|
|
813
|
+
];
|
|
814
|
+
var AutoScalingGroupSavingsOpportunityAfterDiscounts$ = [3, n0, _ASGSOAD,
|
|
815
|
+
0,
|
|
816
|
+
[_sOP, _eMS],
|
|
817
|
+
[1, () => AutoScalingGroupEstimatedMonthlySavings$]
|
|
818
|
+
];
|
|
819
|
+
var ContainerConfiguration$ = [3, n0, _CC,
|
|
820
|
+
0,
|
|
821
|
+
[_cN, _mSC, _cp],
|
|
822
|
+
[0, () => MemorySizeConfiguration$, 1]
|
|
823
|
+
];
|
|
824
|
+
var ContainerRecommendation$ = [3, n0, _CR,
|
|
825
|
+
0,
|
|
826
|
+
[_cN, _mSC, _cp],
|
|
827
|
+
[0, () => MemorySizeConfiguration$, 1]
|
|
828
|
+
];
|
|
829
|
+
var CurrentPerformanceRiskRatings$ = [3, n0, _CPRR,
|
|
830
|
+
0,
|
|
831
|
+
[_h, _me, _l, _vL],
|
|
832
|
+
[1, 1, 1, 1]
|
|
833
|
+
];
|
|
834
|
+
var CustomizableMetricParameters$ = [3, n0, _CMP,
|
|
835
|
+
0,
|
|
836
|
+
[_th, _he],
|
|
837
|
+
[0, 0]
|
|
838
|
+
];
|
|
839
|
+
var DBStorageConfiguration$ = [3, n0, _DBSC,
|
|
840
|
+
0,
|
|
841
|
+
[_sT, _aSl, _i, _mAS, _sTt],
|
|
842
|
+
[0, 1, 1, 1, 1]
|
|
843
|
+
];
|
|
844
|
+
var DeleteRecommendationPreferencesRequest$ = [3, n0, _DRPR,
|
|
845
|
+
0,
|
|
846
|
+
[_rT, _rPN, _sc],
|
|
847
|
+
[0, 64 | 0, () => Scope$], 2
|
|
848
|
+
];
|
|
849
|
+
var DeleteRecommendationPreferencesResponse$ = [3, n0, _DRPRe,
|
|
850
|
+
0,
|
|
851
|
+
[],
|
|
852
|
+
[]
|
|
853
|
+
];
|
|
854
|
+
var DescribeRecommendationExportJobsRequest$ = [3, n0, _DREJR,
|
|
855
|
+
0,
|
|
856
|
+
[_jI, _fi, _nT, _mR],
|
|
857
|
+
[64 | 0, () => JobFilters, 0, 1]
|
|
858
|
+
];
|
|
859
|
+
var DescribeRecommendationExportJobsResponse$ = [3, n0, _DREJRe,
|
|
860
|
+
0,
|
|
861
|
+
[_rEJ, _nT],
|
|
862
|
+
[() => RecommendationExportJobs, 0]
|
|
863
|
+
];
|
|
864
|
+
var EBSEffectiveRecommendationPreferences$ = [3, n0, _EBSERP,
|
|
865
|
+
0,
|
|
866
|
+
[_sEM, _lBP],
|
|
867
|
+
[() => EBSSavingsEstimationMode$, 0]
|
|
868
|
+
];
|
|
869
|
+
var EBSEstimatedMonthlySavings$ = [3, n0, _EBSEMS,
|
|
870
|
+
0,
|
|
871
|
+
[_cu, _v],
|
|
872
|
+
[0, 1]
|
|
873
|
+
];
|
|
874
|
+
var EBSFilter$ = [3, n0, _EBSF,
|
|
875
|
+
0,
|
|
876
|
+
[_n, _va],
|
|
877
|
+
[0, 64 | 0]
|
|
878
|
+
];
|
|
879
|
+
var EBSSavingsEstimationMode$ = [3, n0, _EBSSEM,
|
|
880
|
+
0,
|
|
881
|
+
[_so],
|
|
882
|
+
[0]
|
|
883
|
+
];
|
|
884
|
+
var EBSSavingsOpportunityAfterDiscounts$ = [3, n0, _EBSSOAD,
|
|
885
|
+
0,
|
|
886
|
+
[_sOP, _eMS],
|
|
887
|
+
[1, () => EBSEstimatedMonthlySavings$]
|
|
888
|
+
];
|
|
889
|
+
var EBSUtilizationMetric$ = [3, n0, _EBSUM,
|
|
890
|
+
0,
|
|
891
|
+
[_n, _sta, _v],
|
|
892
|
+
[0, 0, 1]
|
|
893
|
+
];
|
|
894
|
+
var ECSEffectiveRecommendationPreferences$ = [3, n0, _ECSERP,
|
|
895
|
+
0,
|
|
896
|
+
[_sEM, _lBP],
|
|
897
|
+
[() => ECSSavingsEstimationMode$, 0]
|
|
898
|
+
];
|
|
899
|
+
var ECSEstimatedMonthlySavings$ = [3, n0, _ECSEMS,
|
|
900
|
+
0,
|
|
901
|
+
[_cu, _v],
|
|
902
|
+
[0, 1]
|
|
903
|
+
];
|
|
904
|
+
var ECSSavingsEstimationMode$ = [3, n0, _ECSSEM,
|
|
905
|
+
0,
|
|
906
|
+
[_so],
|
|
907
|
+
[0]
|
|
908
|
+
];
|
|
909
|
+
var ECSSavingsOpportunityAfterDiscounts$ = [3, n0, _ECSSOAD,
|
|
910
|
+
0,
|
|
911
|
+
[_sOP, _eMS],
|
|
912
|
+
[1, () => ECSEstimatedMonthlySavings$]
|
|
913
|
+
];
|
|
914
|
+
var ECSServiceProjectedMetric$ = [3, n0, _ECSSPM,
|
|
915
|
+
0,
|
|
916
|
+
[_n, _ti, _uBV, _lBV],
|
|
917
|
+
[0, 64 | 4, 64 | 1, 64 | 1]
|
|
918
|
+
];
|
|
919
|
+
var ECSServiceProjectedUtilizationMetric$ = [3, n0, _ECSSPUM,
|
|
920
|
+
0,
|
|
921
|
+
[_n, _sta, _lBVo, _uBVp],
|
|
922
|
+
[0, 0, 1, 1]
|
|
923
|
+
];
|
|
924
|
+
var ECSServiceRecommendation$ = [3, n0, _ECSSR,
|
|
925
|
+
0,
|
|
926
|
+
[_sA, _aI, _cSC, _uM, _lPID, _lT, _lRT, _f, _fRC, _sRO, _cPR, _eRP, _ta],
|
|
927
|
+
[0, 0, () => ServiceConfiguration$, () => ECSServiceUtilizationMetrics, 1, 0, 4, 0, 64 | 0, () => ECSServiceRecommendationOptions, 0, () => ECSEffectiveRecommendationPreferences$, () => Tags]
|
|
928
|
+
];
|
|
929
|
+
var ECSServiceRecommendationFilter$ = [3, n0, _ECSSRF,
|
|
930
|
+
0,
|
|
931
|
+
[_n, _va],
|
|
932
|
+
[0, 64 | 0]
|
|
933
|
+
];
|
|
934
|
+
var ECSServiceRecommendationOption$ = [3, n0, _ECSSRO,
|
|
935
|
+
0,
|
|
936
|
+
[_mem, _cp, _sO, _sOAD, _pUM, _cR],
|
|
937
|
+
[1, 1, () => SavingsOpportunity$, () => ECSSavingsOpportunityAfterDiscounts$, () => ECSServiceProjectedUtilizationMetrics, () => ContainerRecommendations]
|
|
938
|
+
];
|
|
939
|
+
var ECSServiceRecommendedOptionProjectedMetric$ = [3, n0, _ECSSROPM,
|
|
940
|
+
0,
|
|
941
|
+
[_rCU, _rMS, _pM],
|
|
942
|
+
[1, 1, () => ECSServiceProjectedMetrics]
|
|
943
|
+
];
|
|
944
|
+
var ECSServiceUtilizationMetric$ = [3, n0, _ECSSUM,
|
|
945
|
+
0,
|
|
946
|
+
[_n, _sta, _v],
|
|
947
|
+
[0, 0, 1]
|
|
948
|
+
];
|
|
949
|
+
var EffectivePreferredResource$ = [3, n0, _EPR,
|
|
950
|
+
0,
|
|
951
|
+
[_n, _iL, _eIL, _eL],
|
|
952
|
+
[0, 64 | 0, 64 | 0, 64 | 0]
|
|
953
|
+
];
|
|
954
|
+
var EffectiveRecommendationPreferences$ = [3, n0, _ERP,
|
|
955
|
+
0,
|
|
956
|
+
[_cVA, _eIM, _iWT, _eMP, _lBP, _uP, _pRr, _sEM],
|
|
957
|
+
[64 | 0, 0, 0, () => ExternalMetricsPreference$, 0, () => UtilizationPreferences, () => EffectivePreferredResources, () => InstanceSavingsEstimationMode$]
|
|
958
|
+
];
|
|
959
|
+
var EnrollmentFilter$ = [3, n0, _EF,
|
|
960
|
+
0,
|
|
961
|
+
[_n, _va],
|
|
962
|
+
[0, 64 | 0]
|
|
963
|
+
];
|
|
964
|
+
var EstimatedMonthlySavings$ = [3, n0, _EMS,
|
|
965
|
+
0,
|
|
966
|
+
[_cu, _v],
|
|
967
|
+
[0, 1]
|
|
968
|
+
];
|
|
969
|
+
var ExportAutoScalingGroupRecommendationsRequest$ = [3, n0, _EASGRR,
|
|
970
|
+
0,
|
|
971
|
+
[_sDC, _aIc, _fi, _fTE, _fF, _iMA, _rP],
|
|
972
|
+
[() => S3DestinationConfig$, 64 | 0, () => Filters, 64 | 0, 0, 2, () => RecommendationPreferences$], 1
|
|
973
|
+
];
|
|
974
|
+
var ExportAutoScalingGroupRecommendationsResponse$ = [3, n0, _EASGRRx,
|
|
975
|
+
0,
|
|
976
|
+
[_jIo, _sD],
|
|
977
|
+
[0, () => S3Destination$]
|
|
978
|
+
];
|
|
979
|
+
var ExportDestination$ = [3, n0, _ED,
|
|
980
|
+
0,
|
|
981
|
+
[_s_],
|
|
982
|
+
[() => S3Destination$]
|
|
983
|
+
];
|
|
984
|
+
var ExportEBSVolumeRecommendationsRequest$ = [3, n0, _EEBSVRR,
|
|
985
|
+
0,
|
|
986
|
+
[_sDC, _aIc, _fi, _fTE, _fF, _iMA],
|
|
987
|
+
[() => S3DestinationConfig$, 64 | 0, () => EBSFilters, 64 | 0, 0, 2], 1
|
|
988
|
+
];
|
|
989
|
+
var ExportEBSVolumeRecommendationsResponse$ = [3, n0, _EEBSVRRx,
|
|
990
|
+
0,
|
|
991
|
+
[_jIo, _sD],
|
|
992
|
+
[0, () => S3Destination$]
|
|
993
|
+
];
|
|
994
|
+
var ExportEC2InstanceRecommendationsRequest$ = [3, n0, _EECIRR,
|
|
995
|
+
0,
|
|
996
|
+
[_sDC, _aIc, _fi, _fTE, _fF, _iMA, _rP],
|
|
997
|
+
[() => S3DestinationConfig$, 64 | 0, () => Filters, 64 | 0, 0, 2, () => RecommendationPreferences$], 1
|
|
998
|
+
];
|
|
999
|
+
var ExportEC2InstanceRecommendationsResponse$ = [3, n0, _EECIRRx,
|
|
1000
|
+
0,
|
|
1001
|
+
[_jIo, _sD],
|
|
1002
|
+
[0, () => S3Destination$]
|
|
1003
|
+
];
|
|
1004
|
+
var ExportECSServiceRecommendationsRequest$ = [3, n0, _EECSSRR,
|
|
1005
|
+
0,
|
|
1006
|
+
[_sDC, _aIc, _fi, _fTE, _fF, _iMA],
|
|
1007
|
+
[() => S3DestinationConfig$, 64 | 0, () => ECSServiceRecommendationFilters, 64 | 0, 0, 2], 1
|
|
1008
|
+
];
|
|
1009
|
+
var ExportECSServiceRecommendationsResponse$ = [3, n0, _EECSSRRx,
|
|
1010
|
+
0,
|
|
1011
|
+
[_jIo, _sD],
|
|
1012
|
+
[0, () => S3Destination$]
|
|
1013
|
+
];
|
|
1014
|
+
var ExportIdleRecommendationsRequest$ = [3, n0, _EIRR,
|
|
1015
|
+
0,
|
|
1016
|
+
[_sDC, _aIc, _fi, _fTE, _fF, _iMA],
|
|
1017
|
+
[() => S3DestinationConfig$, 64 | 0, () => IdleRecommendationFilters, 64 | 0, 0, 2], 1
|
|
1018
|
+
];
|
|
1019
|
+
var ExportIdleRecommendationsResponse$ = [3, n0, _EIRRx,
|
|
1020
|
+
0,
|
|
1021
|
+
[_jIo, _sD],
|
|
1022
|
+
[0, () => S3Destination$]
|
|
1023
|
+
];
|
|
1024
|
+
var ExportLambdaFunctionRecommendationsRequest$ = [3, n0, _ELFRR,
|
|
1025
|
+
0,
|
|
1026
|
+
[_sDC, _aIc, _fi, _fTE, _fF, _iMA],
|
|
1027
|
+
[() => S3DestinationConfig$, 64 | 0, () => LambdaFunctionRecommendationFilters, 64 | 0, 0, 2], 1
|
|
1028
|
+
];
|
|
1029
|
+
var ExportLambdaFunctionRecommendationsResponse$ = [3, n0, _ELFRRx,
|
|
1030
|
+
0,
|
|
1031
|
+
[_jIo, _sD],
|
|
1032
|
+
[0, () => S3Destination$]
|
|
1033
|
+
];
|
|
1034
|
+
var ExportLicenseRecommendationsRequest$ = [3, n0, _ELRR,
|
|
1035
|
+
0,
|
|
1036
|
+
[_sDC, _aIc, _fi, _fTE, _fF, _iMA],
|
|
1037
|
+
[() => S3DestinationConfig$, 64 | 0, () => LicenseRecommendationFilters, 64 | 0, 0, 2], 1
|
|
1038
|
+
];
|
|
1039
|
+
var ExportLicenseRecommendationsResponse$ = [3, n0, _ELRRx,
|
|
1040
|
+
0,
|
|
1041
|
+
[_jIo, _sD],
|
|
1042
|
+
[0, () => S3Destination$]
|
|
1043
|
+
];
|
|
1044
|
+
var ExportRDSDatabaseRecommendationsRequest$ = [3, n0, _ERDSDRR,
|
|
1045
|
+
0,
|
|
1046
|
+
[_sDC, _aIc, _fi, _fTE, _fF, _iMA, _rP],
|
|
1047
|
+
[() => S3DestinationConfig$, 64 | 0, () => RDSDBRecommendationFilters, 64 | 0, 0, 2, () => RecommendationPreferences$], 1
|
|
1048
|
+
];
|
|
1049
|
+
var ExportRDSDatabaseRecommendationsResponse$ = [3, n0, _ERDSDRRx,
|
|
1050
|
+
0,
|
|
1051
|
+
[_jIo, _sD],
|
|
1052
|
+
[0, () => S3Destination$]
|
|
1053
|
+
];
|
|
1054
|
+
var ExternalMetricsPreference$ = [3, n0, _EMP,
|
|
1055
|
+
0,
|
|
1056
|
+
[_so],
|
|
1057
|
+
[0]
|
|
1058
|
+
];
|
|
1059
|
+
var ExternalMetricStatus$ = [3, n0, _EMSx,
|
|
1060
|
+
0,
|
|
1061
|
+
[_sC, _sR],
|
|
1062
|
+
[0, 0]
|
|
1063
|
+
];
|
|
1064
|
+
var Filter$ = [3, n0, _F,
|
|
1065
|
+
0,
|
|
1066
|
+
[_n, _va],
|
|
1067
|
+
[0, 64 | 0]
|
|
1068
|
+
];
|
|
1069
|
+
var GetAutoScalingGroupRecommendationsRequest$ = [3, n0, _GASGRR,
|
|
1070
|
+
0,
|
|
1071
|
+
[_aIc, _aSGAu, _nT, _mR, _fi, _rP],
|
|
1072
|
+
[64 | 0, 64 | 0, 0, 1, () => Filters, () => RecommendationPreferences$]
|
|
1073
|
+
];
|
|
1074
|
+
var GetAutoScalingGroupRecommendationsResponse$ = [3, n0, _GASGRRe,
|
|
1075
|
+
0,
|
|
1076
|
+
[_nT, _aSGR, _er],
|
|
1077
|
+
[0, () => AutoScalingGroupRecommendations, () => GetRecommendationErrors]
|
|
1078
|
+
];
|
|
1079
|
+
var GetEBSVolumeRecommendationsRequest$ = [3, n0, _GEBSVRR,
|
|
1080
|
+
0,
|
|
1081
|
+
[_vA, _nT, _mR, _fi, _aIc],
|
|
1082
|
+
[64 | 0, 0, 1, () => EBSFilters, 64 | 0]
|
|
1083
|
+
];
|
|
1084
|
+
var GetEBSVolumeRecommendationsResponse$ = [3, n0, _GEBSVRRe,
|
|
1085
|
+
0,
|
|
1086
|
+
[_nT, _vR, _er],
|
|
1087
|
+
[0, () => VolumeRecommendations, () => GetRecommendationErrors]
|
|
1088
|
+
];
|
|
1089
|
+
var GetEC2InstanceRecommendationsRequest$ = [3, n0, _GECIRR,
|
|
1090
|
+
0,
|
|
1091
|
+
[_iA, _nT, _mR, _fi, _aIc, _rP],
|
|
1092
|
+
[64 | 0, 0, 1, () => Filters, 64 | 0, () => RecommendationPreferences$]
|
|
1093
|
+
];
|
|
1094
|
+
var GetEC2InstanceRecommendationsResponse$ = [3, n0, _GECIRRe,
|
|
1095
|
+
0,
|
|
1096
|
+
[_nT, _iR, _er],
|
|
1097
|
+
[0, () => InstanceRecommendations, () => GetRecommendationErrors]
|
|
1098
|
+
];
|
|
1099
|
+
var GetEC2RecommendationProjectedMetricsRequest$ = [3, n0, _GECRPMR,
|
|
1100
|
+
0,
|
|
1101
|
+
[_iAn, _stat, _p, _sTta, _eT, _rP],
|
|
1102
|
+
[0, 0, 1, 4, 4, () => RecommendationPreferences$], 5
|
|
1103
|
+
];
|
|
1104
|
+
var GetEC2RecommendationProjectedMetricsResponse$ = [3, n0, _GECRPMRe,
|
|
1105
|
+
0,
|
|
1106
|
+
[_rOPM],
|
|
1107
|
+
[() => RecommendedOptionProjectedMetrics]
|
|
1108
|
+
];
|
|
1109
|
+
var GetECSServiceRecommendationProjectedMetricsRequest$ = [3, n0, _GECSSRPMR,
|
|
1110
|
+
0,
|
|
1111
|
+
[_sA, _stat, _p, _sTta, _eT],
|
|
1112
|
+
[0, 0, 1, 4, 4], 5
|
|
1113
|
+
];
|
|
1114
|
+
var GetECSServiceRecommendationProjectedMetricsResponse$ = [3, n0, _GECSSRPMRe,
|
|
1115
|
+
0,
|
|
1116
|
+
[_rOPM],
|
|
1117
|
+
[() => ECSServiceRecommendedOptionProjectedMetrics]
|
|
1118
|
+
];
|
|
1119
|
+
var GetECSServiceRecommendationsRequest$ = [3, n0, _GECSSRR,
|
|
1120
|
+
0,
|
|
1121
|
+
[_sAe, _nT, _mR, _fi, _aIc],
|
|
1122
|
+
[64 | 0, 0, 1, () => ECSServiceRecommendationFilters, 64 | 0]
|
|
1123
|
+
];
|
|
1124
|
+
var GetECSServiceRecommendationsResponse$ = [3, n0, _GECSSRRe,
|
|
1125
|
+
0,
|
|
1126
|
+
[_nT, _eSR, _er],
|
|
1127
|
+
[0, () => ECSServiceRecommendations, () => GetRecommendationErrors]
|
|
1128
|
+
];
|
|
1129
|
+
var GetEffectiveRecommendationPreferencesRequest$ = [3, n0, _GERPR,
|
|
1130
|
+
0,
|
|
1131
|
+
[_rA],
|
|
1132
|
+
[0], 1
|
|
1133
|
+
];
|
|
1134
|
+
var GetEffectiveRecommendationPreferencesResponse$ = [3, n0, _GERPRe,
|
|
1135
|
+
0,
|
|
1136
|
+
[_eIM, _eMP, _lBP, _uP, _pRr],
|
|
1137
|
+
[0, () => ExternalMetricsPreference$, 0, () => UtilizationPreferences, () => EffectivePreferredResources]
|
|
1138
|
+
];
|
|
1139
|
+
var GetEnrollmentStatusesForOrganizationRequest$ = [3, n0, _GESFOR,
|
|
1140
|
+
0,
|
|
1141
|
+
[_fi, _nT, _mR],
|
|
1142
|
+
[() => EnrollmentFilters, 0, 1]
|
|
1143
|
+
];
|
|
1144
|
+
var GetEnrollmentStatusesForOrganizationResponse$ = [3, n0, _GESFORe,
|
|
1145
|
+
0,
|
|
1146
|
+
[_aES, _nT],
|
|
1147
|
+
[() => AccountEnrollmentStatuses, 0]
|
|
1148
|
+
];
|
|
1149
|
+
var GetEnrollmentStatusRequest$ = [3, n0, _GESR,
|
|
1150
|
+
0,
|
|
1151
|
+
[],
|
|
1152
|
+
[]
|
|
1153
|
+
];
|
|
1154
|
+
var GetEnrollmentStatusResponse$ = [3, n0, _GESRe,
|
|
1155
|
+
0,
|
|
1156
|
+
[_st, _sR, _mAE, _lUT, _nOMAOI],
|
|
1157
|
+
[0, 0, 2, 4, 1]
|
|
1158
|
+
];
|
|
1159
|
+
var GetIdleRecommendationsRequest$ = [3, n0, _GIRR,
|
|
1160
|
+
0,
|
|
1161
|
+
[_rAe, _nT, _mR, _fi, _aIc, _oB],
|
|
1162
|
+
[64 | 0, 0, 1, () => IdleRecommendationFilters, 64 | 0, () => OrderBy$]
|
|
1163
|
+
];
|
|
1164
|
+
var GetIdleRecommendationsResponse$ = [3, n0, _GIRRe,
|
|
1165
|
+
0,
|
|
1166
|
+
[_nT, _iRd, _er],
|
|
1167
|
+
[0, () => IdleRecommendations, () => IdleRecommendationErrors]
|
|
1168
|
+
];
|
|
1169
|
+
var GetLambdaFunctionRecommendationsRequest$ = [3, n0, _GLFRR,
|
|
1170
|
+
0,
|
|
1171
|
+
[_fA, _aIc, _fi, _nT, _mR],
|
|
1172
|
+
[64 | 0, 64 | 0, () => LambdaFunctionRecommendationFilters, 0, 1]
|
|
1173
|
+
];
|
|
1174
|
+
var GetLambdaFunctionRecommendationsResponse$ = [3, n0, _GLFRRe,
|
|
1175
|
+
0,
|
|
1176
|
+
[_nT, _lFR],
|
|
1177
|
+
[0, () => LambdaFunctionRecommendations]
|
|
1178
|
+
];
|
|
1179
|
+
var GetLicenseRecommendationsRequest$ = [3, n0, _GLRR,
|
|
1180
|
+
0,
|
|
1181
|
+
[_rAe, _nT, _mR, _fi, _aIc],
|
|
1182
|
+
[64 | 0, 0, 1, () => LicenseRecommendationFilters, 64 | 0]
|
|
1183
|
+
];
|
|
1184
|
+
var GetLicenseRecommendationsResponse$ = [3, n0, _GLRRe,
|
|
1185
|
+
0,
|
|
1186
|
+
[_nT, _lR, _er],
|
|
1187
|
+
[0, () => LicenseRecommendations, () => GetRecommendationErrors]
|
|
1188
|
+
];
|
|
1189
|
+
var GetRDSDatabaseRecommendationProjectedMetricsRequest$ = [3, n0, _GRDSDRPMR,
|
|
1190
|
+
0,
|
|
1191
|
+
[_rA, _stat, _p, _sTta, _eT, _rP],
|
|
1192
|
+
[0, 0, 1, 4, 4, () => RecommendationPreferences$], 5
|
|
1193
|
+
];
|
|
1194
|
+
var GetRDSDatabaseRecommendationProjectedMetricsResponse$ = [3, n0, _GRDSDRPMRe,
|
|
1195
|
+
0,
|
|
1196
|
+
[_rOPM],
|
|
1197
|
+
[() => RDSDatabaseRecommendedOptionProjectedMetrics]
|
|
1198
|
+
];
|
|
1199
|
+
var GetRDSDatabaseRecommendationsRequest$ = [3, n0, _GRDSDRR,
|
|
1200
|
+
0,
|
|
1201
|
+
[_rAe, _nT, _mR, _fi, _aIc, _rP],
|
|
1202
|
+
[64 | 0, 0, 1, () => RDSDBRecommendationFilters, 64 | 0, () => RecommendationPreferences$]
|
|
1203
|
+
];
|
|
1204
|
+
var GetRDSDatabaseRecommendationsResponse$ = [3, n0, _GRDSDRRe,
|
|
1205
|
+
0,
|
|
1206
|
+
[_nT, _rDBR, _er],
|
|
1207
|
+
[0, () => RDSDBRecommendations, () => GetRecommendationErrors]
|
|
1208
|
+
];
|
|
1209
|
+
var GetRecommendationError$ = [3, n0, _GRE,
|
|
1210
|
+
0,
|
|
1211
|
+
[_id, _cod, _m],
|
|
1212
|
+
[0, 0, 0]
|
|
1213
|
+
];
|
|
1214
|
+
var GetRecommendationPreferencesRequest$ = [3, n0, _GRPR,
|
|
1215
|
+
0,
|
|
1216
|
+
[_rT, _sc, _nT, _mR],
|
|
1217
|
+
[0, () => Scope$, 0, 1], 1
|
|
1218
|
+
];
|
|
1219
|
+
var GetRecommendationPreferencesResponse$ = [3, n0, _GRPRe,
|
|
1220
|
+
0,
|
|
1221
|
+
[_nT, _rPD],
|
|
1222
|
+
[0, () => RecommendationPreferencesDetails]
|
|
1223
|
+
];
|
|
1224
|
+
var GetRecommendationSummariesRequest$ = [3, n0, _GRSR,
|
|
1225
|
+
0,
|
|
1226
|
+
[_aIc, _nT, _mR],
|
|
1227
|
+
[64 | 0, 0, 1]
|
|
1228
|
+
];
|
|
1229
|
+
var GetRecommendationSummariesResponse$ = [3, n0, _GRSRe,
|
|
1230
|
+
0,
|
|
1231
|
+
[_nT, _rS],
|
|
1232
|
+
[0, () => RecommendationSummaries]
|
|
1233
|
+
];
|
|
1234
|
+
var Gpu$ = [3, n0, _G,
|
|
1235
|
+
0,
|
|
1236
|
+
[_gC, _gMSIMB],
|
|
1237
|
+
[1, 1]
|
|
1238
|
+
];
|
|
1239
|
+
var GpuInfo$ = [3, n0, _GI,
|
|
1240
|
+
0,
|
|
1241
|
+
[_g],
|
|
1242
|
+
[() => Gpus]
|
|
1243
|
+
];
|
|
1244
|
+
var IdleDimension$ = [3, n0, _ID,
|
|
1245
|
+
0,
|
|
1246
|
+
[_k, _va],
|
|
1247
|
+
[0, 64 | 0]
|
|
1248
|
+
];
|
|
1249
|
+
var IdleEstimatedMonthlySavings$ = [3, n0, _IEMS,
|
|
1250
|
+
0,
|
|
1251
|
+
[_cu, _v],
|
|
1252
|
+
[0, 1]
|
|
1253
|
+
];
|
|
1254
|
+
var IdleRecommendation$ = [3, n0, _IR,
|
|
1255
|
+
0,
|
|
1256
|
+
[_rA, _rI, _rT, _aI, _f, _fD, _sO, _sOAD, _uM, _lBPID, _lRT, _ta],
|
|
1257
|
+
[0, 0, 0, 0, 0, 0, () => IdleSavingsOpportunity$, () => IdleSavingsOpportunityAfterDiscounts$, () => IdleUtilizationMetrics, 1, 4, () => Tags]
|
|
1258
|
+
];
|
|
1259
|
+
var IdleRecommendationError$ = [3, n0, _IRE,
|
|
1260
|
+
0,
|
|
1261
|
+
[_id, _cod, _m, _rT],
|
|
1262
|
+
[0, 0, 0, 0]
|
|
1263
|
+
];
|
|
1264
|
+
var IdleRecommendationFilter$ = [3, n0, _IRF,
|
|
1265
|
+
0,
|
|
1266
|
+
[_n, _va],
|
|
1267
|
+
[0, 64 | 0]
|
|
1268
|
+
];
|
|
1269
|
+
var IdleSavingsOpportunity$ = [3, n0, _ISO,
|
|
1270
|
+
0,
|
|
1271
|
+
[_sOP, _eMS],
|
|
1272
|
+
[1, () => IdleEstimatedMonthlySavings$]
|
|
1273
|
+
];
|
|
1274
|
+
var IdleSavingsOpportunityAfterDiscounts$ = [3, n0, _ISOAD,
|
|
1275
|
+
0,
|
|
1276
|
+
[_sOP, _eMS],
|
|
1277
|
+
[1, () => IdleEstimatedMonthlySavings$]
|
|
1278
|
+
];
|
|
1279
|
+
var IdleSummary$ = [3, n0, _IS,
|
|
1280
|
+
0,
|
|
1281
|
+
[_n, _v],
|
|
1282
|
+
[0, 1]
|
|
1283
|
+
];
|
|
1284
|
+
var IdleUtilizationMetric$ = [3, n0, _IUM,
|
|
1285
|
+
0,
|
|
1286
|
+
[_n, _sta, _v, _d],
|
|
1287
|
+
[0, 0, 1, () => IdleDimensions]
|
|
1288
|
+
];
|
|
1289
|
+
var InferredWorkloadSaving$ = [3, n0, _IWS,
|
|
1290
|
+
0,
|
|
1291
|
+
[_iWT, _eMS],
|
|
1292
|
+
[64 | 0, () => EstimatedMonthlySavings$]
|
|
1293
|
+
];
|
|
1294
|
+
var InstanceEstimatedMonthlySavings$ = [3, n0, _IEMSn,
|
|
1295
|
+
0,
|
|
1296
|
+
[_cu, _v],
|
|
1297
|
+
[0, 1]
|
|
1298
|
+
];
|
|
1299
|
+
var InstanceRecommendation$ = [3, n0, _IRn,
|
|
1300
|
+
0,
|
|
1301
|
+
[_iAn, _aI, _iN, _cIT, _f, _fRC, _uM, _lBPID, _rO, _rSe, _lRT, _cPR, _eRP, _iWT, _iS, _ta, _eMSx, _cIGI, _idl],
|
|
1302
|
+
[0, 0, 0, 0, 0, 64 | 0, () => UtilizationMetrics, 1, () => RecommendationOptions, () => RecommendationSources, 4, 0, () => EffectiveRecommendationPreferences$, 64 | 0, 0, () => Tags, () => ExternalMetricStatus$, () => GpuInfo$, 0]
|
|
1303
|
+
];
|
|
1304
|
+
var InstanceRecommendationOption$ = [3, n0, _IRO,
|
|
1305
|
+
0,
|
|
1306
|
+
[_iT, _iGI, _pUM, _pD, _pR, _r, _sO, _sOAD, _mE],
|
|
1307
|
+
[0, () => GpuInfo$, () => ProjectedUtilizationMetrics, 64 | 0, 1, 1, () => SavingsOpportunity$, () => InstanceSavingsOpportunityAfterDiscounts$, 0]
|
|
1308
|
+
];
|
|
1309
|
+
var InstanceSavingsEstimationMode$ = [3, n0, _ISEM,
|
|
1310
|
+
0,
|
|
1311
|
+
[_so],
|
|
1312
|
+
[0]
|
|
1313
|
+
];
|
|
1314
|
+
var InstanceSavingsOpportunityAfterDiscounts$ = [3, n0, _ISOADn,
|
|
1315
|
+
0,
|
|
1316
|
+
[_sOP, _eMS],
|
|
1317
|
+
[1, () => InstanceEstimatedMonthlySavings$]
|
|
1318
|
+
];
|
|
1319
|
+
var JobFilter$ = [3, n0, _JF,
|
|
1320
|
+
0,
|
|
1321
|
+
[_n, _va],
|
|
1322
|
+
[0, 64 | 0]
|
|
1323
|
+
];
|
|
1324
|
+
var LambdaEffectiveRecommendationPreferences$ = [3, n0, _LERP,
|
|
1325
|
+
0,
|
|
1326
|
+
[_sEM],
|
|
1327
|
+
[() => LambdaSavingsEstimationMode$]
|
|
1328
|
+
];
|
|
1329
|
+
var LambdaEstimatedMonthlySavings$ = [3, n0, _LEMS,
|
|
1330
|
+
0,
|
|
1331
|
+
[_cu, _v],
|
|
1332
|
+
[0, 1]
|
|
1333
|
+
];
|
|
1334
|
+
var LambdaFunctionMemoryProjectedMetric$ = [3, n0, _LFMPM,
|
|
1335
|
+
0,
|
|
1336
|
+
[_n, _sta, _v],
|
|
1337
|
+
[0, 0, 1]
|
|
1338
|
+
];
|
|
1339
|
+
var LambdaFunctionMemoryRecommendationOption$ = [3, n0, _LFMRO,
|
|
1340
|
+
0,
|
|
1341
|
+
[_r, _mSe, _pUM, _sO, _sOAD],
|
|
1342
|
+
[1, 1, () => LambdaFunctionMemoryProjectedMetrics, () => SavingsOpportunity$, () => LambdaSavingsOpportunityAfterDiscounts$]
|
|
1343
|
+
];
|
|
1344
|
+
var LambdaFunctionRecommendation$ = [3, n0, _LFR,
|
|
1345
|
+
0,
|
|
1346
|
+
[_fAu, _fV, _aI, _cMS, _nOI, _uM, _lPID, _lRT, _f, _fRC, _mSRO, _cPR, _eRP, _ta],
|
|
1347
|
+
[0, 0, 0, 1, 1, () => LambdaFunctionUtilizationMetrics, 1, 4, 0, 64 | 0, () => LambdaFunctionMemoryRecommendationOptions, 0, () => LambdaEffectiveRecommendationPreferences$, () => Tags]
|
|
1348
|
+
];
|
|
1349
|
+
var LambdaFunctionRecommendationFilter$ = [3, n0, _LFRF,
|
|
1350
|
+
0,
|
|
1351
|
+
[_n, _va],
|
|
1352
|
+
[0, 64 | 0]
|
|
1353
|
+
];
|
|
1354
|
+
var LambdaFunctionUtilizationMetric$ = [3, n0, _LFUM,
|
|
1355
|
+
0,
|
|
1356
|
+
[_n, _sta, _v],
|
|
1357
|
+
[0, 0, 1]
|
|
1358
|
+
];
|
|
1359
|
+
var LambdaSavingsEstimationMode$ = [3, n0, _LSEM,
|
|
1360
|
+
0,
|
|
1361
|
+
[_so],
|
|
1362
|
+
[0]
|
|
1363
|
+
];
|
|
1364
|
+
var LambdaSavingsOpportunityAfterDiscounts$ = [3, n0, _LSOAD,
|
|
1365
|
+
0,
|
|
1366
|
+
[_sOP, _eMS],
|
|
1367
|
+
[1, () => LambdaEstimatedMonthlySavings$]
|
|
1368
|
+
];
|
|
1369
|
+
var LicenseConfiguration$ = [3, n0, _LC,
|
|
1370
|
+
0,
|
|
1371
|
+
[_nOC, _iT, _oS, _lE, _lN, _lM, _lV, _mSet],
|
|
1372
|
+
[1, 0, 0, 0, 0, 0, 0, () => MetricsSource]
|
|
1373
|
+
];
|
|
1374
|
+
var LicenseRecommendation$ = [3, n0, _LR,
|
|
1375
|
+
0,
|
|
1376
|
+
[_rA, _aI, _cLC, _lPID, _lRT, _f, _fRC, _lRO, _ta],
|
|
1377
|
+
[0, 0, () => LicenseConfiguration$, 1, 4, 0, 64 | 0, () => LicenseRecommendationOptions, () => Tags]
|
|
1378
|
+
];
|
|
1379
|
+
var LicenseRecommendationFilter$ = [3, n0, _LRF,
|
|
1380
|
+
0,
|
|
1381
|
+
[_n, _va],
|
|
1382
|
+
[0, 64 | 0]
|
|
1383
|
+
];
|
|
1384
|
+
var LicenseRecommendationOption$ = [3, n0, _LRO,
|
|
1385
|
+
0,
|
|
1386
|
+
[_r, _oS, _lE, _lM, _sO],
|
|
1387
|
+
[1, 0, 0, 0, () => SavingsOpportunity$]
|
|
1388
|
+
];
|
|
1389
|
+
var MemorySizeConfiguration$ = [3, n0, _MSC,
|
|
1390
|
+
0,
|
|
1391
|
+
[_mem, _mRe],
|
|
1392
|
+
[1, 1]
|
|
1393
|
+
];
|
|
1394
|
+
var MetricSource$ = [3, n0, _MS,
|
|
1395
|
+
0,
|
|
1396
|
+
[_pr, _pA],
|
|
1397
|
+
[0, 0]
|
|
1398
|
+
];
|
|
1399
|
+
var OrderBy$ = [3, n0, _OB,
|
|
1400
|
+
0,
|
|
1401
|
+
[_di, _o],
|
|
1402
|
+
[0, 0]
|
|
1403
|
+
];
|
|
1404
|
+
var PreferredResource$ = [3, n0, _PR,
|
|
1405
|
+
0,
|
|
1406
|
+
[_n, _iL, _eL],
|
|
1407
|
+
[0, 64 | 0, 64 | 0]
|
|
1408
|
+
];
|
|
1409
|
+
var ProjectedMetric$ = [3, n0, _PM,
|
|
1410
|
+
0,
|
|
1411
|
+
[_n, _ti, _va],
|
|
1412
|
+
[0, 64 | 4, 64 | 1]
|
|
1413
|
+
];
|
|
1414
|
+
var PutRecommendationPreferencesRequest$ = [3, n0, _PRPR,
|
|
1415
|
+
0,
|
|
1416
|
+
[_rT, _sc, _eIM, _iWT, _eMP, _lBP, _uP, _pRr, _sEM],
|
|
1417
|
+
[0, () => Scope$, 0, 0, () => ExternalMetricsPreference$, 0, () => UtilizationPreferences, () => PreferredResources, 0], 1
|
|
1418
|
+
];
|
|
1419
|
+
var PutRecommendationPreferencesResponse$ = [3, n0, _PRPRu,
|
|
1420
|
+
0,
|
|
1421
|
+
[],
|
|
1422
|
+
[]
|
|
1423
|
+
];
|
|
1424
|
+
var RDSDatabaseProjectedMetric$ = [3, n0, _RDSDPM,
|
|
1425
|
+
0,
|
|
1426
|
+
[_n, _ti, _va],
|
|
1427
|
+
[0, 64 | 4, 64 | 1]
|
|
1428
|
+
];
|
|
1429
|
+
var RDSDatabaseRecommendedOptionProjectedMetric$ = [3, n0, _RDSDROPM,
|
|
1430
|
+
0,
|
|
1431
|
+
[_rDBIC, _r, _pM],
|
|
1432
|
+
[0, 1, () => RDSDatabaseProjectedMetrics]
|
|
1433
|
+
];
|
|
1434
|
+
var RDSDBInstanceRecommendationOption$ = [3, n0, _RDSDBIRO,
|
|
1435
|
+
0,
|
|
1436
|
+
[_dIC, _pUM, _pR, _r, _sO, _sOAD],
|
|
1437
|
+
[0, () => RDSDBProjectedUtilizationMetrics, 1, 1, () => SavingsOpportunity$, () => RDSInstanceSavingsOpportunityAfterDiscounts$]
|
|
1438
|
+
];
|
|
1439
|
+
var RDSDBRecommendation$ = [3, n0, _RDSDBR,
|
|
1440
|
+
0,
|
|
1441
|
+
[_rA, _aI, _en, _eV, _pT, _cDBIC, _cSCu, _dCI, _idl, _iF, _sF, _iFRC, _cIPR, _cSEMVIOPCV, _sFRC, _iRO, _sROt, _uM, _eRP, _lPID, _lRT, _ta],
|
|
1442
|
+
[0, 0, 0, 0, 1, 0, () => DBStorageConfiguration$, 0, 0, 0, 0, 64 | 0, 0, 0, 64 | 0, () => RDSDBInstanceRecommendationOptions, () => RDSDBStorageRecommendationOptions, () => RDSDBUtilizationMetrics, () => RDSEffectiveRecommendationPreferences$, 1, 4, () => Tags]
|
|
1443
|
+
];
|
|
1444
|
+
var RDSDBRecommendationFilter$ = [3, n0, _RDSDBRF,
|
|
1445
|
+
0,
|
|
1446
|
+
[_n, _va],
|
|
1447
|
+
[0, 64 | 0]
|
|
1448
|
+
];
|
|
1449
|
+
var RDSDBStorageRecommendationOption$ = [3, n0, _RDSDBSRO,
|
|
1450
|
+
0,
|
|
1451
|
+
[_sCt, _r, _sO, _sOAD, _eMVIOPCV],
|
|
1452
|
+
[() => DBStorageConfiguration$, 1, () => SavingsOpportunity$, () => RDSStorageSavingsOpportunityAfterDiscounts$, 0]
|
|
1453
|
+
];
|
|
1454
|
+
var RDSDBUtilizationMetric$ = [3, n0, _RDSDBUM,
|
|
1455
|
+
0,
|
|
1456
|
+
[_n, _sta, _v],
|
|
1457
|
+
[0, 0, 1]
|
|
1458
|
+
];
|
|
1459
|
+
var RDSEffectiveRecommendationPreferences$ = [3, n0, _RDSERP,
|
|
1460
|
+
0,
|
|
1461
|
+
[_cVA, _eIM, _lBP, _sEM],
|
|
1462
|
+
[64 | 0, 0, 0, () => RDSSavingsEstimationMode$]
|
|
1463
|
+
];
|
|
1464
|
+
var RDSInstanceEstimatedMonthlySavings$ = [3, n0, _RDSIEMS,
|
|
1465
|
+
0,
|
|
1466
|
+
[_cu, _v],
|
|
1467
|
+
[0, 1]
|
|
1468
|
+
];
|
|
1469
|
+
var RDSInstanceSavingsOpportunityAfterDiscounts$ = [3, n0, _RDSISOAD,
|
|
1470
|
+
0,
|
|
1471
|
+
[_sOP, _eMS],
|
|
1472
|
+
[1, () => RDSInstanceEstimatedMonthlySavings$]
|
|
1473
|
+
];
|
|
1474
|
+
var RDSSavingsEstimationMode$ = [3, n0, _RDSSEM,
|
|
1475
|
+
0,
|
|
1476
|
+
[_so],
|
|
1477
|
+
[0]
|
|
1478
|
+
];
|
|
1479
|
+
var RDSStorageEstimatedMonthlySavings$ = [3, n0, _RDSSEMS,
|
|
1480
|
+
0,
|
|
1481
|
+
[_cu, _v],
|
|
1482
|
+
[0, 1]
|
|
1483
|
+
];
|
|
1484
|
+
var RDSStorageSavingsOpportunityAfterDiscounts$ = [3, n0, _RDSSSOAD,
|
|
1485
|
+
0,
|
|
1486
|
+
[_sOP, _eMS],
|
|
1487
|
+
[1, () => RDSStorageEstimatedMonthlySavings$]
|
|
1488
|
+
];
|
|
1489
|
+
var ReasonCodeSummary$ = [3, n0, _RCS,
|
|
1490
|
+
0,
|
|
1491
|
+
[_n, _v],
|
|
1492
|
+
[0, 1]
|
|
1493
|
+
];
|
|
1494
|
+
var RecommendationExportJob$ = [3, n0, _REJ,
|
|
1495
|
+
0,
|
|
1496
|
+
[_jIo, _de, _rT, _st, _cT, _lUT, _fR],
|
|
1497
|
+
[0, () => ExportDestination$, 0, 0, 4, 4, 0]
|
|
1498
|
+
];
|
|
1499
|
+
var RecommendationPreferences$ = [3, n0, _RP,
|
|
1500
|
+
0,
|
|
1501
|
+
[_cVA],
|
|
1502
|
+
[64 | 0]
|
|
1503
|
+
];
|
|
1504
|
+
var RecommendationPreferencesDetail$ = [3, n0, _RPD,
|
|
1505
|
+
0,
|
|
1506
|
+
[_sc, _rT, _eIM, _iWT, _eMP, _lBP, _uP, _pRr, _sEM],
|
|
1507
|
+
[() => Scope$, 0, 0, 0, () => ExternalMetricsPreference$, 0, () => UtilizationPreferences, () => EffectivePreferredResources, 0]
|
|
1508
|
+
];
|
|
1509
|
+
var RecommendationSource$ = [3, n0, _RS,
|
|
1510
|
+
0,
|
|
1511
|
+
[_rSA, _rST],
|
|
1512
|
+
[0, 0]
|
|
1513
|
+
];
|
|
1514
|
+
var RecommendationSummary$ = [3, n0, _RSe,
|
|
1515
|
+
0,
|
|
1516
|
+
[_su, _iSd, _rRT, _aI, _sO, _iSO, _aSO, _cPRR, _iWS],
|
|
1517
|
+
[() => Summaries, () => IdleSummaries, 0, 0, () => SavingsOpportunity$, () => SavingsOpportunity$, () => SavingsOpportunity$, () => CurrentPerformanceRiskRatings$, () => InferredWorkloadSavings]
|
|
1518
|
+
];
|
|
1519
|
+
var RecommendedOptionProjectedMetric$ = [3, n0, _ROPM,
|
|
1520
|
+
0,
|
|
1521
|
+
[_rIT, _r, _pM],
|
|
1522
|
+
[0, 1, () => ProjectedMetrics]
|
|
1523
|
+
];
|
|
1524
|
+
var S3Destination$ = [3, n0, _SD,
|
|
1525
|
+
0,
|
|
1526
|
+
[_b, _k, _mK],
|
|
1527
|
+
[0, 0, 0]
|
|
1528
|
+
];
|
|
1529
|
+
var S3DestinationConfig$ = [3, n0, _SDC,
|
|
1530
|
+
0,
|
|
1531
|
+
[_b, _kP],
|
|
1532
|
+
[0, 0]
|
|
1533
|
+
];
|
|
1534
|
+
var SavingsOpportunity$ = [3, n0, _SO,
|
|
1535
|
+
0,
|
|
1536
|
+
[_sOP, _eMS],
|
|
1537
|
+
[1, () => EstimatedMonthlySavings$]
|
|
1538
|
+
];
|
|
1539
|
+
var Scope$ = [3, n0, _S,
|
|
1540
|
+
0,
|
|
1541
|
+
[_n, _v],
|
|
1542
|
+
[0, 0]
|
|
1543
|
+
];
|
|
1544
|
+
var ServiceConfiguration$ = [3, n0, _SC,
|
|
1545
|
+
0,
|
|
1546
|
+
[_mem, _cp, _cCo, _aSC, _tDA],
|
|
1547
|
+
[1, 1, () => ContainerConfigurations, 0, 0]
|
|
1548
|
+
];
|
|
1549
|
+
var Summary$ = [3, n0, _Su,
|
|
1550
|
+
0,
|
|
1551
|
+
[_n, _v, _rCS],
|
|
1552
|
+
[0, 1, () => ReasonCodeSummaries]
|
|
1553
|
+
];
|
|
1554
|
+
var Tag$ = [3, n0, _T,
|
|
1555
|
+
0,
|
|
1556
|
+
[_k, _v],
|
|
1557
|
+
[0, 0]
|
|
1558
|
+
];
|
|
1559
|
+
var UpdateEnrollmentStatusRequest$ = [3, n0, _UESR,
|
|
1560
|
+
0,
|
|
1561
|
+
[_st, _iMA],
|
|
1562
|
+
[0, 2], 1
|
|
1563
|
+
];
|
|
1564
|
+
var UpdateEnrollmentStatusResponse$ = [3, n0, _UESRp,
|
|
1565
|
+
0,
|
|
1566
|
+
[_st, _sR],
|
|
1567
|
+
[0, 0]
|
|
1568
|
+
];
|
|
1569
|
+
var UtilizationMetric$ = [3, n0, _UM,
|
|
1570
|
+
0,
|
|
1571
|
+
[_n, _sta, _v],
|
|
1572
|
+
[0, 0, 1]
|
|
1573
|
+
];
|
|
1574
|
+
var UtilizationPreference$ = [3, n0, _UP,
|
|
1575
|
+
0,
|
|
1576
|
+
[_mN, _mP],
|
|
1577
|
+
[0, () => CustomizableMetricParameters$]
|
|
1578
|
+
];
|
|
1579
|
+
var VolumeConfiguration$ = [3, n0, _VC,
|
|
1580
|
+
0,
|
|
1581
|
+
[_vT, _vS, _vBIOPS, _vBIOPSo, _vBT, _vBTo, _rV],
|
|
1582
|
+
[0, 1, 1, 1, 1, 1, 2]
|
|
1583
|
+
];
|
|
1584
|
+
var VolumeRecommendation$ = [3, n0, _VR,
|
|
1585
|
+
0,
|
|
1586
|
+
[_vAo, _aI, _cC, _f, _uM, _lBPID, _vRO, _lRT, _cPR, _eRP, _ta],
|
|
1587
|
+
[0, 0, () => VolumeConfiguration$, 0, () => EBSUtilizationMetrics, 1, () => VolumeRecommendationOptions, 4, 0, () => EBSEffectiveRecommendationPreferences$, () => Tags]
|
|
1588
|
+
];
|
|
1589
|
+
var VolumeRecommendationOption$ = [3, n0, _VRO,
|
|
1590
|
+
0,
|
|
1591
|
+
[_co, _pR, _r, _sO, _sOAD],
|
|
1592
|
+
[() => VolumeConfiguration$, 1, 1, () => SavingsOpportunity$, () => EBSSavingsOpportunityAfterDiscounts$]
|
|
1593
|
+
];
|
|
1594
|
+
var AccountEnrollmentStatuses = [1, n0, _AESc,
|
|
1595
|
+
0, () => AccountEnrollmentStatus$
|
|
1596
|
+
];
|
|
1597
|
+
var AutoScalingGroupRecommendationOptions = [1, n0, _ASGROu,
|
|
1598
|
+
0, () => AutoScalingGroupRecommendationOption$
|
|
1599
|
+
];
|
|
1600
|
+
var AutoScalingGroupRecommendations = [1, n0, _ASGRu,
|
|
1601
|
+
0, () => AutoScalingGroupRecommendation$
|
|
1602
|
+
];
|
|
1603
|
+
var ContainerConfigurations = [1, n0, _CCo,
|
|
1604
|
+
0, () => ContainerConfiguration$
|
|
1605
|
+
];
|
|
1606
|
+
var ContainerRecommendations = [1, n0, _CRo,
|
|
1607
|
+
0, () => ContainerRecommendation$
|
|
1608
|
+
];
|
|
1609
|
+
var EBSFilters = [1, n0, _EBSFi,
|
|
1610
|
+
0, () => EBSFilter$
|
|
1611
|
+
];
|
|
1612
|
+
var EBSUtilizationMetrics = [1, n0, _EBSUMt,
|
|
1613
|
+
0, () => EBSUtilizationMetric$
|
|
1614
|
+
];
|
|
1615
|
+
var ECSServiceProjectedMetrics = [1, n0, _ECSSPMe,
|
|
1616
|
+
0, () => ECSServiceProjectedMetric$
|
|
1617
|
+
];
|
|
1618
|
+
var ECSServiceProjectedUtilizationMetrics = [1, n0, _ECSSPUMe,
|
|
1619
|
+
0, () => ECSServiceProjectedUtilizationMetric$
|
|
1620
|
+
];
|
|
1621
|
+
var ECSServiceRecommendationFilters = [1, n0, _ECSSRFe,
|
|
1622
|
+
0, () => ECSServiceRecommendationFilter$
|
|
1623
|
+
];
|
|
1624
|
+
var ECSServiceRecommendationOptions = [1, n0, _ECSSROe,
|
|
1625
|
+
0, () => ECSServiceRecommendationOption$
|
|
1626
|
+
];
|
|
1627
|
+
var ECSServiceRecommendations = [1, n0, _ECSSRe,
|
|
1628
|
+
0, () => ECSServiceRecommendation$
|
|
1629
|
+
];
|
|
1630
|
+
var ECSServiceRecommendedOptionProjectedMetrics = [1, n0, _ECSSROPMe,
|
|
1631
|
+
0, () => ECSServiceRecommendedOptionProjectedMetric$
|
|
1632
|
+
];
|
|
1633
|
+
var ECSServiceUtilizationMetrics = [1, n0, _ECSSUMe,
|
|
1634
|
+
0, () => ECSServiceUtilizationMetric$
|
|
1635
|
+
];
|
|
1636
|
+
var EffectivePreferredResources = [1, n0, _EPRf,
|
|
1637
|
+
0, () => EffectivePreferredResource$
|
|
1638
|
+
];
|
|
1639
|
+
var EnrollmentFilters = [1, n0, _EFn,
|
|
1640
|
+
0, () => EnrollmentFilter$
|
|
1641
|
+
];
|
|
1642
|
+
var Filters = [1, n0, _Fi,
|
|
1643
|
+
0, () => Filter$
|
|
1644
|
+
];
|
|
1645
|
+
var GetRecommendationErrors = [1, n0, _GREe,
|
|
1646
|
+
0, () => GetRecommendationError$
|
|
1647
|
+
];
|
|
1648
|
+
var Gpus = [1, n0, _Gp,
|
|
1649
|
+
0, () => Gpu$
|
|
1650
|
+
];
|
|
1651
|
+
var IdleDimensions = [1, n0, _IDd,
|
|
1652
|
+
0, () => IdleDimension$
|
|
1653
|
+
];
|
|
1654
|
+
var IdleRecommendationErrors = [1, n0, _IREd,
|
|
1655
|
+
0, () => IdleRecommendationError$
|
|
1656
|
+
];
|
|
1657
|
+
var IdleRecommendationFilters = [1, n0, _IRFd,
|
|
1658
|
+
0, () => IdleRecommendationFilter$
|
|
1659
|
+
];
|
|
1660
|
+
var IdleRecommendations = [1, n0, _IRd,
|
|
1661
|
+
0, () => IdleRecommendation$
|
|
1662
|
+
];
|
|
1663
|
+
var IdleSummaries = [1, n0, _ISd,
|
|
1664
|
+
0, () => IdleSummary$
|
|
1665
|
+
];
|
|
1666
|
+
var IdleUtilizationMetrics = [1, n0, _IUMd,
|
|
1667
|
+
0, () => IdleUtilizationMetric$
|
|
1668
|
+
];
|
|
1669
|
+
var InferredWorkloadSavings = [1, n0, _IWSn,
|
|
1670
|
+
0, () => InferredWorkloadSaving$
|
|
1671
|
+
];
|
|
1672
|
+
var InstanceRecommendations = [1, n0, _IRns,
|
|
1673
|
+
0, () => InstanceRecommendation$
|
|
1674
|
+
];
|
|
1675
|
+
var JobFilters = [1, n0, _JFo,
|
|
1676
|
+
0, () => JobFilter$
|
|
1677
|
+
];
|
|
1678
|
+
var LambdaFunctionMemoryProjectedMetrics = [1, n0, _LFMPMa,
|
|
1679
|
+
0, () => LambdaFunctionMemoryProjectedMetric$
|
|
1680
|
+
];
|
|
1681
|
+
var LambdaFunctionMemoryRecommendationOptions = [1, n0, _LFMROa,
|
|
1682
|
+
0, () => LambdaFunctionMemoryRecommendationOption$
|
|
1683
|
+
];
|
|
1684
|
+
var LambdaFunctionRecommendationFilters = [1, n0, _LFRFa,
|
|
1685
|
+
0, () => LambdaFunctionRecommendationFilter$
|
|
1686
|
+
];
|
|
1687
|
+
var LambdaFunctionRecommendations = [1, n0, _LFRa,
|
|
1688
|
+
0, () => LambdaFunctionRecommendation$
|
|
1689
|
+
];
|
|
1690
|
+
var LambdaFunctionUtilizationMetrics = [1, n0, _LFUMa,
|
|
1691
|
+
0, () => LambdaFunctionUtilizationMetric$
|
|
1692
|
+
];
|
|
1693
|
+
var LicenseRecommendationFilters = [1, n0, _LRFi,
|
|
1694
|
+
0, () => LicenseRecommendationFilter$
|
|
1695
|
+
];
|
|
1696
|
+
var LicenseRecommendationOptions = [1, n0, _LROi,
|
|
1697
|
+
0, () => LicenseRecommendationOption$
|
|
1698
|
+
];
|
|
1699
|
+
var LicenseRecommendations = [1, n0, _LRi,
|
|
1700
|
+
0, () => LicenseRecommendation$
|
|
1701
|
+
];
|
|
1702
|
+
var MetricsSource = [1, n0, _MSe,
|
|
1703
|
+
0, () => MetricSource$
|
|
1704
|
+
];
|
|
1705
|
+
var PreferredResources = [1, n0, _PRr,
|
|
1706
|
+
0, () => PreferredResource$
|
|
1707
|
+
];
|
|
1708
|
+
var ProjectedMetrics = [1, n0, _PMr,
|
|
1709
|
+
0, () => ProjectedMetric$
|
|
1710
|
+
];
|
|
1711
|
+
var ProjectedUtilizationMetrics = [1, n0, _PUM,
|
|
1712
|
+
0, () => UtilizationMetric$
|
|
1713
|
+
];
|
|
1714
|
+
var RDSDatabaseProjectedMetrics = [1, n0, _RDSDPMa,
|
|
1715
|
+
0, () => RDSDatabaseProjectedMetric$
|
|
1716
|
+
];
|
|
1717
|
+
var RDSDatabaseRecommendedOptionProjectedMetrics = [1, n0, _RDSDROPMa,
|
|
1718
|
+
0, () => RDSDatabaseRecommendedOptionProjectedMetric$
|
|
1719
|
+
];
|
|
1720
|
+
var RDSDBInstanceRecommendationOptions = [1, n0, _RDSDBIROn,
|
|
1721
|
+
0, () => RDSDBInstanceRecommendationOption$
|
|
1722
|
+
];
|
|
1723
|
+
var RDSDBProjectedUtilizationMetrics = [1, n0, _RDSDBPUM,
|
|
1724
|
+
0, () => RDSDBUtilizationMetric$
|
|
1725
|
+
];
|
|
1726
|
+
var RDSDBRecommendationFilters = [1, n0, _RDSDBRFe,
|
|
1727
|
+
0, () => RDSDBRecommendationFilter$
|
|
1728
|
+
];
|
|
1729
|
+
var RDSDBRecommendations = [1, n0, _RDSDBRe,
|
|
1730
|
+
0, () => RDSDBRecommendation$
|
|
1731
|
+
];
|
|
1732
|
+
var RDSDBStorageRecommendationOptions = [1, n0, _RDSDBSROt,
|
|
1733
|
+
0, () => RDSDBStorageRecommendationOption$
|
|
1734
|
+
];
|
|
1735
|
+
var RDSDBUtilizationMetrics = [1, n0, _RDSDBUMt,
|
|
1736
|
+
0, () => RDSDBUtilizationMetric$
|
|
1737
|
+
];
|
|
1738
|
+
var ReasonCodeSummaries = [1, n0, _RCSe,
|
|
1739
|
+
0, () => ReasonCodeSummary$
|
|
1740
|
+
];
|
|
1741
|
+
var RecommendationExportJobs = [1, n0, _REJe,
|
|
1742
|
+
0, () => RecommendationExportJob$
|
|
1743
|
+
];
|
|
1744
|
+
var RecommendationOptions = [1, n0, _RO,
|
|
1745
|
+
0, () => InstanceRecommendationOption$
|
|
1746
|
+
];
|
|
1747
|
+
var RecommendationPreferencesDetails = [1, n0, _RPDe,
|
|
1748
|
+
0, () => RecommendationPreferencesDetail$
|
|
1749
|
+
];
|
|
1750
|
+
var RecommendationSources = [1, n0, _RSec,
|
|
1751
|
+
0, () => RecommendationSource$
|
|
1752
|
+
];
|
|
1753
|
+
var RecommendationSummaries = [1, n0, _RSeco,
|
|
1754
|
+
0, () => RecommendationSummary$
|
|
1755
|
+
];
|
|
1756
|
+
var RecommendedOptionProjectedMetrics = [1, n0, _ROPMe,
|
|
1757
|
+
0, () => RecommendedOptionProjectedMetric$
|
|
1758
|
+
];
|
|
1759
|
+
var Summaries = [1, n0, _Sum,
|
|
1760
|
+
0, () => Summary$
|
|
1761
|
+
];
|
|
1762
|
+
var Tags = [1, n0, _Ta,
|
|
1763
|
+
0, () => Tag$
|
|
1764
|
+
];
|
|
1765
|
+
var UtilizationMetrics = [1, n0, _UMt,
|
|
1766
|
+
0, () => UtilizationMetric$
|
|
1767
|
+
];
|
|
1768
|
+
var UtilizationPreferences = [1, n0, _UPt,
|
|
1769
|
+
0, () => UtilizationPreference$
|
|
1770
|
+
];
|
|
1771
|
+
var VolumeRecommendationOptions = [1, n0, _VROo,
|
|
1772
|
+
0, () => VolumeRecommendationOption$
|
|
1773
|
+
];
|
|
1774
|
+
var VolumeRecommendations = [1, n0, _VRo,
|
|
1775
|
+
0, () => VolumeRecommendation$
|
|
1776
|
+
];
|
|
1777
|
+
var DeleteRecommendationPreferences$ = [9, n0, _DRP,
|
|
1778
|
+
0, () => DeleteRecommendationPreferencesRequest$, () => DeleteRecommendationPreferencesResponse$
|
|
1779
|
+
];
|
|
1780
|
+
var DescribeRecommendationExportJobs$ = [9, n0, _DREJ,
|
|
1781
|
+
0, () => DescribeRecommendationExportJobsRequest$, () => DescribeRecommendationExportJobsResponse$
|
|
1782
|
+
];
|
|
1783
|
+
var ExportAutoScalingGroupRecommendations$ = [9, n0, _EASGR,
|
|
1784
|
+
0, () => ExportAutoScalingGroupRecommendationsRequest$, () => ExportAutoScalingGroupRecommendationsResponse$
|
|
1785
|
+
];
|
|
1786
|
+
var ExportEBSVolumeRecommendations$ = [9, n0, _EEBSVR,
|
|
1787
|
+
0, () => ExportEBSVolumeRecommendationsRequest$, () => ExportEBSVolumeRecommendationsResponse$
|
|
1788
|
+
];
|
|
1789
|
+
var ExportEC2InstanceRecommendations$ = [9, n0, _EECIR,
|
|
1790
|
+
0, () => ExportEC2InstanceRecommendationsRequest$, () => ExportEC2InstanceRecommendationsResponse$
|
|
1791
|
+
];
|
|
1792
|
+
var ExportECSServiceRecommendations$ = [9, n0, _EECSSR,
|
|
1793
|
+
0, () => ExportECSServiceRecommendationsRequest$, () => ExportECSServiceRecommendationsResponse$
|
|
1794
|
+
];
|
|
1795
|
+
var ExportIdleRecommendations$ = [9, n0, _EIR,
|
|
1796
|
+
0, () => ExportIdleRecommendationsRequest$, () => ExportIdleRecommendationsResponse$
|
|
1797
|
+
];
|
|
1798
|
+
var ExportLambdaFunctionRecommendations$ = [9, n0, _ELFR,
|
|
1799
|
+
0, () => ExportLambdaFunctionRecommendationsRequest$, () => ExportLambdaFunctionRecommendationsResponse$
|
|
1800
|
+
];
|
|
1801
|
+
var ExportLicenseRecommendations$ = [9, n0, _ELR,
|
|
1802
|
+
0, () => ExportLicenseRecommendationsRequest$, () => ExportLicenseRecommendationsResponse$
|
|
1803
|
+
];
|
|
1804
|
+
var ExportRDSDatabaseRecommendations$ = [9, n0, _ERDSDR,
|
|
1805
|
+
0, () => ExportRDSDatabaseRecommendationsRequest$, () => ExportRDSDatabaseRecommendationsResponse$
|
|
1806
|
+
];
|
|
1807
|
+
var GetAutoScalingGroupRecommendations$ = [9, n0, _GASGR,
|
|
1808
|
+
0, () => GetAutoScalingGroupRecommendationsRequest$, () => GetAutoScalingGroupRecommendationsResponse$
|
|
1809
|
+
];
|
|
1810
|
+
var GetEBSVolumeRecommendations$ = [9, n0, _GEBSVR,
|
|
1811
|
+
0, () => GetEBSVolumeRecommendationsRequest$, () => GetEBSVolumeRecommendationsResponse$
|
|
1812
|
+
];
|
|
1813
|
+
var GetEC2InstanceRecommendations$ = [9, n0, _GECIR,
|
|
1814
|
+
0, () => GetEC2InstanceRecommendationsRequest$, () => GetEC2InstanceRecommendationsResponse$
|
|
1815
|
+
];
|
|
1816
|
+
var GetEC2RecommendationProjectedMetrics$ = [9, n0, _GECRPM,
|
|
1817
|
+
0, () => GetEC2RecommendationProjectedMetricsRequest$, () => GetEC2RecommendationProjectedMetricsResponse$
|
|
1818
|
+
];
|
|
1819
|
+
var GetECSServiceRecommendationProjectedMetrics$ = [9, n0, _GECSSRPM,
|
|
1820
|
+
0, () => GetECSServiceRecommendationProjectedMetricsRequest$, () => GetECSServiceRecommendationProjectedMetricsResponse$
|
|
1821
|
+
];
|
|
1822
|
+
var GetECSServiceRecommendations$ = [9, n0, _GECSSR,
|
|
1823
|
+
0, () => GetECSServiceRecommendationsRequest$, () => GetECSServiceRecommendationsResponse$
|
|
1824
|
+
];
|
|
1825
|
+
var GetEffectiveRecommendationPreferences$ = [9, n0, _GERP,
|
|
1826
|
+
0, () => GetEffectiveRecommendationPreferencesRequest$, () => GetEffectiveRecommendationPreferencesResponse$
|
|
1827
|
+
];
|
|
1828
|
+
var GetEnrollmentStatus$ = [9, n0, _GES,
|
|
1829
|
+
0, () => GetEnrollmentStatusRequest$, () => GetEnrollmentStatusResponse$
|
|
1830
|
+
];
|
|
1831
|
+
var GetEnrollmentStatusesForOrganization$ = [9, n0, _GESFO,
|
|
1832
|
+
0, () => GetEnrollmentStatusesForOrganizationRequest$, () => GetEnrollmentStatusesForOrganizationResponse$
|
|
1833
|
+
];
|
|
1834
|
+
var GetIdleRecommendations$ = [9, n0, _GIR,
|
|
1835
|
+
0, () => GetIdleRecommendationsRequest$, () => GetIdleRecommendationsResponse$
|
|
1836
|
+
];
|
|
1837
|
+
var GetLambdaFunctionRecommendations$ = [9, n0, _GLFR,
|
|
1838
|
+
0, () => GetLambdaFunctionRecommendationsRequest$, () => GetLambdaFunctionRecommendationsResponse$
|
|
1839
|
+
];
|
|
1840
|
+
var GetLicenseRecommendations$ = [9, n0, _GLR,
|
|
1841
|
+
0, () => GetLicenseRecommendationsRequest$, () => GetLicenseRecommendationsResponse$
|
|
1842
|
+
];
|
|
1843
|
+
var GetRDSDatabaseRecommendationProjectedMetrics$ = [9, n0, _GRDSDRPM,
|
|
1844
|
+
0, () => GetRDSDatabaseRecommendationProjectedMetricsRequest$, () => GetRDSDatabaseRecommendationProjectedMetricsResponse$
|
|
1845
|
+
];
|
|
1846
|
+
var GetRDSDatabaseRecommendations$ = [9, n0, _GRDSDR,
|
|
1847
|
+
0, () => GetRDSDatabaseRecommendationsRequest$, () => GetRDSDatabaseRecommendationsResponse$
|
|
1848
|
+
];
|
|
1849
|
+
var GetRecommendationPreferences$ = [9, n0, _GRP,
|
|
1850
|
+
0, () => GetRecommendationPreferencesRequest$, () => GetRecommendationPreferencesResponse$
|
|
1851
|
+
];
|
|
1852
|
+
var GetRecommendationSummaries$ = [9, n0, _GRS,
|
|
1853
|
+
0, () => GetRecommendationSummariesRequest$, () => GetRecommendationSummariesResponse$
|
|
1854
|
+
];
|
|
1855
|
+
var PutRecommendationPreferences$ = [9, n0, _PRP,
|
|
1856
|
+
0, () => PutRecommendationPreferencesRequest$, () => PutRecommendationPreferencesResponse$
|
|
1857
|
+
];
|
|
1858
|
+
var UpdateEnrollmentStatus$ = [9, n0, _UES,
|
|
1859
|
+
0, () => UpdateEnrollmentStatusRequest$, () => UpdateEnrollmentStatusResponse$
|
|
1860
|
+
];
|
|
1861
|
+
|
|
1862
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1863
|
+
return {
|
|
1864
|
+
apiVersion: "2019-11-01",
|
|
1865
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1866
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1867
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1868
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1869
|
+
extensions: config?.extensions ?? [],
|
|
1870
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultComputeOptimizerHttpAuthSchemeProvider,
|
|
1871
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1872
|
+
{
|
|
1873
|
+
schemeId: "aws.auth#sigv4",
|
|
1874
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1875
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1876
|
+
},
|
|
1877
|
+
],
|
|
1878
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1879
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
1880
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1881
|
+
defaultNamespace: "com.amazonaws.computeoptimizer",
|
|
1882
|
+
errorTypeRegistries,
|
|
1883
|
+
version: "2019-11-01",
|
|
1884
|
+
serviceTarget: "ComputeOptimizerService",
|
|
1885
|
+
},
|
|
1886
|
+
serviceId: config?.serviceId ?? "Compute Optimizer",
|
|
1887
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1888
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1889
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1890
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1891
|
+
};
|
|
1892
|
+
};
|
|
1893
|
+
|
|
1894
|
+
const getRuntimeConfig = (config) => {
|
|
1895
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1896
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1897
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1898
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1899
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1900
|
+
const loaderConfig = {
|
|
1901
|
+
profile: config?.profile,
|
|
1902
|
+
logger: clientSharedValues.logger,
|
|
1903
|
+
};
|
|
1904
|
+
return {
|
|
1905
|
+
...clientSharedValues,
|
|
1906
|
+
...config,
|
|
1907
|
+
runtime: "node",
|
|
1908
|
+
defaultsMode,
|
|
1909
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1910
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1911
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1912
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1913
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1914
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1915
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1916
|
+
retryMode: config?.retryMode ??
|
|
1917
|
+
loadConfig({
|
|
1918
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1919
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1920
|
+
}, config),
|
|
1921
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1922
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1923
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1924
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1925
|
+
};
|
|
1926
|
+
};
|
|
1927
|
+
|
|
34
1928
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1929
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1930
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1418,41 +3312,108 @@ const FindingReasonCode = {
|
|
|
1418
3312
|
MEMORY_UNDER_PROVISIONED: "MemoryUnderprovisioned",
|
|
1419
3313
|
};
|
|
1420
3314
|
|
|
3315
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3316
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3317
|
+
exports.AccountEnrollmentStatus$ = AccountEnrollmentStatus$;
|
|
1421
3318
|
exports.AllocationStrategy = AllocationStrategy;
|
|
1422
3319
|
exports.AsgType = AsgType;
|
|
1423
3320
|
exports.AutoScalingConfiguration = AutoScalingConfiguration;
|
|
3321
|
+
exports.AutoScalingGroupConfiguration$ = AutoScalingGroupConfiguration$;
|
|
3322
|
+
exports.AutoScalingGroupEstimatedMonthlySavings$ = AutoScalingGroupEstimatedMonthlySavings$;
|
|
3323
|
+
exports.AutoScalingGroupRecommendation$ = AutoScalingGroupRecommendation$;
|
|
3324
|
+
exports.AutoScalingGroupRecommendationOption$ = AutoScalingGroupRecommendationOption$;
|
|
3325
|
+
exports.AutoScalingGroupSavingsOpportunityAfterDiscounts$ = AutoScalingGroupSavingsOpportunityAfterDiscounts$;
|
|
1424
3326
|
exports.ComputeOptimizer = ComputeOptimizer;
|
|
1425
3327
|
exports.ComputeOptimizerClient = ComputeOptimizerClient;
|
|
3328
|
+
exports.ComputeOptimizerServiceException = ComputeOptimizerServiceException;
|
|
3329
|
+
exports.ComputeOptimizerServiceException$ = ComputeOptimizerServiceException$;
|
|
3330
|
+
exports.ContainerConfiguration$ = ContainerConfiguration$;
|
|
3331
|
+
exports.ContainerRecommendation$ = ContainerRecommendation$;
|
|
1426
3332
|
exports.CpuVendorArchitecture = CpuVendorArchitecture;
|
|
1427
3333
|
exports.Currency = Currency;
|
|
1428
3334
|
exports.CurrentPerformanceRisk = CurrentPerformanceRisk;
|
|
3335
|
+
exports.CurrentPerformanceRiskRatings$ = CurrentPerformanceRiskRatings$;
|
|
1429
3336
|
exports.CustomizableMetricHeadroom = CustomizableMetricHeadroom;
|
|
1430
3337
|
exports.CustomizableMetricName = CustomizableMetricName;
|
|
3338
|
+
exports.CustomizableMetricParameters$ = CustomizableMetricParameters$;
|
|
1431
3339
|
exports.CustomizableMetricThreshold = CustomizableMetricThreshold;
|
|
3340
|
+
exports.DBStorageConfiguration$ = DBStorageConfiguration$;
|
|
3341
|
+
exports.DeleteRecommendationPreferences$ = DeleteRecommendationPreferences$;
|
|
1432
3342
|
exports.DeleteRecommendationPreferencesCommand = DeleteRecommendationPreferencesCommand;
|
|
3343
|
+
exports.DeleteRecommendationPreferencesRequest$ = DeleteRecommendationPreferencesRequest$;
|
|
3344
|
+
exports.DeleteRecommendationPreferencesResponse$ = DeleteRecommendationPreferencesResponse$;
|
|
3345
|
+
exports.DescribeRecommendationExportJobs$ = DescribeRecommendationExportJobs$;
|
|
1433
3346
|
exports.DescribeRecommendationExportJobsCommand = DescribeRecommendationExportJobsCommand;
|
|
3347
|
+
exports.DescribeRecommendationExportJobsRequest$ = DescribeRecommendationExportJobsRequest$;
|
|
3348
|
+
exports.DescribeRecommendationExportJobsResponse$ = DescribeRecommendationExportJobsResponse$;
|
|
1434
3349
|
exports.Dimension = Dimension;
|
|
3350
|
+
exports.EBSEffectiveRecommendationPreferences$ = EBSEffectiveRecommendationPreferences$;
|
|
3351
|
+
exports.EBSEstimatedMonthlySavings$ = EBSEstimatedMonthlySavings$;
|
|
3352
|
+
exports.EBSFilter$ = EBSFilter$;
|
|
1435
3353
|
exports.EBSFilterName = EBSFilterName;
|
|
1436
3354
|
exports.EBSFinding = EBSFinding;
|
|
1437
3355
|
exports.EBSMetricName = EBSMetricName;
|
|
3356
|
+
exports.EBSSavingsEstimationMode$ = EBSSavingsEstimationMode$;
|
|
1438
3357
|
exports.EBSSavingsEstimationModeSource = EBSSavingsEstimationModeSource;
|
|
3358
|
+
exports.EBSSavingsOpportunityAfterDiscounts$ = EBSSavingsOpportunityAfterDiscounts$;
|
|
3359
|
+
exports.EBSUtilizationMetric$ = EBSUtilizationMetric$;
|
|
3360
|
+
exports.ECSEffectiveRecommendationPreferences$ = ECSEffectiveRecommendationPreferences$;
|
|
3361
|
+
exports.ECSEstimatedMonthlySavings$ = ECSEstimatedMonthlySavings$;
|
|
3362
|
+
exports.ECSSavingsEstimationMode$ = ECSSavingsEstimationMode$;
|
|
1439
3363
|
exports.ECSSavingsEstimationModeSource = ECSSavingsEstimationModeSource;
|
|
3364
|
+
exports.ECSSavingsOpportunityAfterDiscounts$ = ECSSavingsOpportunityAfterDiscounts$;
|
|
1440
3365
|
exports.ECSServiceLaunchType = ECSServiceLaunchType;
|
|
1441
3366
|
exports.ECSServiceMetricName = ECSServiceMetricName;
|
|
1442
3367
|
exports.ECSServiceMetricStatistic = ECSServiceMetricStatistic;
|
|
3368
|
+
exports.ECSServiceProjectedMetric$ = ECSServiceProjectedMetric$;
|
|
3369
|
+
exports.ECSServiceProjectedUtilizationMetric$ = ECSServiceProjectedUtilizationMetric$;
|
|
3370
|
+
exports.ECSServiceRecommendation$ = ECSServiceRecommendation$;
|
|
3371
|
+
exports.ECSServiceRecommendationFilter$ = ECSServiceRecommendationFilter$;
|
|
1443
3372
|
exports.ECSServiceRecommendationFilterName = ECSServiceRecommendationFilterName;
|
|
1444
3373
|
exports.ECSServiceRecommendationFinding = ECSServiceRecommendationFinding;
|
|
1445
3374
|
exports.ECSServiceRecommendationFindingReasonCode = ECSServiceRecommendationFindingReasonCode;
|
|
3375
|
+
exports.ECSServiceRecommendationOption$ = ECSServiceRecommendationOption$;
|
|
3376
|
+
exports.ECSServiceRecommendedOptionProjectedMetric$ = ECSServiceRecommendedOptionProjectedMetric$;
|
|
3377
|
+
exports.ECSServiceUtilizationMetric$ = ECSServiceUtilizationMetric$;
|
|
3378
|
+
exports.EffectivePreferredResource$ = EffectivePreferredResource$;
|
|
3379
|
+
exports.EffectiveRecommendationPreferences$ = EffectiveRecommendationPreferences$;
|
|
1446
3380
|
exports.EnhancedInfrastructureMetrics = EnhancedInfrastructureMetrics;
|
|
3381
|
+
exports.EnrollmentFilter$ = EnrollmentFilter$;
|
|
1447
3382
|
exports.EnrollmentFilterName = EnrollmentFilterName;
|
|
3383
|
+
exports.EstimatedMonthlySavings$ = EstimatedMonthlySavings$;
|
|
3384
|
+
exports.ExportAutoScalingGroupRecommendations$ = ExportAutoScalingGroupRecommendations$;
|
|
1448
3385
|
exports.ExportAutoScalingGroupRecommendationsCommand = ExportAutoScalingGroupRecommendationsCommand;
|
|
3386
|
+
exports.ExportAutoScalingGroupRecommendationsRequest$ = ExportAutoScalingGroupRecommendationsRequest$;
|
|
3387
|
+
exports.ExportAutoScalingGroupRecommendationsResponse$ = ExportAutoScalingGroupRecommendationsResponse$;
|
|
3388
|
+
exports.ExportDestination$ = ExportDestination$;
|
|
3389
|
+
exports.ExportEBSVolumeRecommendations$ = ExportEBSVolumeRecommendations$;
|
|
1449
3390
|
exports.ExportEBSVolumeRecommendationsCommand = ExportEBSVolumeRecommendationsCommand;
|
|
3391
|
+
exports.ExportEBSVolumeRecommendationsRequest$ = ExportEBSVolumeRecommendationsRequest$;
|
|
3392
|
+
exports.ExportEBSVolumeRecommendationsResponse$ = ExportEBSVolumeRecommendationsResponse$;
|
|
3393
|
+
exports.ExportEC2InstanceRecommendations$ = ExportEC2InstanceRecommendations$;
|
|
1450
3394
|
exports.ExportEC2InstanceRecommendationsCommand = ExportEC2InstanceRecommendationsCommand;
|
|
3395
|
+
exports.ExportEC2InstanceRecommendationsRequest$ = ExportEC2InstanceRecommendationsRequest$;
|
|
3396
|
+
exports.ExportEC2InstanceRecommendationsResponse$ = ExportEC2InstanceRecommendationsResponse$;
|
|
3397
|
+
exports.ExportECSServiceRecommendations$ = ExportECSServiceRecommendations$;
|
|
1451
3398
|
exports.ExportECSServiceRecommendationsCommand = ExportECSServiceRecommendationsCommand;
|
|
3399
|
+
exports.ExportECSServiceRecommendationsRequest$ = ExportECSServiceRecommendationsRequest$;
|
|
3400
|
+
exports.ExportECSServiceRecommendationsResponse$ = ExportECSServiceRecommendationsResponse$;
|
|
3401
|
+
exports.ExportIdleRecommendations$ = ExportIdleRecommendations$;
|
|
1452
3402
|
exports.ExportIdleRecommendationsCommand = ExportIdleRecommendationsCommand;
|
|
3403
|
+
exports.ExportIdleRecommendationsRequest$ = ExportIdleRecommendationsRequest$;
|
|
3404
|
+
exports.ExportIdleRecommendationsResponse$ = ExportIdleRecommendationsResponse$;
|
|
3405
|
+
exports.ExportLambdaFunctionRecommendations$ = ExportLambdaFunctionRecommendations$;
|
|
1453
3406
|
exports.ExportLambdaFunctionRecommendationsCommand = ExportLambdaFunctionRecommendationsCommand;
|
|
3407
|
+
exports.ExportLambdaFunctionRecommendationsRequest$ = ExportLambdaFunctionRecommendationsRequest$;
|
|
3408
|
+
exports.ExportLambdaFunctionRecommendationsResponse$ = ExportLambdaFunctionRecommendationsResponse$;
|
|
3409
|
+
exports.ExportLicenseRecommendations$ = ExportLicenseRecommendations$;
|
|
1454
3410
|
exports.ExportLicenseRecommendationsCommand = ExportLicenseRecommendationsCommand;
|
|
3411
|
+
exports.ExportLicenseRecommendationsRequest$ = ExportLicenseRecommendationsRequest$;
|
|
3412
|
+
exports.ExportLicenseRecommendationsResponse$ = ExportLicenseRecommendationsResponse$;
|
|
3413
|
+
exports.ExportRDSDatabaseRecommendations$ = ExportRDSDatabaseRecommendations$;
|
|
1455
3414
|
exports.ExportRDSDatabaseRecommendationsCommand = ExportRDSDatabaseRecommendationsCommand;
|
|
3415
|
+
exports.ExportRDSDatabaseRecommendationsRequest$ = ExportRDSDatabaseRecommendationsRequest$;
|
|
3416
|
+
exports.ExportRDSDatabaseRecommendationsResponse$ = ExportRDSDatabaseRecommendationsResponse$;
|
|
1456
3417
|
exports.ExportableAutoScalingGroupField = ExportableAutoScalingGroupField;
|
|
1457
3418
|
exports.ExportableECSServiceField = ExportableECSServiceField;
|
|
1458
3419
|
exports.ExportableIdleField = ExportableIdleField;
|
|
@@ -1461,81 +3422,224 @@ exports.ExportableLambdaFunctionField = ExportableLambdaFunctionField;
|
|
|
1461
3422
|
exports.ExportableLicenseField = ExportableLicenseField;
|
|
1462
3423
|
exports.ExportableRDSDBField = ExportableRDSDBField;
|
|
1463
3424
|
exports.ExportableVolumeField = ExportableVolumeField;
|
|
3425
|
+
exports.ExternalMetricStatus$ = ExternalMetricStatus$;
|
|
1464
3426
|
exports.ExternalMetricStatusCode = ExternalMetricStatusCode;
|
|
3427
|
+
exports.ExternalMetricsPreference$ = ExternalMetricsPreference$;
|
|
1465
3428
|
exports.ExternalMetricsSource = ExternalMetricsSource;
|
|
1466
3429
|
exports.FileFormat = FileFormat;
|
|
3430
|
+
exports.Filter$ = Filter$;
|
|
1467
3431
|
exports.FilterName = FilterName;
|
|
1468
3432
|
exports.Finding = Finding;
|
|
1469
3433
|
exports.FindingReasonCode = FindingReasonCode;
|
|
3434
|
+
exports.GetAutoScalingGroupRecommendations$ = GetAutoScalingGroupRecommendations$;
|
|
1470
3435
|
exports.GetAutoScalingGroupRecommendationsCommand = GetAutoScalingGroupRecommendationsCommand;
|
|
3436
|
+
exports.GetAutoScalingGroupRecommendationsRequest$ = GetAutoScalingGroupRecommendationsRequest$;
|
|
3437
|
+
exports.GetAutoScalingGroupRecommendationsResponse$ = GetAutoScalingGroupRecommendationsResponse$;
|
|
3438
|
+
exports.GetEBSVolumeRecommendations$ = GetEBSVolumeRecommendations$;
|
|
1471
3439
|
exports.GetEBSVolumeRecommendationsCommand = GetEBSVolumeRecommendationsCommand;
|
|
3440
|
+
exports.GetEBSVolumeRecommendationsRequest$ = GetEBSVolumeRecommendationsRequest$;
|
|
3441
|
+
exports.GetEBSVolumeRecommendationsResponse$ = GetEBSVolumeRecommendationsResponse$;
|
|
3442
|
+
exports.GetEC2InstanceRecommendations$ = GetEC2InstanceRecommendations$;
|
|
1472
3443
|
exports.GetEC2InstanceRecommendationsCommand = GetEC2InstanceRecommendationsCommand;
|
|
3444
|
+
exports.GetEC2InstanceRecommendationsRequest$ = GetEC2InstanceRecommendationsRequest$;
|
|
3445
|
+
exports.GetEC2InstanceRecommendationsResponse$ = GetEC2InstanceRecommendationsResponse$;
|
|
3446
|
+
exports.GetEC2RecommendationProjectedMetrics$ = GetEC2RecommendationProjectedMetrics$;
|
|
1473
3447
|
exports.GetEC2RecommendationProjectedMetricsCommand = GetEC2RecommendationProjectedMetricsCommand;
|
|
3448
|
+
exports.GetEC2RecommendationProjectedMetricsRequest$ = GetEC2RecommendationProjectedMetricsRequest$;
|
|
3449
|
+
exports.GetEC2RecommendationProjectedMetricsResponse$ = GetEC2RecommendationProjectedMetricsResponse$;
|
|
3450
|
+
exports.GetECSServiceRecommendationProjectedMetrics$ = GetECSServiceRecommendationProjectedMetrics$;
|
|
1474
3451
|
exports.GetECSServiceRecommendationProjectedMetricsCommand = GetECSServiceRecommendationProjectedMetricsCommand;
|
|
3452
|
+
exports.GetECSServiceRecommendationProjectedMetricsRequest$ = GetECSServiceRecommendationProjectedMetricsRequest$;
|
|
3453
|
+
exports.GetECSServiceRecommendationProjectedMetricsResponse$ = GetECSServiceRecommendationProjectedMetricsResponse$;
|
|
3454
|
+
exports.GetECSServiceRecommendations$ = GetECSServiceRecommendations$;
|
|
1475
3455
|
exports.GetECSServiceRecommendationsCommand = GetECSServiceRecommendationsCommand;
|
|
3456
|
+
exports.GetECSServiceRecommendationsRequest$ = GetECSServiceRecommendationsRequest$;
|
|
3457
|
+
exports.GetECSServiceRecommendationsResponse$ = GetECSServiceRecommendationsResponse$;
|
|
3458
|
+
exports.GetEffectiveRecommendationPreferences$ = GetEffectiveRecommendationPreferences$;
|
|
1476
3459
|
exports.GetEffectiveRecommendationPreferencesCommand = GetEffectiveRecommendationPreferencesCommand;
|
|
3460
|
+
exports.GetEffectiveRecommendationPreferencesRequest$ = GetEffectiveRecommendationPreferencesRequest$;
|
|
3461
|
+
exports.GetEffectiveRecommendationPreferencesResponse$ = GetEffectiveRecommendationPreferencesResponse$;
|
|
3462
|
+
exports.GetEnrollmentStatus$ = GetEnrollmentStatus$;
|
|
1477
3463
|
exports.GetEnrollmentStatusCommand = GetEnrollmentStatusCommand;
|
|
3464
|
+
exports.GetEnrollmentStatusRequest$ = GetEnrollmentStatusRequest$;
|
|
3465
|
+
exports.GetEnrollmentStatusResponse$ = GetEnrollmentStatusResponse$;
|
|
3466
|
+
exports.GetEnrollmentStatusesForOrganization$ = GetEnrollmentStatusesForOrganization$;
|
|
1478
3467
|
exports.GetEnrollmentStatusesForOrganizationCommand = GetEnrollmentStatusesForOrganizationCommand;
|
|
3468
|
+
exports.GetEnrollmentStatusesForOrganizationRequest$ = GetEnrollmentStatusesForOrganizationRequest$;
|
|
3469
|
+
exports.GetEnrollmentStatusesForOrganizationResponse$ = GetEnrollmentStatusesForOrganizationResponse$;
|
|
3470
|
+
exports.GetIdleRecommendations$ = GetIdleRecommendations$;
|
|
1479
3471
|
exports.GetIdleRecommendationsCommand = GetIdleRecommendationsCommand;
|
|
3472
|
+
exports.GetIdleRecommendationsRequest$ = GetIdleRecommendationsRequest$;
|
|
3473
|
+
exports.GetIdleRecommendationsResponse$ = GetIdleRecommendationsResponse$;
|
|
3474
|
+
exports.GetLambdaFunctionRecommendations$ = GetLambdaFunctionRecommendations$;
|
|
1480
3475
|
exports.GetLambdaFunctionRecommendationsCommand = GetLambdaFunctionRecommendationsCommand;
|
|
3476
|
+
exports.GetLambdaFunctionRecommendationsRequest$ = GetLambdaFunctionRecommendationsRequest$;
|
|
3477
|
+
exports.GetLambdaFunctionRecommendationsResponse$ = GetLambdaFunctionRecommendationsResponse$;
|
|
3478
|
+
exports.GetLicenseRecommendations$ = GetLicenseRecommendations$;
|
|
1481
3479
|
exports.GetLicenseRecommendationsCommand = GetLicenseRecommendationsCommand;
|
|
3480
|
+
exports.GetLicenseRecommendationsRequest$ = GetLicenseRecommendationsRequest$;
|
|
3481
|
+
exports.GetLicenseRecommendationsResponse$ = GetLicenseRecommendationsResponse$;
|
|
3482
|
+
exports.GetRDSDatabaseRecommendationProjectedMetrics$ = GetRDSDatabaseRecommendationProjectedMetrics$;
|
|
1482
3483
|
exports.GetRDSDatabaseRecommendationProjectedMetricsCommand = GetRDSDatabaseRecommendationProjectedMetricsCommand;
|
|
3484
|
+
exports.GetRDSDatabaseRecommendationProjectedMetricsRequest$ = GetRDSDatabaseRecommendationProjectedMetricsRequest$;
|
|
3485
|
+
exports.GetRDSDatabaseRecommendationProjectedMetricsResponse$ = GetRDSDatabaseRecommendationProjectedMetricsResponse$;
|
|
3486
|
+
exports.GetRDSDatabaseRecommendations$ = GetRDSDatabaseRecommendations$;
|
|
1483
3487
|
exports.GetRDSDatabaseRecommendationsCommand = GetRDSDatabaseRecommendationsCommand;
|
|
3488
|
+
exports.GetRDSDatabaseRecommendationsRequest$ = GetRDSDatabaseRecommendationsRequest$;
|
|
3489
|
+
exports.GetRDSDatabaseRecommendationsResponse$ = GetRDSDatabaseRecommendationsResponse$;
|
|
3490
|
+
exports.GetRecommendationError$ = GetRecommendationError$;
|
|
3491
|
+
exports.GetRecommendationPreferences$ = GetRecommendationPreferences$;
|
|
1484
3492
|
exports.GetRecommendationPreferencesCommand = GetRecommendationPreferencesCommand;
|
|
3493
|
+
exports.GetRecommendationPreferencesRequest$ = GetRecommendationPreferencesRequest$;
|
|
3494
|
+
exports.GetRecommendationPreferencesResponse$ = GetRecommendationPreferencesResponse$;
|
|
3495
|
+
exports.GetRecommendationSummaries$ = GetRecommendationSummaries$;
|
|
1485
3496
|
exports.GetRecommendationSummariesCommand = GetRecommendationSummariesCommand;
|
|
3497
|
+
exports.GetRecommendationSummariesRequest$ = GetRecommendationSummariesRequest$;
|
|
3498
|
+
exports.GetRecommendationSummariesResponse$ = GetRecommendationSummariesResponse$;
|
|
3499
|
+
exports.Gpu$ = Gpu$;
|
|
3500
|
+
exports.GpuInfo$ = GpuInfo$;
|
|
1486
3501
|
exports.Idle = Idle;
|
|
3502
|
+
exports.IdleDimension$ = IdleDimension$;
|
|
3503
|
+
exports.IdleEstimatedMonthlySavings$ = IdleEstimatedMonthlySavings$;
|
|
1487
3504
|
exports.IdleFinding = IdleFinding;
|
|
1488
3505
|
exports.IdleMetricName = IdleMetricName;
|
|
3506
|
+
exports.IdleRecommendation$ = IdleRecommendation$;
|
|
3507
|
+
exports.IdleRecommendationError$ = IdleRecommendationError$;
|
|
3508
|
+
exports.IdleRecommendationFilter$ = IdleRecommendationFilter$;
|
|
1489
3509
|
exports.IdleRecommendationFilterName = IdleRecommendationFilterName;
|
|
1490
3510
|
exports.IdleRecommendationResourceType = IdleRecommendationResourceType;
|
|
3511
|
+
exports.IdleSavingsOpportunity$ = IdleSavingsOpportunity$;
|
|
3512
|
+
exports.IdleSavingsOpportunityAfterDiscounts$ = IdleSavingsOpportunityAfterDiscounts$;
|
|
3513
|
+
exports.IdleSummary$ = IdleSummary$;
|
|
3514
|
+
exports.IdleUtilizationMetric$ = IdleUtilizationMetric$;
|
|
3515
|
+
exports.InferredWorkloadSaving$ = InferredWorkloadSaving$;
|
|
1491
3516
|
exports.InferredWorkloadType = InferredWorkloadType;
|
|
1492
3517
|
exports.InferredWorkloadTypesPreference = InferredWorkloadTypesPreference;
|
|
3518
|
+
exports.InstanceEstimatedMonthlySavings$ = InstanceEstimatedMonthlySavings$;
|
|
1493
3519
|
exports.InstanceIdle = InstanceIdle;
|
|
3520
|
+
exports.InstanceRecommendation$ = InstanceRecommendation$;
|
|
1494
3521
|
exports.InstanceRecommendationFindingReasonCode = InstanceRecommendationFindingReasonCode;
|
|
3522
|
+
exports.InstanceRecommendationOption$ = InstanceRecommendationOption$;
|
|
3523
|
+
exports.InstanceSavingsEstimationMode$ = InstanceSavingsEstimationMode$;
|
|
1495
3524
|
exports.InstanceSavingsEstimationModeSource = InstanceSavingsEstimationModeSource;
|
|
3525
|
+
exports.InstanceSavingsOpportunityAfterDiscounts$ = InstanceSavingsOpportunityAfterDiscounts$;
|
|
1496
3526
|
exports.InstanceState = InstanceState;
|
|
3527
|
+
exports.InternalServerException = InternalServerException;
|
|
3528
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
3529
|
+
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
3530
|
+
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
3531
|
+
exports.JobFilter$ = JobFilter$;
|
|
1497
3532
|
exports.JobFilterName = JobFilterName;
|
|
1498
3533
|
exports.JobStatus = JobStatus;
|
|
3534
|
+
exports.LambdaEffectiveRecommendationPreferences$ = LambdaEffectiveRecommendationPreferences$;
|
|
3535
|
+
exports.LambdaEstimatedMonthlySavings$ = LambdaEstimatedMonthlySavings$;
|
|
1499
3536
|
exports.LambdaFunctionMemoryMetricName = LambdaFunctionMemoryMetricName;
|
|
1500
3537
|
exports.LambdaFunctionMemoryMetricStatistic = LambdaFunctionMemoryMetricStatistic;
|
|
3538
|
+
exports.LambdaFunctionMemoryProjectedMetric$ = LambdaFunctionMemoryProjectedMetric$;
|
|
3539
|
+
exports.LambdaFunctionMemoryRecommendationOption$ = LambdaFunctionMemoryRecommendationOption$;
|
|
1501
3540
|
exports.LambdaFunctionMetricName = LambdaFunctionMetricName;
|
|
1502
3541
|
exports.LambdaFunctionMetricStatistic = LambdaFunctionMetricStatistic;
|
|
3542
|
+
exports.LambdaFunctionRecommendation$ = LambdaFunctionRecommendation$;
|
|
3543
|
+
exports.LambdaFunctionRecommendationFilter$ = LambdaFunctionRecommendationFilter$;
|
|
1503
3544
|
exports.LambdaFunctionRecommendationFilterName = LambdaFunctionRecommendationFilterName;
|
|
1504
3545
|
exports.LambdaFunctionRecommendationFinding = LambdaFunctionRecommendationFinding;
|
|
1505
3546
|
exports.LambdaFunctionRecommendationFindingReasonCode = LambdaFunctionRecommendationFindingReasonCode;
|
|
3547
|
+
exports.LambdaFunctionUtilizationMetric$ = LambdaFunctionUtilizationMetric$;
|
|
3548
|
+
exports.LambdaSavingsEstimationMode$ = LambdaSavingsEstimationMode$;
|
|
1506
3549
|
exports.LambdaSavingsEstimationModeSource = LambdaSavingsEstimationModeSource;
|
|
3550
|
+
exports.LambdaSavingsOpportunityAfterDiscounts$ = LambdaSavingsOpportunityAfterDiscounts$;
|
|
3551
|
+
exports.LicenseConfiguration$ = LicenseConfiguration$;
|
|
1507
3552
|
exports.LicenseEdition = LicenseEdition;
|
|
1508
3553
|
exports.LicenseFinding = LicenseFinding;
|
|
1509
3554
|
exports.LicenseFindingReasonCode = LicenseFindingReasonCode;
|
|
1510
3555
|
exports.LicenseModel = LicenseModel;
|
|
1511
3556
|
exports.LicenseName = LicenseName;
|
|
3557
|
+
exports.LicenseRecommendation$ = LicenseRecommendation$;
|
|
3558
|
+
exports.LicenseRecommendationFilter$ = LicenseRecommendationFilter$;
|
|
1512
3559
|
exports.LicenseRecommendationFilterName = LicenseRecommendationFilterName;
|
|
3560
|
+
exports.LicenseRecommendationOption$ = LicenseRecommendationOption$;
|
|
3561
|
+
exports.LimitExceededException = LimitExceededException;
|
|
3562
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1513
3563
|
exports.LookBackPeriodPreference = LookBackPeriodPreference;
|
|
3564
|
+
exports.MemorySizeConfiguration$ = MemorySizeConfiguration$;
|
|
1514
3565
|
exports.MetricName = MetricName;
|
|
3566
|
+
exports.MetricSource$ = MetricSource$;
|
|
1515
3567
|
exports.MetricSourceProvider = MetricSourceProvider;
|
|
1516
3568
|
exports.MetricStatistic = MetricStatistic;
|
|
1517
3569
|
exports.MigrationEffort = MigrationEffort;
|
|
3570
|
+
exports.MissingAuthenticationToken = MissingAuthenticationToken;
|
|
3571
|
+
exports.MissingAuthenticationToken$ = MissingAuthenticationToken$;
|
|
3572
|
+
exports.OptInRequiredException = OptInRequiredException;
|
|
3573
|
+
exports.OptInRequiredException$ = OptInRequiredException$;
|
|
1518
3574
|
exports.Order = Order;
|
|
3575
|
+
exports.OrderBy$ = OrderBy$;
|
|
1519
3576
|
exports.PlatformDifference = PlatformDifference;
|
|
3577
|
+
exports.PreferredResource$ = PreferredResource$;
|
|
1520
3578
|
exports.PreferredResourceName = PreferredResourceName;
|
|
3579
|
+
exports.ProjectedMetric$ = ProjectedMetric$;
|
|
3580
|
+
exports.PutRecommendationPreferences$ = PutRecommendationPreferences$;
|
|
1521
3581
|
exports.PutRecommendationPreferencesCommand = PutRecommendationPreferencesCommand;
|
|
3582
|
+
exports.PutRecommendationPreferencesRequest$ = PutRecommendationPreferencesRequest$;
|
|
3583
|
+
exports.PutRecommendationPreferencesResponse$ = PutRecommendationPreferencesResponse$;
|
|
1522
3584
|
exports.RDSCurrentInstancePerformanceRisk = RDSCurrentInstancePerformanceRisk;
|
|
3585
|
+
exports.RDSDBInstanceRecommendationOption$ = RDSDBInstanceRecommendationOption$;
|
|
1523
3586
|
exports.RDSDBMetricName = RDSDBMetricName;
|
|
1524
3587
|
exports.RDSDBMetricStatistic = RDSDBMetricStatistic;
|
|
3588
|
+
exports.RDSDBRecommendation$ = RDSDBRecommendation$;
|
|
3589
|
+
exports.RDSDBRecommendationFilter$ = RDSDBRecommendationFilter$;
|
|
1525
3590
|
exports.RDSDBRecommendationFilterName = RDSDBRecommendationFilterName;
|
|
3591
|
+
exports.RDSDBStorageRecommendationOption$ = RDSDBStorageRecommendationOption$;
|
|
3592
|
+
exports.RDSDBUtilizationMetric$ = RDSDBUtilizationMetric$;
|
|
3593
|
+
exports.RDSDatabaseProjectedMetric$ = RDSDatabaseProjectedMetric$;
|
|
3594
|
+
exports.RDSDatabaseRecommendedOptionProjectedMetric$ = RDSDatabaseRecommendedOptionProjectedMetric$;
|
|
3595
|
+
exports.RDSEffectiveRecommendationPreferences$ = RDSEffectiveRecommendationPreferences$;
|
|
1526
3596
|
exports.RDSEstimatedMonthlyVolumeIOPsCostVariation = RDSEstimatedMonthlyVolumeIOPsCostVariation;
|
|
3597
|
+
exports.RDSInstanceEstimatedMonthlySavings$ = RDSInstanceEstimatedMonthlySavings$;
|
|
1527
3598
|
exports.RDSInstanceFinding = RDSInstanceFinding;
|
|
1528
3599
|
exports.RDSInstanceFindingReasonCode = RDSInstanceFindingReasonCode;
|
|
3600
|
+
exports.RDSInstanceSavingsOpportunityAfterDiscounts$ = RDSInstanceSavingsOpportunityAfterDiscounts$;
|
|
3601
|
+
exports.RDSSavingsEstimationMode$ = RDSSavingsEstimationMode$;
|
|
1529
3602
|
exports.RDSSavingsEstimationModeSource = RDSSavingsEstimationModeSource;
|
|
3603
|
+
exports.RDSStorageEstimatedMonthlySavings$ = RDSStorageEstimatedMonthlySavings$;
|
|
1530
3604
|
exports.RDSStorageFinding = RDSStorageFinding;
|
|
1531
3605
|
exports.RDSStorageFindingReasonCode = RDSStorageFindingReasonCode;
|
|
3606
|
+
exports.RDSStorageSavingsOpportunityAfterDiscounts$ = RDSStorageSavingsOpportunityAfterDiscounts$;
|
|
3607
|
+
exports.ReasonCodeSummary$ = ReasonCodeSummary$;
|
|
3608
|
+
exports.RecommendationExportJob$ = RecommendationExportJob$;
|
|
1532
3609
|
exports.RecommendationPreferenceName = RecommendationPreferenceName;
|
|
3610
|
+
exports.RecommendationPreferences$ = RecommendationPreferences$;
|
|
3611
|
+
exports.RecommendationPreferencesDetail$ = RecommendationPreferencesDetail$;
|
|
3612
|
+
exports.RecommendationSource$ = RecommendationSource$;
|
|
1533
3613
|
exports.RecommendationSourceType = RecommendationSourceType;
|
|
3614
|
+
exports.RecommendationSummary$ = RecommendationSummary$;
|
|
3615
|
+
exports.RecommendedOptionProjectedMetric$ = RecommendedOptionProjectedMetric$;
|
|
3616
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3617
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1534
3618
|
exports.ResourceType = ResourceType;
|
|
3619
|
+
exports.S3Destination$ = S3Destination$;
|
|
3620
|
+
exports.S3DestinationConfig$ = S3DestinationConfig$;
|
|
1535
3621
|
exports.SavingsEstimationMode = SavingsEstimationMode;
|
|
3622
|
+
exports.SavingsOpportunity$ = SavingsOpportunity$;
|
|
3623
|
+
exports.Scope$ = Scope$;
|
|
1536
3624
|
exports.ScopeName = ScopeName;
|
|
3625
|
+
exports.ServiceConfiguration$ = ServiceConfiguration$;
|
|
3626
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
3627
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1537
3628
|
exports.Status = Status;
|
|
3629
|
+
exports.Summary$ = Summary$;
|
|
3630
|
+
exports.Tag$ = Tag$;
|
|
3631
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3632
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3633
|
+
exports.UpdateEnrollmentStatus$ = UpdateEnrollmentStatus$;
|
|
1538
3634
|
exports.UpdateEnrollmentStatusCommand = UpdateEnrollmentStatusCommand;
|
|
3635
|
+
exports.UpdateEnrollmentStatusRequest$ = UpdateEnrollmentStatusRequest$;
|
|
3636
|
+
exports.UpdateEnrollmentStatusResponse$ = UpdateEnrollmentStatusResponse$;
|
|
3637
|
+
exports.UtilizationMetric$ = UtilizationMetric$;
|
|
3638
|
+
exports.UtilizationPreference$ = UtilizationPreference$;
|
|
3639
|
+
exports.VolumeConfiguration$ = VolumeConfiguration$;
|
|
3640
|
+
exports.VolumeRecommendation$ = VolumeRecommendation$;
|
|
3641
|
+
exports.VolumeRecommendationOption$ = VolumeRecommendationOption$;
|
|
3642
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1539
3643
|
exports.paginateDescribeRecommendationExportJobs = paginateDescribeRecommendationExportJobs;
|
|
1540
3644
|
exports.paginateGetEnrollmentStatusesForOrganization = paginateGetEnrollmentStatusesForOrganization;
|
|
1541
3645
|
exports.paginateGetLambdaFunctionRecommendations = paginateGetLambdaFunctionRecommendations;
|