@aws-sdk/client-dataexchange 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/DataExchange.d.ts +130 -180
- package/dist-types/ts3.4/DataExchangeClient.d.ts +17 -60
- 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/AcceptDataGrantCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/CreateDataGrantCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteDataGrantCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetDataGrantCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/GetReceivedDataGrantCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListDataGrantsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListReceivedDataGrantsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/SendDataSetNotificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +4 -9
- 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 +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +9 -27
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListJobsPaginator.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 +39 -39
|
@@ -7,10 +7,7 @@ import {
|
|
|
7
7
|
AcceptDataGrantCommandInput,
|
|
8
8
|
AcceptDataGrantCommandOutput,
|
|
9
9
|
} from "./commands/AcceptDataGrantCommand";
|
|
10
|
-
import {
|
|
11
|
-
CancelJobCommandInput,
|
|
12
|
-
CancelJobCommandOutput,
|
|
13
|
-
} from "./commands/CancelJobCommand";
|
|
10
|
+
import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
|
|
14
11
|
import {
|
|
15
12
|
CreateDataGrantCommandInput,
|
|
16
13
|
CreateDataGrantCommandOutput,
|
|
@@ -23,18 +20,12 @@ import {
|
|
|
23
20
|
CreateEventActionCommandInput,
|
|
24
21
|
CreateEventActionCommandOutput,
|
|
25
22
|
} from "./commands/CreateEventActionCommand";
|
|
26
|
-
import {
|
|
27
|
-
CreateJobCommandInput,
|
|
28
|
-
CreateJobCommandOutput,
|
|
29
|
-
} from "./commands/CreateJobCommand";
|
|
23
|
+
import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
|
|
30
24
|
import {
|
|
31
25
|
CreateRevisionCommandInput,
|
|
32
26
|
CreateRevisionCommandOutput,
|
|
33
27
|
} from "./commands/CreateRevisionCommand";
|
|
34
|
-
import {
|
|
35
|
-
DeleteAssetCommandInput,
|
|
36
|
-
DeleteAssetCommandOutput,
|
|
37
|
-
} from "./commands/DeleteAssetCommand";
|
|
28
|
+
import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "./commands/DeleteAssetCommand";
|
|
38
29
|
import {
|
|
39
30
|
DeleteDataGrantCommandInput,
|
|
40
31
|
DeleteDataGrantCommandOutput,
|
|
@@ -51,34 +42,22 @@ import {
|
|
|
51
42
|
DeleteRevisionCommandInput,
|
|
52
43
|
DeleteRevisionCommandOutput,
|
|
53
44
|
} from "./commands/DeleteRevisionCommand";
|
|
54
|
-
import {
|
|
55
|
-
GetAssetCommandInput,
|
|
56
|
-
GetAssetCommandOutput,
|
|
57
|
-
} from "./commands/GetAssetCommand";
|
|
45
|
+
import { GetAssetCommandInput, GetAssetCommandOutput } from "./commands/GetAssetCommand";
|
|
58
46
|
import {
|
|
59
47
|
GetDataGrantCommandInput,
|
|
60
48
|
GetDataGrantCommandOutput,
|
|
61
49
|
} from "./commands/GetDataGrantCommand";
|
|
62
|
-
import {
|
|
63
|
-
GetDataSetCommandInput,
|
|
64
|
-
GetDataSetCommandOutput,
|
|
65
|
-
} from "./commands/GetDataSetCommand";
|
|
50
|
+
import { GetDataSetCommandInput, GetDataSetCommandOutput } from "./commands/GetDataSetCommand";
|
|
66
51
|
import {
|
|
67
52
|
GetEventActionCommandInput,
|
|
68
53
|
GetEventActionCommandOutput,
|
|
69
54
|
} from "./commands/GetEventActionCommand";
|
|
70
|
-
import {
|
|
71
|
-
GetJobCommandInput,
|
|
72
|
-
GetJobCommandOutput,
|
|
73
|
-
} from "./commands/GetJobCommand";
|
|
55
|
+
import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
|
|
74
56
|
import {
|
|
75
57
|
GetReceivedDataGrantCommandInput,
|
|
76
58
|
GetReceivedDataGrantCommandOutput,
|
|
77
59
|
} from "./commands/GetReceivedDataGrantCommand";
|
|
78
|
-
import {
|
|
79
|
-
GetRevisionCommandInput,
|
|
80
|
-
GetRevisionCommandOutput,
|
|
81
|
-
} from "./commands/GetRevisionCommand";
|
|
60
|
+
import { GetRevisionCommandInput, GetRevisionCommandOutput } from "./commands/GetRevisionCommand";
|
|
82
61
|
import {
|
|
83
62
|
ListDataGrantsCommandInput,
|
|
84
63
|
ListDataGrantsCommandOutput,
|
|
@@ -95,10 +74,7 @@ import {
|
|
|
95
74
|
ListEventActionsCommandInput,
|
|
96
75
|
ListEventActionsCommandOutput,
|
|
97
76
|
} from "./commands/ListEventActionsCommand";
|
|
98
|
-
import {
|
|
99
|
-
ListJobsCommandInput,
|
|
100
|
-
ListJobsCommandOutput,
|
|
101
|
-
} from "./commands/ListJobsCommand";
|
|
77
|
+
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
102
78
|
import {
|
|
103
79
|
ListReceivedDataGrantsCommandInput,
|
|
104
80
|
ListReceivedDataGrantsCommandOutput,
|
|
@@ -123,22 +99,13 @@ import {
|
|
|
123
99
|
SendDataSetNotificationCommandInput,
|
|
124
100
|
SendDataSetNotificationCommandOutput,
|
|
125
101
|
} from "./commands/SendDataSetNotificationCommand";
|
|
126
|
-
import {
|
|
127
|
-
|
|
128
|
-
StartJobCommandOutput,
|
|
129
|
-
} from "./commands/StartJobCommand";
|
|
130
|
-
import {
|
|
131
|
-
TagResourceCommandInput,
|
|
132
|
-
TagResourceCommandOutput,
|
|
133
|
-
} from "./commands/TagResourceCommand";
|
|
102
|
+
import { StartJobCommandInput, StartJobCommandOutput } from "./commands/StartJobCommand";
|
|
103
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
134
104
|
import {
|
|
135
105
|
UntagResourceCommandInput,
|
|
136
106
|
UntagResourceCommandOutput,
|
|
137
107
|
} from "./commands/UntagResourceCommand";
|
|
138
|
-
import {
|
|
139
|
-
UpdateAssetCommandInput,
|
|
140
|
-
UpdateAssetCommandOutput,
|
|
141
|
-
} from "./commands/UpdateAssetCommand";
|
|
108
|
+
import { UpdateAssetCommandInput, UpdateAssetCommandOutput } from "./commands/UpdateAssetCommand";
|
|
142
109
|
import {
|
|
143
110
|
UpdateDataSetCommandInput,
|
|
144
111
|
UpdateDataSetCommandOutput,
|
|
@@ -155,540 +122,523 @@ import { DataExchangeClient } from "./DataExchangeClient";
|
|
|
155
122
|
export interface DataExchange {
|
|
156
123
|
acceptDataGrant(
|
|
157
124
|
args: AcceptDataGrantCommandInput,
|
|
158
|
-
options?: __HttpHandlerOptions
|
|
125
|
+
options?: __HttpHandlerOptions,
|
|
159
126
|
): Promise<AcceptDataGrantCommandOutput>;
|
|
160
127
|
acceptDataGrant(
|
|
161
128
|
args: AcceptDataGrantCommandInput,
|
|
162
|
-
cb: (err: any, data?: AcceptDataGrantCommandOutput) => void
|
|
129
|
+
cb: (err: any, data?: AcceptDataGrantCommandOutput) => void,
|
|
163
130
|
): void;
|
|
164
131
|
acceptDataGrant(
|
|
165
132
|
args: AcceptDataGrantCommandInput,
|
|
166
133
|
options: __HttpHandlerOptions,
|
|
167
|
-
cb: (err: any, data?: AcceptDataGrantCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: AcceptDataGrantCommandOutput) => void,
|
|
168
135
|
): void;
|
|
169
136
|
cancelJob(
|
|
170
137
|
args: CancelJobCommandInput,
|
|
171
|
-
options?: __HttpHandlerOptions
|
|
138
|
+
options?: __HttpHandlerOptions,
|
|
172
139
|
): Promise<CancelJobCommandOutput>;
|
|
173
140
|
cancelJob(
|
|
174
141
|
args: CancelJobCommandInput,
|
|
175
|
-
cb: (err: any, data?: CancelJobCommandOutput) => void
|
|
142
|
+
cb: (err: any, data?: CancelJobCommandOutput) => void,
|
|
176
143
|
): void;
|
|
177
144
|
cancelJob(
|
|
178
145
|
args: CancelJobCommandInput,
|
|
179
146
|
options: __HttpHandlerOptions,
|
|
180
|
-
cb: (err: any, data?: CancelJobCommandOutput) => void
|
|
147
|
+
cb: (err: any, data?: CancelJobCommandOutput) => void,
|
|
181
148
|
): void;
|
|
182
149
|
createDataGrant(
|
|
183
150
|
args: CreateDataGrantCommandInput,
|
|
184
|
-
options?: __HttpHandlerOptions
|
|
151
|
+
options?: __HttpHandlerOptions,
|
|
185
152
|
): Promise<CreateDataGrantCommandOutput>;
|
|
186
153
|
createDataGrant(
|
|
187
154
|
args: CreateDataGrantCommandInput,
|
|
188
|
-
cb: (err: any, data?: CreateDataGrantCommandOutput) => void
|
|
155
|
+
cb: (err: any, data?: CreateDataGrantCommandOutput) => void,
|
|
189
156
|
): void;
|
|
190
157
|
createDataGrant(
|
|
191
158
|
args: CreateDataGrantCommandInput,
|
|
192
159
|
options: __HttpHandlerOptions,
|
|
193
|
-
cb: (err: any, data?: CreateDataGrantCommandOutput) => void
|
|
160
|
+
cb: (err: any, data?: CreateDataGrantCommandOutput) => void,
|
|
194
161
|
): void;
|
|
195
162
|
createDataSet(
|
|
196
163
|
args: CreateDataSetCommandInput,
|
|
197
|
-
options?: __HttpHandlerOptions
|
|
164
|
+
options?: __HttpHandlerOptions,
|
|
198
165
|
): Promise<CreateDataSetCommandOutput>;
|
|
199
166
|
createDataSet(
|
|
200
167
|
args: CreateDataSetCommandInput,
|
|
201
|
-
cb: (err: any, data?: CreateDataSetCommandOutput) => void
|
|
168
|
+
cb: (err: any, data?: CreateDataSetCommandOutput) => void,
|
|
202
169
|
): void;
|
|
203
170
|
createDataSet(
|
|
204
171
|
args: CreateDataSetCommandInput,
|
|
205
172
|
options: __HttpHandlerOptions,
|
|
206
|
-
cb: (err: any, data?: CreateDataSetCommandOutput) => void
|
|
173
|
+
cb: (err: any, data?: CreateDataSetCommandOutput) => void,
|
|
207
174
|
): void;
|
|
208
175
|
createEventAction(
|
|
209
176
|
args: CreateEventActionCommandInput,
|
|
210
|
-
options?: __HttpHandlerOptions
|
|
177
|
+
options?: __HttpHandlerOptions,
|
|
211
178
|
): Promise<CreateEventActionCommandOutput>;
|
|
212
179
|
createEventAction(
|
|
213
180
|
args: CreateEventActionCommandInput,
|
|
214
|
-
cb: (err: any, data?: CreateEventActionCommandOutput) => void
|
|
181
|
+
cb: (err: any, data?: CreateEventActionCommandOutput) => void,
|
|
215
182
|
): void;
|
|
216
183
|
createEventAction(
|
|
217
184
|
args: CreateEventActionCommandInput,
|
|
218
185
|
options: __HttpHandlerOptions,
|
|
219
|
-
cb: (err: any, data?: CreateEventActionCommandOutput) => void
|
|
186
|
+
cb: (err: any, data?: CreateEventActionCommandOutput) => void,
|
|
220
187
|
): void;
|
|
221
188
|
createJob(
|
|
222
189
|
args: CreateJobCommandInput,
|
|
223
|
-
options?: __HttpHandlerOptions
|
|
190
|
+
options?: __HttpHandlerOptions,
|
|
224
191
|
): Promise<CreateJobCommandOutput>;
|
|
225
192
|
createJob(
|
|
226
193
|
args: CreateJobCommandInput,
|
|
227
|
-
cb: (err: any, data?: CreateJobCommandOutput) => void
|
|
194
|
+
cb: (err: any, data?: CreateJobCommandOutput) => void,
|
|
228
195
|
): void;
|
|
229
196
|
createJob(
|
|
230
197
|
args: CreateJobCommandInput,
|
|
231
198
|
options: __HttpHandlerOptions,
|
|
232
|
-
cb: (err: any, data?: CreateJobCommandOutput) => void
|
|
199
|
+
cb: (err: any, data?: CreateJobCommandOutput) => void,
|
|
233
200
|
): void;
|
|
234
201
|
createRevision(
|
|
235
202
|
args: CreateRevisionCommandInput,
|
|
236
|
-
options?: __HttpHandlerOptions
|
|
203
|
+
options?: __HttpHandlerOptions,
|
|
237
204
|
): Promise<CreateRevisionCommandOutput>;
|
|
238
205
|
createRevision(
|
|
239
206
|
args: CreateRevisionCommandInput,
|
|
240
|
-
cb: (err: any, data?: CreateRevisionCommandOutput) => void
|
|
207
|
+
cb: (err: any, data?: CreateRevisionCommandOutput) => void,
|
|
241
208
|
): void;
|
|
242
209
|
createRevision(
|
|
243
210
|
args: CreateRevisionCommandInput,
|
|
244
211
|
options: __HttpHandlerOptions,
|
|
245
|
-
cb: (err: any, data?: CreateRevisionCommandOutput) => void
|
|
212
|
+
cb: (err: any, data?: CreateRevisionCommandOutput) => void,
|
|
246
213
|
): void;
|
|
247
214
|
deleteAsset(
|
|
248
215
|
args: DeleteAssetCommandInput,
|
|
249
|
-
options?: __HttpHandlerOptions
|
|
216
|
+
options?: __HttpHandlerOptions,
|
|
250
217
|
): Promise<DeleteAssetCommandOutput>;
|
|
251
218
|
deleteAsset(
|
|
252
219
|
args: DeleteAssetCommandInput,
|
|
253
|
-
cb: (err: any, data?: DeleteAssetCommandOutput) => void
|
|
220
|
+
cb: (err: any, data?: DeleteAssetCommandOutput) => void,
|
|
254
221
|
): void;
|
|
255
222
|
deleteAsset(
|
|
256
223
|
args: DeleteAssetCommandInput,
|
|
257
224
|
options: __HttpHandlerOptions,
|
|
258
|
-
cb: (err: any, data?: DeleteAssetCommandOutput) => void
|
|
225
|
+
cb: (err: any, data?: DeleteAssetCommandOutput) => void,
|
|
259
226
|
): void;
|
|
260
227
|
deleteDataGrant(
|
|
261
228
|
args: DeleteDataGrantCommandInput,
|
|
262
|
-
options?: __HttpHandlerOptions
|
|
229
|
+
options?: __HttpHandlerOptions,
|
|
263
230
|
): Promise<DeleteDataGrantCommandOutput>;
|
|
264
231
|
deleteDataGrant(
|
|
265
232
|
args: DeleteDataGrantCommandInput,
|
|
266
|
-
cb: (err: any, data?: DeleteDataGrantCommandOutput) => void
|
|
233
|
+
cb: (err: any, data?: DeleteDataGrantCommandOutput) => void,
|
|
267
234
|
): void;
|
|
268
235
|
deleteDataGrant(
|
|
269
236
|
args: DeleteDataGrantCommandInput,
|
|
270
237
|
options: __HttpHandlerOptions,
|
|
271
|
-
cb: (err: any, data?: DeleteDataGrantCommandOutput) => void
|
|
238
|
+
cb: (err: any, data?: DeleteDataGrantCommandOutput) => void,
|
|
272
239
|
): void;
|
|
273
240
|
deleteDataSet(
|
|
274
241
|
args: DeleteDataSetCommandInput,
|
|
275
|
-
options?: __HttpHandlerOptions
|
|
242
|
+
options?: __HttpHandlerOptions,
|
|
276
243
|
): Promise<DeleteDataSetCommandOutput>;
|
|
277
244
|
deleteDataSet(
|
|
278
245
|
args: DeleteDataSetCommandInput,
|
|
279
|
-
cb: (err: any, data?: DeleteDataSetCommandOutput) => void
|
|
246
|
+
cb: (err: any, data?: DeleteDataSetCommandOutput) => void,
|
|
280
247
|
): void;
|
|
281
248
|
deleteDataSet(
|
|
282
249
|
args: DeleteDataSetCommandInput,
|
|
283
250
|
options: __HttpHandlerOptions,
|
|
284
|
-
cb: (err: any, data?: DeleteDataSetCommandOutput) => void
|
|
251
|
+
cb: (err: any, data?: DeleteDataSetCommandOutput) => void,
|
|
285
252
|
): void;
|
|
286
253
|
deleteEventAction(
|
|
287
254
|
args: DeleteEventActionCommandInput,
|
|
288
|
-
options?: __HttpHandlerOptions
|
|
255
|
+
options?: __HttpHandlerOptions,
|
|
289
256
|
): Promise<DeleteEventActionCommandOutput>;
|
|
290
257
|
deleteEventAction(
|
|
291
258
|
args: DeleteEventActionCommandInput,
|
|
292
|
-
cb: (err: any, data?: DeleteEventActionCommandOutput) => void
|
|
259
|
+
cb: (err: any, data?: DeleteEventActionCommandOutput) => void,
|
|
293
260
|
): void;
|
|
294
261
|
deleteEventAction(
|
|
295
262
|
args: DeleteEventActionCommandInput,
|
|
296
263
|
options: __HttpHandlerOptions,
|
|
297
|
-
cb: (err: any, data?: DeleteEventActionCommandOutput) => void
|
|
264
|
+
cb: (err: any, data?: DeleteEventActionCommandOutput) => void,
|
|
298
265
|
): void;
|
|
299
266
|
deleteRevision(
|
|
300
267
|
args: DeleteRevisionCommandInput,
|
|
301
|
-
options?: __HttpHandlerOptions
|
|
268
|
+
options?: __HttpHandlerOptions,
|
|
302
269
|
): Promise<DeleteRevisionCommandOutput>;
|
|
303
270
|
deleteRevision(
|
|
304
271
|
args: DeleteRevisionCommandInput,
|
|
305
|
-
cb: (err: any, data?: DeleteRevisionCommandOutput) => void
|
|
272
|
+
cb: (err: any, data?: DeleteRevisionCommandOutput) => void,
|
|
306
273
|
): void;
|
|
307
274
|
deleteRevision(
|
|
308
275
|
args: DeleteRevisionCommandInput,
|
|
309
276
|
options: __HttpHandlerOptions,
|
|
310
|
-
cb: (err: any, data?: DeleteRevisionCommandOutput) => void
|
|
277
|
+
cb: (err: any, data?: DeleteRevisionCommandOutput) => void,
|
|
311
278
|
): void;
|
|
312
279
|
getAsset(
|
|
313
280
|
args: GetAssetCommandInput,
|
|
314
|
-
options?: __HttpHandlerOptions
|
|
281
|
+
options?: __HttpHandlerOptions,
|
|
315
282
|
): Promise<GetAssetCommandOutput>;
|
|
316
|
-
getAsset(
|
|
317
|
-
args: GetAssetCommandInput,
|
|
318
|
-
cb: (err: any, data?: GetAssetCommandOutput) => void
|
|
319
|
-
): void;
|
|
283
|
+
getAsset(args: GetAssetCommandInput, cb: (err: any, data?: GetAssetCommandOutput) => void): void;
|
|
320
284
|
getAsset(
|
|
321
285
|
args: GetAssetCommandInput,
|
|
322
286
|
options: __HttpHandlerOptions,
|
|
323
|
-
cb: (err: any, data?: GetAssetCommandOutput) => void
|
|
287
|
+
cb: (err: any, data?: GetAssetCommandOutput) => void,
|
|
324
288
|
): void;
|
|
325
289
|
getDataGrant(
|
|
326
290
|
args: GetDataGrantCommandInput,
|
|
327
|
-
options?: __HttpHandlerOptions
|
|
291
|
+
options?: __HttpHandlerOptions,
|
|
328
292
|
): Promise<GetDataGrantCommandOutput>;
|
|
329
293
|
getDataGrant(
|
|
330
294
|
args: GetDataGrantCommandInput,
|
|
331
|
-
cb: (err: any, data?: GetDataGrantCommandOutput) => void
|
|
295
|
+
cb: (err: any, data?: GetDataGrantCommandOutput) => void,
|
|
332
296
|
): void;
|
|
333
297
|
getDataGrant(
|
|
334
298
|
args: GetDataGrantCommandInput,
|
|
335
299
|
options: __HttpHandlerOptions,
|
|
336
|
-
cb: (err: any, data?: GetDataGrantCommandOutput) => void
|
|
300
|
+
cb: (err: any, data?: GetDataGrantCommandOutput) => void,
|
|
337
301
|
): void;
|
|
338
302
|
getDataSet(
|
|
339
303
|
args: GetDataSetCommandInput,
|
|
340
|
-
options?: __HttpHandlerOptions
|
|
304
|
+
options?: __HttpHandlerOptions,
|
|
341
305
|
): Promise<GetDataSetCommandOutput>;
|
|
342
306
|
getDataSet(
|
|
343
307
|
args: GetDataSetCommandInput,
|
|
344
|
-
cb: (err: any, data?: GetDataSetCommandOutput) => void
|
|
308
|
+
cb: (err: any, data?: GetDataSetCommandOutput) => void,
|
|
345
309
|
): void;
|
|
346
310
|
getDataSet(
|
|
347
311
|
args: GetDataSetCommandInput,
|
|
348
312
|
options: __HttpHandlerOptions,
|
|
349
|
-
cb: (err: any, data?: GetDataSetCommandOutput) => void
|
|
313
|
+
cb: (err: any, data?: GetDataSetCommandOutput) => void,
|
|
350
314
|
): void;
|
|
351
315
|
getEventAction(
|
|
352
316
|
args: GetEventActionCommandInput,
|
|
353
|
-
options?: __HttpHandlerOptions
|
|
317
|
+
options?: __HttpHandlerOptions,
|
|
354
318
|
): Promise<GetEventActionCommandOutput>;
|
|
355
319
|
getEventAction(
|
|
356
320
|
args: GetEventActionCommandInput,
|
|
357
|
-
cb: (err: any, data?: GetEventActionCommandOutput) => void
|
|
321
|
+
cb: (err: any, data?: GetEventActionCommandOutput) => void,
|
|
358
322
|
): void;
|
|
359
323
|
getEventAction(
|
|
360
324
|
args: GetEventActionCommandInput,
|
|
361
325
|
options: __HttpHandlerOptions,
|
|
362
|
-
cb: (err: any, data?: GetEventActionCommandOutput) => void
|
|
363
|
-
): void;
|
|
364
|
-
getJob(
|
|
365
|
-
args: GetJobCommandInput,
|
|
366
|
-
options?: __HttpHandlerOptions
|
|
367
|
-
): Promise<GetJobCommandOutput>;
|
|
368
|
-
getJob(
|
|
369
|
-
args: GetJobCommandInput,
|
|
370
|
-
cb: (err: any, data?: GetJobCommandOutput) => void
|
|
326
|
+
cb: (err: any, data?: GetEventActionCommandOutput) => void,
|
|
371
327
|
): void;
|
|
328
|
+
getJob(args: GetJobCommandInput, options?: __HttpHandlerOptions): Promise<GetJobCommandOutput>;
|
|
329
|
+
getJob(args: GetJobCommandInput, cb: (err: any, data?: GetJobCommandOutput) => void): void;
|
|
372
330
|
getJob(
|
|
373
331
|
args: GetJobCommandInput,
|
|
374
332
|
options: __HttpHandlerOptions,
|
|
375
|
-
cb: (err: any, data?: GetJobCommandOutput) => void
|
|
333
|
+
cb: (err: any, data?: GetJobCommandOutput) => void,
|
|
376
334
|
): void;
|
|
377
335
|
getReceivedDataGrant(
|
|
378
336
|
args: GetReceivedDataGrantCommandInput,
|
|
379
|
-
options?: __HttpHandlerOptions
|
|
337
|
+
options?: __HttpHandlerOptions,
|
|
380
338
|
): Promise<GetReceivedDataGrantCommandOutput>;
|
|
381
339
|
getReceivedDataGrant(
|
|
382
340
|
args: GetReceivedDataGrantCommandInput,
|
|
383
|
-
cb: (err: any, data?: GetReceivedDataGrantCommandOutput) => void
|
|
341
|
+
cb: (err: any, data?: GetReceivedDataGrantCommandOutput) => void,
|
|
384
342
|
): void;
|
|
385
343
|
getReceivedDataGrant(
|
|
386
344
|
args: GetReceivedDataGrantCommandInput,
|
|
387
345
|
options: __HttpHandlerOptions,
|
|
388
|
-
cb: (err: any, data?: GetReceivedDataGrantCommandOutput) => void
|
|
346
|
+
cb: (err: any, data?: GetReceivedDataGrantCommandOutput) => void,
|
|
389
347
|
): void;
|
|
390
348
|
getRevision(
|
|
391
349
|
args: GetRevisionCommandInput,
|
|
392
|
-
options?: __HttpHandlerOptions
|
|
350
|
+
options?: __HttpHandlerOptions,
|
|
393
351
|
): Promise<GetRevisionCommandOutput>;
|
|
394
352
|
getRevision(
|
|
395
353
|
args: GetRevisionCommandInput,
|
|
396
|
-
cb: (err: any, data?: GetRevisionCommandOutput) => void
|
|
354
|
+
cb: (err: any, data?: GetRevisionCommandOutput) => void,
|
|
397
355
|
): void;
|
|
398
356
|
getRevision(
|
|
399
357
|
args: GetRevisionCommandInput,
|
|
400
358
|
options: __HttpHandlerOptions,
|
|
401
|
-
cb: (err: any, data?: GetRevisionCommandOutput) => void
|
|
359
|
+
cb: (err: any, data?: GetRevisionCommandOutput) => void,
|
|
402
360
|
): void;
|
|
403
361
|
listDataGrants(): Promise<ListDataGrantsCommandOutput>;
|
|
404
362
|
listDataGrants(
|
|
405
363
|
args: ListDataGrantsCommandInput,
|
|
406
|
-
options?: __HttpHandlerOptions
|
|
364
|
+
options?: __HttpHandlerOptions,
|
|
407
365
|
): Promise<ListDataGrantsCommandOutput>;
|
|
408
366
|
listDataGrants(
|
|
409
367
|
args: ListDataGrantsCommandInput,
|
|
410
|
-
cb: (err: any, data?: ListDataGrantsCommandOutput) => void
|
|
368
|
+
cb: (err: any, data?: ListDataGrantsCommandOutput) => void,
|
|
411
369
|
): void;
|
|
412
370
|
listDataGrants(
|
|
413
371
|
args: ListDataGrantsCommandInput,
|
|
414
372
|
options: __HttpHandlerOptions,
|
|
415
|
-
cb: (err: any, data?: ListDataGrantsCommandOutput) => void
|
|
373
|
+
cb: (err: any, data?: ListDataGrantsCommandOutput) => void,
|
|
416
374
|
): void;
|
|
417
375
|
listDataSetRevisions(
|
|
418
376
|
args: ListDataSetRevisionsCommandInput,
|
|
419
|
-
options?: __HttpHandlerOptions
|
|
377
|
+
options?: __HttpHandlerOptions,
|
|
420
378
|
): Promise<ListDataSetRevisionsCommandOutput>;
|
|
421
379
|
listDataSetRevisions(
|
|
422
380
|
args: ListDataSetRevisionsCommandInput,
|
|
423
|
-
cb: (err: any, data?: ListDataSetRevisionsCommandOutput) => void
|
|
381
|
+
cb: (err: any, data?: ListDataSetRevisionsCommandOutput) => void,
|
|
424
382
|
): void;
|
|
425
383
|
listDataSetRevisions(
|
|
426
384
|
args: ListDataSetRevisionsCommandInput,
|
|
427
385
|
options: __HttpHandlerOptions,
|
|
428
|
-
cb: (err: any, data?: ListDataSetRevisionsCommandOutput) => void
|
|
386
|
+
cb: (err: any, data?: ListDataSetRevisionsCommandOutput) => void,
|
|
429
387
|
): void;
|
|
430
388
|
listDataSets(): Promise<ListDataSetsCommandOutput>;
|
|
431
389
|
listDataSets(
|
|
432
390
|
args: ListDataSetsCommandInput,
|
|
433
|
-
options?: __HttpHandlerOptions
|
|
391
|
+
options?: __HttpHandlerOptions,
|
|
434
392
|
): Promise<ListDataSetsCommandOutput>;
|
|
435
393
|
listDataSets(
|
|
436
394
|
args: ListDataSetsCommandInput,
|
|
437
|
-
cb: (err: any, data?: ListDataSetsCommandOutput) => void
|
|
395
|
+
cb: (err: any, data?: ListDataSetsCommandOutput) => void,
|
|
438
396
|
): void;
|
|
439
397
|
listDataSets(
|
|
440
398
|
args: ListDataSetsCommandInput,
|
|
441
399
|
options: __HttpHandlerOptions,
|
|
442
|
-
cb: (err: any, data?: ListDataSetsCommandOutput) => void
|
|
400
|
+
cb: (err: any, data?: ListDataSetsCommandOutput) => void,
|
|
443
401
|
): void;
|
|
444
402
|
listEventActions(): Promise<ListEventActionsCommandOutput>;
|
|
445
403
|
listEventActions(
|
|
446
404
|
args: ListEventActionsCommandInput,
|
|
447
|
-
options?: __HttpHandlerOptions
|
|
405
|
+
options?: __HttpHandlerOptions,
|
|
448
406
|
): Promise<ListEventActionsCommandOutput>;
|
|
449
407
|
listEventActions(
|
|
450
408
|
args: ListEventActionsCommandInput,
|
|
451
|
-
cb: (err: any, data?: ListEventActionsCommandOutput) => void
|
|
409
|
+
cb: (err: any, data?: ListEventActionsCommandOutput) => void,
|
|
452
410
|
): void;
|
|
453
411
|
listEventActions(
|
|
454
412
|
args: ListEventActionsCommandInput,
|
|
455
413
|
options: __HttpHandlerOptions,
|
|
456
|
-
cb: (err: any, data?: ListEventActionsCommandOutput) => void
|
|
414
|
+
cb: (err: any, data?: ListEventActionsCommandOutput) => void,
|
|
457
415
|
): void;
|
|
458
416
|
listJobs(): Promise<ListJobsCommandOutput>;
|
|
459
417
|
listJobs(
|
|
460
418
|
args: ListJobsCommandInput,
|
|
461
|
-
options?: __HttpHandlerOptions
|
|
419
|
+
options?: __HttpHandlerOptions,
|
|
462
420
|
): Promise<ListJobsCommandOutput>;
|
|
463
|
-
listJobs(
|
|
464
|
-
args: ListJobsCommandInput,
|
|
465
|
-
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
466
|
-
): void;
|
|
421
|
+
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
467
422
|
listJobs(
|
|
468
423
|
args: ListJobsCommandInput,
|
|
469
424
|
options: __HttpHandlerOptions,
|
|
470
|
-
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
425
|
+
cb: (err: any, data?: ListJobsCommandOutput) => void,
|
|
471
426
|
): void;
|
|
472
427
|
listReceivedDataGrants(): Promise<ListReceivedDataGrantsCommandOutput>;
|
|
473
428
|
listReceivedDataGrants(
|
|
474
429
|
args: ListReceivedDataGrantsCommandInput,
|
|
475
|
-
options?: __HttpHandlerOptions
|
|
430
|
+
options?: __HttpHandlerOptions,
|
|
476
431
|
): Promise<ListReceivedDataGrantsCommandOutput>;
|
|
477
432
|
listReceivedDataGrants(
|
|
478
433
|
args: ListReceivedDataGrantsCommandInput,
|
|
479
|
-
cb: (err: any, data?: ListReceivedDataGrantsCommandOutput) => void
|
|
434
|
+
cb: (err: any, data?: ListReceivedDataGrantsCommandOutput) => void,
|
|
480
435
|
): void;
|
|
481
436
|
listReceivedDataGrants(
|
|
482
437
|
args: ListReceivedDataGrantsCommandInput,
|
|
483
438
|
options: __HttpHandlerOptions,
|
|
484
|
-
cb: (err: any, data?: ListReceivedDataGrantsCommandOutput) => void
|
|
439
|
+
cb: (err: any, data?: ListReceivedDataGrantsCommandOutput) => void,
|
|
485
440
|
): void;
|
|
486
441
|
listRevisionAssets(
|
|
487
442
|
args: ListRevisionAssetsCommandInput,
|
|
488
|
-
options?: __HttpHandlerOptions
|
|
443
|
+
options?: __HttpHandlerOptions,
|
|
489
444
|
): Promise<ListRevisionAssetsCommandOutput>;
|
|
490
445
|
listRevisionAssets(
|
|
491
446
|
args: ListRevisionAssetsCommandInput,
|
|
492
|
-
cb: (err: any, data?: ListRevisionAssetsCommandOutput) => void
|
|
447
|
+
cb: (err: any, data?: ListRevisionAssetsCommandOutput) => void,
|
|
493
448
|
): void;
|
|
494
449
|
listRevisionAssets(
|
|
495
450
|
args: ListRevisionAssetsCommandInput,
|
|
496
451
|
options: __HttpHandlerOptions,
|
|
497
|
-
cb: (err: any, data?: ListRevisionAssetsCommandOutput) => void
|
|
452
|
+
cb: (err: any, data?: ListRevisionAssetsCommandOutput) => void,
|
|
498
453
|
): void;
|
|
499
454
|
listTagsForResource(
|
|
500
455
|
args: ListTagsForResourceCommandInput,
|
|
501
|
-
options?: __HttpHandlerOptions
|
|
456
|
+
options?: __HttpHandlerOptions,
|
|
502
457
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
503
458
|
listTagsForResource(
|
|
504
459
|
args: ListTagsForResourceCommandInput,
|
|
505
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
460
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
506
461
|
): void;
|
|
507
462
|
listTagsForResource(
|
|
508
463
|
args: ListTagsForResourceCommandInput,
|
|
509
464
|
options: __HttpHandlerOptions,
|
|
510
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
465
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
511
466
|
): void;
|
|
512
467
|
revokeRevision(
|
|
513
468
|
args: RevokeRevisionCommandInput,
|
|
514
|
-
options?: __HttpHandlerOptions
|
|
469
|
+
options?: __HttpHandlerOptions,
|
|
515
470
|
): Promise<RevokeRevisionCommandOutput>;
|
|
516
471
|
revokeRevision(
|
|
517
472
|
args: RevokeRevisionCommandInput,
|
|
518
|
-
cb: (err: any, data?: RevokeRevisionCommandOutput) => void
|
|
473
|
+
cb: (err: any, data?: RevokeRevisionCommandOutput) => void,
|
|
519
474
|
): void;
|
|
520
475
|
revokeRevision(
|
|
521
476
|
args: RevokeRevisionCommandInput,
|
|
522
477
|
options: __HttpHandlerOptions,
|
|
523
|
-
cb: (err: any, data?: RevokeRevisionCommandOutput) => void
|
|
478
|
+
cb: (err: any, data?: RevokeRevisionCommandOutput) => void,
|
|
524
479
|
): void;
|
|
525
480
|
sendApiAsset(
|
|
526
481
|
args: SendApiAssetCommandInput,
|
|
527
|
-
options?: __HttpHandlerOptions
|
|
482
|
+
options?: __HttpHandlerOptions,
|
|
528
483
|
): Promise<SendApiAssetCommandOutput>;
|
|
529
484
|
sendApiAsset(
|
|
530
485
|
args: SendApiAssetCommandInput,
|
|
531
|
-
cb: (err: any, data?: SendApiAssetCommandOutput) => void
|
|
486
|
+
cb: (err: any, data?: SendApiAssetCommandOutput) => void,
|
|
532
487
|
): void;
|
|
533
488
|
sendApiAsset(
|
|
534
489
|
args: SendApiAssetCommandInput,
|
|
535
490
|
options: __HttpHandlerOptions,
|
|
536
|
-
cb: (err: any, data?: SendApiAssetCommandOutput) => void
|
|
491
|
+
cb: (err: any, data?: SendApiAssetCommandOutput) => void,
|
|
537
492
|
): void;
|
|
538
493
|
sendDataSetNotification(
|
|
539
494
|
args: SendDataSetNotificationCommandInput,
|
|
540
|
-
options?: __HttpHandlerOptions
|
|
495
|
+
options?: __HttpHandlerOptions,
|
|
541
496
|
): Promise<SendDataSetNotificationCommandOutput>;
|
|
542
497
|
sendDataSetNotification(
|
|
543
498
|
args: SendDataSetNotificationCommandInput,
|
|
544
|
-
cb: (err: any, data?: SendDataSetNotificationCommandOutput) => void
|
|
499
|
+
cb: (err: any, data?: SendDataSetNotificationCommandOutput) => void,
|
|
545
500
|
): void;
|
|
546
501
|
sendDataSetNotification(
|
|
547
502
|
args: SendDataSetNotificationCommandInput,
|
|
548
503
|
options: __HttpHandlerOptions,
|
|
549
|
-
cb: (err: any, data?: SendDataSetNotificationCommandOutput) => void
|
|
504
|
+
cb: (err: any, data?: SendDataSetNotificationCommandOutput) => void,
|
|
550
505
|
): void;
|
|
551
506
|
startJob(
|
|
552
507
|
args: StartJobCommandInput,
|
|
553
|
-
options?: __HttpHandlerOptions
|
|
508
|
+
options?: __HttpHandlerOptions,
|
|
554
509
|
): Promise<StartJobCommandOutput>;
|
|
555
|
-
startJob(
|
|
556
|
-
args: StartJobCommandInput,
|
|
557
|
-
cb: (err: any, data?: StartJobCommandOutput) => void
|
|
558
|
-
): void;
|
|
510
|
+
startJob(args: StartJobCommandInput, cb: (err: any, data?: StartJobCommandOutput) => void): void;
|
|
559
511
|
startJob(
|
|
560
512
|
args: StartJobCommandInput,
|
|
561
513
|
options: __HttpHandlerOptions,
|
|
562
|
-
cb: (err: any, data?: StartJobCommandOutput) => void
|
|
514
|
+
cb: (err: any, data?: StartJobCommandOutput) => void,
|
|
563
515
|
): void;
|
|
564
516
|
tagResource(
|
|
565
517
|
args: TagResourceCommandInput,
|
|
566
|
-
options?: __HttpHandlerOptions
|
|
518
|
+
options?: __HttpHandlerOptions,
|
|
567
519
|
): Promise<TagResourceCommandOutput>;
|
|
568
520
|
tagResource(
|
|
569
521
|
args: TagResourceCommandInput,
|
|
570
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
522
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
571
523
|
): void;
|
|
572
524
|
tagResource(
|
|
573
525
|
args: TagResourceCommandInput,
|
|
574
526
|
options: __HttpHandlerOptions,
|
|
575
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
527
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
576
528
|
): void;
|
|
577
529
|
untagResource(
|
|
578
530
|
args: UntagResourceCommandInput,
|
|
579
|
-
options?: __HttpHandlerOptions
|
|
531
|
+
options?: __HttpHandlerOptions,
|
|
580
532
|
): Promise<UntagResourceCommandOutput>;
|
|
581
533
|
untagResource(
|
|
582
534
|
args: UntagResourceCommandInput,
|
|
583
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
535
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
584
536
|
): void;
|
|
585
537
|
untagResource(
|
|
586
538
|
args: UntagResourceCommandInput,
|
|
587
539
|
options: __HttpHandlerOptions,
|
|
588
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
540
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
589
541
|
): void;
|
|
590
542
|
updateAsset(
|
|
591
543
|
args: UpdateAssetCommandInput,
|
|
592
|
-
options?: __HttpHandlerOptions
|
|
544
|
+
options?: __HttpHandlerOptions,
|
|
593
545
|
): Promise<UpdateAssetCommandOutput>;
|
|
594
546
|
updateAsset(
|
|
595
547
|
args: UpdateAssetCommandInput,
|
|
596
|
-
cb: (err: any, data?: UpdateAssetCommandOutput) => void
|
|
548
|
+
cb: (err: any, data?: UpdateAssetCommandOutput) => void,
|
|
597
549
|
): void;
|
|
598
550
|
updateAsset(
|
|
599
551
|
args: UpdateAssetCommandInput,
|
|
600
552
|
options: __HttpHandlerOptions,
|
|
601
|
-
cb: (err: any, data?: UpdateAssetCommandOutput) => void
|
|
553
|
+
cb: (err: any, data?: UpdateAssetCommandOutput) => void,
|
|
602
554
|
): void;
|
|
603
555
|
updateDataSet(
|
|
604
556
|
args: UpdateDataSetCommandInput,
|
|
605
|
-
options?: __HttpHandlerOptions
|
|
557
|
+
options?: __HttpHandlerOptions,
|
|
606
558
|
): Promise<UpdateDataSetCommandOutput>;
|
|
607
559
|
updateDataSet(
|
|
608
560
|
args: UpdateDataSetCommandInput,
|
|
609
|
-
cb: (err: any, data?: UpdateDataSetCommandOutput) => void
|
|
561
|
+
cb: (err: any, data?: UpdateDataSetCommandOutput) => void,
|
|
610
562
|
): void;
|
|
611
563
|
updateDataSet(
|
|
612
564
|
args: UpdateDataSetCommandInput,
|
|
613
565
|
options: __HttpHandlerOptions,
|
|
614
|
-
cb: (err: any, data?: UpdateDataSetCommandOutput) => void
|
|
566
|
+
cb: (err: any, data?: UpdateDataSetCommandOutput) => void,
|
|
615
567
|
): void;
|
|
616
568
|
updateEventAction(
|
|
617
569
|
args: UpdateEventActionCommandInput,
|
|
618
|
-
options?: __HttpHandlerOptions
|
|
570
|
+
options?: __HttpHandlerOptions,
|
|
619
571
|
): Promise<UpdateEventActionCommandOutput>;
|
|
620
572
|
updateEventAction(
|
|
621
573
|
args: UpdateEventActionCommandInput,
|
|
622
|
-
cb: (err: any, data?: UpdateEventActionCommandOutput) => void
|
|
574
|
+
cb: (err: any, data?: UpdateEventActionCommandOutput) => void,
|
|
623
575
|
): void;
|
|
624
576
|
updateEventAction(
|
|
625
577
|
args: UpdateEventActionCommandInput,
|
|
626
578
|
options: __HttpHandlerOptions,
|
|
627
|
-
cb: (err: any, data?: UpdateEventActionCommandOutput) => void
|
|
579
|
+
cb: (err: any, data?: UpdateEventActionCommandOutput) => void,
|
|
628
580
|
): void;
|
|
629
581
|
updateRevision(
|
|
630
582
|
args: UpdateRevisionCommandInput,
|
|
631
|
-
options?: __HttpHandlerOptions
|
|
583
|
+
options?: __HttpHandlerOptions,
|
|
632
584
|
): Promise<UpdateRevisionCommandOutput>;
|
|
633
585
|
updateRevision(
|
|
634
586
|
args: UpdateRevisionCommandInput,
|
|
635
|
-
cb: (err: any, data?: UpdateRevisionCommandOutput) => void
|
|
587
|
+
cb: (err: any, data?: UpdateRevisionCommandOutput) => void,
|
|
636
588
|
): void;
|
|
637
589
|
updateRevision(
|
|
638
590
|
args: UpdateRevisionCommandInput,
|
|
639
591
|
options: __HttpHandlerOptions,
|
|
640
|
-
cb: (err: any, data?: UpdateRevisionCommandOutput) => void
|
|
592
|
+
cb: (err: any, data?: UpdateRevisionCommandOutput) => void,
|
|
641
593
|
): void;
|
|
642
594
|
paginateListDataGrants(
|
|
643
595
|
args?: ListDataGrantsCommandInput,
|
|
644
596
|
paginationConfig?: Pick<
|
|
645
597
|
PaginationConfiguration,
|
|
646
598
|
Exclude<keyof PaginationConfiguration, "client">
|
|
647
|
-
|
|
599
|
+
>,
|
|
648
600
|
): Paginator<ListDataGrantsCommandOutput>;
|
|
649
601
|
paginateListDataSetRevisions(
|
|
650
602
|
args: ListDataSetRevisionsCommandInput,
|
|
651
603
|
paginationConfig?: Pick<
|
|
652
604
|
PaginationConfiguration,
|
|
653
605
|
Exclude<keyof PaginationConfiguration, "client">
|
|
654
|
-
|
|
606
|
+
>,
|
|
655
607
|
): Paginator<ListDataSetRevisionsCommandOutput>;
|
|
656
608
|
paginateListDataSets(
|
|
657
609
|
args?: ListDataSetsCommandInput,
|
|
658
610
|
paginationConfig?: Pick<
|
|
659
611
|
PaginationConfiguration,
|
|
660
612
|
Exclude<keyof PaginationConfiguration, "client">
|
|
661
|
-
|
|
613
|
+
>,
|
|
662
614
|
): Paginator<ListDataSetsCommandOutput>;
|
|
663
615
|
paginateListEventActions(
|
|
664
616
|
args?: ListEventActionsCommandInput,
|
|
665
617
|
paginationConfig?: Pick<
|
|
666
618
|
PaginationConfiguration,
|
|
667
619
|
Exclude<keyof PaginationConfiguration, "client">
|
|
668
|
-
|
|
620
|
+
>,
|
|
669
621
|
): Paginator<ListEventActionsCommandOutput>;
|
|
670
622
|
paginateListJobs(
|
|
671
623
|
args?: ListJobsCommandInput,
|
|
672
624
|
paginationConfig?: Pick<
|
|
673
625
|
PaginationConfiguration,
|
|
674
626
|
Exclude<keyof PaginationConfiguration, "client">
|
|
675
|
-
|
|
627
|
+
>,
|
|
676
628
|
): Paginator<ListJobsCommandOutput>;
|
|
677
629
|
paginateListReceivedDataGrants(
|
|
678
630
|
args?: ListReceivedDataGrantsCommandInput,
|
|
679
631
|
paginationConfig?: Pick<
|
|
680
632
|
PaginationConfiguration,
|
|
681
633
|
Exclude<keyof PaginationConfiguration, "client">
|
|
682
|
-
|
|
634
|
+
>,
|
|
683
635
|
): Paginator<ListReceivedDataGrantsCommandOutput>;
|
|
684
636
|
paginateListRevisionAssets(
|
|
685
637
|
args: ListRevisionAssetsCommandInput,
|
|
686
638
|
paginationConfig?: Pick<
|
|
687
639
|
PaginationConfiguration,
|
|
688
640
|
Exclude<keyof PaginationConfiguration, "client">
|
|
689
|
-
|
|
641
|
+
>,
|
|
690
642
|
): Paginator<ListRevisionAssetsCommandOutput>;
|
|
691
643
|
}
|
|
692
|
-
export declare class DataExchange
|
|
693
|
-
extends DataExchangeClient
|
|
694
|
-
implements DataExchange {}
|
|
644
|
+
export declare class DataExchange extends DataExchangeClient implements DataExchange {}
|