@aws-sdk/client-health 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/Health.d.ts +49 -91
- package/dist-types/ts3.4/HealthClient.d.ts +15 -25
- 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 +8 -18
- package/dist-types/ts3.4/commands/DescribeAffectedAccountsForOrganizationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAffectedEntitiesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAffectedEntitiesForOrganizationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeEntityAggregatesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeEntityAggregatesForOrganizationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeEventAggregatesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeEventDetailsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeEventDetailsForOrganizationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeEventTypesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DescribeEventsForOrganizationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeHealthServiceStatusForOrganizationCommand.d.ts +2 -3
- package/dist-types/ts3.4/commands/DisableHealthServiceAccessForOrganizationCommand.d.ts +2 -3
- package/dist-types/ts3.4/commands/EnableHealthServiceAccessForOrganizationCommand.d.ts +2 -3
- 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 +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +2 -9
- 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
|
@@ -63,284 +63,242 @@ import { HealthClient } from "./HealthClient";
|
|
|
63
63
|
export interface Health {
|
|
64
64
|
describeAffectedAccountsForOrganization(
|
|
65
65
|
args: DescribeAffectedAccountsForOrganizationCommandInput,
|
|
66
|
-
options?: __HttpHandlerOptions
|
|
66
|
+
options?: __HttpHandlerOptions,
|
|
67
67
|
): Promise<DescribeAffectedAccountsForOrganizationCommandOutput>;
|
|
68
68
|
describeAffectedAccountsForOrganization(
|
|
69
69
|
args: DescribeAffectedAccountsForOrganizationCommandInput,
|
|
70
|
-
cb: (
|
|
71
|
-
err: any,
|
|
72
|
-
data?: DescribeAffectedAccountsForOrganizationCommandOutput
|
|
73
|
-
) => void
|
|
70
|
+
cb: (err: any, data?: DescribeAffectedAccountsForOrganizationCommandOutput) => void,
|
|
74
71
|
): void;
|
|
75
72
|
describeAffectedAccountsForOrganization(
|
|
76
73
|
args: DescribeAffectedAccountsForOrganizationCommandInput,
|
|
77
74
|
options: __HttpHandlerOptions,
|
|
78
|
-
cb: (
|
|
79
|
-
err: any,
|
|
80
|
-
data?: DescribeAffectedAccountsForOrganizationCommandOutput
|
|
81
|
-
) => void
|
|
75
|
+
cb: (err: any, data?: DescribeAffectedAccountsForOrganizationCommandOutput) => void,
|
|
82
76
|
): void;
|
|
83
77
|
describeAffectedEntities(
|
|
84
78
|
args: DescribeAffectedEntitiesCommandInput,
|
|
85
|
-
options?: __HttpHandlerOptions
|
|
79
|
+
options?: __HttpHandlerOptions,
|
|
86
80
|
): Promise<DescribeAffectedEntitiesCommandOutput>;
|
|
87
81
|
describeAffectedEntities(
|
|
88
82
|
args: DescribeAffectedEntitiesCommandInput,
|
|
89
|
-
cb: (err: any, data?: DescribeAffectedEntitiesCommandOutput) => void
|
|
83
|
+
cb: (err: any, data?: DescribeAffectedEntitiesCommandOutput) => void,
|
|
90
84
|
): void;
|
|
91
85
|
describeAffectedEntities(
|
|
92
86
|
args: DescribeAffectedEntitiesCommandInput,
|
|
93
87
|
options: __HttpHandlerOptions,
|
|
94
|
-
cb: (err: any, data?: DescribeAffectedEntitiesCommandOutput) => void
|
|
88
|
+
cb: (err: any, data?: DescribeAffectedEntitiesCommandOutput) => void,
|
|
95
89
|
): void;
|
|
96
90
|
describeAffectedEntitiesForOrganization(): Promise<DescribeAffectedEntitiesForOrganizationCommandOutput>;
|
|
97
91
|
describeAffectedEntitiesForOrganization(
|
|
98
92
|
args: DescribeAffectedEntitiesForOrganizationCommandInput,
|
|
99
|
-
options?: __HttpHandlerOptions
|
|
93
|
+
options?: __HttpHandlerOptions,
|
|
100
94
|
): Promise<DescribeAffectedEntitiesForOrganizationCommandOutput>;
|
|
101
95
|
describeAffectedEntitiesForOrganization(
|
|
102
96
|
args: DescribeAffectedEntitiesForOrganizationCommandInput,
|
|
103
|
-
cb: (
|
|
104
|
-
err: any,
|
|
105
|
-
data?: DescribeAffectedEntitiesForOrganizationCommandOutput
|
|
106
|
-
) => void
|
|
97
|
+
cb: (err: any, data?: DescribeAffectedEntitiesForOrganizationCommandOutput) => void,
|
|
107
98
|
): void;
|
|
108
99
|
describeAffectedEntitiesForOrganization(
|
|
109
100
|
args: DescribeAffectedEntitiesForOrganizationCommandInput,
|
|
110
101
|
options: __HttpHandlerOptions,
|
|
111
|
-
cb: (
|
|
112
|
-
err: any,
|
|
113
|
-
data?: DescribeAffectedEntitiesForOrganizationCommandOutput
|
|
114
|
-
) => void
|
|
102
|
+
cb: (err: any, data?: DescribeAffectedEntitiesForOrganizationCommandOutput) => void,
|
|
115
103
|
): void;
|
|
116
104
|
describeEntityAggregates(): Promise<DescribeEntityAggregatesCommandOutput>;
|
|
117
105
|
describeEntityAggregates(
|
|
118
106
|
args: DescribeEntityAggregatesCommandInput,
|
|
119
|
-
options?: __HttpHandlerOptions
|
|
107
|
+
options?: __HttpHandlerOptions,
|
|
120
108
|
): Promise<DescribeEntityAggregatesCommandOutput>;
|
|
121
109
|
describeEntityAggregates(
|
|
122
110
|
args: DescribeEntityAggregatesCommandInput,
|
|
123
|
-
cb: (err: any, data?: DescribeEntityAggregatesCommandOutput) => void
|
|
111
|
+
cb: (err: any, data?: DescribeEntityAggregatesCommandOutput) => void,
|
|
124
112
|
): void;
|
|
125
113
|
describeEntityAggregates(
|
|
126
114
|
args: DescribeEntityAggregatesCommandInput,
|
|
127
115
|
options: __HttpHandlerOptions,
|
|
128
|
-
cb: (err: any, data?: DescribeEntityAggregatesCommandOutput) => void
|
|
116
|
+
cb: (err: any, data?: DescribeEntityAggregatesCommandOutput) => void,
|
|
129
117
|
): void;
|
|
130
118
|
describeEntityAggregatesForOrganization(
|
|
131
119
|
args: DescribeEntityAggregatesForOrganizationCommandInput,
|
|
132
|
-
options?: __HttpHandlerOptions
|
|
120
|
+
options?: __HttpHandlerOptions,
|
|
133
121
|
): Promise<DescribeEntityAggregatesForOrganizationCommandOutput>;
|
|
134
122
|
describeEntityAggregatesForOrganization(
|
|
135
123
|
args: DescribeEntityAggregatesForOrganizationCommandInput,
|
|
136
|
-
cb: (
|
|
137
|
-
err: any,
|
|
138
|
-
data?: DescribeEntityAggregatesForOrganizationCommandOutput
|
|
139
|
-
) => void
|
|
124
|
+
cb: (err: any, data?: DescribeEntityAggregatesForOrganizationCommandOutput) => void,
|
|
140
125
|
): void;
|
|
141
126
|
describeEntityAggregatesForOrganization(
|
|
142
127
|
args: DescribeEntityAggregatesForOrganizationCommandInput,
|
|
143
128
|
options: __HttpHandlerOptions,
|
|
144
|
-
cb: (
|
|
145
|
-
err: any,
|
|
146
|
-
data?: DescribeEntityAggregatesForOrganizationCommandOutput
|
|
147
|
-
) => void
|
|
129
|
+
cb: (err: any, data?: DescribeEntityAggregatesForOrganizationCommandOutput) => void,
|
|
148
130
|
): void;
|
|
149
131
|
describeEventAggregates(
|
|
150
132
|
args: DescribeEventAggregatesCommandInput,
|
|
151
|
-
options?: __HttpHandlerOptions
|
|
133
|
+
options?: __HttpHandlerOptions,
|
|
152
134
|
): Promise<DescribeEventAggregatesCommandOutput>;
|
|
153
135
|
describeEventAggregates(
|
|
154
136
|
args: DescribeEventAggregatesCommandInput,
|
|
155
|
-
cb: (err: any, data?: DescribeEventAggregatesCommandOutput) => void
|
|
137
|
+
cb: (err: any, data?: DescribeEventAggregatesCommandOutput) => void,
|
|
156
138
|
): void;
|
|
157
139
|
describeEventAggregates(
|
|
158
140
|
args: DescribeEventAggregatesCommandInput,
|
|
159
141
|
options: __HttpHandlerOptions,
|
|
160
|
-
cb: (err: any, data?: DescribeEventAggregatesCommandOutput) => void
|
|
142
|
+
cb: (err: any, data?: DescribeEventAggregatesCommandOutput) => void,
|
|
161
143
|
): void;
|
|
162
144
|
describeEventDetails(
|
|
163
145
|
args: DescribeEventDetailsCommandInput,
|
|
164
|
-
options?: __HttpHandlerOptions
|
|
146
|
+
options?: __HttpHandlerOptions,
|
|
165
147
|
): Promise<DescribeEventDetailsCommandOutput>;
|
|
166
148
|
describeEventDetails(
|
|
167
149
|
args: DescribeEventDetailsCommandInput,
|
|
168
|
-
cb: (err: any, data?: DescribeEventDetailsCommandOutput) => void
|
|
150
|
+
cb: (err: any, data?: DescribeEventDetailsCommandOutput) => void,
|
|
169
151
|
): void;
|
|
170
152
|
describeEventDetails(
|
|
171
153
|
args: DescribeEventDetailsCommandInput,
|
|
172
154
|
options: __HttpHandlerOptions,
|
|
173
|
-
cb: (err: any, data?: DescribeEventDetailsCommandOutput) => void
|
|
155
|
+
cb: (err: any, data?: DescribeEventDetailsCommandOutput) => void,
|
|
174
156
|
): void;
|
|
175
157
|
describeEventDetailsForOrganization(
|
|
176
158
|
args: DescribeEventDetailsForOrganizationCommandInput,
|
|
177
|
-
options?: __HttpHandlerOptions
|
|
159
|
+
options?: __HttpHandlerOptions,
|
|
178
160
|
): Promise<DescribeEventDetailsForOrganizationCommandOutput>;
|
|
179
161
|
describeEventDetailsForOrganization(
|
|
180
162
|
args: DescribeEventDetailsForOrganizationCommandInput,
|
|
181
|
-
cb: (
|
|
182
|
-
err: any,
|
|
183
|
-
data?: DescribeEventDetailsForOrganizationCommandOutput
|
|
184
|
-
) => void
|
|
163
|
+
cb: (err: any, data?: DescribeEventDetailsForOrganizationCommandOutput) => void,
|
|
185
164
|
): void;
|
|
186
165
|
describeEventDetailsForOrganization(
|
|
187
166
|
args: DescribeEventDetailsForOrganizationCommandInput,
|
|
188
167
|
options: __HttpHandlerOptions,
|
|
189
|
-
cb: (
|
|
190
|
-
err: any,
|
|
191
|
-
data?: DescribeEventDetailsForOrganizationCommandOutput
|
|
192
|
-
) => void
|
|
168
|
+
cb: (err: any, data?: DescribeEventDetailsForOrganizationCommandOutput) => void,
|
|
193
169
|
): void;
|
|
194
170
|
describeEvents(): Promise<DescribeEventsCommandOutput>;
|
|
195
171
|
describeEvents(
|
|
196
172
|
args: DescribeEventsCommandInput,
|
|
197
|
-
options?: __HttpHandlerOptions
|
|
173
|
+
options?: __HttpHandlerOptions,
|
|
198
174
|
): Promise<DescribeEventsCommandOutput>;
|
|
199
175
|
describeEvents(
|
|
200
176
|
args: DescribeEventsCommandInput,
|
|
201
|
-
cb: (err: any, data?: DescribeEventsCommandOutput) => void
|
|
177
|
+
cb: (err: any, data?: DescribeEventsCommandOutput) => void,
|
|
202
178
|
): void;
|
|
203
179
|
describeEvents(
|
|
204
180
|
args: DescribeEventsCommandInput,
|
|
205
181
|
options: __HttpHandlerOptions,
|
|
206
|
-
cb: (err: any, data?: DescribeEventsCommandOutput) => void
|
|
182
|
+
cb: (err: any, data?: DescribeEventsCommandOutput) => void,
|
|
207
183
|
): void;
|
|
208
184
|
describeEventsForOrganization(): Promise<DescribeEventsForOrganizationCommandOutput>;
|
|
209
185
|
describeEventsForOrganization(
|
|
210
186
|
args: DescribeEventsForOrganizationCommandInput,
|
|
211
|
-
options?: __HttpHandlerOptions
|
|
187
|
+
options?: __HttpHandlerOptions,
|
|
212
188
|
): Promise<DescribeEventsForOrganizationCommandOutput>;
|
|
213
189
|
describeEventsForOrganization(
|
|
214
190
|
args: DescribeEventsForOrganizationCommandInput,
|
|
215
|
-
cb: (err: any, data?: DescribeEventsForOrganizationCommandOutput) => void
|
|
191
|
+
cb: (err: any, data?: DescribeEventsForOrganizationCommandOutput) => void,
|
|
216
192
|
): void;
|
|
217
193
|
describeEventsForOrganization(
|
|
218
194
|
args: DescribeEventsForOrganizationCommandInput,
|
|
219
195
|
options: __HttpHandlerOptions,
|
|
220
|
-
cb: (err: any, data?: DescribeEventsForOrganizationCommandOutput) => void
|
|
196
|
+
cb: (err: any, data?: DescribeEventsForOrganizationCommandOutput) => void,
|
|
221
197
|
): void;
|
|
222
198
|
describeEventTypes(): Promise<DescribeEventTypesCommandOutput>;
|
|
223
199
|
describeEventTypes(
|
|
224
200
|
args: DescribeEventTypesCommandInput,
|
|
225
|
-
options?: __HttpHandlerOptions
|
|
201
|
+
options?: __HttpHandlerOptions,
|
|
226
202
|
): Promise<DescribeEventTypesCommandOutput>;
|
|
227
203
|
describeEventTypes(
|
|
228
204
|
args: DescribeEventTypesCommandInput,
|
|
229
|
-
cb: (err: any, data?: DescribeEventTypesCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: DescribeEventTypesCommandOutput) => void,
|
|
230
206
|
): void;
|
|
231
207
|
describeEventTypes(
|
|
232
208
|
args: DescribeEventTypesCommandInput,
|
|
233
209
|
options: __HttpHandlerOptions,
|
|
234
|
-
cb: (err: any, data?: DescribeEventTypesCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: DescribeEventTypesCommandOutput) => void,
|
|
235
211
|
): void;
|
|
236
212
|
describeHealthServiceStatusForOrganization(): Promise<DescribeHealthServiceStatusForOrganizationCommandOutput>;
|
|
237
213
|
describeHealthServiceStatusForOrganization(
|
|
238
214
|
args: DescribeHealthServiceStatusForOrganizationCommandInput,
|
|
239
|
-
options?: __HttpHandlerOptions
|
|
215
|
+
options?: __HttpHandlerOptions,
|
|
240
216
|
): Promise<DescribeHealthServiceStatusForOrganizationCommandOutput>;
|
|
241
217
|
describeHealthServiceStatusForOrganization(
|
|
242
218
|
args: DescribeHealthServiceStatusForOrganizationCommandInput,
|
|
243
|
-
cb: (
|
|
244
|
-
err: any,
|
|
245
|
-
data?: DescribeHealthServiceStatusForOrganizationCommandOutput
|
|
246
|
-
) => void
|
|
219
|
+
cb: (err: any, data?: DescribeHealthServiceStatusForOrganizationCommandOutput) => void,
|
|
247
220
|
): void;
|
|
248
221
|
describeHealthServiceStatusForOrganization(
|
|
249
222
|
args: DescribeHealthServiceStatusForOrganizationCommandInput,
|
|
250
223
|
options: __HttpHandlerOptions,
|
|
251
|
-
cb: (
|
|
252
|
-
err: any,
|
|
253
|
-
data?: DescribeHealthServiceStatusForOrganizationCommandOutput
|
|
254
|
-
) => void
|
|
224
|
+
cb: (err: any, data?: DescribeHealthServiceStatusForOrganizationCommandOutput) => void,
|
|
255
225
|
): void;
|
|
256
226
|
disableHealthServiceAccessForOrganization(): Promise<DisableHealthServiceAccessForOrganizationCommandOutput>;
|
|
257
227
|
disableHealthServiceAccessForOrganization(
|
|
258
228
|
args: DisableHealthServiceAccessForOrganizationCommandInput,
|
|
259
|
-
options?: __HttpHandlerOptions
|
|
229
|
+
options?: __HttpHandlerOptions,
|
|
260
230
|
): Promise<DisableHealthServiceAccessForOrganizationCommandOutput>;
|
|
261
231
|
disableHealthServiceAccessForOrganization(
|
|
262
232
|
args: DisableHealthServiceAccessForOrganizationCommandInput,
|
|
263
|
-
cb: (
|
|
264
|
-
err: any,
|
|
265
|
-
data?: DisableHealthServiceAccessForOrganizationCommandOutput
|
|
266
|
-
) => void
|
|
233
|
+
cb: (err: any, data?: DisableHealthServiceAccessForOrganizationCommandOutput) => void,
|
|
267
234
|
): void;
|
|
268
235
|
disableHealthServiceAccessForOrganization(
|
|
269
236
|
args: DisableHealthServiceAccessForOrganizationCommandInput,
|
|
270
237
|
options: __HttpHandlerOptions,
|
|
271
|
-
cb: (
|
|
272
|
-
err: any,
|
|
273
|
-
data?: DisableHealthServiceAccessForOrganizationCommandOutput
|
|
274
|
-
) => void
|
|
238
|
+
cb: (err: any, data?: DisableHealthServiceAccessForOrganizationCommandOutput) => void,
|
|
275
239
|
): void;
|
|
276
240
|
enableHealthServiceAccessForOrganization(): Promise<EnableHealthServiceAccessForOrganizationCommandOutput>;
|
|
277
241
|
enableHealthServiceAccessForOrganization(
|
|
278
242
|
args: EnableHealthServiceAccessForOrganizationCommandInput,
|
|
279
|
-
options?: __HttpHandlerOptions
|
|
243
|
+
options?: __HttpHandlerOptions,
|
|
280
244
|
): Promise<EnableHealthServiceAccessForOrganizationCommandOutput>;
|
|
281
245
|
enableHealthServiceAccessForOrganization(
|
|
282
246
|
args: EnableHealthServiceAccessForOrganizationCommandInput,
|
|
283
|
-
cb: (
|
|
284
|
-
err: any,
|
|
285
|
-
data?: EnableHealthServiceAccessForOrganizationCommandOutput
|
|
286
|
-
) => void
|
|
247
|
+
cb: (err: any, data?: EnableHealthServiceAccessForOrganizationCommandOutput) => void,
|
|
287
248
|
): void;
|
|
288
249
|
enableHealthServiceAccessForOrganization(
|
|
289
250
|
args: EnableHealthServiceAccessForOrganizationCommandInput,
|
|
290
251
|
options: __HttpHandlerOptions,
|
|
291
|
-
cb: (
|
|
292
|
-
err: any,
|
|
293
|
-
data?: EnableHealthServiceAccessForOrganizationCommandOutput
|
|
294
|
-
) => void
|
|
252
|
+
cb: (err: any, data?: EnableHealthServiceAccessForOrganizationCommandOutput) => void,
|
|
295
253
|
): void;
|
|
296
254
|
paginateDescribeAffectedAccountsForOrganization(
|
|
297
255
|
args: DescribeAffectedAccountsForOrganizationCommandInput,
|
|
298
256
|
paginationConfig?: Pick<
|
|
299
257
|
PaginationConfiguration,
|
|
300
258
|
Exclude<keyof PaginationConfiguration, "client">
|
|
301
|
-
|
|
259
|
+
>,
|
|
302
260
|
): Paginator<DescribeAffectedAccountsForOrganizationCommandOutput>;
|
|
303
261
|
paginateDescribeAffectedEntities(
|
|
304
262
|
args: DescribeAffectedEntitiesCommandInput,
|
|
305
263
|
paginationConfig?: Pick<
|
|
306
264
|
PaginationConfiguration,
|
|
307
265
|
Exclude<keyof PaginationConfiguration, "client">
|
|
308
|
-
|
|
266
|
+
>,
|
|
309
267
|
): Paginator<DescribeAffectedEntitiesCommandOutput>;
|
|
310
268
|
paginateDescribeAffectedEntitiesForOrganization(
|
|
311
269
|
args?: DescribeAffectedEntitiesForOrganizationCommandInput,
|
|
312
270
|
paginationConfig?: Pick<
|
|
313
271
|
PaginationConfiguration,
|
|
314
272
|
Exclude<keyof PaginationConfiguration, "client">
|
|
315
|
-
|
|
273
|
+
>,
|
|
316
274
|
): Paginator<DescribeAffectedEntitiesForOrganizationCommandOutput>;
|
|
317
275
|
paginateDescribeEventAggregates(
|
|
318
276
|
args: DescribeEventAggregatesCommandInput,
|
|
319
277
|
paginationConfig?: Pick<
|
|
320
278
|
PaginationConfiguration,
|
|
321
279
|
Exclude<keyof PaginationConfiguration, "client">
|
|
322
|
-
|
|
280
|
+
>,
|
|
323
281
|
): Paginator<DescribeEventAggregatesCommandOutput>;
|
|
324
282
|
paginateDescribeEvents(
|
|
325
283
|
args?: DescribeEventsCommandInput,
|
|
326
284
|
paginationConfig?: Pick<
|
|
327
285
|
PaginationConfiguration,
|
|
328
286
|
Exclude<keyof PaginationConfiguration, "client">
|
|
329
|
-
|
|
287
|
+
>,
|
|
330
288
|
): Paginator<DescribeEventsCommandOutput>;
|
|
331
289
|
paginateDescribeEventsForOrganization(
|
|
332
290
|
args?: DescribeEventsForOrganizationCommandInput,
|
|
333
291
|
paginationConfig?: Pick<
|
|
334
292
|
PaginationConfiguration,
|
|
335
293
|
Exclude<keyof PaginationConfiguration, "client">
|
|
336
|
-
|
|
294
|
+
>,
|
|
337
295
|
): Paginator<DescribeEventsForOrganizationCommandOutput>;
|
|
338
296
|
paginateDescribeEventTypes(
|
|
339
297
|
args?: DescribeEventTypesCommandInput,
|
|
340
298
|
paginationConfig?: Pick<
|
|
341
299
|
PaginationConfiguration,
|
|
342
300
|
Exclude<keyof PaginationConfiguration, "client">
|
|
343
|
-
|
|
301
|
+
>,
|
|
344
302
|
): Paginator<DescribeEventTypesCommandOutput>;
|
|
345
303
|
}
|
|
346
304
|
export declare class Health extends HealthClient implements Health {}
|
|
@@ -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 {
|
|
@@ -129,8 +126,7 @@ export type ServiceOutputTypes =
|
|
|
129
126
|
| DescribeHealthServiceStatusForOrganizationCommandOutput
|
|
130
127
|
| DisableHealthServiceAccessForOrganizationCommandOutput
|
|
131
128
|
| EnableHealthServiceAccessForOrganizationCommandOutput;
|
|
132
|
-
export interface ClientDefaults
|
|
133
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
129
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
134
130
|
requestHandler?: __HttpHandlerUserInput;
|
|
135
131
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
136
132
|
urlParser?: __UrlParser;
|
|
@@ -155,9 +151,7 @@ export interface ClientDefaults
|
|
|
155
151
|
extensions?: RuntimeExtension[];
|
|
156
152
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
157
153
|
}
|
|
158
|
-
export type HealthClientConfigType = Partial<
|
|
159
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
160
|
-
> &
|
|
154
|
+
export type HealthClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
161
155
|
ClientDefaults &
|
|
162
156
|
UserAgentInputConfig &
|
|
163
157
|
RetryInputConfig &
|
|
@@ -167,19 +161,17 @@ export type HealthClientConfigType = Partial<
|
|
|
167
161
|
HttpAuthSchemeInputConfig &
|
|
168
162
|
ClientInputEndpointParameters;
|
|
169
163
|
export interface HealthClientConfig extends HealthClientConfigType {}
|
|
170
|
-
export type HealthClientResolvedConfigType =
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
export interface HealthClientResolvedConfig
|
|
182
|
-
extends HealthClientResolvedConfigType {}
|
|
164
|
+
export type HealthClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
165
|
+
Required<ClientDefaults> &
|
|
166
|
+
RuntimeExtensionsConfig &
|
|
167
|
+
UserAgentResolvedConfig &
|
|
168
|
+
RetryResolvedConfig &
|
|
169
|
+
RegionResolvedConfig &
|
|
170
|
+
HostHeaderResolvedConfig &
|
|
171
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
172
|
+
HttpAuthSchemeResolvedConfig &
|
|
173
|
+
ClientResolvedEndpointParameters;
|
|
174
|
+
export interface HealthClientResolvedConfig extends HealthClientResolvedConfigType {}
|
|
183
175
|
export declare class HealthClient extends __Client<
|
|
184
176
|
__HttpHandlerOptions,
|
|
185
177
|
ServiceInputTypes,
|
|
@@ -187,8 +179,6 @@ export declare class HealthClient extends __Client<
|
|
|
187
179
|
HealthClientResolvedConfig
|
|
188
180
|
> {
|
|
189
181
|
readonly config: HealthClientResolvedConfig;
|
|
190
|
-
constructor(
|
|
191
|
-
...[configuration]: __CheckOptionalClientConfig<HealthClientConfig>
|
|
192
|
-
);
|
|
182
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<HealthClientConfig>);
|
|
193
183
|
destroy(): void;
|
|
194
184
|
}
|
|
@@ -7,17 +7,10 @@ import { HealthHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: HealthHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: HealthHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): HealthHttpAuthSchemeProvider;
|
|
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 { HealthClientResolvedConfig } from "../HealthClient";
|
|
15
|
-
export interface HealthHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface HealthHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface HealthHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface HealthHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
HealthClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
HealthHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultHealthHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: HealthClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<HealthHttpAuthSchemeParameters>;
|
|
31
|
-
export interface HealthHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<HealthHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface HealthHttpAuthSchemeProvider extends HttpAuthSchemeProvider<HealthHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultHealthHttpAuthSchemeProvider: HealthHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: HealthHttpAuthSchemeProvider;
|
|
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: HealthHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ServiceInputTypes,
|
|
5
|
-
ServiceOutputTypes,
|
|
6
|
-
} from "./HealthClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./HealthClient";
|
|
3
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
4
|
added: EndpointParameterInstructions,
|
|
12
5
|
plugins: (
|
|
13
6
|
CommandCtor: any,
|
|
14
7
|
clientStack: any,
|
|
15
8
|
config: any,
|
|
16
|
-
options: any
|
|
9
|
+
options: any,
|
|
17
10
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
11
|
op: string,
|
|
19
12
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
13
|
+
smithyContext?: Record<string, unknown>,
|
|
21
14
|
) => {
|
|
22
|
-
new (
|
|
15
|
+
new (
|
|
16
|
+
input: I,
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
18
|
I,
|
|
24
19
|
O,
|
|
25
20
|
HealthClientResolvedConfig,
|
|
@@ -38,9 +33,4 @@ export declare const command: <
|
|
|
38
33
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
34
|
};
|
|
40
35
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
36
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeAffectedAccountsForOrganizationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAffectedAccountsForOrganizationCommandInput
|
|
8
|
-
extends DescribeAffectedAccountsForOrganizationRequest {}
|
|
7
|
+
export interface DescribeAffectedAccountsForOrganizationCommandInput extends DescribeAffectedAccountsForOrganizationRequest {}
|
|
9
8
|
export interface DescribeAffectedAccountsForOrganizationCommandOutput
|
|
10
|
-
extends DescribeAffectedAccountsForOrganizationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeAffectedAccountsForOrganizationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeAffectedAccountsForOrganizationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeAffectedAccountsForOrganizationCommandInput
|
|
12
|
+
input: DescribeAffectedAccountsForOrganizationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeAffectedAccountsForOrganizationCommandInput,
|
|
17
15
|
DescribeAffectedAccountsForOrganizationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeAffectedAccountsForOrganizationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeAffectedAccountsForOrganizationCommandInput
|
|
21
|
+
input: DescribeAffectedAccountsForOrganizationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeAffectedAccountsForOrganizationCommandInput,
|
|
26
24
|
DescribeAffectedAccountsForOrganizationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeAffectedEntitiesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAffectedEntitiesCommandInput
|
|
8
|
-
extends DescribeAffectedEntitiesRequest {}
|
|
7
|
+
export interface DescribeAffectedEntitiesCommandInput extends DescribeAffectedEntitiesRequest {}
|
|
9
8
|
export interface DescribeAffectedEntitiesCommandOutput
|
|
10
|
-
extends DescribeAffectedEntitiesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeAffectedEntitiesResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeAffectedEntitiesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeAffectedEntitiesCommandInput
|
|
12
|
+
input: DescribeAffectedEntitiesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeAffectedEntitiesCommandInput,
|
|
17
15
|
DescribeAffectedEntitiesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeAffectedEntitiesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeAffectedEntitiesCommandInput
|
|
21
|
+
input: DescribeAffectedEntitiesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeAffectedEntitiesCommandInput,
|
|
26
24
|
DescribeAffectedEntitiesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeAffectedEntitiesForOrganizationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeAffectedEntitiesForOrganizationCommandInput
|
|
8
|
-
extends DescribeAffectedEntitiesForOrganizationRequest {}
|
|
7
|
+
export interface DescribeAffectedEntitiesForOrganizationCommandInput extends DescribeAffectedEntitiesForOrganizationRequest {}
|
|
9
8
|
export interface DescribeAffectedEntitiesForOrganizationCommandOutput
|
|
10
|
-
extends DescribeAffectedEntitiesForOrganizationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeAffectedEntitiesForOrganizationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeAffectedEntitiesForOrganizationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeAffectedEntitiesForOrganizationCommandInput
|
|
12
|
+
input: DescribeAffectedEntitiesForOrganizationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeAffectedEntitiesForOrganizationCommandInput,
|
|
17
15
|
DescribeAffectedEntitiesForOrganizationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeEntityAggregatesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeEntityAggregatesCommandInput
|
|
8
|
-
extends DescribeEntityAggregatesRequest {}
|
|
7
|
+
export interface DescribeEntityAggregatesCommandInput extends DescribeEntityAggregatesRequest {}
|
|
9
8
|
export interface DescribeEntityAggregatesCommandOutput
|
|
10
|
-
extends DescribeEntityAggregatesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeEntityAggregatesResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeEntityAggregatesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeEntityAggregatesCommandInput
|
|
12
|
+
input: DescribeEntityAggregatesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeEntityAggregatesCommandInput,
|
|
17
15
|
DescribeEntityAggregatesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeEntityAggregatesForOrganizationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeEntityAggregatesForOrganizationCommandInput
|
|
8
|
-
extends DescribeEntityAggregatesForOrganizationRequest {}
|
|
7
|
+
export interface DescribeEntityAggregatesForOrganizationCommandInput extends DescribeEntityAggregatesForOrganizationRequest {}
|
|
9
8
|
export interface DescribeEntityAggregatesForOrganizationCommandOutput
|
|
10
|
-
extends DescribeEntityAggregatesForOrganizationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeEntityAggregatesForOrganizationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeEntityAggregatesForOrganizationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeEntityAggregatesForOrganizationCommandInput
|
|
12
|
+
input: DescribeEntityAggregatesForOrganizationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeEntityAggregatesForOrganizationCommandInput,
|
|
17
15
|
DescribeEntityAggregatesForOrganizationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeEntityAggregatesForOrganizationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeEntityAggregatesForOrganizationCommandInput
|
|
21
|
+
input: DescribeEntityAggregatesForOrganizationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeEntityAggregatesForOrganizationCommandInput,
|
|
26
24
|
DescribeEntityAggregatesForOrganizationCommandOutput,
|