@aws-sdk/client-compute-optimizer 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ComputeOptimizer.d.ts +364 -95
- package/dist-types/ts3.4/ComputeOptimizerClient.d.ts +238 -91
- package/dist-types/ts3.4/commands/DeleteRecommendationPreferencesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRecommendationExportJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ExportEBSVolumeRecommendationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ExportEC2InstanceRecommendationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetEBSVolumeRecommendationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetEC2InstanceRecommendationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetEC2RecommendationProjectedMetricsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetEnrollmentStatusCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetEnrollmentStatusesForOrganizationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetLambdaFunctionRecommendationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetRecommendationPreferencesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetRecommendationSummariesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutRecommendationPreferencesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateEnrollmentStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +18 -18
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/ComputeOptimizerServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1380 -1293
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +221 -56
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ComputeOptimizerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ComputeOptimizerClient";
|
|
13
|
+
import {
|
|
14
|
+
GetRecommendationSummariesRequest,
|
|
15
|
+
GetRecommendationSummariesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetRecommendationSummariesCommandInput
|
|
18
|
+
extends GetRecommendationSummariesRequest {}
|
|
19
|
+
export interface GetRecommendationSummariesCommandOutput
|
|
20
|
+
extends GetRecommendationSummariesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetRecommendationSummariesCommand extends $Command<
|
|
24
|
+
GetRecommendationSummariesCommandInput,
|
|
25
|
+
GetRecommendationSummariesCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetRecommendationSummariesCommandInput;
|
|
29
|
+
constructor(input: GetRecommendationSummariesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetRecommendationSummariesCommandInput,
|
|
37
|
+
GetRecommendationSummariesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ComputeOptimizerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ComputeOptimizerClient";
|
|
13
|
+
import {
|
|
14
|
+
PutRecommendationPreferencesRequest,
|
|
15
|
+
PutRecommendationPreferencesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutRecommendationPreferencesCommandInput
|
|
18
|
+
extends PutRecommendationPreferencesRequest {}
|
|
19
|
+
export interface PutRecommendationPreferencesCommandOutput
|
|
20
|
+
extends PutRecommendationPreferencesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class PutRecommendationPreferencesCommand extends $Command<
|
|
24
|
+
PutRecommendationPreferencesCommandInput,
|
|
25
|
+
PutRecommendationPreferencesCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PutRecommendationPreferencesCommandInput;
|
|
29
|
+
constructor(input: PutRecommendationPreferencesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
PutRecommendationPreferencesCommandInput,
|
|
37
|
+
PutRecommendationPreferencesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ComputeOptimizerClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ComputeOptimizerClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateEnrollmentStatusRequest,
|
|
15
|
+
UpdateEnrollmentStatusResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateEnrollmentStatusCommandInput
|
|
18
|
+
extends UpdateEnrollmentStatusRequest {}
|
|
19
|
+
export interface UpdateEnrollmentStatusCommandOutput
|
|
20
|
+
extends UpdateEnrollmentStatusResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateEnrollmentStatusCommand extends $Command<
|
|
24
|
+
UpdateEnrollmentStatusCommandInput,
|
|
25
|
+
UpdateEnrollmentStatusCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateEnrollmentStatusCommandInput;
|
|
29
|
+
constructor(input: UpdateEnrollmentStatusCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateEnrollmentStatusCommandInput,
|
|
37
|
+
UpdateEnrollmentStatusCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export * from "./DeleteRecommendationPreferencesCommand";
|
|
2
|
-
export * from "./DescribeRecommendationExportJobsCommand";
|
|
3
|
-
export * from "./ExportAutoScalingGroupRecommendationsCommand";
|
|
4
|
-
export * from "./ExportEBSVolumeRecommendationsCommand";
|
|
5
|
-
export * from "./ExportEC2InstanceRecommendationsCommand";
|
|
6
|
-
export * from "./ExportLambdaFunctionRecommendationsCommand";
|
|
7
|
-
export * from "./GetAutoScalingGroupRecommendationsCommand";
|
|
8
|
-
export * from "./GetEBSVolumeRecommendationsCommand";
|
|
9
|
-
export * from "./GetEC2InstanceRecommendationsCommand";
|
|
10
|
-
export * from "./GetEC2RecommendationProjectedMetricsCommand";
|
|
11
|
-
export * from "./GetEffectiveRecommendationPreferencesCommand";
|
|
12
|
-
export * from "./GetEnrollmentStatusCommand";
|
|
13
|
-
export * from "./GetEnrollmentStatusesForOrganizationCommand";
|
|
14
|
-
export * from "./GetLambdaFunctionRecommendationsCommand";
|
|
15
|
-
export * from "./GetRecommendationPreferencesCommand";
|
|
16
|
-
export * from "./GetRecommendationSummariesCommand";
|
|
17
|
-
export * from "./PutRecommendationPreferencesCommand";
|
|
18
|
-
export * from "./UpdateEnrollmentStatusCommand";
|
|
1
|
+
export * from "./DeleteRecommendationPreferencesCommand";
|
|
2
|
+
export * from "./DescribeRecommendationExportJobsCommand";
|
|
3
|
+
export * from "./ExportAutoScalingGroupRecommendationsCommand";
|
|
4
|
+
export * from "./ExportEBSVolumeRecommendationsCommand";
|
|
5
|
+
export * from "./ExportEC2InstanceRecommendationsCommand";
|
|
6
|
+
export * from "./ExportLambdaFunctionRecommendationsCommand";
|
|
7
|
+
export * from "./GetAutoScalingGroupRecommendationsCommand";
|
|
8
|
+
export * from "./GetEBSVolumeRecommendationsCommand";
|
|
9
|
+
export * from "./GetEC2InstanceRecommendationsCommand";
|
|
10
|
+
export * from "./GetEC2RecommendationProjectedMetricsCommand";
|
|
11
|
+
export * from "./GetEffectiveRecommendationPreferencesCommand";
|
|
12
|
+
export * from "./GetEnrollmentStatusCommand";
|
|
13
|
+
export * from "./GetEnrollmentStatusesForOrganizationCommand";
|
|
14
|
+
export * from "./GetLambdaFunctionRecommendationsCommand";
|
|
15
|
+
export * from "./GetRecommendationPreferencesCommand";
|
|
16
|
+
export * from "./GetRecommendationSummariesCommand";
|
|
17
|
+
export * from "./PutRecommendationPreferencesCommand";
|
|
18
|
+
export * from "./UpdateEnrollmentStatusCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./ComputeOptimizer";
|
|
2
|
-
export * from "./ComputeOptimizerClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { ComputeOptimizerServiceException } from "./models/ComputeOptimizerServiceException";
|
|
1
|
+
export * from "./ComputeOptimizer";
|
|
2
|
+
export * from "./ComputeOptimizerClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { ComputeOptimizerServiceException } from "./models/ComputeOptimizerServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class ComputeOptimizerServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|