@aws-sdk/client-compute-optimizer 3.533.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/ComputeOptimizer.d.ts +11 -1
- package/dist-types/ComputeOptimizerClient.d.ts +1 -1
- package/dist-types/commands/DeleteRecommendationPreferencesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRecommendationExportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/ExportEBSVolumeRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/ExportEC2InstanceRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/ExportECSServiceRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/ExportLicenseRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/GetEBSVolumeRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/GetEC2InstanceRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/GetEC2RecommendationProjectedMetricsCommand.d.ts +2 -1
- package/dist-types/commands/GetECSServiceRecommendationProjectedMetricsCommand.d.ts +2 -1
- package/dist-types/commands/GetECSServiceRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +2 -1
- package/dist-types/commands/GetEnrollmentStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetEnrollmentStatusesForOrganizationCommand.d.ts +2 -1
- package/dist-types/commands/GetLambdaFunctionRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/GetLicenseRecommendationsCommand.d.ts +2 -1
- package/dist-types/commands/GetRecommendationPreferencesCommand.d.ts +2 -1
- package/dist-types/commands/GetRecommendationSummariesCommand.d.ts +2 -1
- package/dist-types/commands/PutRecommendationPreferencesCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEnrollmentStatusCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +557 -557
- package/dist-types/ts3.4/ComputeOptimizer.d.ts +10 -0
- package/dist-types/ts3.4/commands/DeleteRecommendationPreferencesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeRecommendationExportJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ExportEBSVolumeRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ExportEC2InstanceRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ExportECSServiceRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ExportLicenseRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEBSVolumeRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEC2InstanceRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEC2RecommendationProjectedMetricsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetECSServiceRecommendationProjectedMetricsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetECSServiceRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEnrollmentStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEnrollmentStatusesForOrganizationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetLambdaFunctionRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetLicenseRecommendationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRecommendationPreferencesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetRecommendationSummariesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutRecommendationPreferencesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateEnrollmentStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -106,6 +106,7 @@ export interface ComputeOptimizer {
|
|
|
106
106
|
options: __HttpHandlerOptions,
|
|
107
107
|
cb: (err: any, data?: DeleteRecommendationPreferencesCommandOutput) => void
|
|
108
108
|
): void;
|
|
109
|
+
describeRecommendationExportJobs(): Promise<DescribeRecommendationExportJobsCommandOutput>;
|
|
109
110
|
describeRecommendationExportJobs(
|
|
110
111
|
args: DescribeRecommendationExportJobsCommandInput,
|
|
111
112
|
options?: __HttpHandlerOptions
|
|
@@ -209,6 +210,7 @@ export interface ComputeOptimizer {
|
|
|
209
210
|
options: __HttpHandlerOptions,
|
|
210
211
|
cb: (err: any, data?: ExportLicenseRecommendationsCommandOutput) => void
|
|
211
212
|
): void;
|
|
213
|
+
getAutoScalingGroupRecommendations(): Promise<GetAutoScalingGroupRecommendationsCommandOutput>;
|
|
212
214
|
getAutoScalingGroupRecommendations(
|
|
213
215
|
args: GetAutoScalingGroupRecommendationsCommandInput,
|
|
214
216
|
options?: __HttpHandlerOptions
|
|
@@ -228,6 +230,7 @@ export interface ComputeOptimizer {
|
|
|
228
230
|
data?: GetAutoScalingGroupRecommendationsCommandOutput
|
|
229
231
|
) => void
|
|
230
232
|
): void;
|
|
233
|
+
getEBSVolumeRecommendations(): Promise<GetEBSVolumeRecommendationsCommandOutput>;
|
|
231
234
|
getEBSVolumeRecommendations(
|
|
232
235
|
args: GetEBSVolumeRecommendationsCommandInput,
|
|
233
236
|
options?: __HttpHandlerOptions
|
|
@@ -241,6 +244,7 @@ export interface ComputeOptimizer {
|
|
|
241
244
|
options: __HttpHandlerOptions,
|
|
242
245
|
cb: (err: any, data?: GetEBSVolumeRecommendationsCommandOutput) => void
|
|
243
246
|
): void;
|
|
247
|
+
getEC2InstanceRecommendations(): Promise<GetEC2InstanceRecommendationsCommandOutput>;
|
|
244
248
|
getEC2InstanceRecommendations(
|
|
245
249
|
args: GetEC2InstanceRecommendationsCommandInput,
|
|
246
250
|
options?: __HttpHandlerOptions
|
|
@@ -292,6 +296,7 @@ export interface ComputeOptimizer {
|
|
|
292
296
|
data?: GetECSServiceRecommendationProjectedMetricsCommandOutput
|
|
293
297
|
) => void
|
|
294
298
|
): void;
|
|
299
|
+
getECSServiceRecommendations(): Promise<GetECSServiceRecommendationsCommandOutput>;
|
|
295
300
|
getECSServiceRecommendations(
|
|
296
301
|
args: GetECSServiceRecommendationsCommandInput,
|
|
297
302
|
options?: __HttpHandlerOptions
|
|
@@ -324,6 +329,7 @@ export interface ComputeOptimizer {
|
|
|
324
329
|
data?: GetEffectiveRecommendationPreferencesCommandOutput
|
|
325
330
|
) => void
|
|
326
331
|
): void;
|
|
332
|
+
getEnrollmentStatus(): Promise<GetEnrollmentStatusCommandOutput>;
|
|
327
333
|
getEnrollmentStatus(
|
|
328
334
|
args: GetEnrollmentStatusCommandInput,
|
|
329
335
|
options?: __HttpHandlerOptions
|
|
@@ -337,6 +343,7 @@ export interface ComputeOptimizer {
|
|
|
337
343
|
options: __HttpHandlerOptions,
|
|
338
344
|
cb: (err: any, data?: GetEnrollmentStatusCommandOutput) => void
|
|
339
345
|
): void;
|
|
346
|
+
getEnrollmentStatusesForOrganization(): Promise<GetEnrollmentStatusesForOrganizationCommandOutput>;
|
|
340
347
|
getEnrollmentStatusesForOrganization(
|
|
341
348
|
args: GetEnrollmentStatusesForOrganizationCommandInput,
|
|
342
349
|
options?: __HttpHandlerOptions
|
|
@@ -356,6 +363,7 @@ export interface ComputeOptimizer {
|
|
|
356
363
|
data?: GetEnrollmentStatusesForOrganizationCommandOutput
|
|
357
364
|
) => void
|
|
358
365
|
): void;
|
|
366
|
+
getLambdaFunctionRecommendations(): Promise<GetLambdaFunctionRecommendationsCommandOutput>;
|
|
359
367
|
getLambdaFunctionRecommendations(
|
|
360
368
|
args: GetLambdaFunctionRecommendationsCommandInput,
|
|
361
369
|
options?: __HttpHandlerOptions
|
|
@@ -369,6 +377,7 @@ export interface ComputeOptimizer {
|
|
|
369
377
|
options: __HttpHandlerOptions,
|
|
370
378
|
cb: (err: any, data?: GetLambdaFunctionRecommendationsCommandOutput) => void
|
|
371
379
|
): void;
|
|
380
|
+
getLicenseRecommendations(): Promise<GetLicenseRecommendationsCommandOutput>;
|
|
372
381
|
getLicenseRecommendations(
|
|
373
382
|
args: GetLicenseRecommendationsCommandInput,
|
|
374
383
|
options?: __HttpHandlerOptions
|
|
@@ -395,6 +404,7 @@ export interface ComputeOptimizer {
|
|
|
395
404
|
options: __HttpHandlerOptions,
|
|
396
405
|
cb: (err: any, data?: GetRecommendationPreferencesCommandOutput) => void
|
|
397
406
|
): void;
|
|
407
|
+
getRecommendationSummaries(): Promise<GetRecommendationSummariesCommandOutput>;
|
|
398
408
|
getRecommendationSummaries(
|
|
399
409
|
args: GetRecommendationSummariesCommandInput,
|
|
400
410
|
options?: __HttpHandlerOptions
|
|
@@ -25,6 +25,15 @@ declare const DeleteRecommendationPreferencesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteRecommendationPreferencesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteRecommendationPreferencesCommandInput,
|
|
32
|
+
DeleteRecommendationPreferencesCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DeleteRecommendationPreferencesCommand extends DeleteRecommendationPreferencesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeRecommendationExportJobsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeRecommendationExportJobsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeRecommendationExportJobsCommandInput,
|
|
32
|
+
DescribeRecommendationExportJobsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeRecommendationExportJobsCommand extends DescribeRecommendationExportJobsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ExportAutoScalingGroupRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ExportAutoScalingGroupRecommendationsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ExportAutoScalingGroupRecommendationsCommandInput,
|
|
32
|
+
ExportAutoScalingGroupRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ExportAutoScalingGroupRecommendationsCommand extends ExportAutoScalingGroupRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ExportEBSVolumeRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ExportEBSVolumeRecommendationsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ExportEBSVolumeRecommendationsCommandInput,
|
|
32
|
+
ExportEBSVolumeRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ExportEBSVolumeRecommendationsCommand extends ExportEBSVolumeRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ExportEC2InstanceRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ExportEC2InstanceRecommendationsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ExportEC2InstanceRecommendationsCommandInput,
|
|
32
|
+
ExportEC2InstanceRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ExportEC2InstanceRecommendationsCommand extends ExportEC2InstanceRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ExportECSServiceRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ExportECSServiceRecommendationsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ExportECSServiceRecommendationsCommandInput,
|
|
32
|
+
ExportECSServiceRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ExportECSServiceRecommendationsCommand extends ExportECSServiceRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ExportLambdaFunctionRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ExportLambdaFunctionRecommendationsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ExportLambdaFunctionRecommendationsCommandInput,
|
|
32
|
+
ExportLambdaFunctionRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ExportLambdaFunctionRecommendationsCommand extends ExportLambdaFunctionRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ExportLicenseRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ExportLicenseRecommendationsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ExportLicenseRecommendationsCommandInput,
|
|
32
|
+
ExportLicenseRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ExportLicenseRecommendationsCommand extends ExportLicenseRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetAutoScalingGroupRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetAutoScalingGroupRecommendationsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetAutoScalingGroupRecommendationsCommandInput,
|
|
32
|
+
GetAutoScalingGroupRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetAutoScalingGroupRecommendationsCommand extends GetAutoScalingGroupRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetEBSVolumeRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetEBSVolumeRecommendationsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetEBSVolumeRecommendationsCommandInput,
|
|
32
|
+
GetEBSVolumeRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetEBSVolumeRecommendationsCommand extends GetEBSVolumeRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetEC2InstanceRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetEC2InstanceRecommendationsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetEC2InstanceRecommendationsCommandInput,
|
|
32
|
+
GetEC2InstanceRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetEC2InstanceRecommendationsCommand extends GetEC2InstanceRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetEC2RecommendationProjectedMetricsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetEC2RecommendationProjectedMetricsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetEC2RecommendationProjectedMetricsCommandInput,
|
|
32
|
+
GetEC2RecommendationProjectedMetricsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetEC2RecommendationProjectedMetricsCommand extends GetEC2RecommendationProjectedMetricsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetECSServiceRecommendationProjectedMetricsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetECSServiceRecommendationProjectedMetricsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetECSServiceRecommendationProjectedMetricsCommandInput,
|
|
32
|
+
GetECSServiceRecommendationProjectedMetricsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetECSServiceRecommendationProjectedMetricsCommand extends GetECSServiceRecommendationProjectedMetricsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetECSServiceRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetECSServiceRecommendationsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetECSServiceRecommendationsCommandInput,
|
|
32
|
+
GetECSServiceRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetECSServiceRecommendationsCommand extends GetECSServiceRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetEffectiveRecommendationPreferencesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetEffectiveRecommendationPreferencesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetEffectiveRecommendationPreferencesCommandInput,
|
|
32
|
+
GetEffectiveRecommendationPreferencesCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetEffectiveRecommendationPreferencesCommand extends GetEffectiveRecommendationPreferencesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetEnrollmentStatusCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetEnrollmentStatusCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetEnrollmentStatusCommandInput,
|
|
32
|
+
GetEnrollmentStatusCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetEnrollmentStatusCommand extends GetEnrollmentStatusCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetEnrollmentStatusesForOrganizationCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetEnrollmentStatusesForOrganizationCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetEnrollmentStatusesForOrganizationCommandInput,
|
|
32
|
+
GetEnrollmentStatusesForOrganizationCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetEnrollmentStatusesForOrganizationCommand extends GetEnrollmentStatusesForOrganizationCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetLambdaFunctionRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetLambdaFunctionRecommendationsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetLambdaFunctionRecommendationsCommandInput,
|
|
32
|
+
GetLambdaFunctionRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetLambdaFunctionRecommendationsCommand extends GetLambdaFunctionRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetLicenseRecommendationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetLicenseRecommendationsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetLicenseRecommendationsCommandInput,
|
|
32
|
+
GetLicenseRecommendationsCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetLicenseRecommendationsCommand extends GetLicenseRecommendationsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetRecommendationPreferencesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetRecommendationPreferencesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetRecommendationPreferencesCommandInput,
|
|
32
|
+
GetRecommendationPreferencesCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetRecommendationPreferencesCommand extends GetRecommendationPreferencesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetRecommendationSummariesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetRecommendationSummariesCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetRecommendationSummariesCommandInput,
|
|
32
|
+
GetRecommendationSummariesCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetRecommendationSummariesCommand extends GetRecommendationSummariesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const PutRecommendationPreferencesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: PutRecommendationPreferencesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
PutRecommendationPreferencesCommandInput,
|
|
32
|
+
PutRecommendationPreferencesCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class PutRecommendationPreferencesCommand extends PutRecommendationPreferencesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const UpdateEnrollmentStatusCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateEnrollmentStatusCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateEnrollmentStatusCommandInput,
|
|
32
|
+
UpdateEnrollmentStatusCommandOutput,
|
|
33
|
+
ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class UpdateEnrollmentStatusCommand extends UpdateEnrollmentStatusCommand_base {}
|
|
@@ -6,5 +6,4 @@ export { ComputeOptimizerExtensionConfiguration } from "./extensionConfiguration
|
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./models";
|
|
9
|
-
import "@aws-sdk/util-endpoints";
|
|
10
9
|
export { ComputeOptimizerServiceException } from "./models/ComputeOptimizerServiceException";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-compute-optimizer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Compute Optimizer Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.540.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-compute-optimizer",
|
|
@@ -20,47 +20,47 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.
|
|
36
|
-
"@smithy/core": "^1.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.
|
|
38
|
-
"@smithy/hash-node": "^2.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.
|
|
43
|
-
"@smithy/middleware-serde": "^2.
|
|
44
|
-
"@smithy/middleware-stack": "^2.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.
|
|
47
|
-
"@smithy/protocol-http": "^3.
|
|
48
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
52
|
-
"@smithy/util-body-length-browser": "^2.
|
|
53
|
-
"@smithy/util-body-length-node": "^2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.
|
|
57
|
-
"@smithy/util-middleware": "^2.
|
|
58
|
-
"@smithy/util-retry": "^2.
|
|
59
|
-
"@smithy/util-utf8": "^2.
|
|
60
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.540.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.540.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
|
+
"@aws-sdk/types": "3.535.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.540.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
+
"@smithy/core": "^1.4.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
|
+
"@smithy/hash-node": "^2.2.0",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
42
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
44
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
45
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
46
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
49
|
+
"@smithy/types": "^2.12.0",
|
|
50
|
+
"@smithy/url-parser": "^2.2.0",
|
|
51
|
+
"@smithy/util-base64": "^2.3.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
57
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
58
|
+
"@smithy/util-retry": "^2.2.0",
|
|
59
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
60
|
+
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
63
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
65
|
"@types/node": "^14.14.31",
|
|
66
66
|
"concurrently": "7.0.0",
|