@aws-sdk/client-trustedadvisor 3.478.0 → 3.481.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.
Files changed (45) hide show
  1. package/dist-cjs/commands/GetOrganizationRecommendationCommand.js +18 -41
  2. package/dist-cjs/commands/GetRecommendationCommand.js +18 -41
  3. package/dist-cjs/commands/ListChecksCommand.js +18 -41
  4. package/dist-cjs/commands/ListOrganizationRecommendationAccountsCommand.js +18 -41
  5. package/dist-cjs/commands/ListOrganizationRecommendationResourcesCommand.js +18 -41
  6. package/dist-cjs/commands/ListOrganizationRecommendationsCommand.js +18 -41
  7. package/dist-cjs/commands/ListRecommendationResourcesCommand.js +18 -41
  8. package/dist-cjs/commands/ListRecommendationsCommand.js +18 -41
  9. package/dist-cjs/commands/UpdateOrganizationRecommendationLifecycleCommand.js +18 -41
  10. package/dist-cjs/commands/UpdateRecommendationLifecycleCommand.js +18 -41
  11. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  12. package/dist-es/commands/GetOrganizationRecommendationCommand.js +18 -41
  13. package/dist-es/commands/GetRecommendationCommand.js +18 -41
  14. package/dist-es/commands/ListChecksCommand.js +18 -41
  15. package/dist-es/commands/ListOrganizationRecommendationAccountsCommand.js +18 -41
  16. package/dist-es/commands/ListOrganizationRecommendationResourcesCommand.js +18 -41
  17. package/dist-es/commands/ListOrganizationRecommendationsCommand.js +18 -41
  18. package/dist-es/commands/ListRecommendationResourcesCommand.js +18 -41
  19. package/dist-es/commands/ListRecommendationsCommand.js +18 -41
  20. package/dist-es/commands/UpdateOrganizationRecommendationLifecycleCommand.js +18 -41
  21. package/dist-es/commands/UpdateRecommendationLifecycleCommand.js +18 -41
  22. package/dist-es/endpoint/EndpointParameters.js +6 -0
  23. package/dist-types/commands/GetOrganizationRecommendationCommand.d.ts +6 -21
  24. package/dist-types/commands/GetRecommendationCommand.d.ts +6 -21
  25. package/dist-types/commands/ListChecksCommand.d.ts +6 -21
  26. package/dist-types/commands/ListOrganizationRecommendationAccountsCommand.d.ts +6 -21
  27. package/dist-types/commands/ListOrganizationRecommendationResourcesCommand.d.ts +6 -21
  28. package/dist-types/commands/ListOrganizationRecommendationsCommand.d.ts +6 -21
  29. package/dist-types/commands/ListRecommendationResourcesCommand.d.ts +6 -21
  30. package/dist-types/commands/ListRecommendationsCommand.d.ts +6 -21
  31. package/dist-types/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +6 -21
  32. package/dist-types/commands/UpdateRecommendationLifecycleCommand.d.ts +6 -21
  33. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  34. package/dist-types/ts3.4/commands/GetOrganizationRecommendationCommand.d.ts +12 -24
  35. package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +14 -23
  36. package/dist-types/ts3.4/commands/ListChecksCommand.d.ts +14 -23
  37. package/dist-types/ts3.4/commands/ListOrganizationRecommendationAccountsCommand.d.ts +12 -24
  38. package/dist-types/ts3.4/commands/ListOrganizationRecommendationResourcesCommand.d.ts +12 -24
  39. package/dist-types/ts3.4/commands/ListOrganizationRecommendationsCommand.d.ts +12 -24
  40. package/dist-types/ts3.4/commands/ListRecommendationResourcesCommand.d.ts +12 -24
  41. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +12 -24
  43. package/dist-types/ts3.4/commands/UpdateRecommendationLifecycleCommand.d.ts +12 -24
  44. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  45. package/package.json +9 -9
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { UpdateOrganizationRecommendationLifecycleRequestFilterSensitiveLog, } from "../models/models_0";
6
6
  import { de_UpdateOrganizationRecommendationLifecycleCommand, se_UpdateOrganizationRecommendationLifecycleCommand, } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class UpdateOrganizationRecommendationLifecycleCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, UpdateOrganizationRecommendationLifecycleCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "TrustedAdvisorClient";
27
- const commandName = "UpdateOrganizationRecommendationLifecycleCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: UpdateOrganizationRecommendationLifecycleRequestFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "TrustedAdvisor",
36
- operation: "UpdateOrganizationRecommendationLifecycle",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_UpdateOrganizationRecommendationLifecycleCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_UpdateOrganizationRecommendationLifecycleCommand(output, context);
47
- }
8
+ export class UpdateOrganizationRecommendationLifecycleCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("TrustedAdvisor", "UpdateOrganizationRecommendationLifecycle", {})
20
+ .n("TrustedAdvisorClient", "UpdateOrganizationRecommendationLifecycleCommand")
21
+ .f(UpdateOrganizationRecommendationLifecycleRequestFilterSensitiveLog, void 0)
22
+ .ser(se_UpdateOrganizationRecommendationLifecycleCommand)
23
+ .de(de_UpdateOrganizationRecommendationLifecycleCommand)
24
+ .build() {
48
25
  }
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { UpdateRecommendationLifecycleRequestFilterSensitiveLog, } from "../models/models_0";
6
6
  import { de_UpdateRecommendationLifecycleCommand, se_UpdateRecommendationLifecycleCommand, } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class UpdateRecommendationLifecycleCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, UpdateRecommendationLifecycleCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "TrustedAdvisorClient";
27
- const commandName = "UpdateRecommendationLifecycleCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: UpdateRecommendationLifecycleRequestFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "TrustedAdvisor",
36
- operation: "UpdateRecommendationLifecycle",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_UpdateRecommendationLifecycleCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_UpdateRecommendationLifecycleCommand(output, context);
47
- }
8
+ export class UpdateRecommendationLifecycleCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("TrustedAdvisor", "UpdateRecommendationLifecycle", {})
20
+ .n("TrustedAdvisorClient", "UpdateRecommendationLifecycleCommand")
21
+ .f(UpdateRecommendationLifecycleRequestFilterSensitiveLog, void 0)
22
+ .ser(se_UpdateRecommendationLifecycleCommand)
23
+ .de(de_UpdateRecommendationLifecycleCommand)
24
+ .build() {
48
25
  }
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
6
6
  defaultSigningName: "trustedadvisor",
7
7
  };
8
8
  };
9
+ export const commonParams = {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GetOrganizationRecommendationRequest, GetOrganizationRecommendationResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetOrganizationRecommendationCommandInput extends GetOrganizati
21
20
  */
22
21
  export interface GetOrganizationRecommendationCommandOutput extends GetOrganizationRecommendationResponse, __MetadataBearer {
23
22
  }
23
+ declare const GetOrganizationRecommendationCommand_base: {
24
+ new (input: GetOrganizationRecommendationCommandInput): import("@smithy/smithy-client").CommandImpl<GetOrganizationRecommendationCommandInput, GetOrganizationRecommendationCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Get a specific recommendation within an AWS Organizations organization. This API supports only prioritized
@@ -103,23 +106,5 @@ export interface GetOrganizationRecommendationCommandOutput extends GetOrganizat
103
106
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
104
107
  *
105
108
  */
106
- export declare class GetOrganizationRecommendationCommand extends $Command<GetOrganizationRecommendationCommandInput, GetOrganizationRecommendationCommandOutput, TrustedAdvisorClientResolvedConfig> {
107
- readonly input: GetOrganizationRecommendationCommandInput;
108
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
109
- /**
110
- * @public
111
- */
112
- constructor(input: GetOrganizationRecommendationCommandInput);
113
- /**
114
- * @internal
115
- */
116
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOrganizationRecommendationCommandInput, GetOrganizationRecommendationCommandOutput>;
117
- /**
118
- * @internal
119
- */
120
- private serialize;
121
- /**
122
- * @internal
123
- */
124
- private deserialize;
109
+ export declare class GetOrganizationRecommendationCommand extends GetOrganizationRecommendationCommand_base {
125
110
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GetRecommendationRequest, GetRecommendationResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetRecommendationCommandInput extends GetRecommendationRequest
21
20
  */
22
21
  export interface GetRecommendationCommandOutput extends GetRecommendationResponse, __MetadataBearer {
23
22
  }
23
+ declare const GetRecommendationCommand_base: {
24
+ new (input: GetRecommendationCommandInput): import("@smithy/smithy-client").CommandImpl<GetRecommendationCommandInput, GetRecommendationCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Get a specific Recommendation</p>
@@ -101,23 +104,5 @@ export interface GetRecommendationCommandOutput extends GetRecommendationRespons
101
104
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
102
105
  *
103
106
  */
104
- export declare class GetRecommendationCommand extends $Command<GetRecommendationCommandInput, GetRecommendationCommandOutput, TrustedAdvisorClientResolvedConfig> {
105
- readonly input: GetRecommendationCommandInput;
106
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
107
- /**
108
- * @public
109
- */
110
- constructor(input: GetRecommendationCommandInput);
111
- /**
112
- * @internal
113
- */
114
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecommendationCommandInput, GetRecommendationCommandOutput>;
115
- /**
116
- * @internal
117
- */
118
- private serialize;
119
- /**
120
- * @internal
121
- */
122
- private deserialize;
107
+ export declare class GetRecommendationCommand extends GetRecommendationCommand_base {
123
108
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListChecksRequest, ListChecksResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListChecksCommandInput extends ListChecksRequest {
21
20
  */
22
21
  export interface ListChecksCommandOutput extends ListChecksResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListChecksCommand_base: {
24
+ new (input: ListChecksCommandInput): import("@smithy/smithy-client").CommandImpl<ListChecksCommandInput, ListChecksCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>List a filterable set of Checks</p>
@@ -86,23 +89,5 @@ export interface ListChecksCommandOutput extends ListChecksResponse, __MetadataB
86
89
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
87
90
  *
88
91
  */
89
- export declare class ListChecksCommand extends $Command<ListChecksCommandInput, ListChecksCommandOutput, TrustedAdvisorClientResolvedConfig> {
90
- readonly input: ListChecksCommandInput;
91
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
92
- /**
93
- * @public
94
- */
95
- constructor(input: ListChecksCommandInput);
96
- /**
97
- * @internal
98
- */
99
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListChecksCommandInput, ListChecksCommandOutput>;
100
- /**
101
- * @internal
102
- */
103
- private serialize;
104
- /**
105
- * @internal
106
- */
107
- private deserialize;
92
+ export declare class ListChecksCommand extends ListChecksCommand_base {
108
93
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListOrganizationRecommendationAccountsRequest, ListOrganizationRecommendationAccountsResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListOrganizationRecommendationAccountsCommandInput extends List
21
20
  */
22
21
  export interface ListOrganizationRecommendationAccountsCommandOutput extends ListOrganizationRecommendationAccountsResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListOrganizationRecommendationAccountsCommand_base: {
24
+ new (input: ListOrganizationRecommendationAccountsCommandInput): import("@smithy/smithy-client").CommandImpl<ListOrganizationRecommendationAccountsCommandInput, ListOrganizationRecommendationAccountsCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists the accounts that own the resources for an organization aggregate recommendation. This API only
@@ -83,23 +86,5 @@ export interface ListOrganizationRecommendationAccountsCommandOutput extends Lis
83
86
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
84
87
  *
85
88
  */
86
- export declare class ListOrganizationRecommendationAccountsCommand extends $Command<ListOrganizationRecommendationAccountsCommandInput, ListOrganizationRecommendationAccountsCommandOutput, TrustedAdvisorClientResolvedConfig> {
87
- readonly input: ListOrganizationRecommendationAccountsCommandInput;
88
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
89
- /**
90
- * @public
91
- */
92
- constructor(input: ListOrganizationRecommendationAccountsCommandInput);
93
- /**
94
- * @internal
95
- */
96
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrganizationRecommendationAccountsCommandInput, ListOrganizationRecommendationAccountsCommandOutput>;
97
- /**
98
- * @internal
99
- */
100
- private serialize;
101
- /**
102
- * @internal
103
- */
104
- private deserialize;
89
+ export declare class ListOrganizationRecommendationAccountsCommand extends ListOrganizationRecommendationAccountsCommand_base {
105
90
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListOrganizationRecommendationResourcesRequest, ListOrganizationRecommendationResourcesResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListOrganizationRecommendationResourcesCommandInput extends Lis
21
20
  */
22
21
  export interface ListOrganizationRecommendationResourcesCommandOutput extends ListOrganizationRecommendationResourcesResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListOrganizationRecommendationResourcesCommand_base: {
24
+ new (input: ListOrganizationRecommendationResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListOrganizationRecommendationResourcesCommandInput, ListOrganizationRecommendationResourcesCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>List Resources of a Recommendation within an Organization. This API only supports prioritized
@@ -88,23 +91,5 @@ export interface ListOrganizationRecommendationResourcesCommandOutput extends Li
88
91
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
89
92
  *
90
93
  */
91
- export declare class ListOrganizationRecommendationResourcesCommand extends $Command<ListOrganizationRecommendationResourcesCommandInput, ListOrganizationRecommendationResourcesCommandOutput, TrustedAdvisorClientResolvedConfig> {
92
- readonly input: ListOrganizationRecommendationResourcesCommandInput;
93
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
94
- /**
95
- * @public
96
- */
97
- constructor(input: ListOrganizationRecommendationResourcesCommandInput);
98
- /**
99
- * @internal
100
- */
101
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrganizationRecommendationResourcesCommandInput, ListOrganizationRecommendationResourcesCommandOutput>;
102
- /**
103
- * @internal
104
- */
105
- private serialize;
106
- /**
107
- * @internal
108
- */
109
- private deserialize;
94
+ export declare class ListOrganizationRecommendationResourcesCommand extends ListOrganizationRecommendationResourcesCommand_base {
110
95
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListOrganizationRecommendationsRequest, ListOrganizationRecommendationsResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListOrganizationRecommendationsCommandInput extends ListOrganiz
21
20
  */
22
21
  export interface ListOrganizationRecommendationsCommandOutput extends ListOrganizationRecommendationsResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListOrganizationRecommendationsCommand_base: {
24
+ new (input: ListOrganizationRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListOrganizationRecommendationsCommandInput, ListOrganizationRecommendationsCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>List a filterable set of Recommendations within an Organization. This API only supports prioritized
@@ -105,23 +108,5 @@ export interface ListOrganizationRecommendationsCommandOutput extends ListOrgani
105
108
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
106
109
  *
107
110
  */
108
- export declare class ListOrganizationRecommendationsCommand extends $Command<ListOrganizationRecommendationsCommandInput, ListOrganizationRecommendationsCommandOutput, TrustedAdvisorClientResolvedConfig> {
109
- readonly input: ListOrganizationRecommendationsCommandInput;
110
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
111
- /**
112
- * @public
113
- */
114
- constructor(input: ListOrganizationRecommendationsCommandInput);
115
- /**
116
- * @internal
117
- */
118
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrganizationRecommendationsCommandInput, ListOrganizationRecommendationsCommandOutput>;
119
- /**
120
- * @internal
121
- */
122
- private serialize;
123
- /**
124
- * @internal
125
- */
126
- private deserialize;
111
+ export declare class ListOrganizationRecommendationsCommand extends ListOrganizationRecommendationsCommand_base {
127
112
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListRecommendationResourcesRequest, ListRecommendationResourcesResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListRecommendationResourcesCommandInput extends ListRecommendat
21
20
  */
22
21
  export interface ListRecommendationResourcesCommandOutput extends ListRecommendationResourcesResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListRecommendationResourcesCommand_base: {
24
+ new (input: ListRecommendationResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListRecommendationResourcesCommandInput, ListRecommendationResourcesCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>List Resources of a Recommendation</p>
@@ -84,23 +87,5 @@ export interface ListRecommendationResourcesCommandOutput extends ListRecommenda
84
87
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
85
88
  *
86
89
  */
87
- export declare class ListRecommendationResourcesCommand extends $Command<ListRecommendationResourcesCommandInput, ListRecommendationResourcesCommandOutput, TrustedAdvisorClientResolvedConfig> {
88
- readonly input: ListRecommendationResourcesCommandInput;
89
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
90
- /**
91
- * @public
92
- */
93
- constructor(input: ListRecommendationResourcesCommandInput);
94
- /**
95
- * @internal
96
- */
97
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecommendationResourcesCommandInput, ListRecommendationResourcesCommandOutput>;
98
- /**
99
- * @internal
100
- */
101
- private serialize;
102
- /**
103
- * @internal
104
- */
105
- private deserialize;
90
+ export declare class ListRecommendationResourcesCommand extends ListRecommendationResourcesCommand_base {
106
91
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListRecommendationsCommandInput extends ListRecommendationsRequ
21
20
  */
22
21
  export interface ListRecommendationsCommandOutput extends ListRecommendationsResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListRecommendationsCommand_base: {
24
+ new (input: ListRecommendationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>List a filterable set of Recommendations</p>
@@ -103,23 +106,5 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
103
106
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
104
107
  *
105
108
  */
106
- export declare class ListRecommendationsCommand extends $Command<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, TrustedAdvisorClientResolvedConfig> {
107
- readonly input: ListRecommendationsCommandInput;
108
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
109
- /**
110
- * @public
111
- */
112
- constructor(input: ListRecommendationsCommandInput);
113
- /**
114
- * @internal
115
- */
116
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecommendationsCommandInput, ListRecommendationsCommandOutput>;
117
- /**
118
- * @internal
119
- */
120
- private serialize;
121
- /**
122
- * @internal
123
- */
124
- private deserialize;
109
+ export declare class ListRecommendationsCommand extends ListRecommendationsCommand_base {
125
110
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UpdateOrganizationRecommendationLifecycleRequest } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateOrganizationRecommendationLifecycleCommandInput extends U
21
20
  */
22
21
  export interface UpdateOrganizationRecommendationLifecycleCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const UpdateOrganizationRecommendationLifecycleCommand_base: {
24
+ new (input: UpdateOrganizationRecommendationLifecycleCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateOrganizationRecommendationLifecycleCommandInput, UpdateOrganizationRecommendationLifecycleCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Update the lifecyle of a Recommendation within an Organization. This API only supports prioritized
@@ -72,23 +75,5 @@ export interface UpdateOrganizationRecommendationLifecycleCommandOutput extends
72
75
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
73
76
  *
74
77
  */
75
- export declare class UpdateOrganizationRecommendationLifecycleCommand extends $Command<UpdateOrganizationRecommendationLifecycleCommandInput, UpdateOrganizationRecommendationLifecycleCommandOutput, TrustedAdvisorClientResolvedConfig> {
76
- readonly input: UpdateOrganizationRecommendationLifecycleCommandInput;
77
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
- /**
79
- * @public
80
- */
81
- constructor(input: UpdateOrganizationRecommendationLifecycleCommandInput);
82
- /**
83
- * @internal
84
- */
85
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateOrganizationRecommendationLifecycleCommandInput, UpdateOrganizationRecommendationLifecycleCommandOutput>;
86
- /**
87
- * @internal
88
- */
89
- private serialize;
90
- /**
91
- * @internal
92
- */
93
- private deserialize;
78
+ export declare class UpdateOrganizationRecommendationLifecycleCommand extends UpdateOrganizationRecommendationLifecycleCommand_base {
94
79
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UpdateRecommendationLifecycleRequest } from "../models/models_0";
5
4
  import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateRecommendationLifecycleCommandInput extends UpdateRecomme
21
20
  */
22
21
  export interface UpdateRecommendationLifecycleCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const UpdateRecommendationLifecycleCommand_base: {
24
+ new (input: UpdateRecommendationLifecycleCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRecommendationLifecycleCommandInput, UpdateRecommendationLifecycleCommandOutput, TrustedAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Update the lifecyle of a Recommendation. This API only supports prioritized recommendations.</p>
@@ -70,23 +73,5 @@ export interface UpdateRecommendationLifecycleCommandOutput extends __MetadataBe
70
73
  * <p>Base exception class for all service exceptions from TrustedAdvisor service.</p>
71
74
  *
72
75
  */
73
- export declare class UpdateRecommendationLifecycleCommand extends $Command<UpdateRecommendationLifecycleCommandInput, UpdateRecommendationLifecycleCommandOutput, TrustedAdvisorClientResolvedConfig> {
74
- readonly input: UpdateRecommendationLifecycleCommandInput;
75
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
- /**
77
- * @public
78
- */
79
- constructor(input: UpdateRecommendationLifecycleCommandInput);
80
- /**
81
- * @internal
82
- */
83
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TrustedAdvisorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRecommendationLifecycleCommandInput, UpdateRecommendationLifecycleCommandOutput>;
84
- /**
85
- * @internal
86
- */
87
- private serialize;
88
- /**
89
- * @internal
90
- */
91
- private deserialize;
76
+ export declare class UpdateRecommendationLifecycleCommand extends UpdateRecommendationLifecycleCommand_base {
92
77
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;