@aws-sdk/client-trustedadvisor 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/TrustedAdvisor.d.ts +41 -70
- package/dist-types/ts3.4/TrustedAdvisorClient.d.ts +7 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchUpdateRecommendationResourceExclusionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetOrganizationRecommendationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListChecksCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListOrganizationRecommendationAccountsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListOrganizationRecommendationResourcesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListOrganizationRecommendationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListRecommendationResourcesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateRecommendationLifecycleCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -12
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +3 -9
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListChecksPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -15,10 +15,7 @@ import {
|
|
|
15
15
|
GetRecommendationCommandInput,
|
|
16
16
|
GetRecommendationCommandOutput,
|
|
17
17
|
} from "./commands/GetRecommendationCommand";
|
|
18
|
-
import {
|
|
19
|
-
ListChecksCommandInput,
|
|
20
|
-
ListChecksCommandOutput,
|
|
21
|
-
} from "./commands/ListChecksCommand";
|
|
18
|
+
import { ListChecksCommandInput, ListChecksCommandOutput } from "./commands/ListChecksCommand";
|
|
22
19
|
import {
|
|
23
20
|
ListOrganizationRecommendationAccountsCommandInput,
|
|
24
21
|
ListOrganizationRecommendationAccountsCommandOutput,
|
|
@@ -51,217 +48,191 @@ import { TrustedAdvisorClient } from "./TrustedAdvisorClient";
|
|
|
51
48
|
export interface TrustedAdvisor {
|
|
52
49
|
batchUpdateRecommendationResourceExclusion(
|
|
53
50
|
args: BatchUpdateRecommendationResourceExclusionCommandInput,
|
|
54
|
-
options?: __HttpHandlerOptions
|
|
51
|
+
options?: __HttpHandlerOptions,
|
|
55
52
|
): Promise<BatchUpdateRecommendationResourceExclusionCommandOutput>;
|
|
56
53
|
batchUpdateRecommendationResourceExclusion(
|
|
57
54
|
args: BatchUpdateRecommendationResourceExclusionCommandInput,
|
|
58
|
-
cb: (
|
|
59
|
-
err: any,
|
|
60
|
-
data?: BatchUpdateRecommendationResourceExclusionCommandOutput
|
|
61
|
-
) => void
|
|
55
|
+
cb: (err: any, data?: BatchUpdateRecommendationResourceExclusionCommandOutput) => void,
|
|
62
56
|
): void;
|
|
63
57
|
batchUpdateRecommendationResourceExclusion(
|
|
64
58
|
args: BatchUpdateRecommendationResourceExclusionCommandInput,
|
|
65
59
|
options: __HttpHandlerOptions,
|
|
66
|
-
cb: (
|
|
67
|
-
err: any,
|
|
68
|
-
data?: BatchUpdateRecommendationResourceExclusionCommandOutput
|
|
69
|
-
) => void
|
|
60
|
+
cb: (err: any, data?: BatchUpdateRecommendationResourceExclusionCommandOutput) => void,
|
|
70
61
|
): void;
|
|
71
62
|
getOrganizationRecommendation(
|
|
72
63
|
args: GetOrganizationRecommendationCommandInput,
|
|
73
|
-
options?: __HttpHandlerOptions
|
|
64
|
+
options?: __HttpHandlerOptions,
|
|
74
65
|
): Promise<GetOrganizationRecommendationCommandOutput>;
|
|
75
66
|
getOrganizationRecommendation(
|
|
76
67
|
args: GetOrganizationRecommendationCommandInput,
|
|
77
|
-
cb: (err: any, data?: GetOrganizationRecommendationCommandOutput) => void
|
|
68
|
+
cb: (err: any, data?: GetOrganizationRecommendationCommandOutput) => void,
|
|
78
69
|
): void;
|
|
79
70
|
getOrganizationRecommendation(
|
|
80
71
|
args: GetOrganizationRecommendationCommandInput,
|
|
81
72
|
options: __HttpHandlerOptions,
|
|
82
|
-
cb: (err: any, data?: GetOrganizationRecommendationCommandOutput) => void
|
|
73
|
+
cb: (err: any, data?: GetOrganizationRecommendationCommandOutput) => void,
|
|
83
74
|
): void;
|
|
84
75
|
getRecommendation(
|
|
85
76
|
args: GetRecommendationCommandInput,
|
|
86
|
-
options?: __HttpHandlerOptions
|
|
77
|
+
options?: __HttpHandlerOptions,
|
|
87
78
|
): Promise<GetRecommendationCommandOutput>;
|
|
88
79
|
getRecommendation(
|
|
89
80
|
args: GetRecommendationCommandInput,
|
|
90
|
-
cb: (err: any, data?: GetRecommendationCommandOutput) => void
|
|
81
|
+
cb: (err: any, data?: GetRecommendationCommandOutput) => void,
|
|
91
82
|
): void;
|
|
92
83
|
getRecommendation(
|
|
93
84
|
args: GetRecommendationCommandInput,
|
|
94
85
|
options: __HttpHandlerOptions,
|
|
95
|
-
cb: (err: any, data?: GetRecommendationCommandOutput) => void
|
|
86
|
+
cb: (err: any, data?: GetRecommendationCommandOutput) => void,
|
|
96
87
|
): void;
|
|
97
88
|
listChecks(): Promise<ListChecksCommandOutput>;
|
|
98
89
|
listChecks(
|
|
99
90
|
args: ListChecksCommandInput,
|
|
100
|
-
options?: __HttpHandlerOptions
|
|
91
|
+
options?: __HttpHandlerOptions,
|
|
101
92
|
): Promise<ListChecksCommandOutput>;
|
|
102
93
|
listChecks(
|
|
103
94
|
args: ListChecksCommandInput,
|
|
104
|
-
cb: (err: any, data?: ListChecksCommandOutput) => void
|
|
95
|
+
cb: (err: any, data?: ListChecksCommandOutput) => void,
|
|
105
96
|
): void;
|
|
106
97
|
listChecks(
|
|
107
98
|
args: ListChecksCommandInput,
|
|
108
99
|
options: __HttpHandlerOptions,
|
|
109
|
-
cb: (err: any, data?: ListChecksCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: ListChecksCommandOutput) => void,
|
|
110
101
|
): void;
|
|
111
102
|
listOrganizationRecommendationAccounts(
|
|
112
103
|
args: ListOrganizationRecommendationAccountsCommandInput,
|
|
113
|
-
options?: __HttpHandlerOptions
|
|
104
|
+
options?: __HttpHandlerOptions,
|
|
114
105
|
): Promise<ListOrganizationRecommendationAccountsCommandOutput>;
|
|
115
106
|
listOrganizationRecommendationAccounts(
|
|
116
107
|
args: ListOrganizationRecommendationAccountsCommandInput,
|
|
117
|
-
cb: (
|
|
118
|
-
err: any,
|
|
119
|
-
data?: ListOrganizationRecommendationAccountsCommandOutput
|
|
120
|
-
) => void
|
|
108
|
+
cb: (err: any, data?: ListOrganizationRecommendationAccountsCommandOutput) => void,
|
|
121
109
|
): void;
|
|
122
110
|
listOrganizationRecommendationAccounts(
|
|
123
111
|
args: ListOrganizationRecommendationAccountsCommandInput,
|
|
124
112
|
options: __HttpHandlerOptions,
|
|
125
|
-
cb: (
|
|
126
|
-
err: any,
|
|
127
|
-
data?: ListOrganizationRecommendationAccountsCommandOutput
|
|
128
|
-
) => void
|
|
113
|
+
cb: (err: any, data?: ListOrganizationRecommendationAccountsCommandOutput) => void,
|
|
129
114
|
): void;
|
|
130
115
|
listOrganizationRecommendationResources(
|
|
131
116
|
args: ListOrganizationRecommendationResourcesCommandInput,
|
|
132
|
-
options?: __HttpHandlerOptions
|
|
117
|
+
options?: __HttpHandlerOptions,
|
|
133
118
|
): Promise<ListOrganizationRecommendationResourcesCommandOutput>;
|
|
134
119
|
listOrganizationRecommendationResources(
|
|
135
120
|
args: ListOrganizationRecommendationResourcesCommandInput,
|
|
136
|
-
cb: (
|
|
137
|
-
err: any,
|
|
138
|
-
data?: ListOrganizationRecommendationResourcesCommandOutput
|
|
139
|
-
) => void
|
|
121
|
+
cb: (err: any, data?: ListOrganizationRecommendationResourcesCommandOutput) => void,
|
|
140
122
|
): void;
|
|
141
123
|
listOrganizationRecommendationResources(
|
|
142
124
|
args: ListOrganizationRecommendationResourcesCommandInput,
|
|
143
125
|
options: __HttpHandlerOptions,
|
|
144
|
-
cb: (
|
|
145
|
-
err: any,
|
|
146
|
-
data?: ListOrganizationRecommendationResourcesCommandOutput
|
|
147
|
-
) => void
|
|
126
|
+
cb: (err: any, data?: ListOrganizationRecommendationResourcesCommandOutput) => void,
|
|
148
127
|
): void;
|
|
149
128
|
listOrganizationRecommendations(): Promise<ListOrganizationRecommendationsCommandOutput>;
|
|
150
129
|
listOrganizationRecommendations(
|
|
151
130
|
args: ListOrganizationRecommendationsCommandInput,
|
|
152
|
-
options?: __HttpHandlerOptions
|
|
131
|
+
options?: __HttpHandlerOptions,
|
|
153
132
|
): Promise<ListOrganizationRecommendationsCommandOutput>;
|
|
154
133
|
listOrganizationRecommendations(
|
|
155
134
|
args: ListOrganizationRecommendationsCommandInput,
|
|
156
|
-
cb: (err: any, data?: ListOrganizationRecommendationsCommandOutput) => void
|
|
135
|
+
cb: (err: any, data?: ListOrganizationRecommendationsCommandOutput) => void,
|
|
157
136
|
): void;
|
|
158
137
|
listOrganizationRecommendations(
|
|
159
138
|
args: ListOrganizationRecommendationsCommandInput,
|
|
160
139
|
options: __HttpHandlerOptions,
|
|
161
|
-
cb: (err: any, data?: ListOrganizationRecommendationsCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: ListOrganizationRecommendationsCommandOutput) => void,
|
|
162
141
|
): void;
|
|
163
142
|
listRecommendationResources(
|
|
164
143
|
args: ListRecommendationResourcesCommandInput,
|
|
165
|
-
options?: __HttpHandlerOptions
|
|
144
|
+
options?: __HttpHandlerOptions,
|
|
166
145
|
): Promise<ListRecommendationResourcesCommandOutput>;
|
|
167
146
|
listRecommendationResources(
|
|
168
147
|
args: ListRecommendationResourcesCommandInput,
|
|
169
|
-
cb: (err: any, data?: ListRecommendationResourcesCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: ListRecommendationResourcesCommandOutput) => void,
|
|
170
149
|
): void;
|
|
171
150
|
listRecommendationResources(
|
|
172
151
|
args: ListRecommendationResourcesCommandInput,
|
|
173
152
|
options: __HttpHandlerOptions,
|
|
174
|
-
cb: (err: any, data?: ListRecommendationResourcesCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: ListRecommendationResourcesCommandOutput) => void,
|
|
175
154
|
): void;
|
|
176
155
|
listRecommendations(): Promise<ListRecommendationsCommandOutput>;
|
|
177
156
|
listRecommendations(
|
|
178
157
|
args: ListRecommendationsCommandInput,
|
|
179
|
-
options?: __HttpHandlerOptions
|
|
158
|
+
options?: __HttpHandlerOptions,
|
|
180
159
|
): Promise<ListRecommendationsCommandOutput>;
|
|
181
160
|
listRecommendations(
|
|
182
161
|
args: ListRecommendationsCommandInput,
|
|
183
|
-
cb: (err: any, data?: ListRecommendationsCommandOutput) => void
|
|
162
|
+
cb: (err: any, data?: ListRecommendationsCommandOutput) => void,
|
|
184
163
|
): void;
|
|
185
164
|
listRecommendations(
|
|
186
165
|
args: ListRecommendationsCommandInput,
|
|
187
166
|
options: __HttpHandlerOptions,
|
|
188
|
-
cb: (err: any, data?: ListRecommendationsCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: ListRecommendationsCommandOutput) => void,
|
|
189
168
|
): void;
|
|
190
169
|
updateOrganizationRecommendationLifecycle(
|
|
191
170
|
args: UpdateOrganizationRecommendationLifecycleCommandInput,
|
|
192
|
-
options?: __HttpHandlerOptions
|
|
171
|
+
options?: __HttpHandlerOptions,
|
|
193
172
|
): Promise<UpdateOrganizationRecommendationLifecycleCommandOutput>;
|
|
194
173
|
updateOrganizationRecommendationLifecycle(
|
|
195
174
|
args: UpdateOrganizationRecommendationLifecycleCommandInput,
|
|
196
|
-
cb: (
|
|
197
|
-
err: any,
|
|
198
|
-
data?: UpdateOrganizationRecommendationLifecycleCommandOutput
|
|
199
|
-
) => void
|
|
175
|
+
cb: (err: any, data?: UpdateOrganizationRecommendationLifecycleCommandOutput) => void,
|
|
200
176
|
): void;
|
|
201
177
|
updateOrganizationRecommendationLifecycle(
|
|
202
178
|
args: UpdateOrganizationRecommendationLifecycleCommandInput,
|
|
203
179
|
options: __HttpHandlerOptions,
|
|
204
|
-
cb: (
|
|
205
|
-
err: any,
|
|
206
|
-
data?: UpdateOrganizationRecommendationLifecycleCommandOutput
|
|
207
|
-
) => void
|
|
180
|
+
cb: (err: any, data?: UpdateOrganizationRecommendationLifecycleCommandOutput) => void,
|
|
208
181
|
): void;
|
|
209
182
|
updateRecommendationLifecycle(
|
|
210
183
|
args: UpdateRecommendationLifecycleCommandInput,
|
|
211
|
-
options?: __HttpHandlerOptions
|
|
184
|
+
options?: __HttpHandlerOptions,
|
|
212
185
|
): Promise<UpdateRecommendationLifecycleCommandOutput>;
|
|
213
186
|
updateRecommendationLifecycle(
|
|
214
187
|
args: UpdateRecommendationLifecycleCommandInput,
|
|
215
|
-
cb: (err: any, data?: UpdateRecommendationLifecycleCommandOutput) => void
|
|
188
|
+
cb: (err: any, data?: UpdateRecommendationLifecycleCommandOutput) => void,
|
|
216
189
|
): void;
|
|
217
190
|
updateRecommendationLifecycle(
|
|
218
191
|
args: UpdateRecommendationLifecycleCommandInput,
|
|
219
192
|
options: __HttpHandlerOptions,
|
|
220
|
-
cb: (err: any, data?: UpdateRecommendationLifecycleCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: UpdateRecommendationLifecycleCommandOutput) => void,
|
|
221
194
|
): void;
|
|
222
195
|
paginateListChecks(
|
|
223
196
|
args?: ListChecksCommandInput,
|
|
224
197
|
paginationConfig?: Pick<
|
|
225
198
|
PaginationConfiguration,
|
|
226
199
|
Exclude<keyof PaginationConfiguration, "client">
|
|
227
|
-
|
|
200
|
+
>,
|
|
228
201
|
): Paginator<ListChecksCommandOutput>;
|
|
229
202
|
paginateListOrganizationRecommendationAccounts(
|
|
230
203
|
args: ListOrganizationRecommendationAccountsCommandInput,
|
|
231
204
|
paginationConfig?: Pick<
|
|
232
205
|
PaginationConfiguration,
|
|
233
206
|
Exclude<keyof PaginationConfiguration, "client">
|
|
234
|
-
|
|
207
|
+
>,
|
|
235
208
|
): Paginator<ListOrganizationRecommendationAccountsCommandOutput>;
|
|
236
209
|
paginateListOrganizationRecommendationResources(
|
|
237
210
|
args: ListOrganizationRecommendationResourcesCommandInput,
|
|
238
211
|
paginationConfig?: Pick<
|
|
239
212
|
PaginationConfiguration,
|
|
240
213
|
Exclude<keyof PaginationConfiguration, "client">
|
|
241
|
-
|
|
214
|
+
>,
|
|
242
215
|
): Paginator<ListOrganizationRecommendationResourcesCommandOutput>;
|
|
243
216
|
paginateListOrganizationRecommendations(
|
|
244
217
|
args?: ListOrganizationRecommendationsCommandInput,
|
|
245
218
|
paginationConfig?: Pick<
|
|
246
219
|
PaginationConfiguration,
|
|
247
220
|
Exclude<keyof PaginationConfiguration, "client">
|
|
248
|
-
|
|
221
|
+
>,
|
|
249
222
|
): Paginator<ListOrganizationRecommendationsCommandOutput>;
|
|
250
223
|
paginateListRecommendationResources(
|
|
251
224
|
args: ListRecommendationResourcesCommandInput,
|
|
252
225
|
paginationConfig?: Pick<
|
|
253
226
|
PaginationConfiguration,
|
|
254
227
|
Exclude<keyof PaginationConfiguration, "client">
|
|
255
|
-
|
|
228
|
+
>,
|
|
256
229
|
): Paginator<ListRecommendationResourcesCommandOutput>;
|
|
257
230
|
paginateListRecommendations(
|
|
258
231
|
args?: ListRecommendationsCommandInput,
|
|
259
232
|
paginationConfig?: Pick<
|
|
260
233
|
PaginationConfiguration,
|
|
261
234
|
Exclude<keyof PaginationConfiguration, "client">
|
|
262
|
-
|
|
235
|
+
>,
|
|
263
236
|
): Paginator<ListRecommendationsCommandOutput>;
|
|
264
237
|
}
|
|
265
|
-
export declare class TrustedAdvisor
|
|
266
|
-
extends TrustedAdvisorClient
|
|
267
|
-
implements TrustedAdvisor {}
|
|
238
|
+
export declare class TrustedAdvisor extends TrustedAdvisorClient implements TrustedAdvisor {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -48,10 +45,7 @@ import {
|
|
|
48
45
|
GetRecommendationCommandInput,
|
|
49
46
|
GetRecommendationCommandOutput,
|
|
50
47
|
} from "./commands/GetRecommendationCommand";
|
|
51
|
-
import {
|
|
52
|
-
ListChecksCommandInput,
|
|
53
|
-
ListChecksCommandOutput,
|
|
54
|
-
} from "./commands/ListChecksCommand";
|
|
48
|
+
import { ListChecksCommandInput, ListChecksCommandOutput } from "./commands/ListChecksCommand";
|
|
55
49
|
import {
|
|
56
50
|
ListOrganizationRecommendationAccountsCommandInput,
|
|
57
51
|
ListOrganizationRecommendationAccountsCommandOutput,
|
|
@@ -111,8 +105,7 @@ export type ServiceOutputTypes =
|
|
|
111
105
|
| ListRecommendationsCommandOutput
|
|
112
106
|
| UpdateOrganizationRecommendationLifecycleCommandOutput
|
|
113
107
|
| UpdateRecommendationLifecycleCommandOutput;
|
|
114
|
-
export interface ClientDefaults
|
|
115
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
108
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
116
109
|
requestHandler?: __HttpHandlerUserInput;
|
|
117
110
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
118
111
|
urlParser?: __UrlParser;
|
|
@@ -137,9 +130,7 @@ export interface ClientDefaults
|
|
|
137
130
|
extensions?: RuntimeExtension[];
|
|
138
131
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
139
132
|
}
|
|
140
|
-
export type TrustedAdvisorClientConfigType = Partial<
|
|
141
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
142
|
-
> &
|
|
133
|
+
export type TrustedAdvisorClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
143
134
|
ClientDefaults &
|
|
144
135
|
UserAgentInputConfig &
|
|
145
136
|
RetryInputConfig &
|
|
@@ -148,8 +139,7 @@ export type TrustedAdvisorClientConfigType = Partial<
|
|
|
148
139
|
EndpointInputConfig<EndpointParameters> &
|
|
149
140
|
HttpAuthSchemeInputConfig &
|
|
150
141
|
ClientInputEndpointParameters;
|
|
151
|
-
export interface TrustedAdvisorClientConfig
|
|
152
|
-
extends TrustedAdvisorClientConfigType {}
|
|
142
|
+
export interface TrustedAdvisorClientConfig extends TrustedAdvisorClientConfigType {}
|
|
153
143
|
export type TrustedAdvisorClientResolvedConfigType =
|
|
154
144
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
155
145
|
Required<ClientDefaults> &
|
|
@@ -161,8 +151,7 @@ export type TrustedAdvisorClientResolvedConfigType =
|
|
|
161
151
|
EndpointResolvedConfig<EndpointParameters> &
|
|
162
152
|
HttpAuthSchemeResolvedConfig &
|
|
163
153
|
ClientResolvedEndpointParameters;
|
|
164
|
-
export interface TrustedAdvisorClientResolvedConfig
|
|
165
|
-
extends TrustedAdvisorClientResolvedConfigType {}
|
|
154
|
+
export interface TrustedAdvisorClientResolvedConfig extends TrustedAdvisorClientResolvedConfigType {}
|
|
166
155
|
export declare class TrustedAdvisorClient extends __Client<
|
|
167
156
|
__HttpHandlerOptions,
|
|
168
157
|
ServiceInputTypes,
|
|
@@ -170,8 +159,6 @@ export declare class TrustedAdvisorClient extends __Client<
|
|
|
170
159
|
TrustedAdvisorClientResolvedConfig
|
|
171
160
|
> {
|
|
172
161
|
readonly config: TrustedAdvisorClientResolvedConfig;
|
|
173
|
-
constructor(
|
|
174
|
-
...[configuration]: __CheckOptionalClientConfig<TrustedAdvisorClientConfig>
|
|
175
|
-
);
|
|
162
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<TrustedAdvisorClientConfig>);
|
|
176
163
|
destroy(): void;
|
|
177
164
|
}
|
|
@@ -7,17 +7,10 @@ import { TrustedAdvisorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: TrustedAdvisorHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: TrustedAdvisorHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): TrustedAdvisorHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient";
|
|
15
|
-
export interface TrustedAdvisorHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface TrustedAdvisorHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface TrustedAdvisorHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface TrustedAdvisorHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
TrustedAdvisorClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
TrustedAdvisorHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultTrustedAdvisorHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: TrustedAdvisorClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<TrustedAdvisorHttpAuthSchemeParameters>;
|
|
31
|
-
export interface TrustedAdvisorHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<TrustedAdvisorHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface TrustedAdvisorHttpAuthSchemeProvider extends HttpAuthSchemeProvider<TrustedAdvisorHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultTrustedAdvisorHttpAuthSchemeProvider: TrustedAdvisorHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: TrustedAdvisorHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: TrustedAdvisorHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceOutputTypes,
|
|
5
5
|
TrustedAdvisorClientResolvedConfig,
|
|
6
6
|
} from "./TrustedAdvisorClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
TrustedAdvisorClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchUpdateRecommendationResourceExclusionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchUpdateRecommendationResourceExclusionCommandInput
|
|
8
|
-
extends BatchUpdateRecommendationResourceExclusionRequest {}
|
|
7
|
+
export interface BatchUpdateRecommendationResourceExclusionCommandInput extends BatchUpdateRecommendationResourceExclusionRequest {}
|
|
9
8
|
export interface BatchUpdateRecommendationResourceExclusionCommandOutput
|
|
10
|
-
extends BatchUpdateRecommendationResourceExclusionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchUpdateRecommendationResourceExclusionResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchUpdateRecommendationResourceExclusionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchUpdateRecommendationResourceExclusionCommandInput
|
|
12
|
+
input: BatchUpdateRecommendationResourceExclusionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchUpdateRecommendationResourceExclusionCommandInput,
|
|
17
15
|
BatchUpdateRecommendationResourceExclusionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchUpdateRecommendationResourceExclusionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchUpdateRecommendationResourceExclusionCommandInput
|
|
21
|
+
input: BatchUpdateRecommendationResourceExclusionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchUpdateRecommendationResourceExclusionCommandInput,
|
|
26
24
|
BatchUpdateRecommendationResourceExclusionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetOrganizationRecommendationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetOrganizationRecommendationCommandInput
|
|
8
|
-
extends GetOrganizationRecommendationRequest {}
|
|
7
|
+
export interface GetOrganizationRecommendationCommandInput extends GetOrganizationRecommendationRequest {}
|
|
9
8
|
export interface GetOrganizationRecommendationCommandOutput
|
|
10
|
-
extends GetOrganizationRecommendationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetOrganizationRecommendationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetOrganizationRecommendationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetOrganizationRecommendationCommandInput
|
|
12
|
+
input: GetOrganizationRecommendationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetOrganizationRecommendationCommandInput,
|
|
17
15
|
GetOrganizationRecommendationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetOrganizationRecommendationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetOrganizationRecommendationCommandInput
|
|
21
|
+
input: GetOrganizationRecommendationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetOrganizationRecommendationCommandInput,
|
|
26
24
|
GetOrganizationRecommendationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetRecommendationRequest,
|
|
4
|
-
GetRecommendationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetRecommendationRequest, GetRecommendationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetRecommendationCommandInput
|
|
8
|
-
extends GetRecommendationRequest {}
|
|
4
|
+
export interface GetRecommendationCommandInput extends GetRecommendationRequest {}
|
|
9
5
|
export interface GetRecommendationCommandOutput
|
|
10
|
-
extends GetRecommendationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetRecommendationResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetRecommendationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetRecommendationCommandInput
|
|
9
|
+
input: GetRecommendationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetRecommendationCommandInput,
|
|
17
12
|
GetRecommendationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetRecommendationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetRecommendationCommandInput
|
|
18
|
+
input: GetRecommendationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetRecommendationCommandInput,
|
|
26
21
|
GetRecommendationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListChecksRequest, ListChecksResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListChecksCommandInput extends ListChecksRequest {}
|
|
5
|
-
export interface ListChecksCommandOutput
|
|
6
|
-
extends ListChecksResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListChecksCommandOutput extends ListChecksResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListChecksCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListChecksCommandInput
|
|
8
|
+
input: ListChecksCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListChecksCommandInput,
|
|
13
11
|
ListChecksCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListOrganizationRecommendationAccountsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListOrganizationRecommendationAccountsCommandInput
|
|
8
|
-
extends ListOrganizationRecommendationAccountsRequest {}
|
|
7
|
+
export interface ListOrganizationRecommendationAccountsCommandInput extends ListOrganizationRecommendationAccountsRequest {}
|
|
9
8
|
export interface ListOrganizationRecommendationAccountsCommandOutput
|
|
10
|
-
extends ListOrganizationRecommendationAccountsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListOrganizationRecommendationAccountsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListOrganizationRecommendationAccountsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListOrganizationRecommendationAccountsCommandInput
|
|
12
|
+
input: ListOrganizationRecommendationAccountsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListOrganizationRecommendationAccountsCommandInput,
|
|
17
15
|
ListOrganizationRecommendationAccountsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListOrganizationRecommendationAccountsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListOrganizationRecommendationAccountsCommandInput
|
|
21
|
+
input: ListOrganizationRecommendationAccountsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListOrganizationRecommendationAccountsCommandInput,
|
|
26
24
|
ListOrganizationRecommendationAccountsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListOrganizationRecommendationResourcesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListOrganizationRecommendationResourcesCommandInput
|
|
8
|
-
extends ListOrganizationRecommendationResourcesRequest {}
|
|
7
|
+
export interface ListOrganizationRecommendationResourcesCommandInput extends ListOrganizationRecommendationResourcesRequest {}
|
|
9
8
|
export interface ListOrganizationRecommendationResourcesCommandOutput
|
|
10
|
-
extends ListOrganizationRecommendationResourcesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListOrganizationRecommendationResourcesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListOrganizationRecommendationResourcesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListOrganizationRecommendationResourcesCommandInput
|
|
12
|
+
input: ListOrganizationRecommendationResourcesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListOrganizationRecommendationResourcesCommandInput,
|
|
17
15
|
ListOrganizationRecommendationResourcesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListOrganizationRecommendationResourcesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListOrganizationRecommendationResourcesCommandInput
|
|
21
|
+
input: ListOrganizationRecommendationResourcesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListOrganizationRecommendationResourcesCommandInput,
|
|
26
24
|
ListOrganizationRecommendationResourcesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListOrganizationRecommendationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListOrganizationRecommendationsCommandInput
|
|
8
|
-
extends ListOrganizationRecommendationsRequest {}
|
|
7
|
+
export interface ListOrganizationRecommendationsCommandInput extends ListOrganizationRecommendationsRequest {}
|
|
9
8
|
export interface ListOrganizationRecommendationsCommandOutput
|
|
10
|
-
extends ListOrganizationRecommendationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListOrganizationRecommendationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListOrganizationRecommendationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListOrganizationRecommendationsCommandInput
|
|
12
|
+
input: ListOrganizationRecommendationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListOrganizationRecommendationsCommandInput,
|
|
17
15
|
ListOrganizationRecommendationsCommandOutput,
|