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