@aws-sdk/client-appintegrations 3.1086.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/AppIntegrations.d.ts +77 -82
- package/dist-types/ts3.4/AppIntegrationsClient.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/CreateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateDataIntegrationAssociationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListApplicationAssociationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateDataIntegrationAssociationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +5 -10
- 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 +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +1 -6
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -72,10 +72,7 @@ import {
|
|
|
72
72
|
ListTagsForResourceCommandInput,
|
|
73
73
|
ListTagsForResourceCommandOutput,
|
|
74
74
|
} from "./commands/ListTagsForResourceCommand";
|
|
75
|
-
import {
|
|
76
|
-
TagResourceCommandInput,
|
|
77
|
-
TagResourceCommandOutput,
|
|
78
|
-
} from "./commands/TagResourceCommand";
|
|
75
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
79
76
|
import {
|
|
80
77
|
UntagResourceCommandInput,
|
|
81
78
|
UntagResourceCommandOutput,
|
|
@@ -99,349 +96,347 @@ import {
|
|
|
99
96
|
export interface AppIntegrations {
|
|
100
97
|
createApplication(
|
|
101
98
|
args: CreateApplicationCommandInput,
|
|
102
|
-
options?: __HttpHandlerOptions
|
|
99
|
+
options?: __HttpHandlerOptions,
|
|
103
100
|
): Promise<CreateApplicationCommandOutput>;
|
|
104
101
|
createApplication(
|
|
105
102
|
args: CreateApplicationCommandInput,
|
|
106
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
103
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
107
104
|
): void;
|
|
108
105
|
createApplication(
|
|
109
106
|
args: CreateApplicationCommandInput,
|
|
110
107
|
options: __HttpHandlerOptions,
|
|
111
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
112
109
|
): void;
|
|
113
110
|
createDataIntegration(
|
|
114
111
|
args: CreateDataIntegrationCommandInput,
|
|
115
|
-
options?: __HttpHandlerOptions
|
|
112
|
+
options?: __HttpHandlerOptions,
|
|
116
113
|
): Promise<CreateDataIntegrationCommandOutput>;
|
|
117
114
|
createDataIntegration(
|
|
118
115
|
args: CreateDataIntegrationCommandInput,
|
|
119
|
-
cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void
|
|
116
|
+
cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void,
|
|
120
117
|
): void;
|
|
121
118
|
createDataIntegration(
|
|
122
119
|
args: CreateDataIntegrationCommandInput,
|
|
123
120
|
options: __HttpHandlerOptions,
|
|
124
|
-
cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void,
|
|
125
122
|
): void;
|
|
126
123
|
createDataIntegrationAssociation(
|
|
127
124
|
args: CreateDataIntegrationAssociationCommandInput,
|
|
128
|
-
options?: __HttpHandlerOptions
|
|
125
|
+
options?: __HttpHandlerOptions,
|
|
129
126
|
): Promise<CreateDataIntegrationAssociationCommandOutput>;
|
|
130
127
|
createDataIntegrationAssociation(
|
|
131
128
|
args: CreateDataIntegrationAssociationCommandInput,
|
|
132
|
-
cb: (err: any, data?: CreateDataIntegrationAssociationCommandOutput) => void
|
|
129
|
+
cb: (err: any, data?: CreateDataIntegrationAssociationCommandOutput) => void,
|
|
133
130
|
): void;
|
|
134
131
|
createDataIntegrationAssociation(
|
|
135
132
|
args: CreateDataIntegrationAssociationCommandInput,
|
|
136
133
|
options: __HttpHandlerOptions,
|
|
137
|
-
cb: (err: any, data?: CreateDataIntegrationAssociationCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: CreateDataIntegrationAssociationCommandOutput) => void,
|
|
138
135
|
): void;
|
|
139
136
|
createEventIntegration(
|
|
140
137
|
args: CreateEventIntegrationCommandInput,
|
|
141
|
-
options?: __HttpHandlerOptions
|
|
138
|
+
options?: __HttpHandlerOptions,
|
|
142
139
|
): Promise<CreateEventIntegrationCommandOutput>;
|
|
143
140
|
createEventIntegration(
|
|
144
141
|
args: CreateEventIntegrationCommandInput,
|
|
145
|
-
cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void
|
|
142
|
+
cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void,
|
|
146
143
|
): void;
|
|
147
144
|
createEventIntegration(
|
|
148
145
|
args: CreateEventIntegrationCommandInput,
|
|
149
146
|
options: __HttpHandlerOptions,
|
|
150
|
-
cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void
|
|
147
|
+
cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void,
|
|
151
148
|
): void;
|
|
152
149
|
deleteApplication(
|
|
153
150
|
args: DeleteApplicationCommandInput,
|
|
154
|
-
options?: __HttpHandlerOptions
|
|
151
|
+
options?: __HttpHandlerOptions,
|
|
155
152
|
): Promise<DeleteApplicationCommandOutput>;
|
|
156
153
|
deleteApplication(
|
|
157
154
|
args: DeleteApplicationCommandInput,
|
|
158
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
155
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
159
156
|
): void;
|
|
160
157
|
deleteApplication(
|
|
161
158
|
args: DeleteApplicationCommandInput,
|
|
162
159
|
options: __HttpHandlerOptions,
|
|
163
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
160
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
164
161
|
): void;
|
|
165
162
|
deleteDataIntegration(
|
|
166
163
|
args: DeleteDataIntegrationCommandInput,
|
|
167
|
-
options?: __HttpHandlerOptions
|
|
164
|
+
options?: __HttpHandlerOptions,
|
|
168
165
|
): Promise<DeleteDataIntegrationCommandOutput>;
|
|
169
166
|
deleteDataIntegration(
|
|
170
167
|
args: DeleteDataIntegrationCommandInput,
|
|
171
|
-
cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void
|
|
168
|
+
cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void,
|
|
172
169
|
): void;
|
|
173
170
|
deleteDataIntegration(
|
|
174
171
|
args: DeleteDataIntegrationCommandInput,
|
|
175
172
|
options: __HttpHandlerOptions,
|
|
176
|
-
cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void
|
|
173
|
+
cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void,
|
|
177
174
|
): void;
|
|
178
175
|
deleteEventIntegration(
|
|
179
176
|
args: DeleteEventIntegrationCommandInput,
|
|
180
|
-
options?: __HttpHandlerOptions
|
|
177
|
+
options?: __HttpHandlerOptions,
|
|
181
178
|
): Promise<DeleteEventIntegrationCommandOutput>;
|
|
182
179
|
deleteEventIntegration(
|
|
183
180
|
args: DeleteEventIntegrationCommandInput,
|
|
184
|
-
cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void
|
|
181
|
+
cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void,
|
|
185
182
|
): void;
|
|
186
183
|
deleteEventIntegration(
|
|
187
184
|
args: DeleteEventIntegrationCommandInput,
|
|
188
185
|
options: __HttpHandlerOptions,
|
|
189
|
-
cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void
|
|
186
|
+
cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void,
|
|
190
187
|
): void;
|
|
191
188
|
getApplication(
|
|
192
189
|
args: GetApplicationCommandInput,
|
|
193
|
-
options?: __HttpHandlerOptions
|
|
190
|
+
options?: __HttpHandlerOptions,
|
|
194
191
|
): Promise<GetApplicationCommandOutput>;
|
|
195
192
|
getApplication(
|
|
196
193
|
args: GetApplicationCommandInput,
|
|
197
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
194
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
198
195
|
): void;
|
|
199
196
|
getApplication(
|
|
200
197
|
args: GetApplicationCommandInput,
|
|
201
198
|
options: __HttpHandlerOptions,
|
|
202
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
199
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
203
200
|
): void;
|
|
204
201
|
getDataIntegration(
|
|
205
202
|
args: GetDataIntegrationCommandInput,
|
|
206
|
-
options?: __HttpHandlerOptions
|
|
203
|
+
options?: __HttpHandlerOptions,
|
|
207
204
|
): Promise<GetDataIntegrationCommandOutput>;
|
|
208
205
|
getDataIntegration(
|
|
209
206
|
args: GetDataIntegrationCommandInput,
|
|
210
|
-
cb: (err: any, data?: GetDataIntegrationCommandOutput) => void
|
|
207
|
+
cb: (err: any, data?: GetDataIntegrationCommandOutput) => void,
|
|
211
208
|
): void;
|
|
212
209
|
getDataIntegration(
|
|
213
210
|
args: GetDataIntegrationCommandInput,
|
|
214
211
|
options: __HttpHandlerOptions,
|
|
215
|
-
cb: (err: any, data?: GetDataIntegrationCommandOutput) => void
|
|
212
|
+
cb: (err: any, data?: GetDataIntegrationCommandOutput) => void,
|
|
216
213
|
): void;
|
|
217
214
|
getEventIntegration(
|
|
218
215
|
args: GetEventIntegrationCommandInput,
|
|
219
|
-
options?: __HttpHandlerOptions
|
|
216
|
+
options?: __HttpHandlerOptions,
|
|
220
217
|
): Promise<GetEventIntegrationCommandOutput>;
|
|
221
218
|
getEventIntegration(
|
|
222
219
|
args: GetEventIntegrationCommandInput,
|
|
223
|
-
cb: (err: any, data?: GetEventIntegrationCommandOutput) => void
|
|
220
|
+
cb: (err: any, data?: GetEventIntegrationCommandOutput) => void,
|
|
224
221
|
): void;
|
|
225
222
|
getEventIntegration(
|
|
226
223
|
args: GetEventIntegrationCommandInput,
|
|
227
224
|
options: __HttpHandlerOptions,
|
|
228
|
-
cb: (err: any, data?: GetEventIntegrationCommandOutput) => void
|
|
225
|
+
cb: (err: any, data?: GetEventIntegrationCommandOutput) => void,
|
|
229
226
|
): void;
|
|
230
227
|
listApplicationAssociations(
|
|
231
228
|
args: ListApplicationAssociationsCommandInput,
|
|
232
|
-
options?: __HttpHandlerOptions
|
|
229
|
+
options?: __HttpHandlerOptions,
|
|
233
230
|
): Promise<ListApplicationAssociationsCommandOutput>;
|
|
234
231
|
listApplicationAssociations(
|
|
235
232
|
args: ListApplicationAssociationsCommandInput,
|
|
236
|
-
cb: (err: any, data?: ListApplicationAssociationsCommandOutput) => void
|
|
233
|
+
cb: (err: any, data?: ListApplicationAssociationsCommandOutput) => void,
|
|
237
234
|
): void;
|
|
238
235
|
listApplicationAssociations(
|
|
239
236
|
args: ListApplicationAssociationsCommandInput,
|
|
240
237
|
options: __HttpHandlerOptions,
|
|
241
|
-
cb: (err: any, data?: ListApplicationAssociationsCommandOutput) => void
|
|
238
|
+
cb: (err: any, data?: ListApplicationAssociationsCommandOutput) => void,
|
|
242
239
|
): void;
|
|
243
240
|
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
244
241
|
listApplications(
|
|
245
242
|
args: ListApplicationsCommandInput,
|
|
246
|
-
options?: __HttpHandlerOptions
|
|
243
|
+
options?: __HttpHandlerOptions,
|
|
247
244
|
): Promise<ListApplicationsCommandOutput>;
|
|
248
245
|
listApplications(
|
|
249
246
|
args: ListApplicationsCommandInput,
|
|
250
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
247
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
251
248
|
): void;
|
|
252
249
|
listApplications(
|
|
253
250
|
args: ListApplicationsCommandInput,
|
|
254
251
|
options: __HttpHandlerOptions,
|
|
255
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
252
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
256
253
|
): void;
|
|
257
254
|
listDataIntegrationAssociations(
|
|
258
255
|
args: ListDataIntegrationAssociationsCommandInput,
|
|
259
|
-
options?: __HttpHandlerOptions
|
|
256
|
+
options?: __HttpHandlerOptions,
|
|
260
257
|
): Promise<ListDataIntegrationAssociationsCommandOutput>;
|
|
261
258
|
listDataIntegrationAssociations(
|
|
262
259
|
args: ListDataIntegrationAssociationsCommandInput,
|
|
263
|
-
cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void
|
|
260
|
+
cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void,
|
|
264
261
|
): void;
|
|
265
262
|
listDataIntegrationAssociations(
|
|
266
263
|
args: ListDataIntegrationAssociationsCommandInput,
|
|
267
264
|
options: __HttpHandlerOptions,
|
|
268
|
-
cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void
|
|
265
|
+
cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void,
|
|
269
266
|
): void;
|
|
270
267
|
listDataIntegrations(): Promise<ListDataIntegrationsCommandOutput>;
|
|
271
268
|
listDataIntegrations(
|
|
272
269
|
args: ListDataIntegrationsCommandInput,
|
|
273
|
-
options?: __HttpHandlerOptions
|
|
270
|
+
options?: __HttpHandlerOptions,
|
|
274
271
|
): Promise<ListDataIntegrationsCommandOutput>;
|
|
275
272
|
listDataIntegrations(
|
|
276
273
|
args: ListDataIntegrationsCommandInput,
|
|
277
|
-
cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void
|
|
274
|
+
cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void,
|
|
278
275
|
): void;
|
|
279
276
|
listDataIntegrations(
|
|
280
277
|
args: ListDataIntegrationsCommandInput,
|
|
281
278
|
options: __HttpHandlerOptions,
|
|
282
|
-
cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void
|
|
279
|
+
cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void,
|
|
283
280
|
): void;
|
|
284
281
|
listEventIntegrationAssociations(
|
|
285
282
|
args: ListEventIntegrationAssociationsCommandInput,
|
|
286
|
-
options?: __HttpHandlerOptions
|
|
283
|
+
options?: __HttpHandlerOptions,
|
|
287
284
|
): Promise<ListEventIntegrationAssociationsCommandOutput>;
|
|
288
285
|
listEventIntegrationAssociations(
|
|
289
286
|
args: ListEventIntegrationAssociationsCommandInput,
|
|
290
|
-
cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void
|
|
287
|
+
cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void,
|
|
291
288
|
): void;
|
|
292
289
|
listEventIntegrationAssociations(
|
|
293
290
|
args: ListEventIntegrationAssociationsCommandInput,
|
|
294
291
|
options: __HttpHandlerOptions,
|
|
295
|
-
cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void
|
|
292
|
+
cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void,
|
|
296
293
|
): void;
|
|
297
294
|
listEventIntegrations(): Promise<ListEventIntegrationsCommandOutput>;
|
|
298
295
|
listEventIntegrations(
|
|
299
296
|
args: ListEventIntegrationsCommandInput,
|
|
300
|
-
options?: __HttpHandlerOptions
|
|
297
|
+
options?: __HttpHandlerOptions,
|
|
301
298
|
): Promise<ListEventIntegrationsCommandOutput>;
|
|
302
299
|
listEventIntegrations(
|
|
303
300
|
args: ListEventIntegrationsCommandInput,
|
|
304
|
-
cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void
|
|
301
|
+
cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void,
|
|
305
302
|
): void;
|
|
306
303
|
listEventIntegrations(
|
|
307
304
|
args: ListEventIntegrationsCommandInput,
|
|
308
305
|
options: __HttpHandlerOptions,
|
|
309
|
-
cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void
|
|
306
|
+
cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void,
|
|
310
307
|
): void;
|
|
311
308
|
listTagsForResource(
|
|
312
309
|
args: ListTagsForResourceCommandInput,
|
|
313
|
-
options?: __HttpHandlerOptions
|
|
310
|
+
options?: __HttpHandlerOptions,
|
|
314
311
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
315
312
|
listTagsForResource(
|
|
316
313
|
args: ListTagsForResourceCommandInput,
|
|
317
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
314
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
318
315
|
): void;
|
|
319
316
|
listTagsForResource(
|
|
320
317
|
args: ListTagsForResourceCommandInput,
|
|
321
318
|
options: __HttpHandlerOptions,
|
|
322
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
319
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
323
320
|
): void;
|
|
324
321
|
tagResource(
|
|
325
322
|
args: TagResourceCommandInput,
|
|
326
|
-
options?: __HttpHandlerOptions
|
|
323
|
+
options?: __HttpHandlerOptions,
|
|
327
324
|
): Promise<TagResourceCommandOutput>;
|
|
328
325
|
tagResource(
|
|
329
326
|
args: TagResourceCommandInput,
|
|
330
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
327
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
331
328
|
): void;
|
|
332
329
|
tagResource(
|
|
333
330
|
args: TagResourceCommandInput,
|
|
334
331
|
options: __HttpHandlerOptions,
|
|
335
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
332
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
336
333
|
): void;
|
|
337
334
|
untagResource(
|
|
338
335
|
args: UntagResourceCommandInput,
|
|
339
|
-
options?: __HttpHandlerOptions
|
|
336
|
+
options?: __HttpHandlerOptions,
|
|
340
337
|
): Promise<UntagResourceCommandOutput>;
|
|
341
338
|
untagResource(
|
|
342
339
|
args: UntagResourceCommandInput,
|
|
343
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
340
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
344
341
|
): void;
|
|
345
342
|
untagResource(
|
|
346
343
|
args: UntagResourceCommandInput,
|
|
347
344
|
options: __HttpHandlerOptions,
|
|
348
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
345
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
349
346
|
): void;
|
|
350
347
|
updateApplication(
|
|
351
348
|
args: UpdateApplicationCommandInput,
|
|
352
|
-
options?: __HttpHandlerOptions
|
|
349
|
+
options?: __HttpHandlerOptions,
|
|
353
350
|
): Promise<UpdateApplicationCommandOutput>;
|
|
354
351
|
updateApplication(
|
|
355
352
|
args: UpdateApplicationCommandInput,
|
|
356
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
353
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
357
354
|
): void;
|
|
358
355
|
updateApplication(
|
|
359
356
|
args: UpdateApplicationCommandInput,
|
|
360
357
|
options: __HttpHandlerOptions,
|
|
361
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
358
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
362
359
|
): void;
|
|
363
360
|
updateDataIntegration(
|
|
364
361
|
args: UpdateDataIntegrationCommandInput,
|
|
365
|
-
options?: __HttpHandlerOptions
|
|
362
|
+
options?: __HttpHandlerOptions,
|
|
366
363
|
): Promise<UpdateDataIntegrationCommandOutput>;
|
|
367
364
|
updateDataIntegration(
|
|
368
365
|
args: UpdateDataIntegrationCommandInput,
|
|
369
|
-
cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void
|
|
366
|
+
cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void,
|
|
370
367
|
): void;
|
|
371
368
|
updateDataIntegration(
|
|
372
369
|
args: UpdateDataIntegrationCommandInput,
|
|
373
370
|
options: __HttpHandlerOptions,
|
|
374
|
-
cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void
|
|
371
|
+
cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void,
|
|
375
372
|
): void;
|
|
376
373
|
updateDataIntegrationAssociation(
|
|
377
374
|
args: UpdateDataIntegrationAssociationCommandInput,
|
|
378
|
-
options?: __HttpHandlerOptions
|
|
375
|
+
options?: __HttpHandlerOptions,
|
|
379
376
|
): Promise<UpdateDataIntegrationAssociationCommandOutput>;
|
|
380
377
|
updateDataIntegrationAssociation(
|
|
381
378
|
args: UpdateDataIntegrationAssociationCommandInput,
|
|
382
|
-
cb: (err: any, data?: UpdateDataIntegrationAssociationCommandOutput) => void
|
|
379
|
+
cb: (err: any, data?: UpdateDataIntegrationAssociationCommandOutput) => void,
|
|
383
380
|
): void;
|
|
384
381
|
updateDataIntegrationAssociation(
|
|
385
382
|
args: UpdateDataIntegrationAssociationCommandInput,
|
|
386
383
|
options: __HttpHandlerOptions,
|
|
387
|
-
cb: (err: any, data?: UpdateDataIntegrationAssociationCommandOutput) => void
|
|
384
|
+
cb: (err: any, data?: UpdateDataIntegrationAssociationCommandOutput) => void,
|
|
388
385
|
): void;
|
|
389
386
|
updateEventIntegration(
|
|
390
387
|
args: UpdateEventIntegrationCommandInput,
|
|
391
|
-
options?: __HttpHandlerOptions
|
|
388
|
+
options?: __HttpHandlerOptions,
|
|
392
389
|
): Promise<UpdateEventIntegrationCommandOutput>;
|
|
393
390
|
updateEventIntegration(
|
|
394
391
|
args: UpdateEventIntegrationCommandInput,
|
|
395
|
-
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void
|
|
392
|
+
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void,
|
|
396
393
|
): void;
|
|
397
394
|
updateEventIntegration(
|
|
398
395
|
args: UpdateEventIntegrationCommandInput,
|
|
399
396
|
options: __HttpHandlerOptions,
|
|
400
|
-
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void
|
|
397
|
+
cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void,
|
|
401
398
|
): void;
|
|
402
399
|
paginateListApplicationAssociations(
|
|
403
400
|
args: ListApplicationAssociationsCommandInput,
|
|
404
401
|
paginationConfig?: Pick<
|
|
405
402
|
PaginationConfiguration,
|
|
406
403
|
Exclude<keyof PaginationConfiguration, "client">
|
|
407
|
-
|
|
404
|
+
>,
|
|
408
405
|
): Paginator<ListApplicationAssociationsCommandOutput>;
|
|
409
406
|
paginateListApplications(
|
|
410
407
|
args?: ListApplicationsCommandInput,
|
|
411
408
|
paginationConfig?: Pick<
|
|
412
409
|
PaginationConfiguration,
|
|
413
410
|
Exclude<keyof PaginationConfiguration, "client">
|
|
414
|
-
|
|
411
|
+
>,
|
|
415
412
|
): Paginator<ListApplicationsCommandOutput>;
|
|
416
413
|
paginateListDataIntegrationAssociations(
|
|
417
414
|
args: ListDataIntegrationAssociationsCommandInput,
|
|
418
415
|
paginationConfig?: Pick<
|
|
419
416
|
PaginationConfiguration,
|
|
420
417
|
Exclude<keyof PaginationConfiguration, "client">
|
|
421
|
-
|
|
418
|
+
>,
|
|
422
419
|
): Paginator<ListDataIntegrationAssociationsCommandOutput>;
|
|
423
420
|
paginateListDataIntegrations(
|
|
424
421
|
args?: ListDataIntegrationsCommandInput,
|
|
425
422
|
paginationConfig?: Pick<
|
|
426
423
|
PaginationConfiguration,
|
|
427
424
|
Exclude<keyof PaginationConfiguration, "client">
|
|
428
|
-
|
|
425
|
+
>,
|
|
429
426
|
): Paginator<ListDataIntegrationsCommandOutput>;
|
|
430
427
|
paginateListEventIntegrationAssociations(
|
|
431
428
|
args: ListEventIntegrationAssociationsCommandInput,
|
|
432
429
|
paginationConfig?: Pick<
|
|
433
430
|
PaginationConfiguration,
|
|
434
431
|
Exclude<keyof PaginationConfiguration, "client">
|
|
435
|
-
|
|
432
|
+
>,
|
|
436
433
|
): Paginator<ListEventIntegrationAssociationsCommandOutput>;
|
|
437
434
|
paginateListEventIntegrations(
|
|
438
435
|
args?: ListEventIntegrationsCommandInput,
|
|
439
436
|
paginationConfig?: Pick<
|
|
440
437
|
PaginationConfiguration,
|
|
441
438
|
Exclude<keyof PaginationConfiguration, "client">
|
|
442
|
-
|
|
439
|
+
>,
|
|
443
440
|
): Paginator<ListEventIntegrationsCommandOutput>;
|
|
444
441
|
}
|
|
445
|
-
export declare class AppIntegrations
|
|
446
|
-
extends AppIntegrationsClient
|
|
447
|
-
implements AppIntegrations {}
|
|
442
|
+
export declare class AppIntegrations extends AppIntegrationsClient implements AppIntegrations {}
|
|
@@ -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 {
|
|
@@ -104,10 +101,7 @@ import {
|
|
|
104
101
|
ListTagsForResourceCommandInput,
|
|
105
102
|
ListTagsForResourceCommandOutput,
|
|
106
103
|
} from "./commands/ListTagsForResourceCommand";
|
|
107
|
-
import {
|
|
108
|
-
TagResourceCommandInput,
|
|
109
|
-
TagResourceCommandOutput,
|
|
110
|
-
} from "./commands/TagResourceCommand";
|
|
104
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
111
105
|
import {
|
|
112
106
|
UntagResourceCommandInput,
|
|
113
107
|
UntagResourceCommandOutput,
|
|
@@ -183,8 +177,7 @@ export type ServiceOutputTypes =
|
|
|
183
177
|
| UpdateDataIntegrationAssociationCommandOutput
|
|
184
178
|
| UpdateDataIntegrationCommandOutput
|
|
185
179
|
| UpdateEventIntegrationCommandOutput;
|
|
186
|
-
export interface ClientDefaults
|
|
187
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
180
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
188
181
|
requestHandler?: __HttpHandlerUserInput;
|
|
189
182
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
190
183
|
urlParser?: __UrlParser;
|
|
@@ -209,9 +202,7 @@ export interface ClientDefaults
|
|
|
209
202
|
extensions?: RuntimeExtension[];
|
|
210
203
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
211
204
|
}
|
|
212
|
-
export type AppIntegrationsClientConfigType = Partial<
|
|
213
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
214
|
-
> &
|
|
205
|
+
export type AppIntegrationsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
215
206
|
ClientDefaults &
|
|
216
207
|
UserAgentInputConfig &
|
|
217
208
|
RetryInputConfig &
|
|
@@ -220,8 +211,7 @@ export type AppIntegrationsClientConfigType = Partial<
|
|
|
220
211
|
EndpointInputConfig<EndpointParameters> &
|
|
221
212
|
HttpAuthSchemeInputConfig &
|
|
222
213
|
ClientInputEndpointParameters;
|
|
223
|
-
export interface AppIntegrationsClientConfig
|
|
224
|
-
extends AppIntegrationsClientConfigType {}
|
|
214
|
+
export interface AppIntegrationsClientConfig extends AppIntegrationsClientConfigType {}
|
|
225
215
|
export type AppIntegrationsClientResolvedConfigType =
|
|
226
216
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
227
217
|
Required<ClientDefaults> &
|
|
@@ -233,8 +223,7 @@ export type AppIntegrationsClientResolvedConfigType =
|
|
|
233
223
|
EndpointResolvedConfig<EndpointParameters> &
|
|
234
224
|
HttpAuthSchemeResolvedConfig &
|
|
235
225
|
ClientResolvedEndpointParameters;
|
|
236
|
-
export interface AppIntegrationsClientResolvedConfig
|
|
237
|
-
extends AppIntegrationsClientResolvedConfigType {}
|
|
226
|
+
export interface AppIntegrationsClientResolvedConfig extends AppIntegrationsClientResolvedConfigType {}
|
|
238
227
|
export declare class AppIntegrationsClient extends __Client<
|
|
239
228
|
__HttpHandlerOptions,
|
|
240
229
|
ServiceInputTypes,
|
|
@@ -242,8 +231,6 @@ export declare class AppIntegrationsClient extends __Client<
|
|
|
242
231
|
AppIntegrationsClientResolvedConfig
|
|
243
232
|
> {
|
|
244
233
|
readonly config: AppIntegrationsClientResolvedConfig;
|
|
245
|
-
constructor(
|
|
246
|
-
...[configuration]: __CheckOptionalClientConfig<AppIntegrationsClientConfig>
|
|
247
|
-
);
|
|
234
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<AppIntegrationsClientConfig>);
|
|
248
235
|
destroy(): void;
|
|
249
236
|
}
|
|
@@ -7,17 +7,10 @@ import { AppIntegrationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: AppIntegrationsHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: AppIntegrationsHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): AppIntegrationsHttpAuthSchemeProvider;
|
|
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 { AppIntegrationsClientResolvedConfig } from "../AppIntegrationsClient";
|
|
15
|
-
export interface AppIntegrationsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface AppIntegrationsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface AppIntegrationsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface AppIntegrationsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
AppIntegrationsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
AppIntegrationsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultAppIntegrationsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: AppIntegrationsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<AppIntegrationsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface AppIntegrationsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<AppIntegrationsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface AppIntegrationsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<AppIntegrationsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultAppIntegrationsHttpAuthSchemeProvider: AppIntegrationsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: AppIntegrationsHttpAuthSchemeProvider;
|
|
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: AppIntegrationsHttpAuthSchemeProvider;
|
|
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
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./AppIntegrationsClient";
|
|
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
|
AppIntegrationsClientResolvedConfig,
|
|
@@ -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[];
|