@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
|
+
ExportLambdaFunctionRecommendationsRequest,
|
|
15
|
+
ExportLambdaFunctionRecommendationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ExportLambdaFunctionRecommendationsCommandInput
|
|
18
|
+
extends ExportLambdaFunctionRecommendationsRequest {}
|
|
19
|
+
export interface ExportLambdaFunctionRecommendationsCommandOutput
|
|
20
|
+
extends ExportLambdaFunctionRecommendationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ExportLambdaFunctionRecommendationsCommand extends $Command<
|
|
24
|
+
ExportLambdaFunctionRecommendationsCommandInput,
|
|
25
|
+
ExportLambdaFunctionRecommendationsCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ExportLambdaFunctionRecommendationsCommandInput;
|
|
29
|
+
constructor(input: ExportLambdaFunctionRecommendationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ExportLambdaFunctionRecommendationsCommandInput,
|
|
37
|
+
ExportLambdaFunctionRecommendationsCommandOutput
|
|
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
|
+
GetAutoScalingGroupRecommendationsRequest,
|
|
15
|
+
GetAutoScalingGroupRecommendationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetAutoScalingGroupRecommendationsCommandInput
|
|
18
|
+
extends GetAutoScalingGroupRecommendationsRequest {}
|
|
19
|
+
export interface GetAutoScalingGroupRecommendationsCommandOutput
|
|
20
|
+
extends GetAutoScalingGroupRecommendationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetAutoScalingGroupRecommendationsCommand extends $Command<
|
|
24
|
+
GetAutoScalingGroupRecommendationsCommandInput,
|
|
25
|
+
GetAutoScalingGroupRecommendationsCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetAutoScalingGroupRecommendationsCommandInput;
|
|
29
|
+
constructor(input: GetAutoScalingGroupRecommendationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetAutoScalingGroupRecommendationsCommandInput,
|
|
37
|
+
GetAutoScalingGroupRecommendationsCommandOutput
|
|
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
|
+
GetEBSVolumeRecommendationsRequest,
|
|
15
|
+
GetEBSVolumeRecommendationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetEBSVolumeRecommendationsCommandInput
|
|
18
|
+
extends GetEBSVolumeRecommendationsRequest {}
|
|
19
|
+
export interface GetEBSVolumeRecommendationsCommandOutput
|
|
20
|
+
extends GetEBSVolumeRecommendationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetEBSVolumeRecommendationsCommand extends $Command<
|
|
24
|
+
GetEBSVolumeRecommendationsCommandInput,
|
|
25
|
+
GetEBSVolumeRecommendationsCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEBSVolumeRecommendationsCommandInput;
|
|
29
|
+
constructor(input: GetEBSVolumeRecommendationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetEBSVolumeRecommendationsCommandInput,
|
|
37
|
+
GetEBSVolumeRecommendationsCommandOutput
|
|
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
|
+
GetEC2InstanceRecommendationsRequest,
|
|
15
|
+
GetEC2InstanceRecommendationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetEC2InstanceRecommendationsCommandInput
|
|
18
|
+
extends GetEC2InstanceRecommendationsRequest {}
|
|
19
|
+
export interface GetEC2InstanceRecommendationsCommandOutput
|
|
20
|
+
extends GetEC2InstanceRecommendationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetEC2InstanceRecommendationsCommand extends $Command<
|
|
24
|
+
GetEC2InstanceRecommendationsCommandInput,
|
|
25
|
+
GetEC2InstanceRecommendationsCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEC2InstanceRecommendationsCommandInput;
|
|
29
|
+
constructor(input: GetEC2InstanceRecommendationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetEC2InstanceRecommendationsCommandInput,
|
|
37
|
+
GetEC2InstanceRecommendationsCommandOutput
|
|
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
|
+
GetEC2RecommendationProjectedMetricsRequest,
|
|
15
|
+
GetEC2RecommendationProjectedMetricsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetEC2RecommendationProjectedMetricsCommandInput
|
|
18
|
+
extends GetEC2RecommendationProjectedMetricsRequest {}
|
|
19
|
+
export interface GetEC2RecommendationProjectedMetricsCommandOutput
|
|
20
|
+
extends GetEC2RecommendationProjectedMetricsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetEC2RecommendationProjectedMetricsCommand extends $Command<
|
|
24
|
+
GetEC2RecommendationProjectedMetricsCommandInput,
|
|
25
|
+
GetEC2RecommendationProjectedMetricsCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEC2RecommendationProjectedMetricsCommandInput;
|
|
29
|
+
constructor(input: GetEC2RecommendationProjectedMetricsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetEC2RecommendationProjectedMetricsCommandInput,
|
|
37
|
+
GetEC2RecommendationProjectedMetricsCommandOutput
|
|
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
|
+
GetEffectiveRecommendationPreferencesRequest,
|
|
15
|
+
GetEffectiveRecommendationPreferencesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetEffectiveRecommendationPreferencesCommandInput
|
|
18
|
+
extends GetEffectiveRecommendationPreferencesRequest {}
|
|
19
|
+
export interface GetEffectiveRecommendationPreferencesCommandOutput
|
|
20
|
+
extends GetEffectiveRecommendationPreferencesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetEffectiveRecommendationPreferencesCommand extends $Command<
|
|
24
|
+
GetEffectiveRecommendationPreferencesCommandInput,
|
|
25
|
+
GetEffectiveRecommendationPreferencesCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEffectiveRecommendationPreferencesCommandInput;
|
|
29
|
+
constructor(input: GetEffectiveRecommendationPreferencesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetEffectiveRecommendationPreferencesCommandInput,
|
|
37
|
+
GetEffectiveRecommendationPreferencesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
GetEnrollmentStatusRequest,
|
|
15
|
+
GetEnrollmentStatusResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetEnrollmentStatusCommandInput
|
|
18
|
+
extends GetEnrollmentStatusRequest {}
|
|
19
|
+
export interface GetEnrollmentStatusCommandOutput
|
|
20
|
+
extends GetEnrollmentStatusResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetEnrollmentStatusCommand extends $Command<
|
|
24
|
+
GetEnrollmentStatusCommandInput,
|
|
25
|
+
GetEnrollmentStatusCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEnrollmentStatusCommandInput;
|
|
29
|
+
constructor(input: GetEnrollmentStatusCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetEnrollmentStatusCommandInput, GetEnrollmentStatusCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
GetEnrollmentStatusesForOrganizationRequest,
|
|
15
|
+
GetEnrollmentStatusesForOrganizationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetEnrollmentStatusesForOrganizationCommandInput
|
|
18
|
+
extends GetEnrollmentStatusesForOrganizationRequest {}
|
|
19
|
+
export interface GetEnrollmentStatusesForOrganizationCommandOutput
|
|
20
|
+
extends GetEnrollmentStatusesForOrganizationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetEnrollmentStatusesForOrganizationCommand extends $Command<
|
|
24
|
+
GetEnrollmentStatusesForOrganizationCommandInput,
|
|
25
|
+
GetEnrollmentStatusesForOrganizationCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEnrollmentStatusesForOrganizationCommandInput;
|
|
29
|
+
constructor(input: GetEnrollmentStatusesForOrganizationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetEnrollmentStatusesForOrganizationCommandInput,
|
|
37
|
+
GetEnrollmentStatusesForOrganizationCommandOutput
|
|
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
|
+
GetLambdaFunctionRecommendationsRequest,
|
|
15
|
+
GetLambdaFunctionRecommendationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetLambdaFunctionRecommendationsCommandInput
|
|
18
|
+
extends GetLambdaFunctionRecommendationsRequest {}
|
|
19
|
+
export interface GetLambdaFunctionRecommendationsCommandOutput
|
|
20
|
+
extends GetLambdaFunctionRecommendationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetLambdaFunctionRecommendationsCommand extends $Command<
|
|
24
|
+
GetLambdaFunctionRecommendationsCommandInput,
|
|
25
|
+
GetLambdaFunctionRecommendationsCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetLambdaFunctionRecommendationsCommandInput;
|
|
29
|
+
constructor(input: GetLambdaFunctionRecommendationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetLambdaFunctionRecommendationsCommandInput,
|
|
37
|
+
GetLambdaFunctionRecommendationsCommandOutput
|
|
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
|
+
GetRecommendationPreferencesRequest,
|
|
15
|
+
GetRecommendationPreferencesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetRecommendationPreferencesCommandInput
|
|
18
|
+
extends GetRecommendationPreferencesRequest {}
|
|
19
|
+
export interface GetRecommendationPreferencesCommandOutput
|
|
20
|
+
extends GetRecommendationPreferencesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetRecommendationPreferencesCommand extends $Command<
|
|
24
|
+
GetRecommendationPreferencesCommandInput,
|
|
25
|
+
GetRecommendationPreferencesCommandOutput,
|
|
26
|
+
ComputeOptimizerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetRecommendationPreferencesCommandInput;
|
|
29
|
+
constructor(input: GetRecommendationPreferencesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ComputeOptimizerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetRecommendationPreferencesCommandInput,
|
|
37
|
+
GetRecommendationPreferencesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|