@aws-sdk/client-trustedadvisor 3.454.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 (143) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +285 -0
  3. package/dist-cjs/TrustedAdvisor.js +31 -0
  4. package/dist-cjs/TrustedAdvisorClient.js +43 -0
  5. package/dist-cjs/commands/GetOrganizationRecommendationCommand.js +52 -0
  6. package/dist-cjs/commands/GetRecommendationCommand.js +52 -0
  7. package/dist-cjs/commands/ListChecksCommand.js +51 -0
  8. package/dist-cjs/commands/ListOrganizationRecommendationAccountsCommand.js +52 -0
  9. package/dist-cjs/commands/ListOrganizationRecommendationResourcesCommand.js +51 -0
  10. package/dist-cjs/commands/ListOrganizationRecommendationsCommand.js +51 -0
  11. package/dist-cjs/commands/ListRecommendationResourcesCommand.js +51 -0
  12. package/dist-cjs/commands/ListRecommendationsCommand.js +51 -0
  13. package/dist-cjs/commands/UpdateOrganizationRecommendationLifecycleCommand.js +52 -0
  14. package/dist-cjs/commands/UpdateRecommendationLifecycleCommand.js +52 -0
  15. package/dist-cjs/commands/index.js +13 -0
  16. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  17. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  18. package/dist-cjs/endpoint/ruleset.js +7 -0
  19. package/dist-cjs/extensionConfiguration.js +2 -0
  20. package/dist-cjs/index.js +12 -0
  21. package/dist-cjs/models/TrustedAdvisorServiceException.js +12 -0
  22. package/dist-cjs/models/index.js +4 -0
  23. package/dist-cjs/models/models_0.js +202 -0
  24. package/dist-cjs/pagination/Interfaces.js +2 -0
  25. package/dist-cjs/pagination/ListChecksPaginator.js +29 -0
  26. package/dist-cjs/pagination/ListOrganizationRecommendationAccountsPaginator.js +29 -0
  27. package/dist-cjs/pagination/ListOrganizationRecommendationResourcesPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListOrganizationRecommendationsPaginator.js +29 -0
  29. package/dist-cjs/pagination/ListRecommendationResourcesPaginator.js +29 -0
  30. package/dist-cjs/pagination/ListRecommendationsPaginator.js +29 -0
  31. package/dist-cjs/pagination/index.js +10 -0
  32. package/dist-cjs/protocols/Aws_restJson1.js +1023 -0
  33. package/dist-cjs/runtimeConfig.browser.js +39 -0
  34. package/dist-cjs/runtimeConfig.js +50 -0
  35. package/dist-cjs/runtimeConfig.native.js +15 -0
  36. package/dist-cjs/runtimeConfig.shared.js +24 -0
  37. package/dist-cjs/runtimeExtensions.js +22 -0
  38. package/dist-es/TrustedAdvisor.js +27 -0
  39. package/dist-es/TrustedAdvisorClient.js +39 -0
  40. package/dist-es/commands/GetOrganizationRecommendationCommand.js +48 -0
  41. package/dist-es/commands/GetRecommendationCommand.js +48 -0
  42. package/dist-es/commands/ListChecksCommand.js +47 -0
  43. package/dist-es/commands/ListOrganizationRecommendationAccountsCommand.js +48 -0
  44. package/dist-es/commands/ListOrganizationRecommendationResourcesCommand.js +47 -0
  45. package/dist-es/commands/ListOrganizationRecommendationsCommand.js +47 -0
  46. package/dist-es/commands/ListRecommendationResourcesCommand.js +47 -0
  47. package/dist-es/commands/ListRecommendationsCommand.js +47 -0
  48. package/dist-es/commands/UpdateOrganizationRecommendationLifecycleCommand.js +48 -0
  49. package/dist-es/commands/UpdateRecommendationLifecycleCommand.js +48 -0
  50. package/dist-es/commands/index.js +10 -0
  51. package/dist-es/endpoint/EndpointParameters.js +8 -0
  52. package/dist-es/endpoint/endpointResolver.js +8 -0
  53. package/dist-es/endpoint/ruleset.js +4 -0
  54. package/dist-es/extensionConfiguration.js +1 -0
  55. package/dist-es/index.js +7 -0
  56. package/dist-es/models/TrustedAdvisorServiceException.js +8 -0
  57. package/dist-es/models/index.js +1 -0
  58. package/dist-es/models/models_0.js +185 -0
  59. package/dist-es/pagination/Interfaces.js +1 -0
  60. package/dist-es/pagination/ListChecksPaginator.js +25 -0
  61. package/dist-es/pagination/ListOrganizationRecommendationAccountsPaginator.js +25 -0
  62. package/dist-es/pagination/ListOrganizationRecommendationResourcesPaginator.js +25 -0
  63. package/dist-es/pagination/ListOrganizationRecommendationsPaginator.js +25 -0
  64. package/dist-es/pagination/ListRecommendationResourcesPaginator.js +25 -0
  65. package/dist-es/pagination/ListRecommendationsPaginator.js +25 -0
  66. package/dist-es/pagination/index.js +7 -0
  67. package/dist-es/protocols/Aws_restJson1.js +1000 -0
  68. package/dist-es/runtimeConfig.browser.js +34 -0
  69. package/dist-es/runtimeConfig.js +45 -0
  70. package/dist-es/runtimeConfig.native.js +11 -0
  71. package/dist-es/runtimeConfig.shared.js +20 -0
  72. package/dist-es/runtimeExtensions.js +18 -0
  73. package/dist-types/TrustedAdvisor.d.ts +80 -0
  74. package/dist-types/TrustedAdvisorClient.d.ts +179 -0
  75. package/dist-types/commands/GetOrganizationRecommendationCommand.d.ts +125 -0
  76. package/dist-types/commands/GetRecommendationCommand.d.ts +123 -0
  77. package/dist-types/commands/ListChecksCommand.d.ts +108 -0
  78. package/dist-types/commands/ListOrganizationRecommendationAccountsCommand.d.ts +105 -0
  79. package/dist-types/commands/ListOrganizationRecommendationResourcesCommand.d.ts +110 -0
  80. package/dist-types/commands/ListOrganizationRecommendationsCommand.d.ts +127 -0
  81. package/dist-types/commands/ListRecommendationResourcesCommand.d.ts +106 -0
  82. package/dist-types/commands/ListRecommendationsCommand.d.ts +125 -0
  83. package/dist-types/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +94 -0
  84. package/dist-types/commands/UpdateRecommendationLifecycleCommand.d.ts +92 -0
  85. package/dist-types/commands/index.d.ts +10 -0
  86. package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
  87. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  88. package/dist-types/endpoint/ruleset.d.ts +2 -0
  89. package/dist-types/extensionConfiguration.d.ts +8 -0
  90. package/dist-types/index.d.ts +15 -0
  91. package/dist-types/models/TrustedAdvisorServiceException.d.ts +13 -0
  92. package/dist-types/models/index.d.ts +1 -0
  93. package/dist-types/models/models_0.d.ts +1322 -0
  94. package/dist-types/pagination/Interfaces.d.ts +8 -0
  95. package/dist-types/pagination/ListChecksPaginator.d.ts +7 -0
  96. package/dist-types/pagination/ListOrganizationRecommendationAccountsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListOrganizationRecommendationResourcesPaginator.d.ts +7 -0
  98. package/dist-types/pagination/ListOrganizationRecommendationsPaginator.d.ts +7 -0
  99. package/dist-types/pagination/ListRecommendationResourcesPaginator.d.ts +7 -0
  100. package/dist-types/pagination/ListRecommendationsPaginator.d.ts +7 -0
  101. package/dist-types/pagination/index.d.ts +7 -0
  102. package/dist-types/protocols/Aws_restJson1.d.ts +92 -0
  103. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  104. package/dist-types/runtimeConfig.d.ts +46 -0
  105. package/dist-types/runtimeConfig.native.d.ts +45 -0
  106. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  107. package/dist-types/runtimeExtensions.d.ts +17 -0
  108. package/dist-types/ts3.4/TrustedAdvisor.d.ts +195 -0
  109. package/dist-types/ts3.4/TrustedAdvisorClient.d.ts +179 -0
  110. package/dist-types/ts3.4/commands/GetOrganizationRecommendationCommand.d.ts +42 -0
  111. package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +39 -0
  112. package/dist-types/ts3.4/commands/ListChecksCommand.d.ts +35 -0
  113. package/dist-types/ts3.4/commands/ListOrganizationRecommendationAccountsCommand.d.ts +42 -0
  114. package/dist-types/ts3.4/commands/ListOrganizationRecommendationResourcesCommand.d.ts +42 -0
  115. package/dist-types/ts3.4/commands/ListOrganizationRecommendationsCommand.d.ts +42 -0
  116. package/dist-types/ts3.4/commands/ListRecommendationResourcesCommand.d.ts +42 -0
  117. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +39 -0
  118. package/dist-types/ts3.4/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +38 -0
  119. package/dist-types/ts3.4/commands/UpdateRecommendationLifecycleCommand.d.ts +38 -0
  120. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  121. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  122. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  123. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  124. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  125. package/dist-types/ts3.4/index.d.ts +10 -0
  126. package/dist-types/ts3.4/models/TrustedAdvisorServiceException.d.ts +8 -0
  127. package/dist-types/ts3.4/models/index.d.ts +1 -0
  128. package/dist-types/ts3.4/models/models_0.d.ts +397 -0
  129. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  130. package/dist-types/ts3.4/pagination/ListChecksPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListOrganizationRecommendationAccountsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/ListOrganizationRecommendationResourcesPaginator.d.ts +11 -0
  133. package/dist-types/ts3.4/pagination/ListOrganizationRecommendationsPaginator.d.ts +11 -0
  134. package/dist-types/ts3.4/pagination/ListRecommendationResourcesPaginator.d.ts +11 -0
  135. package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
  136. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  137. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -0
  138. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  139. package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  140. package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  141. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  142. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  143. package/package.json +102 -0
@@ -0,0 +1,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { TrustedAdvisorClient } from "../TrustedAdvisorClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface TrustedAdvisorPaginationConfiguration extends PaginationConfiguration {
7
+ client: TrustedAdvisorClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListChecksCommandInput, ListChecksCommandOutput } from "../commands/ListChecksCommand";
3
+ import { TrustedAdvisorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListChecks(config: TrustedAdvisorPaginationConfiguration, input: ListChecksCommandInput, ...additionalArguments: any): Paginator<ListChecksCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListOrganizationRecommendationAccountsCommandInput, ListOrganizationRecommendationAccountsCommandOutput } from "../commands/ListOrganizationRecommendationAccountsCommand";
3
+ import { TrustedAdvisorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListOrganizationRecommendationAccounts(config: TrustedAdvisorPaginationConfiguration, input: ListOrganizationRecommendationAccountsCommandInput, ...additionalArguments: any): Paginator<ListOrganizationRecommendationAccountsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListOrganizationRecommendationResourcesCommandInput, ListOrganizationRecommendationResourcesCommandOutput } from "../commands/ListOrganizationRecommendationResourcesCommand";
3
+ import { TrustedAdvisorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListOrganizationRecommendationResources(config: TrustedAdvisorPaginationConfiguration, input: ListOrganizationRecommendationResourcesCommandInput, ...additionalArguments: any): Paginator<ListOrganizationRecommendationResourcesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListOrganizationRecommendationsCommandInput, ListOrganizationRecommendationsCommandOutput } from "../commands/ListOrganizationRecommendationsCommand";
3
+ import { TrustedAdvisorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListOrganizationRecommendations(config: TrustedAdvisorPaginationConfiguration, input: ListOrganizationRecommendationsCommandInput, ...additionalArguments: any): Paginator<ListOrganizationRecommendationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListRecommendationResourcesCommandInput, ListRecommendationResourcesCommandOutput } from "../commands/ListRecommendationResourcesCommand";
3
+ import { TrustedAdvisorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListRecommendationResources(config: TrustedAdvisorPaginationConfiguration, input: ListRecommendationResourcesCommandInput, ...additionalArguments: any): Paginator<ListRecommendationResourcesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "../commands/ListRecommendationsCommand";
3
+ import { TrustedAdvisorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListRecommendations(config: TrustedAdvisorPaginationConfiguration, input: ListRecommendationsCommandInput, ...additionalArguments: any): Paginator<ListRecommendationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListChecksPaginator";
3
+ export * from "./ListOrganizationRecommendationAccountsPaginator";
4
+ export * from "./ListOrganizationRecommendationResourcesPaginator";
5
+ export * from "./ListOrganizationRecommendationsPaginator";
6
+ export * from "./ListRecommendationResourcesPaginator";
7
+ export * from "./ListRecommendationsPaginator";
@@ -0,0 +1,92 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { GetOrganizationRecommendationCommandInput, GetOrganizationRecommendationCommandOutput } from "../commands/GetOrganizationRecommendationCommand";
4
+ import { GetRecommendationCommandInput, GetRecommendationCommandOutput } from "../commands/GetRecommendationCommand";
5
+ import { ListChecksCommandInput, ListChecksCommandOutput } from "../commands/ListChecksCommand";
6
+ import { ListOrganizationRecommendationAccountsCommandInput, ListOrganizationRecommendationAccountsCommandOutput } from "../commands/ListOrganizationRecommendationAccountsCommand";
7
+ import { ListOrganizationRecommendationResourcesCommandInput, ListOrganizationRecommendationResourcesCommandOutput } from "../commands/ListOrganizationRecommendationResourcesCommand";
8
+ import { ListOrganizationRecommendationsCommandInput, ListOrganizationRecommendationsCommandOutput } from "../commands/ListOrganizationRecommendationsCommand";
9
+ import { ListRecommendationResourcesCommandInput, ListRecommendationResourcesCommandOutput } from "../commands/ListRecommendationResourcesCommand";
10
+ import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "../commands/ListRecommendationsCommand";
11
+ import { UpdateOrganizationRecommendationLifecycleCommandInput, UpdateOrganizationRecommendationLifecycleCommandOutput } from "../commands/UpdateOrganizationRecommendationLifecycleCommand";
12
+ import { UpdateRecommendationLifecycleCommandInput, UpdateRecommendationLifecycleCommandOutput } from "../commands/UpdateRecommendationLifecycleCommand";
13
+ /**
14
+ * serializeAws_restJson1GetOrganizationRecommendationCommand
15
+ */
16
+ export declare const se_GetOrganizationRecommendationCommand: (input: GetOrganizationRecommendationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ /**
18
+ * serializeAws_restJson1GetRecommendationCommand
19
+ */
20
+ export declare const se_GetRecommendationCommand: (input: GetRecommendationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ /**
22
+ * serializeAws_restJson1ListChecksCommand
23
+ */
24
+ export declare const se_ListChecksCommand: (input: ListChecksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ /**
26
+ * serializeAws_restJson1ListOrganizationRecommendationAccountsCommand
27
+ */
28
+ export declare const se_ListOrganizationRecommendationAccountsCommand: (input: ListOrganizationRecommendationAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ /**
30
+ * serializeAws_restJson1ListOrganizationRecommendationResourcesCommand
31
+ */
32
+ export declare const se_ListOrganizationRecommendationResourcesCommand: (input: ListOrganizationRecommendationResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ /**
34
+ * serializeAws_restJson1ListOrganizationRecommendationsCommand
35
+ */
36
+ export declare const se_ListOrganizationRecommendationsCommand: (input: ListOrganizationRecommendationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ /**
38
+ * serializeAws_restJson1ListRecommendationResourcesCommand
39
+ */
40
+ export declare const se_ListRecommendationResourcesCommand: (input: ListRecommendationResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ /**
42
+ * serializeAws_restJson1ListRecommendationsCommand
43
+ */
44
+ export declare const se_ListRecommendationsCommand: (input: ListRecommendationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
+ /**
46
+ * serializeAws_restJson1UpdateOrganizationRecommendationLifecycleCommand
47
+ */
48
+ export declare const se_UpdateOrganizationRecommendationLifecycleCommand: (input: UpdateOrganizationRecommendationLifecycleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
+ /**
50
+ * serializeAws_restJson1UpdateRecommendationLifecycleCommand
51
+ */
52
+ export declare const se_UpdateRecommendationLifecycleCommand: (input: UpdateRecommendationLifecycleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ /**
54
+ * deserializeAws_restJson1GetOrganizationRecommendationCommand
55
+ */
56
+ export declare const de_GetOrganizationRecommendationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrganizationRecommendationCommandOutput>;
57
+ /**
58
+ * deserializeAws_restJson1GetRecommendationCommand
59
+ */
60
+ export declare const de_GetRecommendationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRecommendationCommandOutput>;
61
+ /**
62
+ * deserializeAws_restJson1ListChecksCommand
63
+ */
64
+ export declare const de_ListChecksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChecksCommandOutput>;
65
+ /**
66
+ * deserializeAws_restJson1ListOrganizationRecommendationAccountsCommand
67
+ */
68
+ export declare const de_ListOrganizationRecommendationAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrganizationRecommendationAccountsCommandOutput>;
69
+ /**
70
+ * deserializeAws_restJson1ListOrganizationRecommendationResourcesCommand
71
+ */
72
+ export declare const de_ListOrganizationRecommendationResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrganizationRecommendationResourcesCommandOutput>;
73
+ /**
74
+ * deserializeAws_restJson1ListOrganizationRecommendationsCommand
75
+ */
76
+ export declare const de_ListOrganizationRecommendationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrganizationRecommendationsCommandOutput>;
77
+ /**
78
+ * deserializeAws_restJson1ListRecommendationResourcesCommand
79
+ */
80
+ export declare const de_ListRecommendationResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRecommendationResourcesCommandOutput>;
81
+ /**
82
+ * deserializeAws_restJson1ListRecommendationsCommand
83
+ */
84
+ export declare const de_ListRecommendationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRecommendationsCommandOutput>;
85
+ /**
86
+ * deserializeAws_restJson1UpdateOrganizationRecommendationLifecycleCommand
87
+ */
88
+ export declare const de_UpdateOrganizationRecommendationLifecycleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOrganizationRecommendationLifecycleCommandOutput>;
89
+ /**
90
+ * deserializeAws_restJson1UpdateRecommendationLifecycleCommand
91
+ */
92
+ export declare const de_UpdateRecommendationLifecycleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRecommendationLifecycleCommandOutput>;
@@ -0,0 +1,46 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: TrustedAdvisorClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
18
+ retryMode: string | import("@smithy/types").Provider<string>;
19
+ sha256: import("@smithy/types").HashConstructor;
20
+ streamCollector: import("@smithy/types").StreamCollector;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ apiVersion: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: import("@smithy/types").Encoder;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: import("@smithy/types").Encoder;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ };
@@ -0,0 +1,46 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: TrustedAdvisorClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
18
+ retryMode: string | import("@smithy/types").Provider<string>;
19
+ sha256: import("@smithy/types").HashConstructor;
20
+ streamCollector: import("@smithy/types").StreamCollector;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ apiVersion: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: import("@smithy/types").Encoder;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: import("@smithy/types").Encoder;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ };
@@ -0,0 +1,45 @@
1
+ import { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: TrustedAdvisorClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
9
+ updateHttpClientConfig(key: never, value: never): void;
10
+ httpHandlerConfigs(): {};
11
+ }) | import("@smithy/fetch-http-handler").FetchHttpHandler;
12
+ apiVersion: string;
13
+ urlParser: import("@smithy/types").UrlParser;
14
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
+ streamCollector: import("@smithy/types").StreamCollector;
16
+ base64Decoder: import("@smithy/types").Decoder;
17
+ base64Encoder: import("@smithy/types").Encoder;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: import("@smithy/types").Encoder;
20
+ disableHostPrefix: boolean;
21
+ serviceId: string;
22
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ region: string | import("@smithy/types").Provider<any>;
25
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
26
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
27
+ maxAttempts: number | import("@smithy/types").Provider<number>;
28
+ retryMode: string | import("@smithy/types").Provider<string>;
29
+ logger: import("@smithy/types").Logger;
30
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
31
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
+ endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
33
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
34
+ logger?: import("@smithy/types").Logger | undefined;
35
+ }) => import("@smithy/types").EndpointV2;
36
+ tls?: boolean | undefined;
37
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
38
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
39
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
40
+ signingEscapePath?: boolean | undefined;
41
+ systemClockOffset?: number | undefined;
42
+ signingRegion?: string | undefined;
43
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
44
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
45
+ };
@@ -0,0 +1,19 @@
1
+ import { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: TrustedAdvisorClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: import("@smithy/types").Encoder;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ logger: import("@smithy/types").Logger;
15
+ serviceId: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ utf8Decoder: import("@smithy/types").Decoder;
18
+ utf8Encoder: import("@smithy/types").Encoder;
19
+ };
@@ -0,0 +1,17 @@
1
+ import { TrustedAdvisorExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: TrustedAdvisorExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,195 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ GetOrganizationRecommendationCommandInput,
4
+ GetOrganizationRecommendationCommandOutput,
5
+ } from "./commands/GetOrganizationRecommendationCommand";
6
+ import {
7
+ GetRecommendationCommandInput,
8
+ GetRecommendationCommandOutput,
9
+ } from "./commands/GetRecommendationCommand";
10
+ import {
11
+ ListChecksCommandInput,
12
+ ListChecksCommandOutput,
13
+ } from "./commands/ListChecksCommand";
14
+ import {
15
+ ListOrganizationRecommendationAccountsCommandInput,
16
+ ListOrganizationRecommendationAccountsCommandOutput,
17
+ } from "./commands/ListOrganizationRecommendationAccountsCommand";
18
+ import {
19
+ ListOrganizationRecommendationResourcesCommandInput,
20
+ ListOrganizationRecommendationResourcesCommandOutput,
21
+ } from "./commands/ListOrganizationRecommendationResourcesCommand";
22
+ import {
23
+ ListOrganizationRecommendationsCommandInput,
24
+ ListOrganizationRecommendationsCommandOutput,
25
+ } from "./commands/ListOrganizationRecommendationsCommand";
26
+ import {
27
+ ListRecommendationResourcesCommandInput,
28
+ ListRecommendationResourcesCommandOutput,
29
+ } from "./commands/ListRecommendationResourcesCommand";
30
+ import {
31
+ ListRecommendationsCommandInput,
32
+ ListRecommendationsCommandOutput,
33
+ } from "./commands/ListRecommendationsCommand";
34
+ import {
35
+ UpdateOrganizationRecommendationLifecycleCommandInput,
36
+ UpdateOrganizationRecommendationLifecycleCommandOutput,
37
+ } from "./commands/UpdateOrganizationRecommendationLifecycleCommand";
38
+ import {
39
+ UpdateRecommendationLifecycleCommandInput,
40
+ UpdateRecommendationLifecycleCommandOutput,
41
+ } from "./commands/UpdateRecommendationLifecycleCommand";
42
+ import { TrustedAdvisorClient } from "./TrustedAdvisorClient";
43
+ export interface TrustedAdvisor {
44
+ getOrganizationRecommendation(
45
+ args: GetOrganizationRecommendationCommandInput,
46
+ options?: __HttpHandlerOptions
47
+ ): Promise<GetOrganizationRecommendationCommandOutput>;
48
+ getOrganizationRecommendation(
49
+ args: GetOrganizationRecommendationCommandInput,
50
+ cb: (err: any, data?: GetOrganizationRecommendationCommandOutput) => void
51
+ ): void;
52
+ getOrganizationRecommendation(
53
+ args: GetOrganizationRecommendationCommandInput,
54
+ options: __HttpHandlerOptions,
55
+ cb: (err: any, data?: GetOrganizationRecommendationCommandOutput) => void
56
+ ): void;
57
+ getRecommendation(
58
+ args: GetRecommendationCommandInput,
59
+ options?: __HttpHandlerOptions
60
+ ): Promise<GetRecommendationCommandOutput>;
61
+ getRecommendation(
62
+ args: GetRecommendationCommandInput,
63
+ cb: (err: any, data?: GetRecommendationCommandOutput) => void
64
+ ): void;
65
+ getRecommendation(
66
+ args: GetRecommendationCommandInput,
67
+ options: __HttpHandlerOptions,
68
+ cb: (err: any, data?: GetRecommendationCommandOutput) => void
69
+ ): void;
70
+ listChecks(
71
+ args: ListChecksCommandInput,
72
+ options?: __HttpHandlerOptions
73
+ ): Promise<ListChecksCommandOutput>;
74
+ listChecks(
75
+ args: ListChecksCommandInput,
76
+ cb: (err: any, data?: ListChecksCommandOutput) => void
77
+ ): void;
78
+ listChecks(
79
+ args: ListChecksCommandInput,
80
+ options: __HttpHandlerOptions,
81
+ cb: (err: any, data?: ListChecksCommandOutput) => void
82
+ ): void;
83
+ listOrganizationRecommendationAccounts(
84
+ args: ListOrganizationRecommendationAccountsCommandInput,
85
+ options?: __HttpHandlerOptions
86
+ ): Promise<ListOrganizationRecommendationAccountsCommandOutput>;
87
+ listOrganizationRecommendationAccounts(
88
+ args: ListOrganizationRecommendationAccountsCommandInput,
89
+ cb: (
90
+ err: any,
91
+ data?: ListOrganizationRecommendationAccountsCommandOutput
92
+ ) => void
93
+ ): void;
94
+ listOrganizationRecommendationAccounts(
95
+ args: ListOrganizationRecommendationAccountsCommandInput,
96
+ options: __HttpHandlerOptions,
97
+ cb: (
98
+ err: any,
99
+ data?: ListOrganizationRecommendationAccountsCommandOutput
100
+ ) => void
101
+ ): void;
102
+ listOrganizationRecommendationResources(
103
+ args: ListOrganizationRecommendationResourcesCommandInput,
104
+ options?: __HttpHandlerOptions
105
+ ): Promise<ListOrganizationRecommendationResourcesCommandOutput>;
106
+ listOrganizationRecommendationResources(
107
+ args: ListOrganizationRecommendationResourcesCommandInput,
108
+ cb: (
109
+ err: any,
110
+ data?: ListOrganizationRecommendationResourcesCommandOutput
111
+ ) => void
112
+ ): void;
113
+ listOrganizationRecommendationResources(
114
+ args: ListOrganizationRecommendationResourcesCommandInput,
115
+ options: __HttpHandlerOptions,
116
+ cb: (
117
+ err: any,
118
+ data?: ListOrganizationRecommendationResourcesCommandOutput
119
+ ) => void
120
+ ): void;
121
+ listOrganizationRecommendations(
122
+ args: ListOrganizationRecommendationsCommandInput,
123
+ options?: __HttpHandlerOptions
124
+ ): Promise<ListOrganizationRecommendationsCommandOutput>;
125
+ listOrganizationRecommendations(
126
+ args: ListOrganizationRecommendationsCommandInput,
127
+ cb: (err: any, data?: ListOrganizationRecommendationsCommandOutput) => void
128
+ ): void;
129
+ listOrganizationRecommendations(
130
+ args: ListOrganizationRecommendationsCommandInput,
131
+ options: __HttpHandlerOptions,
132
+ cb: (err: any, data?: ListOrganizationRecommendationsCommandOutput) => void
133
+ ): void;
134
+ listRecommendationResources(
135
+ args: ListRecommendationResourcesCommandInput,
136
+ options?: __HttpHandlerOptions
137
+ ): Promise<ListRecommendationResourcesCommandOutput>;
138
+ listRecommendationResources(
139
+ args: ListRecommendationResourcesCommandInput,
140
+ cb: (err: any, data?: ListRecommendationResourcesCommandOutput) => void
141
+ ): void;
142
+ listRecommendationResources(
143
+ args: ListRecommendationResourcesCommandInput,
144
+ options: __HttpHandlerOptions,
145
+ cb: (err: any, data?: ListRecommendationResourcesCommandOutput) => void
146
+ ): void;
147
+ listRecommendations(
148
+ args: ListRecommendationsCommandInput,
149
+ options?: __HttpHandlerOptions
150
+ ): Promise<ListRecommendationsCommandOutput>;
151
+ listRecommendations(
152
+ args: ListRecommendationsCommandInput,
153
+ cb: (err: any, data?: ListRecommendationsCommandOutput) => void
154
+ ): void;
155
+ listRecommendations(
156
+ args: ListRecommendationsCommandInput,
157
+ options: __HttpHandlerOptions,
158
+ cb: (err: any, data?: ListRecommendationsCommandOutput) => void
159
+ ): void;
160
+ updateOrganizationRecommendationLifecycle(
161
+ args: UpdateOrganizationRecommendationLifecycleCommandInput,
162
+ options?: __HttpHandlerOptions
163
+ ): Promise<UpdateOrganizationRecommendationLifecycleCommandOutput>;
164
+ updateOrganizationRecommendationLifecycle(
165
+ args: UpdateOrganizationRecommendationLifecycleCommandInput,
166
+ cb: (
167
+ err: any,
168
+ data?: UpdateOrganizationRecommendationLifecycleCommandOutput
169
+ ) => void
170
+ ): void;
171
+ updateOrganizationRecommendationLifecycle(
172
+ args: UpdateOrganizationRecommendationLifecycleCommandInput,
173
+ options: __HttpHandlerOptions,
174
+ cb: (
175
+ err: any,
176
+ data?: UpdateOrganizationRecommendationLifecycleCommandOutput
177
+ ) => void
178
+ ): void;
179
+ updateRecommendationLifecycle(
180
+ args: UpdateRecommendationLifecycleCommandInput,
181
+ options?: __HttpHandlerOptions
182
+ ): Promise<UpdateRecommendationLifecycleCommandOutput>;
183
+ updateRecommendationLifecycle(
184
+ args: UpdateRecommendationLifecycleCommandInput,
185
+ cb: (err: any, data?: UpdateRecommendationLifecycleCommandOutput) => void
186
+ ): void;
187
+ updateRecommendationLifecycle(
188
+ args: UpdateRecommendationLifecycleCommandInput,
189
+ options: __HttpHandlerOptions,
190
+ cb: (err: any, data?: UpdateRecommendationLifecycleCommandOutput) => void
191
+ ): void;
192
+ }
193
+ export declare class TrustedAdvisor
194
+ extends TrustedAdvisorClient
195
+ implements TrustedAdvisor {}