@aws-sdk/client-compute-optimizer 3.533.0 → 3.535.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-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/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/package.json +40 -40
|
@@ -33,6 +33,7 @@ export interface ComputeOptimizer {
|
|
|
33
33
|
/**
|
|
34
34
|
* @see {@link DescribeRecommendationExportJobsCommand}
|
|
35
35
|
*/
|
|
36
|
+
describeRecommendationExportJobs(): Promise<DescribeRecommendationExportJobsCommandOutput>;
|
|
36
37
|
describeRecommendationExportJobs(args: DescribeRecommendationExportJobsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecommendationExportJobsCommandOutput>;
|
|
37
38
|
describeRecommendationExportJobs(args: DescribeRecommendationExportJobsCommandInput, cb: (err: any, data?: DescribeRecommendationExportJobsCommandOutput) => void): void;
|
|
38
39
|
describeRecommendationExportJobs(args: DescribeRecommendationExportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecommendationExportJobsCommandOutput) => void): void;
|
|
@@ -75,18 +76,21 @@ export interface ComputeOptimizer {
|
|
|
75
76
|
/**
|
|
76
77
|
* @see {@link GetAutoScalingGroupRecommendationsCommand}
|
|
77
78
|
*/
|
|
79
|
+
getAutoScalingGroupRecommendations(): Promise<GetAutoScalingGroupRecommendationsCommandOutput>;
|
|
78
80
|
getAutoScalingGroupRecommendations(args: GetAutoScalingGroupRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetAutoScalingGroupRecommendationsCommandOutput>;
|
|
79
81
|
getAutoScalingGroupRecommendations(args: GetAutoScalingGroupRecommendationsCommandInput, cb: (err: any, data?: GetAutoScalingGroupRecommendationsCommandOutput) => void): void;
|
|
80
82
|
getAutoScalingGroupRecommendations(args: GetAutoScalingGroupRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAutoScalingGroupRecommendationsCommandOutput) => void): void;
|
|
81
83
|
/**
|
|
82
84
|
* @see {@link GetEBSVolumeRecommendationsCommand}
|
|
83
85
|
*/
|
|
86
|
+
getEBSVolumeRecommendations(): Promise<GetEBSVolumeRecommendationsCommandOutput>;
|
|
84
87
|
getEBSVolumeRecommendations(args: GetEBSVolumeRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetEBSVolumeRecommendationsCommandOutput>;
|
|
85
88
|
getEBSVolumeRecommendations(args: GetEBSVolumeRecommendationsCommandInput, cb: (err: any, data?: GetEBSVolumeRecommendationsCommandOutput) => void): void;
|
|
86
89
|
getEBSVolumeRecommendations(args: GetEBSVolumeRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEBSVolumeRecommendationsCommandOutput) => void): void;
|
|
87
90
|
/**
|
|
88
91
|
* @see {@link GetEC2InstanceRecommendationsCommand}
|
|
89
92
|
*/
|
|
93
|
+
getEC2InstanceRecommendations(): Promise<GetEC2InstanceRecommendationsCommandOutput>;
|
|
90
94
|
getEC2InstanceRecommendations(args: GetEC2InstanceRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetEC2InstanceRecommendationsCommandOutput>;
|
|
91
95
|
getEC2InstanceRecommendations(args: GetEC2InstanceRecommendationsCommandInput, cb: (err: any, data?: GetEC2InstanceRecommendationsCommandOutput) => void): void;
|
|
92
96
|
getEC2InstanceRecommendations(args: GetEC2InstanceRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEC2InstanceRecommendationsCommandOutput) => void): void;
|
|
@@ -105,6 +109,7 @@ export interface ComputeOptimizer {
|
|
|
105
109
|
/**
|
|
106
110
|
* @see {@link GetECSServiceRecommendationsCommand}
|
|
107
111
|
*/
|
|
112
|
+
getECSServiceRecommendations(): Promise<GetECSServiceRecommendationsCommandOutput>;
|
|
108
113
|
getECSServiceRecommendations(args: GetECSServiceRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetECSServiceRecommendationsCommandOutput>;
|
|
109
114
|
getECSServiceRecommendations(args: GetECSServiceRecommendationsCommandInput, cb: (err: any, data?: GetECSServiceRecommendationsCommandOutput) => void): void;
|
|
110
115
|
getECSServiceRecommendations(args: GetECSServiceRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetECSServiceRecommendationsCommandOutput) => void): void;
|
|
@@ -117,24 +122,28 @@ export interface ComputeOptimizer {
|
|
|
117
122
|
/**
|
|
118
123
|
* @see {@link GetEnrollmentStatusCommand}
|
|
119
124
|
*/
|
|
125
|
+
getEnrollmentStatus(): Promise<GetEnrollmentStatusCommandOutput>;
|
|
120
126
|
getEnrollmentStatus(args: GetEnrollmentStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetEnrollmentStatusCommandOutput>;
|
|
121
127
|
getEnrollmentStatus(args: GetEnrollmentStatusCommandInput, cb: (err: any, data?: GetEnrollmentStatusCommandOutput) => void): void;
|
|
122
128
|
getEnrollmentStatus(args: GetEnrollmentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnrollmentStatusCommandOutput) => void): void;
|
|
123
129
|
/**
|
|
124
130
|
* @see {@link GetEnrollmentStatusesForOrganizationCommand}
|
|
125
131
|
*/
|
|
132
|
+
getEnrollmentStatusesForOrganization(): Promise<GetEnrollmentStatusesForOrganizationCommandOutput>;
|
|
126
133
|
getEnrollmentStatusesForOrganization(args: GetEnrollmentStatusesForOrganizationCommandInput, options?: __HttpHandlerOptions): Promise<GetEnrollmentStatusesForOrganizationCommandOutput>;
|
|
127
134
|
getEnrollmentStatusesForOrganization(args: GetEnrollmentStatusesForOrganizationCommandInput, cb: (err: any, data?: GetEnrollmentStatusesForOrganizationCommandOutput) => void): void;
|
|
128
135
|
getEnrollmentStatusesForOrganization(args: GetEnrollmentStatusesForOrganizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnrollmentStatusesForOrganizationCommandOutput) => void): void;
|
|
129
136
|
/**
|
|
130
137
|
* @see {@link GetLambdaFunctionRecommendationsCommand}
|
|
131
138
|
*/
|
|
139
|
+
getLambdaFunctionRecommendations(): Promise<GetLambdaFunctionRecommendationsCommandOutput>;
|
|
132
140
|
getLambdaFunctionRecommendations(args: GetLambdaFunctionRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetLambdaFunctionRecommendationsCommandOutput>;
|
|
133
141
|
getLambdaFunctionRecommendations(args: GetLambdaFunctionRecommendationsCommandInput, cb: (err: any, data?: GetLambdaFunctionRecommendationsCommandOutput) => void): void;
|
|
134
142
|
getLambdaFunctionRecommendations(args: GetLambdaFunctionRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLambdaFunctionRecommendationsCommandOutput) => void): void;
|
|
135
143
|
/**
|
|
136
144
|
* @see {@link GetLicenseRecommendationsCommand}
|
|
137
145
|
*/
|
|
146
|
+
getLicenseRecommendations(): Promise<GetLicenseRecommendationsCommandOutput>;
|
|
138
147
|
getLicenseRecommendations(args: GetLicenseRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseRecommendationsCommandOutput>;
|
|
139
148
|
getLicenseRecommendations(args: GetLicenseRecommendationsCommandInput, cb: (err: any, data?: GetLicenseRecommendationsCommandOutput) => void): void;
|
|
140
149
|
getLicenseRecommendations(args: GetLicenseRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseRecommendationsCommandOutput) => void): void;
|
|
@@ -147,6 +156,7 @@ export interface ComputeOptimizer {
|
|
|
147
156
|
/**
|
|
148
157
|
* @see {@link GetRecommendationSummariesCommand}
|
|
149
158
|
*/
|
|
159
|
+
getRecommendationSummaries(): Promise<GetRecommendationSummariesCommandOutput>;
|
|
150
160
|
getRecommendationSummaries(args: GetRecommendationSummariesCommandInput, options?: __HttpHandlerOptions): Promise<GetRecommendationSummariesCommandOutput>;
|
|
151
161
|
getRecommendationSummaries(args: GetRecommendationSummariesCommandInput, cb: (err: any, data?: GetRecommendationSummariesCommandOutput) => void): void;
|
|
152
162
|
getRecommendationSummaries(args: GetRecommendationSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecommendationSummariesCommandOutput) => void): void;
|
|
@@ -164,7 +174,6 @@ export interface ComputeOptimizer {
|
|
|
164
174
|
updateEnrollmentStatus(args: UpdateEnrollmentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnrollmentStatusCommandOutput) => void): void;
|
|
165
175
|
}
|
|
166
176
|
/**
|
|
167
|
-
* @public
|
|
168
177
|
* <p>Compute Optimizer is a service that analyzes the configuration and utilization
|
|
169
178
|
* metrics of your Amazon Web Services compute resources, such as Amazon EC2
|
|
170
179
|
* instances, Amazon EC2 Auto Scaling groups, Lambda functions, Amazon EBS volumes, and Amazon ECS services on Fargate.
|
|
@@ -177,6 +186,7 @@ export interface ComputeOptimizer {
|
|
|
177
186
|
* resources, and still meet your performance and capacity requirements. For more
|
|
178
187
|
* information about Compute Optimizer, including the required permissions to use the
|
|
179
188
|
* service, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/">Compute Optimizer User Guide</a>.</p>
|
|
189
|
+
* @public
|
|
180
190
|
*/
|
|
181
191
|
export declare class ComputeOptimizer extends ComputeOptimizerClient implements ComputeOptimizer {
|
|
182
192
|
}
|
|
@@ -174,7 +174,6 @@ export type ComputeOptimizerClientResolvedConfigType = __SmithyResolvedConfigura
|
|
|
174
174
|
export interface ComputeOptimizerClientResolvedConfig extends ComputeOptimizerClientResolvedConfigType {
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
|
-
* @public
|
|
178
177
|
* <p>Compute Optimizer is a service that analyzes the configuration and utilization
|
|
179
178
|
* metrics of your Amazon Web Services compute resources, such as Amazon EC2
|
|
180
179
|
* instances, Amazon EC2 Auto Scaling groups, Lambda functions, Amazon EBS volumes, and Amazon ECS services on Fargate.
|
|
@@ -187,6 +186,7 @@ export interface ComputeOptimizerClientResolvedConfig extends ComputeOptimizerCl
|
|
|
187
186
|
* resources, and still meet your performance and capacity requirements. For more
|
|
188
187
|
* information about Compute Optimizer, including the required permissions to use the
|
|
189
188
|
* service, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/">Compute Optimizer User Guide</a>.</p>
|
|
189
|
+
* @public
|
|
190
190
|
*/
|
|
191
191
|
export declare class ComputeOptimizerClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ComputeOptimizerClientResolvedConfig> {
|
|
192
192
|
/**
|
|
@@ -22,10 +22,10 @@ export interface DeleteRecommendationPreferencesCommandOutput extends DeleteReco
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteRecommendationPreferencesCommand_base: {
|
|
24
24
|
new (input: DeleteRecommendationPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRecommendationPreferencesCommandInput, DeleteRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteRecommendationPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRecommendationPreferencesCommandInput, DeleteRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a recommendation preference, such as enhanced infrastructure metrics.</p>
|
|
30
30
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html">Activating
|
|
31
31
|
* enhanced infrastructure metrics</a> in the <i>Compute Optimizer User
|
|
@@ -86,6 +86,7 @@ declare const DeleteRecommendationPreferencesCommand_base: {
|
|
|
86
86
|
* @throws {@link ComputeOptimizerServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class DeleteRecommendationPreferencesCommand extends DeleteRecommendationPreferencesCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeRecommendationExportJobsCommandOutput extends DescribeR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeRecommendationExportJobsCommand_base: {
|
|
24
24
|
new (input: DescribeRecommendationExportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeRecommendationExportJobsCommandInput, DescribeRecommendationExportJobsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeRecommendationExportJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeRecommendationExportJobsCommandInput, DescribeRecommendationExportJobsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes recommendation export jobs created in the last seven days.</p>
|
|
30
30
|
* <p>Use the <a>ExportAutoScalingGroupRecommendations</a> or <a>ExportEC2InstanceRecommendations</a> actions to request an export of your
|
|
31
31
|
* recommendations. Then use the <a>DescribeRecommendationExportJobs</a> action
|
|
@@ -110,6 +110,7 @@ declare const DescribeRecommendationExportJobsCommand_base: {
|
|
|
110
110
|
* @throws {@link ComputeOptimizerServiceException}
|
|
111
111
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
112
112
|
*
|
|
113
|
+
* @public
|
|
113
114
|
*/
|
|
114
115
|
export declare class DescribeRecommendationExportJobsCommand extends DescribeRecommendationExportJobsCommand_base {
|
|
115
116
|
}
|
|
@@ -22,10 +22,10 @@ export interface ExportAutoScalingGroupRecommendationsCommandOutput extends Expo
|
|
|
22
22
|
}
|
|
23
23
|
declare const ExportAutoScalingGroupRecommendationsCommand_base: {
|
|
24
24
|
new (input: ExportAutoScalingGroupRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportAutoScalingGroupRecommendationsCommandInput, ExportAutoScalingGroupRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ExportAutoScalingGroupRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportAutoScalingGroupRecommendationsCommandInput, ExportAutoScalingGroupRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Exports optimization recommendations for Auto Scaling groups.</p>
|
|
30
30
|
* <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
|
|
31
31
|
* in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
|
|
@@ -112,6 +112,7 @@ declare const ExportAutoScalingGroupRecommendationsCommand_base: {
|
|
|
112
112
|
* @throws {@link ComputeOptimizerServiceException}
|
|
113
113
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
114
114
|
*
|
|
115
|
+
* @public
|
|
115
116
|
*/
|
|
116
117
|
export declare class ExportAutoScalingGroupRecommendationsCommand extends ExportAutoScalingGroupRecommendationsCommand_base {
|
|
117
118
|
}
|
|
@@ -22,10 +22,10 @@ export interface ExportEBSVolumeRecommendationsCommandOutput extends ExportEBSVo
|
|
|
22
22
|
}
|
|
23
23
|
declare const ExportEBSVolumeRecommendationsCommand_base: {
|
|
24
24
|
new (input: ExportEBSVolumeRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportEBSVolumeRecommendationsCommandInput, ExportEBSVolumeRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ExportEBSVolumeRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportEBSVolumeRecommendationsCommandInput, ExportEBSVolumeRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Exports optimization recommendations for Amazon EBS volumes.</p>
|
|
30
30
|
* <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
|
|
31
31
|
* in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
|
|
@@ -107,6 +107,7 @@ declare const ExportEBSVolumeRecommendationsCommand_base: {
|
|
|
107
107
|
* @throws {@link ComputeOptimizerServiceException}
|
|
108
108
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
109
109
|
*
|
|
110
|
+
* @public
|
|
110
111
|
*/
|
|
111
112
|
export declare class ExportEBSVolumeRecommendationsCommand extends ExportEBSVolumeRecommendationsCommand_base {
|
|
112
113
|
}
|
|
@@ -22,10 +22,10 @@ export interface ExportEC2InstanceRecommendationsCommandOutput extends ExportEC2
|
|
|
22
22
|
}
|
|
23
23
|
declare const ExportEC2InstanceRecommendationsCommand_base: {
|
|
24
24
|
new (input: ExportEC2InstanceRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportEC2InstanceRecommendationsCommandInput, ExportEC2InstanceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ExportEC2InstanceRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportEC2InstanceRecommendationsCommandInput, ExportEC2InstanceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Exports optimization recommendations for Amazon EC2 instances.</p>
|
|
30
30
|
* <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
|
|
31
31
|
* in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
|
|
@@ -112,6 +112,7 @@ declare const ExportEC2InstanceRecommendationsCommand_base: {
|
|
|
112
112
|
* @throws {@link ComputeOptimizerServiceException}
|
|
113
113
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
114
114
|
*
|
|
115
|
+
* @public
|
|
115
116
|
*/
|
|
116
117
|
export declare class ExportEC2InstanceRecommendationsCommand extends ExportEC2InstanceRecommendationsCommand_base {
|
|
117
118
|
}
|
|
@@ -22,10 +22,10 @@ export interface ExportECSServiceRecommendationsCommandOutput extends ExportECSS
|
|
|
22
22
|
}
|
|
23
23
|
declare const ExportECSServiceRecommendationsCommand_base: {
|
|
24
24
|
new (input: ExportECSServiceRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportECSServiceRecommendationsCommandInput, ExportECSServiceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ExportECSServiceRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportECSServiceRecommendationsCommandInput, ExportECSServiceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* Exports optimization recommendations for Amazon ECS services on Fargate.
|
|
31
31
|
* </p>
|
|
@@ -109,6 +109,7 @@ declare const ExportECSServiceRecommendationsCommand_base: {
|
|
|
109
109
|
* @throws {@link ComputeOptimizerServiceException}
|
|
110
110
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
111
111
|
*
|
|
112
|
+
* @public
|
|
112
113
|
*/
|
|
113
114
|
export declare class ExportECSServiceRecommendationsCommand extends ExportECSServiceRecommendationsCommand_base {
|
|
114
115
|
}
|
|
@@ -22,10 +22,10 @@ export interface ExportLambdaFunctionRecommendationsCommandOutput extends Export
|
|
|
22
22
|
}
|
|
23
23
|
declare const ExportLambdaFunctionRecommendationsCommand_base: {
|
|
24
24
|
new (input: ExportLambdaFunctionRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportLambdaFunctionRecommendationsCommandInput, ExportLambdaFunctionRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ExportLambdaFunctionRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportLambdaFunctionRecommendationsCommandInput, ExportLambdaFunctionRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Exports optimization recommendations for Lambda functions.</p>
|
|
30
30
|
* <p>Recommendations are exported in a comma-separated values (.csv) file, and its metadata
|
|
31
31
|
* in a JavaScript Object Notation (JSON) (.json) file, to an existing Amazon Simple Storage Service (Amazon S3) bucket that you specify. For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/exporting-recommendations.html">Exporting
|
|
@@ -107,6 +107,7 @@ declare const ExportLambdaFunctionRecommendationsCommand_base: {
|
|
|
107
107
|
* @throws {@link ComputeOptimizerServiceException}
|
|
108
108
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
109
109
|
*
|
|
110
|
+
* @public
|
|
110
111
|
*/
|
|
111
112
|
export declare class ExportLambdaFunctionRecommendationsCommand extends ExportLambdaFunctionRecommendationsCommand_base {
|
|
112
113
|
}
|
|
@@ -22,10 +22,10 @@ export interface ExportLicenseRecommendationsCommandOutput extends ExportLicense
|
|
|
22
22
|
}
|
|
23
23
|
declare const ExportLicenseRecommendationsCommand_base: {
|
|
24
24
|
new (input: ExportLicenseRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportLicenseRecommendationsCommandInput, ExportLicenseRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ExportLicenseRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ExportLicenseRecommendationsCommandInput, ExportLicenseRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* Export optimization recommendations for your licenses.
|
|
31
31
|
* </p>
|
|
@@ -109,6 +109,7 @@ declare const ExportLicenseRecommendationsCommand_base: {
|
|
|
109
109
|
* @throws {@link ComputeOptimizerServiceException}
|
|
110
110
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
111
111
|
*
|
|
112
|
+
* @public
|
|
112
113
|
*/
|
|
113
114
|
export declare class ExportLicenseRecommendationsCommand extends ExportLicenseRecommendationsCommand_base {
|
|
114
115
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAutoScalingGroupRecommendationsCommandOutput extends GetAuto
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAutoScalingGroupRecommendationsCommand_base: {
|
|
24
24
|
new (input: GetAutoScalingGroupRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetAutoScalingGroupRecommendationsCommandInput, GetAutoScalingGroupRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetAutoScalingGroupRecommendationsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetAutoScalingGroupRecommendationsCommandInput, GetAutoScalingGroupRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns Auto Scaling group recommendations.</p>
|
|
30
30
|
* <p>Compute Optimizer generates recommendations for Amazon EC2 Auto Scaling groups that
|
|
31
31
|
* meet a specific set of requirements. For more information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported
|
|
@@ -223,6 +223,7 @@ declare const GetAutoScalingGroupRecommendationsCommand_base: {
|
|
|
223
223
|
* @throws {@link ComputeOptimizerServiceException}
|
|
224
224
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
225
225
|
*
|
|
226
|
+
* @public
|
|
226
227
|
*/
|
|
227
228
|
export declare class GetAutoScalingGroupRecommendationsCommand extends GetAutoScalingGroupRecommendationsCommand_base {
|
|
228
229
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEBSVolumeRecommendationsCommandOutput extends GetEBSVolumeRe
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEBSVolumeRecommendationsCommand_base: {
|
|
24
24
|
new (input: GetEBSVolumeRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetEBSVolumeRecommendationsCommandInput, GetEBSVolumeRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetEBSVolumeRecommendationsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetEBSVolumeRecommendationsCommandInput, GetEBSVolumeRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns Amazon Elastic Block Store (Amazon EBS) volume recommendations.</p>
|
|
30
30
|
* <p>Compute Optimizer generates recommendations for Amazon EBS volumes that
|
|
31
31
|
* meet a specific set of requirements. For more information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported
|
|
@@ -170,6 +170,7 @@ declare const GetEBSVolumeRecommendationsCommand_base: {
|
|
|
170
170
|
* @throws {@link ComputeOptimizerServiceException}
|
|
171
171
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
172
172
|
*
|
|
173
|
+
* @public
|
|
173
174
|
*/
|
|
174
175
|
export declare class GetEBSVolumeRecommendationsCommand extends GetEBSVolumeRecommendationsCommand_base {
|
|
175
176
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEC2InstanceRecommendationsCommandOutput extends GetEC2Instan
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEC2InstanceRecommendationsCommand_base: {
|
|
24
24
|
new (input: GetEC2InstanceRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetEC2InstanceRecommendationsCommandInput, GetEC2InstanceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetEC2InstanceRecommendationsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetEC2InstanceRecommendationsCommandInput, GetEC2InstanceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns Amazon EC2 instance recommendations.</p>
|
|
30
30
|
* <p>Compute Optimizer generates recommendations for Amazon Elastic Compute Cloud (Amazon EC2) instances that meet a specific set of requirements. For more
|
|
31
31
|
* information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
|
|
@@ -237,6 +237,7 @@ declare const GetEC2InstanceRecommendationsCommand_base: {
|
|
|
237
237
|
* @throws {@link ComputeOptimizerServiceException}
|
|
238
238
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
239
239
|
*
|
|
240
|
+
* @public
|
|
240
241
|
*/
|
|
241
242
|
export declare class GetEC2InstanceRecommendationsCommand extends GetEC2InstanceRecommendationsCommand_base {
|
|
242
243
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEC2RecommendationProjectedMetricsCommandOutput extends GetEC
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEC2RecommendationProjectedMetricsCommand_base: {
|
|
24
24
|
new (input: GetEC2RecommendationProjectedMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<GetEC2RecommendationProjectedMetricsCommandInput, GetEC2RecommendationProjectedMetricsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetEC2RecommendationProjectedMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<GetEC2RecommendationProjectedMetricsCommandInput, GetEC2RecommendationProjectedMetricsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the projected utilization metrics of Amazon EC2 instance
|
|
30
30
|
* recommendations.</p>
|
|
31
31
|
* <note>
|
|
@@ -110,6 +110,7 @@ declare const GetEC2RecommendationProjectedMetricsCommand_base: {
|
|
|
110
110
|
* @throws {@link ComputeOptimizerServiceException}
|
|
111
111
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
112
112
|
*
|
|
113
|
+
* @public
|
|
113
114
|
*/
|
|
114
115
|
export declare class GetEC2RecommendationProjectedMetricsCommand extends GetEC2RecommendationProjectedMetricsCommand_base {
|
|
115
116
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetECSServiceRecommendationProjectedMetricsCommandOutput extend
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetECSServiceRecommendationProjectedMetricsCommand_base: {
|
|
24
24
|
new (input: GetECSServiceRecommendationProjectedMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<GetECSServiceRecommendationProjectedMetricsCommandInput, GetECSServiceRecommendationProjectedMetricsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetECSServiceRecommendationProjectedMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<GetECSServiceRecommendationProjectedMetricsCommandInput, GetECSServiceRecommendationProjectedMetricsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* Returns the projected metrics of Amazon ECS service recommendations.
|
|
31
31
|
* </p>
|
|
@@ -103,6 +103,7 @@ declare const GetECSServiceRecommendationProjectedMetricsCommand_base: {
|
|
|
103
103
|
* @throws {@link ComputeOptimizerServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
105
105
|
*
|
|
106
|
+
* @public
|
|
106
107
|
*/
|
|
107
108
|
export declare class GetECSServiceRecommendationProjectedMetricsCommand extends GetECSServiceRecommendationProjectedMetricsCommand_base {
|
|
108
109
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetECSServiceRecommendationsCommandOutput extends GetECSService
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetECSServiceRecommendationsCommand_base: {
|
|
24
24
|
new (input: GetECSServiceRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetECSServiceRecommendationsCommandInput, GetECSServiceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetECSServiceRecommendationsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetECSServiceRecommendationsCommandInput, GetECSServiceRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* Returns Amazon ECS service recommendations.
|
|
31
31
|
* </p>
|
|
@@ -195,6 +195,7 @@ declare const GetECSServiceRecommendationsCommand_base: {
|
|
|
195
195
|
* @throws {@link ComputeOptimizerServiceException}
|
|
196
196
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
197
197
|
*
|
|
198
|
+
* @public
|
|
198
199
|
*/
|
|
199
200
|
export declare class GetECSServiceRecommendationsCommand extends GetECSServiceRecommendationsCommand_base {
|
|
200
201
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEffectiveRecommendationPreferencesCommandOutput extends GetE
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEffectiveRecommendationPreferencesCommand_base: {
|
|
24
24
|
new (input: GetEffectiveRecommendationPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<GetEffectiveRecommendationPreferencesCommandInput, GetEffectiveRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetEffectiveRecommendationPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<GetEffectiveRecommendationPreferencesCommandInput, GetEffectiveRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the recommendation preferences that are in effect for a given resource, such
|
|
30
30
|
* as enhanced infrastructure metrics. Considers all applicable preferences that you might
|
|
31
31
|
* have set at the resource, account, and organization level.</p>
|
|
@@ -110,6 +110,7 @@ declare const GetEffectiveRecommendationPreferencesCommand_base: {
|
|
|
110
110
|
* @throws {@link ComputeOptimizerServiceException}
|
|
111
111
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
112
112
|
*
|
|
113
|
+
* @public
|
|
113
114
|
*/
|
|
114
115
|
export declare class GetEffectiveRecommendationPreferencesCommand extends GetEffectiveRecommendationPreferencesCommand_base {
|
|
115
116
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEnrollmentStatusCommandOutput extends GetEnrollmentStatusRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEnrollmentStatusCommand_base: {
|
|
24
24
|
new (input: GetEnrollmentStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetEnrollmentStatusCommandInput, GetEnrollmentStatusCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetEnrollmentStatusCommandInput]): import("@smithy/smithy-client").CommandImpl<GetEnrollmentStatusCommandInput, GetEnrollmentStatusCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the enrollment (opt in) status of an account to the Compute Optimizer
|
|
30
30
|
* service.</p>
|
|
31
31
|
* <p>If the account is the management account of an organization, this action also confirms
|
|
@@ -78,6 +78,7 @@ declare const GetEnrollmentStatusCommand_base: {
|
|
|
78
78
|
* @throws {@link ComputeOptimizerServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class GetEnrollmentStatusCommand extends GetEnrollmentStatusCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEnrollmentStatusesForOrganizationCommandOutput extends GetEn
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEnrollmentStatusesForOrganizationCommand_base: {
|
|
24
24
|
new (input: GetEnrollmentStatusesForOrganizationCommandInput): import("@smithy/smithy-client").CommandImpl<GetEnrollmentStatusesForOrganizationCommandInput, GetEnrollmentStatusesForOrganizationCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetEnrollmentStatusesForOrganizationCommandInput]): import("@smithy/smithy-client").CommandImpl<GetEnrollmentStatusesForOrganizationCommandInput, GetEnrollmentStatusesForOrganizationCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the Compute Optimizer enrollment (opt-in) status of organization member
|
|
30
30
|
* accounts, if your account is an organization management account.</p>
|
|
31
31
|
* <p>To get the enrollment status of standalone accounts, use the <a>GetEnrollmentStatus</a> action.</p>
|
|
@@ -91,6 +91,7 @@ declare const GetEnrollmentStatusesForOrganizationCommand_base: {
|
|
|
91
91
|
* @throws {@link ComputeOptimizerServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class GetEnrollmentStatusesForOrganizationCommand extends GetEnrollmentStatusesForOrganizationCommand_base {
|
|
96
97
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetLambdaFunctionRecommendationsCommandOutput extends GetLambda
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetLambdaFunctionRecommendationsCommand_base: {
|
|
24
24
|
new (input: GetLambdaFunctionRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetLambdaFunctionRecommendationsCommandInput, GetLambdaFunctionRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetLambdaFunctionRecommendationsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetLambdaFunctionRecommendationsCommandInput, GetLambdaFunctionRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns Lambda function recommendations.</p>
|
|
30
30
|
* <p>Compute Optimizer generates recommendations for functions that meet a specific set
|
|
31
31
|
* of requirements. For more information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
|
|
@@ -158,6 +158,7 @@ declare const GetLambdaFunctionRecommendationsCommand_base: {
|
|
|
158
158
|
* @throws {@link ComputeOptimizerServiceException}
|
|
159
159
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
160
160
|
*
|
|
161
|
+
* @public
|
|
161
162
|
*/
|
|
162
163
|
export declare class GetLambdaFunctionRecommendationsCommand extends GetLambdaFunctionRecommendationsCommand_base {
|
|
163
164
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetLicenseRecommendationsCommandOutput extends GetLicenseRecomm
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetLicenseRecommendationsCommand_base: {
|
|
24
24
|
new (input: GetLicenseRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<GetLicenseRecommendationsCommandInput, GetLicenseRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetLicenseRecommendationsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetLicenseRecommendationsCommandInput, GetLicenseRecommendationsCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns license recommendations for Amazon EC2 instances that run on a specific license.</p>
|
|
30
30
|
* <p>Compute Optimizer generates recommendations for licenses that meet a specific set of requirements. For more
|
|
31
31
|
* information, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/requirements.html">Supported resources and
|
|
@@ -152,6 +152,7 @@ declare const GetLicenseRecommendationsCommand_base: {
|
|
|
152
152
|
* @throws {@link ComputeOptimizerServiceException}
|
|
153
153
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
154
154
|
*
|
|
155
|
+
* @public
|
|
155
156
|
*/
|
|
156
157
|
export declare class GetLicenseRecommendationsCommand extends GetLicenseRecommendationsCommand_base {
|
|
157
158
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetRecommendationPreferencesCommandOutput extends GetRecommenda
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetRecommendationPreferencesCommand_base: {
|
|
24
24
|
new (input: GetRecommendationPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecommendationPreferencesCommandInput, GetRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetRecommendationPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecommendationPreferencesCommandInput, GetRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns existing recommendation preferences, such as enhanced infrastructure
|
|
30
30
|
* metrics.</p>
|
|
31
31
|
* <p>Use the <code>scope</code> parameter to specify which preferences to return. You can
|
|
@@ -130,6 +130,7 @@ declare const GetRecommendationPreferencesCommand_base: {
|
|
|
130
130
|
* @throws {@link ComputeOptimizerServiceException}
|
|
131
131
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
132
132
|
*
|
|
133
|
+
* @public
|
|
133
134
|
*/
|
|
134
135
|
export declare class GetRecommendationPreferencesCommand extends GetRecommendationPreferencesCommand_base {
|
|
135
136
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetRecommendationSummariesCommandOutput extends GetRecommendati
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetRecommendationSummariesCommand_base: {
|
|
24
24
|
new (input: GetRecommendationSummariesCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecommendationSummariesCommandInput, GetRecommendationSummariesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetRecommendationSummariesCommandInput]): import("@smithy/smithy-client").CommandImpl<GetRecommendationSummariesCommandInput, GetRecommendationSummariesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the optimization findings for an account.</p>
|
|
30
30
|
* <p>It returns the number of:</p>
|
|
31
31
|
* <ul>
|
|
@@ -145,6 +145,7 @@ declare const GetRecommendationSummariesCommand_base: {
|
|
|
145
145
|
* @throws {@link ComputeOptimizerServiceException}
|
|
146
146
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
147
147
|
*
|
|
148
|
+
* @public
|
|
148
149
|
*/
|
|
149
150
|
export declare class GetRecommendationSummariesCommand extends GetRecommendationSummariesCommand_base {
|
|
150
151
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutRecommendationPreferencesCommandOutput extends PutRecommenda
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutRecommendationPreferencesCommand_base: {
|
|
24
24
|
new (input: PutRecommendationPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<PutRecommendationPreferencesCommandInput, PutRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutRecommendationPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<PutRecommendationPreferencesCommandInput, PutRecommendationPreferencesCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a new recommendation preference or updates an existing recommendation
|
|
30
30
|
* preference, such as enhanced infrastructure metrics.</p>
|
|
31
31
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/enhanced-infrastructure-metrics.html">Activating
|
|
@@ -111,6 +111,7 @@ declare const PutRecommendationPreferencesCommand_base: {
|
|
|
111
111
|
* @throws {@link ComputeOptimizerServiceException}
|
|
112
112
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
113
113
|
*
|
|
114
|
+
* @public
|
|
114
115
|
*/
|
|
115
116
|
export declare class PutRecommendationPreferencesCommand extends PutRecommendationPreferencesCommand_base {
|
|
116
117
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateEnrollmentStatusCommandOutput extends UpdateEnrollmentSta
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateEnrollmentStatusCommand_base: {
|
|
24
24
|
new (input: UpdateEnrollmentStatusCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnrollmentStatusCommandInput, UpdateEnrollmentStatusCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateEnrollmentStatusCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnrollmentStatusCommandInput, UpdateEnrollmentStatusCommandOutput, ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the enrollment (opt in and opt out) status of an account to the Compute Optimizer service.</p>
|
|
30
30
|
* <p>If the account is a management account of an organization, this action can also be
|
|
31
31
|
* used to enroll member accounts of the organization.</p>
|
|
@@ -81,6 +81,7 @@ declare const UpdateEnrollmentStatusCommand_base: {
|
|
|
81
81
|
* @throws {@link ComputeOptimizerServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from ComputeOptimizer service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class UpdateEnrollmentStatusCommand extends UpdateEnrollmentStatusCommand_base {
|
|
86
87
|
}
|