@aws-sdk/client-trustedadvisor 3.1077.0 → 3.1079.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 +19 -113
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/BatchUpdateRecommendationResourceExclusionCommand.js +2 -14
- package/dist-es/commands/GetOrganizationRecommendationCommand.js +2 -14
- package/dist-es/commands/GetRecommendationCommand.js +2 -14
- package/dist-es/commands/ListChecksCommand.js +2 -14
- package/dist-es/commands/ListOrganizationRecommendationAccountsCommand.js +2 -14
- package/dist-es/commands/ListOrganizationRecommendationResourcesCommand.js +2 -14
- package/dist-es/commands/ListOrganizationRecommendationsCommand.js +2 -14
- package/dist-es/commands/ListRecommendationResourcesCommand.js +2 -14
- package/dist-es/commands/ListRecommendationsCommand.js +2 -14
- package/dist-es/commands/UpdateOrganizationRecommendationLifecycleCommand.js +2 -14
- package/dist-es/commands/UpdateRecommendationLifecycleCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/BatchUpdateRecommendationResourceExclusionCommand.d.ts +3 -8
- package/dist-types/commands/GetOrganizationRecommendationCommand.d.ts +3 -8
- package/dist-types/commands/GetRecommendationCommand.d.ts +3 -8
- package/dist-types/commands/ListChecksCommand.d.ts +3 -8
- package/dist-types/commands/ListOrganizationRecommendationAccountsCommand.d.ts +3 -8
- package/dist-types/commands/ListOrganizationRecommendationResourcesCommand.d.ts +3 -8
- package/dist-types/commands/ListOrganizationRecommendationsCommand.d.ts +3 -8
- package/dist-types/commands/ListRecommendationResourcesCommand.d.ts +3 -8
- package/dist-types/commands/ListRecommendationsCommand.d.ts +3 -8
- package/dist-types/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +3 -8
- package/dist-types/commands/UpdateRecommendationLifecycleCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/BatchUpdateRecommendationResourceExclusionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetOrganizationRecommendationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListChecksCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListOrganizationRecommendationAccountsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListOrganizationRecommendationResourcesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListOrganizationRecommendationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListRecommendationResourcesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateRecommendationLifecycleCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListOrganizationRecommendationsRequest, ListOrganizationRecommendationsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListOrganizationRecommendationsCommandInput extends ListOrganiz
|
|
|
22
19
|
export interface ListOrganizationRecommendationsCommandOutput extends ListOrganizationRecommendationsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListOrganizationRecommendationsCommand_base: {
|
|
25
|
-
new (input: ListOrganizationRecommendationsCommandInput): import("@smithy/core/client").CommandImpl<ListOrganizationRecommendationsCommandInput, ListOrganizationRecommendationsCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListOrganizationRecommendationsCommandInput]): import("@smithy/core/client").CommandImpl<ListOrganizationRecommendationsCommandInput, ListOrganizationRecommendationsCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListOrganizationRecommendationsCommandInput): import("@smithy/core/client").CommandImpl<ListOrganizationRecommendationsCommandInput, ListOrganizationRecommendationsCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListOrganizationRecommendationsCommandInput]): import("@smithy/core/client").CommandImpl<ListOrganizationRecommendationsCommandInput, ListOrganizationRecommendationsCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>List a filterable set of Recommendations within an Organization. This API only supports prioritized recommendations and provides global priority recommendations, eliminating the need to call the API in each AWS Region. </p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListRecommendationResourcesRequest, ListRecommendationResourcesResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListRecommendationResourcesCommandInput extends ListRecommendat
|
|
|
22
19
|
export interface ListRecommendationResourcesCommandOutput extends ListRecommendationResourcesResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListRecommendationResourcesCommand_base: {
|
|
25
|
-
new (input: ListRecommendationResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListRecommendationResourcesCommandInput, ListRecommendationResourcesCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListRecommendationResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListRecommendationResourcesCommandInput, ListRecommendationResourcesCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListRecommendationResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListRecommendationResourcesCommandInput, ListRecommendationResourcesCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListRecommendationResourcesCommandInput): import("@smithy/core/client").CommandImpl<ListRecommendationResourcesCommandInput, ListRecommendationResourcesCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>List Resources of a Recommendation. This API provides global recommendations, eliminating the need to call the API in each AWS Region.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListRecommendationsCommandInput extends ListRecommendationsRequ
|
|
|
22
19
|
export interface ListRecommendationsCommandOutput extends ListRecommendationsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListRecommendationsCommand_base: {
|
|
25
|
-
new (input: ListRecommendationsCommandInput): import("@smithy/core/client").CommandImpl<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListRecommendationsCommandInput]): import("@smithy/core/client").CommandImpl<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListRecommendationsCommandInput): import("@smithy/core/client").CommandImpl<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListRecommendationsCommandInput]): import("@smithy/core/client").CommandImpl<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>List a filterable set of Recommendations. This API provides global recommendations, eliminating the need to call the API in each AWS Region.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateOrganizationRecommendationLifecycleRequest } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateOrganizationRecommendationLifecycleCommandInput extends U
|
|
|
22
19
|
export interface UpdateOrganizationRecommendationLifecycleCommandOutput extends __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateOrganizationRecommendationLifecycleCommand_base: {
|
|
25
|
-
new (input: UpdateOrganizationRecommendationLifecycleCommandInput): import("@smithy/core/client").CommandImpl<UpdateOrganizationRecommendationLifecycleCommandInput, UpdateOrganizationRecommendationLifecycleCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateOrganizationRecommendationLifecycleCommandInput): import("@smithy/core/client").CommandImpl<UpdateOrganizationRecommendationLifecycleCommandInput, UpdateOrganizationRecommendationLifecycleCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateOrganizationRecommendationLifecycleCommandInput): import("@smithy/core/client").CommandImpl<UpdateOrganizationRecommendationLifecycleCommandInput, UpdateOrganizationRecommendationLifecycleCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateOrganizationRecommendationLifecycleCommandInput): import("@smithy/core/client").CommandImpl<UpdateOrganizationRecommendationLifecycleCommandInput, UpdateOrganizationRecommendationLifecycleCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Update the lifecycle of a Recommendation within an Organization. This API only supports prioritized recommendations and updates global priority recommendations, eliminating the need to call the API in each AWS Region. </p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateRecommendationLifecycleRequest } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateRecommendationLifecycleCommandInput extends UpdateRecomme
|
|
|
22
19
|
export interface UpdateRecommendationLifecycleCommandOutput extends __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateRecommendationLifecycleCommand_base: {
|
|
25
|
-
new (input: UpdateRecommendationLifecycleCommandInput): import("@smithy/core/client").CommandImpl<UpdateRecommendationLifecycleCommandInput, UpdateRecommendationLifecycleCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateRecommendationLifecycleCommandInput): import("@smithy/core/client").CommandImpl<UpdateRecommendationLifecycleCommandInput, UpdateRecommendationLifecycleCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateRecommendationLifecycleCommandInput): import("@smithy/core/client").CommandImpl<UpdateRecommendationLifecycleCommandInput, UpdateRecommendationLifecycleCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateRecommendationLifecycleCommandInput): import("@smithy/core/client").CommandImpl<UpdateRecommendationLifecycleCommandInput, UpdateRecommendationLifecycleCommandOutput, import("..").TrustedAdvisorClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Update the lifecyle of a Recommendation. This API only supports prioritized recommendations and updates global priority recommendations, eliminating the need to call the API in each AWS Region.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { TrustedAdvisorExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
12
13
|
export * from "./schemas/schemas_0";
|
|
13
14
|
export * from "./pagination";
|
|
14
15
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ServiceInputTypes,
|
|
4
|
+
ServiceOutputTypes,
|
|
5
|
+
TrustedAdvisorClientResolvedConfig,
|
|
6
|
+
} from "./TrustedAdvisorClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
TrustedAdvisorClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
TrustedAdvisorClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
BatchUpdateRecommendationResourceExclusionRequest,
|
|
5
4
|
BatchUpdateRecommendationResourceExclusionResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
TrustedAdvisorClientResolvedConfig,
|
|
11
|
-
} from "../TrustedAdvisorClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface BatchUpdateRecommendationResourceExclusionCommandInput
|
|
15
8
|
extends BatchUpdateRecommendationResourceExclusionRequest {}
|
|
16
9
|
export interface BatchUpdateRecommendationResourceExclusionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const BatchUpdateRecommendationResourceExclusionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
BatchUpdateRecommendationResourceExclusionCommandInput,
|
|
24
17
|
BatchUpdateRecommendationResourceExclusionCommandOutput,
|
|
25
|
-
TrustedAdvisorClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: BatchUpdateRecommendationResourceExclusionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
BatchUpdateRecommendationResourceExclusionCommandInput,
|
|
33
26
|
BatchUpdateRecommendationResourceExclusionCommandOutput,
|
|
34
|
-
TrustedAdvisorClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class BatchUpdateRecommendationResourceExclusionCommand extends BatchUpdateRecommendationResourceExclusionCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetOrganizationRecommendationRequest,
|
|
5
4
|
GetOrganizationRecommendationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
TrustedAdvisorClientResolvedConfig,
|
|
11
|
-
} from "../TrustedAdvisorClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetOrganizationRecommendationCommandInput
|
|
15
8
|
extends GetOrganizationRecommendationRequest {}
|
|
16
9
|
export interface GetOrganizationRecommendationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetOrganizationRecommendationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetOrganizationRecommendationCommandInput,
|
|
24
17
|
GetOrganizationRecommendationCommandOutput,
|
|
25
|
-
TrustedAdvisorClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetOrganizationRecommendationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetOrganizationRecommendationCommandInput,
|
|
33
26
|
GetOrganizationRecommendationCommandOutput,
|
|
34
|
-
TrustedAdvisorClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetOrganizationRecommendationCommand extends GetOrganizationRecommendationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetRecommendationRequest,
|
|
5
4
|
GetRecommendationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
TrustedAdvisorClientResolvedConfig,
|
|
11
|
-
} from "../TrustedAdvisorClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetRecommendationCommandInput
|
|
15
8
|
extends GetRecommendationRequest {}
|
|
16
9
|
export interface GetRecommendationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetRecommendationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetRecommendationCommandInput,
|
|
24
17
|
GetRecommendationCommandOutput,
|
|
25
|
-
TrustedAdvisorClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetRecommendationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetRecommendationCommandInput,
|
|
33
26
|
GetRecommendationCommandOutput,
|
|
34
|
-
TrustedAdvisorClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetRecommendationCommand extends GetRecommendationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { ListChecksRequest, ListChecksResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
TrustedAdvisorClientResolvedConfig,
|
|
8
|
-
} from "../TrustedAdvisorClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListChecksCommandInput extends ListChecksRequest {}
|
|
12
5
|
export interface ListChecksCommandOutput
|
|
13
6
|
extends ListChecksResponse,
|
|
@@ -18,22 +11,20 @@ declare const ListChecksCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
ListChecksCommandInput,
|
|
20
13
|
ListChecksCommandOutput,
|
|
21
|
-
TrustedAdvisorClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
...[input]: [] | [ListChecksCommandInput]
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
ListChecksCommandInput,
|
|
29
22
|
ListChecksCommandOutput,
|
|
30
|
-
TrustedAdvisorClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class ListChecksCommand extends ListChecksCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListOrganizationRecommendationAccountsRequest,
|
|
5
4
|
ListOrganizationRecommendationAccountsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
TrustedAdvisorClientResolvedConfig,
|
|
11
|
-
} from "../TrustedAdvisorClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListOrganizationRecommendationAccountsCommandInput
|
|
15
8
|
extends ListOrganizationRecommendationAccountsRequest {}
|
|
16
9
|
export interface ListOrganizationRecommendationAccountsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListOrganizationRecommendationAccountsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListOrganizationRecommendationAccountsCommandInput,
|
|
24
17
|
ListOrganizationRecommendationAccountsCommandOutput,
|
|
25
|
-
TrustedAdvisorClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListOrganizationRecommendationAccountsCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListOrganizationRecommendationAccountsCommandInput,
|
|
33
26
|
ListOrganizationRecommendationAccountsCommandOutput,
|
|
34
|
-
TrustedAdvisorClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListOrganizationRecommendationAccountsCommand extends ListOrganizationRecommendationAccountsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListOrganizationRecommendationResourcesRequest,
|
|
5
4
|
ListOrganizationRecommendationResourcesResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
TrustedAdvisorClientResolvedConfig,
|
|
11
|
-
} from "../TrustedAdvisorClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListOrganizationRecommendationResourcesCommandInput
|
|
15
8
|
extends ListOrganizationRecommendationResourcesRequest {}
|
|
16
9
|
export interface ListOrganizationRecommendationResourcesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListOrganizationRecommendationResourcesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListOrganizationRecommendationResourcesCommandInput,
|
|
24
17
|
ListOrganizationRecommendationResourcesCommandOutput,
|
|
25
|
-
TrustedAdvisorClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListOrganizationRecommendationResourcesCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListOrganizationRecommendationResourcesCommandInput,
|
|
33
26
|
ListOrganizationRecommendationResourcesCommandOutput,
|
|
34
|
-
TrustedAdvisorClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListOrganizationRecommendationResourcesCommand extends ListOrganizationRecommendationResourcesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListOrganizationRecommendationsRequest,
|
|
5
4
|
ListOrganizationRecommendationsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
TrustedAdvisorClientResolvedConfig,
|
|
11
|
-
} from "../TrustedAdvisorClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListOrganizationRecommendationsCommandInput
|
|
15
8
|
extends ListOrganizationRecommendationsRequest {}
|
|
16
9
|
export interface ListOrganizationRecommendationsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListOrganizationRecommendationsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListOrganizationRecommendationsCommandInput,
|
|
24
17
|
ListOrganizationRecommendationsCommandOutput,
|
|
25
|
-
TrustedAdvisorClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListOrganizationRecommendationsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListOrganizationRecommendationsCommandInput,
|
|
33
26
|
ListOrganizationRecommendationsCommandOutput,
|
|
34
|
-
TrustedAdvisorClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListOrganizationRecommendationsCommand extends ListOrganizationRecommendationsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListRecommendationResourcesRequest,
|
|
5
4
|
ListRecommendationResourcesResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
TrustedAdvisorClientResolvedConfig,
|
|
11
|
-
} from "../TrustedAdvisorClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListRecommendationResourcesCommandInput
|
|
15
8
|
extends ListRecommendationResourcesRequest {}
|
|
16
9
|
export interface ListRecommendationResourcesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListRecommendationResourcesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListRecommendationResourcesCommandInput,
|
|
24
17
|
ListRecommendationResourcesCommandOutput,
|
|
25
|
-
TrustedAdvisorClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListRecommendationResourcesCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListRecommendationResourcesCommandInput,
|
|
33
26
|
ListRecommendationResourcesCommandOutput,
|
|
34
|
-
TrustedAdvisorClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListRecommendationResourcesCommand extends ListRecommendationResourcesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListRecommendationsRequest,
|
|
5
4
|
ListRecommendationsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
TrustedAdvisorClientResolvedConfig,
|
|
11
|
-
} from "../TrustedAdvisorClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListRecommendationsCommandInput
|
|
15
8
|
extends ListRecommendationsRequest {}
|
|
16
9
|
export interface ListRecommendationsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListRecommendationsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListRecommendationsCommandInput,
|
|
24
17
|
ListRecommendationsCommandOutput,
|
|
25
|
-
TrustedAdvisorClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [ListRecommendationsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListRecommendationsCommandInput,
|
|
33
26
|
ListRecommendationsCommandOutput,
|
|
34
|
-
TrustedAdvisorClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").TrustedAdvisorClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListRecommendationsCommand extends ListRecommendationsCommand_base {
|
|
43
34
|
protected static __types: {
|