@aws-sdk/client-compute-optimizer 3.1086.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ComputeOptimizer.d.ts +90 -140
- package/dist-types/ts3.4/ComputeOptimizerClient.d.ts +5 -15
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/DeleteRecommendationPreferencesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeRecommendationExportJobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ExportEBSVolumeRecommendationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ExportEC2InstanceRecommendationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ExportECSServiceRecommendationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ExportIdleRecommendationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ExportLicenseRecommendationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ExportRDSDatabaseRecommendationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetEBSVolumeRecommendationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetEC2InstanceRecommendationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetEC2RecommendationProjectedMetricsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetECSServiceRecommendationProjectedMetricsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetECSServiceRecommendationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetEnrollmentStatusCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetEnrollmentStatusesForOrganizationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetIdleRecommendationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetLambdaFunctionRecommendationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetLicenseRecommendationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetRDSDatabaseRecommendationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetRecommendationPreferencesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetRecommendationSummariesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/PutRecommendationPreferencesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateEnrollmentStatusCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +19 -38
- package/dist-types/ts3.4/models/errors.d.ts +9 -27
- package/dist-types/ts3.4/models/models_0.d.ts +26 -78
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ComputeOptimizerClientResolvedConfig } from "../ComputeOptimizerClient";
|
|
15
|
-
export interface ComputeOptimizerHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ComputeOptimizerHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ComputeOptimizerHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ComputeOptimizerHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ComputeOptimizerClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ComputeOptimizerHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultComputeOptimizerHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ComputeOptimizerClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ComputeOptimizerHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ComputeOptimizerHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ComputeOptimizerHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ComputeOptimizerHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ComputeOptimizerHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultComputeOptimizerHttpAuthSchemeProvider: ComputeOptimizerHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ComputeOptimizerHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ComputeOptimizerHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ComputeOptimizerClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ComputeOptimizerClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteRecommendationPreferencesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteRecommendationPreferencesCommandInput
|
|
8
|
-
extends DeleteRecommendationPreferencesRequest {}
|
|
7
|
+
export interface DeleteRecommendationPreferencesCommandInput extends DeleteRecommendationPreferencesRequest {}
|
|
9
8
|
export interface DeleteRecommendationPreferencesCommandOutput
|
|
10
|
-
extends DeleteRecommendationPreferencesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteRecommendationPreferencesResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeleteRecommendationPreferencesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteRecommendationPreferencesCommandInput
|
|
12
|
+
input: DeleteRecommendationPreferencesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteRecommendationPreferencesCommandInput,
|
|
17
15
|
DeleteRecommendationPreferencesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteRecommendationPreferencesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteRecommendationPreferencesCommandInput
|
|
21
|
+
input: DeleteRecommendationPreferencesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteRecommendationPreferencesCommandInput,
|
|
26
24
|
DeleteRecommendationPreferencesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeRecommendationExportJobsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeRecommendationExportJobsCommandInput
|
|
8
|
-
extends DescribeRecommendationExportJobsRequest {}
|
|
7
|
+
export interface DescribeRecommendationExportJobsCommandInput extends DescribeRecommendationExportJobsRequest {}
|
|
9
8
|
export interface DescribeRecommendationExportJobsCommandOutput
|
|
10
|
-
extends DescribeRecommendationExportJobsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeRecommendationExportJobsResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeRecommendationExportJobsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeRecommendationExportJobsCommandInput
|
|
12
|
+
input: DescribeRecommendationExportJobsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeRecommendationExportJobsCommandInput,
|
|
17
15
|
DescribeRecommendationExportJobsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ExportAutoScalingGroupRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExportAutoScalingGroupRecommendationsCommandInput
|
|
8
|
-
extends ExportAutoScalingGroupRecommendationsRequest {}
|
|
7
|
+
export interface ExportAutoScalingGroupRecommendationsCommandInput extends ExportAutoScalingGroupRecommendationsRequest {}
|
|
9
8
|
export interface ExportAutoScalingGroupRecommendationsCommandOutput
|
|
10
|
-
extends ExportAutoScalingGroupRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ExportAutoScalingGroupRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ExportAutoScalingGroupRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ExportAutoScalingGroupRecommendationsCommandInput
|
|
12
|
+
input: ExportAutoScalingGroupRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ExportAutoScalingGroupRecommendationsCommandInput,
|
|
17
15
|
ExportAutoScalingGroupRecommendationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ExportAutoScalingGroupRecommendationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ExportAutoScalingGroupRecommendationsCommandInput
|
|
21
|
+
input: ExportAutoScalingGroupRecommendationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ExportAutoScalingGroupRecommendationsCommandInput,
|
|
26
24
|
ExportAutoScalingGroupRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ExportEBSVolumeRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExportEBSVolumeRecommendationsCommandInput
|
|
8
|
-
extends ExportEBSVolumeRecommendationsRequest {}
|
|
7
|
+
export interface ExportEBSVolumeRecommendationsCommandInput extends ExportEBSVolumeRecommendationsRequest {}
|
|
9
8
|
export interface ExportEBSVolumeRecommendationsCommandOutput
|
|
10
|
-
extends ExportEBSVolumeRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ExportEBSVolumeRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ExportEBSVolumeRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ExportEBSVolumeRecommendationsCommandInput
|
|
12
|
+
input: ExportEBSVolumeRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ExportEBSVolumeRecommendationsCommandInput,
|
|
17
15
|
ExportEBSVolumeRecommendationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ExportEBSVolumeRecommendationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ExportEBSVolumeRecommendationsCommandInput
|
|
21
|
+
input: ExportEBSVolumeRecommendationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ExportEBSVolumeRecommendationsCommandInput,
|
|
26
24
|
ExportEBSVolumeRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ExportEC2InstanceRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExportEC2InstanceRecommendationsCommandInput
|
|
8
|
-
extends ExportEC2InstanceRecommendationsRequest {}
|
|
7
|
+
export interface ExportEC2InstanceRecommendationsCommandInput extends ExportEC2InstanceRecommendationsRequest {}
|
|
9
8
|
export interface ExportEC2InstanceRecommendationsCommandOutput
|
|
10
|
-
extends ExportEC2InstanceRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ExportEC2InstanceRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ExportEC2InstanceRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ExportEC2InstanceRecommendationsCommandInput
|
|
12
|
+
input: ExportEC2InstanceRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ExportEC2InstanceRecommendationsCommandInput,
|
|
17
15
|
ExportEC2InstanceRecommendationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ExportEC2InstanceRecommendationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ExportEC2InstanceRecommendationsCommandInput
|
|
21
|
+
input: ExportEC2InstanceRecommendationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ExportEC2InstanceRecommendationsCommandInput,
|
|
26
24
|
ExportEC2InstanceRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ExportECSServiceRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExportECSServiceRecommendationsCommandInput
|
|
8
|
-
extends ExportECSServiceRecommendationsRequest {}
|
|
7
|
+
export interface ExportECSServiceRecommendationsCommandInput extends ExportECSServiceRecommendationsRequest {}
|
|
9
8
|
export interface ExportECSServiceRecommendationsCommandOutput
|
|
10
|
-
extends ExportECSServiceRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ExportECSServiceRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ExportECSServiceRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ExportECSServiceRecommendationsCommandInput
|
|
12
|
+
input: ExportECSServiceRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ExportECSServiceRecommendationsCommandInput,
|
|
17
15
|
ExportECSServiceRecommendationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ExportECSServiceRecommendationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ExportECSServiceRecommendationsCommandInput
|
|
21
|
+
input: ExportECSServiceRecommendationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ExportECSServiceRecommendationsCommandInput,
|
|
26
24
|
ExportECSServiceRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ExportIdleRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExportIdleRecommendationsCommandInput
|
|
8
|
-
extends ExportIdleRecommendationsRequest {}
|
|
7
|
+
export interface ExportIdleRecommendationsCommandInput extends ExportIdleRecommendationsRequest {}
|
|
9
8
|
export interface ExportIdleRecommendationsCommandOutput
|
|
10
|
-
extends ExportIdleRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ExportIdleRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ExportIdleRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ExportIdleRecommendationsCommandInput
|
|
12
|
+
input: ExportIdleRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ExportIdleRecommendationsCommandInput,
|
|
17
15
|
ExportIdleRecommendationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ExportIdleRecommendationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ExportIdleRecommendationsCommandInput
|
|
21
|
+
input: ExportIdleRecommendationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ExportIdleRecommendationsCommandInput,
|
|
26
24
|
ExportIdleRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ExportLambdaFunctionRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExportLambdaFunctionRecommendationsCommandInput
|
|
8
|
-
extends ExportLambdaFunctionRecommendationsRequest {}
|
|
7
|
+
export interface ExportLambdaFunctionRecommendationsCommandInput extends ExportLambdaFunctionRecommendationsRequest {}
|
|
9
8
|
export interface ExportLambdaFunctionRecommendationsCommandOutput
|
|
10
|
-
extends ExportLambdaFunctionRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ExportLambdaFunctionRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ExportLambdaFunctionRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ExportLambdaFunctionRecommendationsCommandInput
|
|
12
|
+
input: ExportLambdaFunctionRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ExportLambdaFunctionRecommendationsCommandInput,
|
|
17
15
|
ExportLambdaFunctionRecommendationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ExportLambdaFunctionRecommendationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ExportLambdaFunctionRecommendationsCommandInput
|
|
21
|
+
input: ExportLambdaFunctionRecommendationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ExportLambdaFunctionRecommendationsCommandInput,
|
|
26
24
|
ExportLambdaFunctionRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ExportLicenseRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExportLicenseRecommendationsCommandInput
|
|
8
|
-
extends ExportLicenseRecommendationsRequest {}
|
|
7
|
+
export interface ExportLicenseRecommendationsCommandInput extends ExportLicenseRecommendationsRequest {}
|
|
9
8
|
export interface ExportLicenseRecommendationsCommandOutput
|
|
10
|
-
extends ExportLicenseRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ExportLicenseRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ExportLicenseRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ExportLicenseRecommendationsCommandInput
|
|
12
|
+
input: ExportLicenseRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ExportLicenseRecommendationsCommandInput,
|
|
17
15
|
ExportLicenseRecommendationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ExportLicenseRecommendationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ExportLicenseRecommendationsCommandInput
|
|
21
|
+
input: ExportLicenseRecommendationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ExportLicenseRecommendationsCommandInput,
|
|
26
24
|
ExportLicenseRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ExportRDSDatabaseRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExportRDSDatabaseRecommendationsCommandInput
|
|
8
|
-
extends ExportRDSDatabaseRecommendationsRequest {}
|
|
7
|
+
export interface ExportRDSDatabaseRecommendationsCommandInput extends ExportRDSDatabaseRecommendationsRequest {}
|
|
9
8
|
export interface ExportRDSDatabaseRecommendationsCommandOutput
|
|
10
|
-
extends ExportRDSDatabaseRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ExportRDSDatabaseRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ExportRDSDatabaseRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ExportRDSDatabaseRecommendationsCommandInput
|
|
12
|
+
input: ExportRDSDatabaseRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ExportRDSDatabaseRecommendationsCommandInput,
|
|
17
15
|
ExportRDSDatabaseRecommendationsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ExportRDSDatabaseRecommendationsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ExportRDSDatabaseRecommendationsCommandInput
|
|
21
|
+
input: ExportRDSDatabaseRecommendationsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ExportRDSDatabaseRecommendationsCommandInput,
|
|
26
24
|
ExportRDSDatabaseRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetAutoScalingGroupRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAutoScalingGroupRecommendationsCommandInput
|
|
8
|
-
extends GetAutoScalingGroupRecommendationsRequest {}
|
|
7
|
+
export interface GetAutoScalingGroupRecommendationsCommandInput extends GetAutoScalingGroupRecommendationsRequest {}
|
|
9
8
|
export interface GetAutoScalingGroupRecommendationsCommandOutput
|
|
10
|
-
extends GetAutoScalingGroupRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetAutoScalingGroupRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetAutoScalingGroupRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetAutoScalingGroupRecommendationsCommandInput
|
|
12
|
+
input: GetAutoScalingGroupRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetAutoScalingGroupRecommendationsCommandInput,
|
|
17
15
|
GetAutoScalingGroupRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetEBSVolumeRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetEBSVolumeRecommendationsCommandInput
|
|
8
|
-
extends GetEBSVolumeRecommendationsRequest {}
|
|
7
|
+
export interface GetEBSVolumeRecommendationsCommandInput extends GetEBSVolumeRecommendationsRequest {}
|
|
9
8
|
export interface GetEBSVolumeRecommendationsCommandOutput
|
|
10
|
-
extends GetEBSVolumeRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetEBSVolumeRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetEBSVolumeRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetEBSVolumeRecommendationsCommandInput
|
|
12
|
+
input: GetEBSVolumeRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetEBSVolumeRecommendationsCommandInput,
|
|
17
15
|
GetEBSVolumeRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetEC2InstanceRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetEC2InstanceRecommendationsCommandInput
|
|
8
|
-
extends GetEC2InstanceRecommendationsRequest {}
|
|
7
|
+
export interface GetEC2InstanceRecommendationsCommandInput extends GetEC2InstanceRecommendationsRequest {}
|
|
9
8
|
export interface GetEC2InstanceRecommendationsCommandOutput
|
|
10
|
-
extends GetEC2InstanceRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetEC2InstanceRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetEC2InstanceRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetEC2InstanceRecommendationsCommandInput
|
|
12
|
+
input: GetEC2InstanceRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetEC2InstanceRecommendationsCommandInput,
|
|
17
15
|
GetEC2InstanceRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetEC2RecommendationProjectedMetricsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetEC2RecommendationProjectedMetricsCommandInput
|
|
8
|
-
extends GetEC2RecommendationProjectedMetricsRequest {}
|
|
7
|
+
export interface GetEC2RecommendationProjectedMetricsCommandInput extends GetEC2RecommendationProjectedMetricsRequest {}
|
|
9
8
|
export interface GetEC2RecommendationProjectedMetricsCommandOutput
|
|
10
|
-
extends GetEC2RecommendationProjectedMetricsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetEC2RecommendationProjectedMetricsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetEC2RecommendationProjectedMetricsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetEC2RecommendationProjectedMetricsCommandInput
|
|
12
|
+
input: GetEC2RecommendationProjectedMetricsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetEC2RecommendationProjectedMetricsCommandInput,
|
|
17
15
|
GetEC2RecommendationProjectedMetricsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetEC2RecommendationProjectedMetricsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetEC2RecommendationProjectedMetricsCommandInput
|
|
21
|
+
input: GetEC2RecommendationProjectedMetricsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetEC2RecommendationProjectedMetricsCommandInput,
|
|
26
24
|
GetEC2RecommendationProjectedMetricsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetECSServiceRecommendationProjectedMetricsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetECSServiceRecommendationProjectedMetricsCommandInput
|
|
8
|
-
extends GetECSServiceRecommendationProjectedMetricsRequest {}
|
|
7
|
+
export interface GetECSServiceRecommendationProjectedMetricsCommandInput extends GetECSServiceRecommendationProjectedMetricsRequest {}
|
|
9
8
|
export interface GetECSServiceRecommendationProjectedMetricsCommandOutput
|
|
10
|
-
extends GetECSServiceRecommendationProjectedMetricsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetECSServiceRecommendationProjectedMetricsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetECSServiceRecommendationProjectedMetricsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetECSServiceRecommendationProjectedMetricsCommandInput
|
|
12
|
+
input: GetECSServiceRecommendationProjectedMetricsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetECSServiceRecommendationProjectedMetricsCommandInput,
|
|
17
15
|
GetECSServiceRecommendationProjectedMetricsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetECSServiceRecommendationProjectedMetricsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetECSServiceRecommendationProjectedMetricsCommandInput
|
|
21
|
+
input: GetECSServiceRecommendationProjectedMetricsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetECSServiceRecommendationProjectedMetricsCommandInput,
|
|
26
24
|
GetECSServiceRecommendationProjectedMetricsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetECSServiceRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetECSServiceRecommendationsCommandInput
|
|
8
|
-
extends GetECSServiceRecommendationsRequest {}
|
|
7
|
+
export interface GetECSServiceRecommendationsCommandInput extends GetECSServiceRecommendationsRequest {}
|
|
9
8
|
export interface GetECSServiceRecommendationsCommandOutput
|
|
10
|
-
extends GetECSServiceRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetECSServiceRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetECSServiceRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetECSServiceRecommendationsCommandInput
|
|
12
|
+
input: GetECSServiceRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetECSServiceRecommendationsCommandInput,
|
|
17
15
|
GetECSServiceRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetEffectiveRecommendationPreferencesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetEffectiveRecommendationPreferencesCommandInput
|
|
8
|
-
extends GetEffectiveRecommendationPreferencesRequest {}
|
|
7
|
+
export interface GetEffectiveRecommendationPreferencesCommandInput extends GetEffectiveRecommendationPreferencesRequest {}
|
|
9
8
|
export interface GetEffectiveRecommendationPreferencesCommandOutput
|
|
10
|
-
extends GetEffectiveRecommendationPreferencesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetEffectiveRecommendationPreferencesResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetEffectiveRecommendationPreferencesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetEffectiveRecommendationPreferencesCommandInput
|
|
12
|
+
input: GetEffectiveRecommendationPreferencesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetEffectiveRecommendationPreferencesCommandInput,
|
|
17
15
|
GetEffectiveRecommendationPreferencesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetEffectiveRecommendationPreferencesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetEffectiveRecommendationPreferencesCommandInput
|
|
21
|
+
input: GetEffectiveRecommendationPreferencesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetEffectiveRecommendationPreferencesCommandInput,
|
|
26
24
|
GetEffectiveRecommendationPreferencesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetEnrollmentStatusRequest,
|
|
4
|
-
GetEnrollmentStatusResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetEnrollmentStatusRequest, GetEnrollmentStatusResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetEnrollmentStatusCommandInput
|
|
8
|
-
extends GetEnrollmentStatusRequest {}
|
|
4
|
+
export interface GetEnrollmentStatusCommandInput extends GetEnrollmentStatusRequest {}
|
|
9
5
|
export interface GetEnrollmentStatusCommandOutput
|
|
10
|
-
extends GetEnrollmentStatusResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetEnrollmentStatusResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetEnrollmentStatusCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetEnrollmentStatusCommandInput
|
|
9
|
+
input: GetEnrollmentStatusCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetEnrollmentStatusCommandInput,
|
|
17
12
|
GetEnrollmentStatusCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetEnrollmentStatusesForOrganizationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetEnrollmentStatusesForOrganizationCommandInput
|
|
8
|
-
extends GetEnrollmentStatusesForOrganizationRequest {}
|
|
7
|
+
export interface GetEnrollmentStatusesForOrganizationCommandInput extends GetEnrollmentStatusesForOrganizationRequest {}
|
|
9
8
|
export interface GetEnrollmentStatusesForOrganizationCommandOutput
|
|
10
|
-
extends GetEnrollmentStatusesForOrganizationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetEnrollmentStatusesForOrganizationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetEnrollmentStatusesForOrganizationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetEnrollmentStatusesForOrganizationCommandInput
|
|
12
|
+
input: GetEnrollmentStatusesForOrganizationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetEnrollmentStatusesForOrganizationCommandInput,
|
|
17
15
|
GetEnrollmentStatusesForOrganizationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetIdleRecommendationsRequest,
|
|
4
|
-
GetIdleRecommendationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetIdleRecommendationsRequest, GetIdleRecommendationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetIdleRecommendationsCommandInput
|
|
8
|
-
extends GetIdleRecommendationsRequest {}
|
|
4
|
+
export interface GetIdleRecommendationsCommandInput extends GetIdleRecommendationsRequest {}
|
|
9
5
|
export interface GetIdleRecommendationsCommandOutput
|
|
10
|
-
extends GetIdleRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetIdleRecommendationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetIdleRecommendationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetIdleRecommendationsCommandInput
|
|
9
|
+
input: GetIdleRecommendationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetIdleRecommendationsCommandInput,
|
|
17
12
|
GetIdleRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetLambdaFunctionRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetLambdaFunctionRecommendationsCommandInput
|
|
8
|
-
extends GetLambdaFunctionRecommendationsRequest {}
|
|
7
|
+
export interface GetLambdaFunctionRecommendationsCommandInput extends GetLambdaFunctionRecommendationsRequest {}
|
|
9
8
|
export interface GetLambdaFunctionRecommendationsCommandOutput
|
|
10
|
-
extends GetLambdaFunctionRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetLambdaFunctionRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetLambdaFunctionRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetLambdaFunctionRecommendationsCommandInput
|
|
12
|
+
input: GetLambdaFunctionRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetLambdaFunctionRecommendationsCommandInput,
|
|
17
15
|
GetLambdaFunctionRecommendationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetLicenseRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetLicenseRecommendationsCommandInput
|
|
8
|
-
extends GetLicenseRecommendationsRequest {}
|
|
7
|
+
export interface GetLicenseRecommendationsCommandInput extends GetLicenseRecommendationsRequest {}
|
|
9
8
|
export interface GetLicenseRecommendationsCommandOutput
|
|
10
|
-
extends GetLicenseRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetLicenseRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetLicenseRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetLicenseRecommendationsCommandInput
|
|
12
|
+
input: GetLicenseRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetLicenseRecommendationsCommandInput,
|
|
17
15
|
GetLicenseRecommendationsCommandOutput,
|