@aws-sdk/client-dataexchange 3.716.0 → 3.723.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 +278 -156
- package/dist-es/DataExchangeClient.js +1 -0
- package/dist-es/models/models_0.js +28 -14
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -197,7 +197,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
197
197
|
}, "resolveRuntimeExtensions");
|
|
198
198
|
|
|
199
199
|
// src/DataExchangeClient.ts
|
|
200
|
-
var
|
|
200
|
+
var DataExchangeClient = class extends import_smithy_client.Client {
|
|
201
|
+
static {
|
|
202
|
+
__name(this, "DataExchangeClient");
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* The resolved configuration of DataExchangeClient class. This is resolved and normalized from the {@link DataExchangeClientConfig | constructor configuration interface}.
|
|
206
|
+
*/
|
|
207
|
+
config;
|
|
201
208
|
constructor(...[configuration]) {
|
|
202
209
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
203
210
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -207,7 +214,7 @@ var _DataExchangeClient = class _DataExchangeClient extends import_smithy_client
|
|
|
207
214
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
208
215
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
209
216
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
210
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
217
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
211
218
|
super(_config_8);
|
|
212
219
|
this.config = _config_8;
|
|
213
220
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -235,8 +242,6 @@ var _DataExchangeClient = class _DataExchangeClient extends import_smithy_client
|
|
|
235
242
|
super.destroy();
|
|
236
243
|
}
|
|
237
244
|
};
|
|
238
|
-
__name(_DataExchangeClient, "DataExchangeClient");
|
|
239
|
-
var DataExchangeClient = _DataExchangeClient;
|
|
240
245
|
|
|
241
246
|
// src/DataExchange.ts
|
|
242
247
|
|
|
@@ -255,7 +260,10 @@ var import_uuid = require("uuid");
|
|
|
255
260
|
|
|
256
261
|
// src/models/DataExchangeServiceException.ts
|
|
257
262
|
|
|
258
|
-
var
|
|
263
|
+
var DataExchangeServiceException = class _DataExchangeServiceException extends import_smithy_client.ServiceException {
|
|
264
|
+
static {
|
|
265
|
+
__name(this, "DataExchangeServiceException");
|
|
266
|
+
}
|
|
259
267
|
/**
|
|
260
268
|
* @internal
|
|
261
269
|
*/
|
|
@@ -264,8 +272,6 @@ var _DataExchangeServiceException = class _DataExchangeServiceException extends
|
|
|
264
272
|
Object.setPrototypeOf(this, _DataExchangeServiceException.prototype);
|
|
265
273
|
}
|
|
266
274
|
};
|
|
267
|
-
__name(_DataExchangeServiceException, "DataExchangeServiceException");
|
|
268
|
-
var DataExchangeServiceException = _DataExchangeServiceException;
|
|
269
275
|
|
|
270
276
|
// src/models/models_0.ts
|
|
271
277
|
var AcceptanceStateFilterValue = {
|
|
@@ -280,7 +286,17 @@ var GrantDistributionScope = {
|
|
|
280
286
|
AWS_ORGANIZATION: "AWS_ORGANIZATION",
|
|
281
287
|
NONE: "NONE"
|
|
282
288
|
};
|
|
283
|
-
var
|
|
289
|
+
var AccessDeniedException = class _AccessDeniedException extends DataExchangeServiceException {
|
|
290
|
+
static {
|
|
291
|
+
__name(this, "AccessDeniedException");
|
|
292
|
+
}
|
|
293
|
+
name = "AccessDeniedException";
|
|
294
|
+
$fault = "client";
|
|
295
|
+
/**
|
|
296
|
+
* <p>Access to the resource is denied.</p>
|
|
297
|
+
* @public
|
|
298
|
+
*/
|
|
299
|
+
Message;
|
|
284
300
|
/**
|
|
285
301
|
* @internal
|
|
286
302
|
*/
|
|
@@ -290,14 +306,10 @@ var _AccessDeniedException = class _AccessDeniedException extends DataExchangeSe
|
|
|
290
306
|
$fault: "client",
|
|
291
307
|
...opts
|
|
292
308
|
});
|
|
293
|
-
this.name = "AccessDeniedException";
|
|
294
|
-
this.$fault = "client";
|
|
295
309
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
296
310
|
this.Message = opts.Message;
|
|
297
311
|
}
|
|
298
312
|
};
|
|
299
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
300
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
301
313
|
var ResourceType = {
|
|
302
314
|
ASSET: "ASSET",
|
|
303
315
|
DATA_GRANT: "DATA_GRANT",
|
|
@@ -306,7 +318,28 @@ var ResourceType = {
|
|
|
306
318
|
JOB: "JOB",
|
|
307
319
|
REVISION: "REVISION"
|
|
308
320
|
};
|
|
309
|
-
var
|
|
321
|
+
var ConflictException = class _ConflictException extends DataExchangeServiceException {
|
|
322
|
+
static {
|
|
323
|
+
__name(this, "ConflictException");
|
|
324
|
+
}
|
|
325
|
+
name = "ConflictException";
|
|
326
|
+
$fault = "client";
|
|
327
|
+
/**
|
|
328
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
329
|
+
* resource.</p>
|
|
330
|
+
* @public
|
|
331
|
+
*/
|
|
332
|
+
Message;
|
|
333
|
+
/**
|
|
334
|
+
* <p>The unique identifier for the resource with the conflict.</p>
|
|
335
|
+
* @public
|
|
336
|
+
*/
|
|
337
|
+
ResourceId;
|
|
338
|
+
/**
|
|
339
|
+
* <p>The type of the resource with the conflict.</p>
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
342
|
+
ResourceType;
|
|
310
343
|
/**
|
|
311
344
|
* @internal
|
|
312
345
|
*/
|
|
@@ -316,17 +349,23 @@ var _ConflictException = class _ConflictException extends DataExchangeServiceExc
|
|
|
316
349
|
$fault: "client",
|
|
317
350
|
...opts
|
|
318
351
|
});
|
|
319
|
-
this.name = "ConflictException";
|
|
320
|
-
this.$fault = "client";
|
|
321
352
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
322
353
|
this.Message = opts.Message;
|
|
323
354
|
this.ResourceId = opts.ResourceId;
|
|
324
355
|
this.ResourceType = opts.ResourceType;
|
|
325
356
|
}
|
|
326
357
|
};
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
358
|
+
var InternalServerException = class _InternalServerException extends DataExchangeServiceException {
|
|
359
|
+
static {
|
|
360
|
+
__name(this, "InternalServerException");
|
|
361
|
+
}
|
|
362
|
+
name = "InternalServerException";
|
|
363
|
+
$fault = "server";
|
|
364
|
+
/**
|
|
365
|
+
* <p>The message identifying the service exception that occurred.</p>
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
368
|
+
Message;
|
|
330
369
|
/**
|
|
331
370
|
* @internal
|
|
332
371
|
*/
|
|
@@ -336,15 +375,31 @@ var _InternalServerException = class _InternalServerException extends DataExchan
|
|
|
336
375
|
$fault: "server",
|
|
337
376
|
...opts
|
|
338
377
|
});
|
|
339
|
-
this.name = "InternalServerException";
|
|
340
|
-
this.$fault = "server";
|
|
341
378
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
342
379
|
this.Message = opts.Message;
|
|
343
380
|
}
|
|
344
381
|
};
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
382
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends DataExchangeServiceException {
|
|
383
|
+
static {
|
|
384
|
+
__name(this, "ResourceNotFoundException");
|
|
385
|
+
}
|
|
386
|
+
name = "ResourceNotFoundException";
|
|
387
|
+
$fault = "client";
|
|
388
|
+
/**
|
|
389
|
+
* <p>The resource couldn't be found.</p>
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
392
|
+
Message;
|
|
393
|
+
/**
|
|
394
|
+
* <p>The unique identifier for the resource that couldn't be found.</p>
|
|
395
|
+
* @public
|
|
396
|
+
*/
|
|
397
|
+
ResourceId;
|
|
398
|
+
/**
|
|
399
|
+
* <p>The type of resource that couldn't be found.</p>
|
|
400
|
+
* @public
|
|
401
|
+
*/
|
|
402
|
+
ResourceType;
|
|
348
403
|
/**
|
|
349
404
|
* @internal
|
|
350
405
|
*/
|
|
@@ -354,17 +409,23 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends DataEx
|
|
|
354
409
|
$fault: "client",
|
|
355
410
|
...opts
|
|
356
411
|
});
|
|
357
|
-
this.name = "ResourceNotFoundException";
|
|
358
|
-
this.$fault = "client";
|
|
359
412
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
360
413
|
this.Message = opts.Message;
|
|
361
414
|
this.ResourceId = opts.ResourceId;
|
|
362
415
|
this.ResourceType = opts.ResourceType;
|
|
363
416
|
}
|
|
364
417
|
};
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
418
|
+
var ThrottlingException = class _ThrottlingException extends DataExchangeServiceException {
|
|
419
|
+
static {
|
|
420
|
+
__name(this, "ThrottlingException");
|
|
421
|
+
}
|
|
422
|
+
name = "ThrottlingException";
|
|
423
|
+
$fault = "client";
|
|
424
|
+
/**
|
|
425
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
426
|
+
* @public
|
|
427
|
+
*/
|
|
428
|
+
Message;
|
|
368
429
|
/**
|
|
369
430
|
* @internal
|
|
370
431
|
*/
|
|
@@ -374,19 +435,30 @@ var _ThrottlingException = class _ThrottlingException extends DataExchangeServic
|
|
|
374
435
|
$fault: "client",
|
|
375
436
|
...opts
|
|
376
437
|
});
|
|
377
|
-
this.name = "ThrottlingException";
|
|
378
|
-
this.$fault = "client";
|
|
379
438
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
380
439
|
this.Message = opts.Message;
|
|
381
440
|
}
|
|
382
441
|
};
|
|
383
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
384
|
-
var ThrottlingException = _ThrottlingException;
|
|
385
442
|
var ExceptionCause = {
|
|
386
443
|
InsufficientS3BucketPolicy: "InsufficientS3BucketPolicy",
|
|
387
444
|
S3AccessDenied: "S3AccessDenied"
|
|
388
445
|
};
|
|
389
|
-
var
|
|
446
|
+
var ValidationException = class _ValidationException extends DataExchangeServiceException {
|
|
447
|
+
static {
|
|
448
|
+
__name(this, "ValidationException");
|
|
449
|
+
}
|
|
450
|
+
name = "ValidationException";
|
|
451
|
+
$fault = "client";
|
|
452
|
+
/**
|
|
453
|
+
* <p>The message that informs you about what was invalid about the request.</p>
|
|
454
|
+
* @public
|
|
455
|
+
*/
|
|
456
|
+
Message;
|
|
457
|
+
/**
|
|
458
|
+
* <p>The unique identifier for the resource that couldn't be found.</p>
|
|
459
|
+
* @public
|
|
460
|
+
*/
|
|
461
|
+
ExceptionCause;
|
|
390
462
|
/**
|
|
391
463
|
* @internal
|
|
392
464
|
*/
|
|
@@ -396,15 +468,11 @@ var _ValidationException = class _ValidationException extends DataExchangeServic
|
|
|
396
468
|
$fault: "client",
|
|
397
469
|
...opts
|
|
398
470
|
});
|
|
399
|
-
this.name = "ValidationException";
|
|
400
|
-
this.$fault = "client";
|
|
401
471
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
402
472
|
this.Message = opts.Message;
|
|
403
473
|
this.ExceptionCause = opts.ExceptionCause;
|
|
404
474
|
}
|
|
405
475
|
};
|
|
406
|
-
__name(_ValidationException, "ValidationException");
|
|
407
|
-
var ValidationException = _ValidationException;
|
|
408
476
|
var ServerSideEncryptionTypes = {
|
|
409
477
|
AES256: "AES256",
|
|
410
478
|
aws_kms: "aws:kms"
|
|
@@ -471,7 +539,27 @@ var LimitName = {
|
|
|
471
539
|
Revisions_per_Amazon_S3_data_access_data_set: "Revisions per Amazon S3 data access data set",
|
|
472
540
|
Revisions_per_data_set: "Revisions per data set"
|
|
473
541
|
};
|
|
474
|
-
var
|
|
542
|
+
var ServiceLimitExceededException = class _ServiceLimitExceededException extends DataExchangeServiceException {
|
|
543
|
+
static {
|
|
544
|
+
__name(this, "ServiceLimitExceededException");
|
|
545
|
+
}
|
|
546
|
+
name = "ServiceLimitExceededException";
|
|
547
|
+
$fault = "client";
|
|
548
|
+
/**
|
|
549
|
+
* <p>The name of the limit that was reached.</p>
|
|
550
|
+
* @public
|
|
551
|
+
*/
|
|
552
|
+
LimitName;
|
|
553
|
+
/**
|
|
554
|
+
* <p>The value of the exceeded limit.</p>
|
|
555
|
+
* @public
|
|
556
|
+
*/
|
|
557
|
+
LimitValue;
|
|
558
|
+
/**
|
|
559
|
+
* <p>The request has exceeded the quotas imposed by the service.</p>
|
|
560
|
+
* @public
|
|
561
|
+
*/
|
|
562
|
+
Message;
|
|
475
563
|
/**
|
|
476
564
|
* @internal
|
|
477
565
|
*/
|
|
@@ -481,16 +569,12 @@ var _ServiceLimitExceededException = class _ServiceLimitExceededException extend
|
|
|
481
569
|
$fault: "client",
|
|
482
570
|
...opts
|
|
483
571
|
});
|
|
484
|
-
this.name = "ServiceLimitExceededException";
|
|
485
|
-
this.$fault = "client";
|
|
486
572
|
Object.setPrototypeOf(this, _ServiceLimitExceededException.prototype);
|
|
487
573
|
this.LimitName = opts.LimitName;
|
|
488
574
|
this.LimitValue = opts.LimitValue;
|
|
489
575
|
this.Message = opts.Message;
|
|
490
576
|
}
|
|
491
577
|
};
|
|
492
|
-
__name(_ServiceLimitExceededException, "ServiceLimitExceededException");
|
|
493
|
-
var ServiceLimitExceededException = _ServiceLimitExceededException;
|
|
494
578
|
var Origin = {
|
|
495
579
|
ENTITLED: "ENTITLED",
|
|
496
580
|
OWNED: "OWNED"
|
|
@@ -2123,519 +2207,556 @@ var _xadp = "x-amzn-dataexchange-path";
|
|
|
2123
2207
|
var _xadri = "x-amzn-dataexchange-revision-id";
|
|
2124
2208
|
|
|
2125
2209
|
// src/commands/AcceptDataGrantCommand.ts
|
|
2126
|
-
var
|
|
2210
|
+
var AcceptDataGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2127
2211
|
return [
|
|
2128
2212
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2129
2213
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2130
2214
|
];
|
|
2131
2215
|
}).s("DataExchange", "AcceptDataGrant", {}).n("DataExchangeClient", "AcceptDataGrantCommand").f(void 0, void 0).ser(se_AcceptDataGrantCommand).de(de_AcceptDataGrantCommand).build() {
|
|
2216
|
+
static {
|
|
2217
|
+
__name(this, "AcceptDataGrantCommand");
|
|
2218
|
+
}
|
|
2132
2219
|
};
|
|
2133
|
-
__name(_AcceptDataGrantCommand, "AcceptDataGrantCommand");
|
|
2134
|
-
var AcceptDataGrantCommand = _AcceptDataGrantCommand;
|
|
2135
2220
|
|
|
2136
2221
|
// src/commands/CancelJobCommand.ts
|
|
2137
2222
|
|
|
2138
2223
|
|
|
2139
2224
|
|
|
2140
|
-
var
|
|
2225
|
+
var CancelJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2141
2226
|
return [
|
|
2142
2227
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2143
2228
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2144
2229
|
];
|
|
2145
2230
|
}).s("DataExchange", "CancelJob", {}).n("DataExchangeClient", "CancelJobCommand").f(void 0, void 0).ser(se_CancelJobCommand).de(de_CancelJobCommand).build() {
|
|
2231
|
+
static {
|
|
2232
|
+
__name(this, "CancelJobCommand");
|
|
2233
|
+
}
|
|
2146
2234
|
};
|
|
2147
|
-
__name(_CancelJobCommand, "CancelJobCommand");
|
|
2148
|
-
var CancelJobCommand = _CancelJobCommand;
|
|
2149
2235
|
|
|
2150
2236
|
// src/commands/CreateDataGrantCommand.ts
|
|
2151
2237
|
|
|
2152
2238
|
|
|
2153
2239
|
|
|
2154
|
-
var
|
|
2240
|
+
var CreateDataGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2155
2241
|
return [
|
|
2156
2242
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2157
2243
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2158
2244
|
];
|
|
2159
2245
|
}).s("DataExchange", "CreateDataGrant", {}).n("DataExchangeClient", "CreateDataGrantCommand").f(void 0, void 0).ser(se_CreateDataGrantCommand).de(de_CreateDataGrantCommand).build() {
|
|
2246
|
+
static {
|
|
2247
|
+
__name(this, "CreateDataGrantCommand");
|
|
2248
|
+
}
|
|
2160
2249
|
};
|
|
2161
|
-
__name(_CreateDataGrantCommand, "CreateDataGrantCommand");
|
|
2162
|
-
var CreateDataGrantCommand = _CreateDataGrantCommand;
|
|
2163
2250
|
|
|
2164
2251
|
// src/commands/CreateDataSetCommand.ts
|
|
2165
2252
|
|
|
2166
2253
|
|
|
2167
2254
|
|
|
2168
|
-
var
|
|
2255
|
+
var CreateDataSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2169
2256
|
return [
|
|
2170
2257
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2171
2258
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2172
2259
|
];
|
|
2173
2260
|
}).s("DataExchange", "CreateDataSet", {}).n("DataExchangeClient", "CreateDataSetCommand").f(void 0, void 0).ser(se_CreateDataSetCommand).de(de_CreateDataSetCommand).build() {
|
|
2261
|
+
static {
|
|
2262
|
+
__name(this, "CreateDataSetCommand");
|
|
2263
|
+
}
|
|
2174
2264
|
};
|
|
2175
|
-
__name(_CreateDataSetCommand, "CreateDataSetCommand");
|
|
2176
|
-
var CreateDataSetCommand = _CreateDataSetCommand;
|
|
2177
2265
|
|
|
2178
2266
|
// src/commands/CreateEventActionCommand.ts
|
|
2179
2267
|
|
|
2180
2268
|
|
|
2181
2269
|
|
|
2182
|
-
var
|
|
2270
|
+
var CreateEventActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2183
2271
|
return [
|
|
2184
2272
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2185
2273
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2186
2274
|
];
|
|
2187
2275
|
}).s("DataExchange", "CreateEventAction", {}).n("DataExchangeClient", "CreateEventActionCommand").f(void 0, void 0).ser(se_CreateEventActionCommand).de(de_CreateEventActionCommand).build() {
|
|
2276
|
+
static {
|
|
2277
|
+
__name(this, "CreateEventActionCommand");
|
|
2278
|
+
}
|
|
2188
2279
|
};
|
|
2189
|
-
__name(_CreateEventActionCommand, "CreateEventActionCommand");
|
|
2190
|
-
var CreateEventActionCommand = _CreateEventActionCommand;
|
|
2191
2280
|
|
|
2192
2281
|
// src/commands/CreateJobCommand.ts
|
|
2193
2282
|
|
|
2194
2283
|
|
|
2195
2284
|
|
|
2196
|
-
var
|
|
2285
|
+
var CreateJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2197
2286
|
return [
|
|
2198
2287
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2199
2288
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2200
2289
|
];
|
|
2201
2290
|
}).s("DataExchange", "CreateJob", {}).n("DataExchangeClient", "CreateJobCommand").f(void 0, void 0).ser(se_CreateJobCommand).de(de_CreateJobCommand).build() {
|
|
2291
|
+
static {
|
|
2292
|
+
__name(this, "CreateJobCommand");
|
|
2293
|
+
}
|
|
2202
2294
|
};
|
|
2203
|
-
__name(_CreateJobCommand, "CreateJobCommand");
|
|
2204
|
-
var CreateJobCommand = _CreateJobCommand;
|
|
2205
2295
|
|
|
2206
2296
|
// src/commands/CreateRevisionCommand.ts
|
|
2207
2297
|
|
|
2208
2298
|
|
|
2209
2299
|
|
|
2210
|
-
var
|
|
2300
|
+
var CreateRevisionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2211
2301
|
return [
|
|
2212
2302
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2213
2303
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2214
2304
|
];
|
|
2215
2305
|
}).s("DataExchange", "CreateRevision", {}).n("DataExchangeClient", "CreateRevisionCommand").f(void 0, void 0).ser(se_CreateRevisionCommand).de(de_CreateRevisionCommand).build() {
|
|
2306
|
+
static {
|
|
2307
|
+
__name(this, "CreateRevisionCommand");
|
|
2308
|
+
}
|
|
2216
2309
|
};
|
|
2217
|
-
__name(_CreateRevisionCommand, "CreateRevisionCommand");
|
|
2218
|
-
var CreateRevisionCommand = _CreateRevisionCommand;
|
|
2219
2310
|
|
|
2220
2311
|
// src/commands/DeleteAssetCommand.ts
|
|
2221
2312
|
|
|
2222
2313
|
|
|
2223
2314
|
|
|
2224
|
-
var
|
|
2315
|
+
var DeleteAssetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2225
2316
|
return [
|
|
2226
2317
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2227
2318
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2228
2319
|
];
|
|
2229
2320
|
}).s("DataExchange", "DeleteAsset", {}).n("DataExchangeClient", "DeleteAssetCommand").f(void 0, void 0).ser(se_DeleteAssetCommand).de(de_DeleteAssetCommand).build() {
|
|
2321
|
+
static {
|
|
2322
|
+
__name(this, "DeleteAssetCommand");
|
|
2323
|
+
}
|
|
2230
2324
|
};
|
|
2231
|
-
__name(_DeleteAssetCommand, "DeleteAssetCommand");
|
|
2232
|
-
var DeleteAssetCommand = _DeleteAssetCommand;
|
|
2233
2325
|
|
|
2234
2326
|
// src/commands/DeleteDataGrantCommand.ts
|
|
2235
2327
|
|
|
2236
2328
|
|
|
2237
2329
|
|
|
2238
|
-
var
|
|
2330
|
+
var DeleteDataGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2239
2331
|
return [
|
|
2240
2332
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2241
2333
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2242
2334
|
];
|
|
2243
2335
|
}).s("DataExchange", "DeleteDataGrant", {}).n("DataExchangeClient", "DeleteDataGrantCommand").f(void 0, void 0).ser(se_DeleteDataGrantCommand).de(de_DeleteDataGrantCommand).build() {
|
|
2336
|
+
static {
|
|
2337
|
+
__name(this, "DeleteDataGrantCommand");
|
|
2338
|
+
}
|
|
2244
2339
|
};
|
|
2245
|
-
__name(_DeleteDataGrantCommand, "DeleteDataGrantCommand");
|
|
2246
|
-
var DeleteDataGrantCommand = _DeleteDataGrantCommand;
|
|
2247
2340
|
|
|
2248
2341
|
// src/commands/DeleteDataSetCommand.ts
|
|
2249
2342
|
|
|
2250
2343
|
|
|
2251
2344
|
|
|
2252
|
-
var
|
|
2345
|
+
var DeleteDataSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2253
2346
|
return [
|
|
2254
2347
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2255
2348
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2256
2349
|
];
|
|
2257
2350
|
}).s("DataExchange", "DeleteDataSet", {}).n("DataExchangeClient", "DeleteDataSetCommand").f(void 0, void 0).ser(se_DeleteDataSetCommand).de(de_DeleteDataSetCommand).build() {
|
|
2351
|
+
static {
|
|
2352
|
+
__name(this, "DeleteDataSetCommand");
|
|
2353
|
+
}
|
|
2258
2354
|
};
|
|
2259
|
-
__name(_DeleteDataSetCommand, "DeleteDataSetCommand");
|
|
2260
|
-
var DeleteDataSetCommand = _DeleteDataSetCommand;
|
|
2261
2355
|
|
|
2262
2356
|
// src/commands/DeleteEventActionCommand.ts
|
|
2263
2357
|
|
|
2264
2358
|
|
|
2265
2359
|
|
|
2266
|
-
var
|
|
2360
|
+
var DeleteEventActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2267
2361
|
return [
|
|
2268
2362
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2269
2363
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2270
2364
|
];
|
|
2271
2365
|
}).s("DataExchange", "DeleteEventAction", {}).n("DataExchangeClient", "DeleteEventActionCommand").f(void 0, void 0).ser(se_DeleteEventActionCommand).de(de_DeleteEventActionCommand).build() {
|
|
2366
|
+
static {
|
|
2367
|
+
__name(this, "DeleteEventActionCommand");
|
|
2368
|
+
}
|
|
2272
2369
|
};
|
|
2273
|
-
__name(_DeleteEventActionCommand, "DeleteEventActionCommand");
|
|
2274
|
-
var DeleteEventActionCommand = _DeleteEventActionCommand;
|
|
2275
2370
|
|
|
2276
2371
|
// src/commands/DeleteRevisionCommand.ts
|
|
2277
2372
|
|
|
2278
2373
|
|
|
2279
2374
|
|
|
2280
|
-
var
|
|
2375
|
+
var DeleteRevisionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2281
2376
|
return [
|
|
2282
2377
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2283
2378
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2284
2379
|
];
|
|
2285
2380
|
}).s("DataExchange", "DeleteRevision", {}).n("DataExchangeClient", "DeleteRevisionCommand").f(void 0, void 0).ser(se_DeleteRevisionCommand).de(de_DeleteRevisionCommand).build() {
|
|
2381
|
+
static {
|
|
2382
|
+
__name(this, "DeleteRevisionCommand");
|
|
2383
|
+
}
|
|
2286
2384
|
};
|
|
2287
|
-
__name(_DeleteRevisionCommand, "DeleteRevisionCommand");
|
|
2288
|
-
var DeleteRevisionCommand = _DeleteRevisionCommand;
|
|
2289
2385
|
|
|
2290
2386
|
// src/commands/GetAssetCommand.ts
|
|
2291
2387
|
|
|
2292
2388
|
|
|
2293
2389
|
|
|
2294
|
-
var
|
|
2390
|
+
var GetAssetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2295
2391
|
return [
|
|
2296
2392
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2297
2393
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2298
2394
|
];
|
|
2299
2395
|
}).s("DataExchange", "GetAsset", {}).n("DataExchangeClient", "GetAssetCommand").f(void 0, void 0).ser(se_GetAssetCommand).de(de_GetAssetCommand).build() {
|
|
2396
|
+
static {
|
|
2397
|
+
__name(this, "GetAssetCommand");
|
|
2398
|
+
}
|
|
2300
2399
|
};
|
|
2301
|
-
__name(_GetAssetCommand, "GetAssetCommand");
|
|
2302
|
-
var GetAssetCommand = _GetAssetCommand;
|
|
2303
2400
|
|
|
2304
2401
|
// src/commands/GetDataGrantCommand.ts
|
|
2305
2402
|
|
|
2306
2403
|
|
|
2307
2404
|
|
|
2308
|
-
var
|
|
2405
|
+
var GetDataGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2309
2406
|
return [
|
|
2310
2407
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2311
2408
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2312
2409
|
];
|
|
2313
2410
|
}).s("DataExchange", "GetDataGrant", {}).n("DataExchangeClient", "GetDataGrantCommand").f(void 0, void 0).ser(se_GetDataGrantCommand).de(de_GetDataGrantCommand).build() {
|
|
2411
|
+
static {
|
|
2412
|
+
__name(this, "GetDataGrantCommand");
|
|
2413
|
+
}
|
|
2314
2414
|
};
|
|
2315
|
-
__name(_GetDataGrantCommand, "GetDataGrantCommand");
|
|
2316
|
-
var GetDataGrantCommand = _GetDataGrantCommand;
|
|
2317
2415
|
|
|
2318
2416
|
// src/commands/GetDataSetCommand.ts
|
|
2319
2417
|
|
|
2320
2418
|
|
|
2321
2419
|
|
|
2322
|
-
var
|
|
2420
|
+
var GetDataSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2323
2421
|
return [
|
|
2324
2422
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2325
2423
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2326
2424
|
];
|
|
2327
2425
|
}).s("DataExchange", "GetDataSet", {}).n("DataExchangeClient", "GetDataSetCommand").f(void 0, void 0).ser(se_GetDataSetCommand).de(de_GetDataSetCommand).build() {
|
|
2426
|
+
static {
|
|
2427
|
+
__name(this, "GetDataSetCommand");
|
|
2428
|
+
}
|
|
2328
2429
|
};
|
|
2329
|
-
__name(_GetDataSetCommand, "GetDataSetCommand");
|
|
2330
|
-
var GetDataSetCommand = _GetDataSetCommand;
|
|
2331
2430
|
|
|
2332
2431
|
// src/commands/GetEventActionCommand.ts
|
|
2333
2432
|
|
|
2334
2433
|
|
|
2335
2434
|
|
|
2336
|
-
var
|
|
2435
|
+
var GetEventActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2337
2436
|
return [
|
|
2338
2437
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2339
2438
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2340
2439
|
];
|
|
2341
2440
|
}).s("DataExchange", "GetEventAction", {}).n("DataExchangeClient", "GetEventActionCommand").f(void 0, void 0).ser(se_GetEventActionCommand).de(de_GetEventActionCommand).build() {
|
|
2441
|
+
static {
|
|
2442
|
+
__name(this, "GetEventActionCommand");
|
|
2443
|
+
}
|
|
2342
2444
|
};
|
|
2343
|
-
__name(_GetEventActionCommand, "GetEventActionCommand");
|
|
2344
|
-
var GetEventActionCommand = _GetEventActionCommand;
|
|
2345
2445
|
|
|
2346
2446
|
// src/commands/GetJobCommand.ts
|
|
2347
2447
|
|
|
2348
2448
|
|
|
2349
2449
|
|
|
2350
|
-
var
|
|
2450
|
+
var GetJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2351
2451
|
return [
|
|
2352
2452
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2353
2453
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2354
2454
|
];
|
|
2355
2455
|
}).s("DataExchange", "GetJob", {}).n("DataExchangeClient", "GetJobCommand").f(void 0, void 0).ser(se_GetJobCommand).de(de_GetJobCommand).build() {
|
|
2456
|
+
static {
|
|
2457
|
+
__name(this, "GetJobCommand");
|
|
2458
|
+
}
|
|
2356
2459
|
};
|
|
2357
|
-
__name(_GetJobCommand, "GetJobCommand");
|
|
2358
|
-
var GetJobCommand = _GetJobCommand;
|
|
2359
2460
|
|
|
2360
2461
|
// src/commands/GetReceivedDataGrantCommand.ts
|
|
2361
2462
|
|
|
2362
2463
|
|
|
2363
2464
|
|
|
2364
|
-
var
|
|
2465
|
+
var GetReceivedDataGrantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2365
2466
|
return [
|
|
2366
2467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2367
2468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2368
2469
|
];
|
|
2369
2470
|
}).s("DataExchange", "GetReceivedDataGrant", {}).n("DataExchangeClient", "GetReceivedDataGrantCommand").f(void 0, void 0).ser(se_GetReceivedDataGrantCommand).de(de_GetReceivedDataGrantCommand).build() {
|
|
2471
|
+
static {
|
|
2472
|
+
__name(this, "GetReceivedDataGrantCommand");
|
|
2473
|
+
}
|
|
2370
2474
|
};
|
|
2371
|
-
__name(_GetReceivedDataGrantCommand, "GetReceivedDataGrantCommand");
|
|
2372
|
-
var GetReceivedDataGrantCommand = _GetReceivedDataGrantCommand;
|
|
2373
2475
|
|
|
2374
2476
|
// src/commands/GetRevisionCommand.ts
|
|
2375
2477
|
|
|
2376
2478
|
|
|
2377
2479
|
|
|
2378
|
-
var
|
|
2480
|
+
var GetRevisionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2379
2481
|
return [
|
|
2380
2482
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2381
2483
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2382
2484
|
];
|
|
2383
2485
|
}).s("DataExchange", "GetRevision", {}).n("DataExchangeClient", "GetRevisionCommand").f(void 0, void 0).ser(se_GetRevisionCommand).de(de_GetRevisionCommand).build() {
|
|
2486
|
+
static {
|
|
2487
|
+
__name(this, "GetRevisionCommand");
|
|
2488
|
+
}
|
|
2384
2489
|
};
|
|
2385
|
-
__name(_GetRevisionCommand, "GetRevisionCommand");
|
|
2386
|
-
var GetRevisionCommand = _GetRevisionCommand;
|
|
2387
2490
|
|
|
2388
2491
|
// src/commands/ListDataGrantsCommand.ts
|
|
2389
2492
|
|
|
2390
2493
|
|
|
2391
2494
|
|
|
2392
|
-
var
|
|
2495
|
+
var ListDataGrantsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2393
2496
|
return [
|
|
2394
2497
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2395
2498
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2396
2499
|
];
|
|
2397
2500
|
}).s("DataExchange", "ListDataGrants", {}).n("DataExchangeClient", "ListDataGrantsCommand").f(void 0, void 0).ser(se_ListDataGrantsCommand).de(de_ListDataGrantsCommand).build() {
|
|
2501
|
+
static {
|
|
2502
|
+
__name(this, "ListDataGrantsCommand");
|
|
2503
|
+
}
|
|
2398
2504
|
};
|
|
2399
|
-
__name(_ListDataGrantsCommand, "ListDataGrantsCommand");
|
|
2400
|
-
var ListDataGrantsCommand = _ListDataGrantsCommand;
|
|
2401
2505
|
|
|
2402
2506
|
// src/commands/ListDataSetRevisionsCommand.ts
|
|
2403
2507
|
|
|
2404
2508
|
|
|
2405
2509
|
|
|
2406
|
-
var
|
|
2510
|
+
var ListDataSetRevisionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2407
2511
|
return [
|
|
2408
2512
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2409
2513
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2410
2514
|
];
|
|
2411
2515
|
}).s("DataExchange", "ListDataSetRevisions", {}).n("DataExchangeClient", "ListDataSetRevisionsCommand").f(void 0, void 0).ser(se_ListDataSetRevisionsCommand).de(de_ListDataSetRevisionsCommand).build() {
|
|
2516
|
+
static {
|
|
2517
|
+
__name(this, "ListDataSetRevisionsCommand");
|
|
2518
|
+
}
|
|
2412
2519
|
};
|
|
2413
|
-
__name(_ListDataSetRevisionsCommand, "ListDataSetRevisionsCommand");
|
|
2414
|
-
var ListDataSetRevisionsCommand = _ListDataSetRevisionsCommand;
|
|
2415
2520
|
|
|
2416
2521
|
// src/commands/ListDataSetsCommand.ts
|
|
2417
2522
|
|
|
2418
2523
|
|
|
2419
2524
|
|
|
2420
|
-
var
|
|
2525
|
+
var ListDataSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2421
2526
|
return [
|
|
2422
2527
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2423
2528
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2424
2529
|
];
|
|
2425
2530
|
}).s("DataExchange", "ListDataSets", {}).n("DataExchangeClient", "ListDataSetsCommand").f(void 0, void 0).ser(se_ListDataSetsCommand).de(de_ListDataSetsCommand).build() {
|
|
2531
|
+
static {
|
|
2532
|
+
__name(this, "ListDataSetsCommand");
|
|
2533
|
+
}
|
|
2426
2534
|
};
|
|
2427
|
-
__name(_ListDataSetsCommand, "ListDataSetsCommand");
|
|
2428
|
-
var ListDataSetsCommand = _ListDataSetsCommand;
|
|
2429
2535
|
|
|
2430
2536
|
// src/commands/ListEventActionsCommand.ts
|
|
2431
2537
|
|
|
2432
2538
|
|
|
2433
2539
|
|
|
2434
|
-
var
|
|
2540
|
+
var ListEventActionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2435
2541
|
return [
|
|
2436
2542
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2437
2543
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2438
2544
|
];
|
|
2439
2545
|
}).s("DataExchange", "ListEventActions", {}).n("DataExchangeClient", "ListEventActionsCommand").f(void 0, void 0).ser(se_ListEventActionsCommand).de(de_ListEventActionsCommand).build() {
|
|
2546
|
+
static {
|
|
2547
|
+
__name(this, "ListEventActionsCommand");
|
|
2548
|
+
}
|
|
2440
2549
|
};
|
|
2441
|
-
__name(_ListEventActionsCommand, "ListEventActionsCommand");
|
|
2442
|
-
var ListEventActionsCommand = _ListEventActionsCommand;
|
|
2443
2550
|
|
|
2444
2551
|
// src/commands/ListJobsCommand.ts
|
|
2445
2552
|
|
|
2446
2553
|
|
|
2447
2554
|
|
|
2448
|
-
var
|
|
2555
|
+
var ListJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2449
2556
|
return [
|
|
2450
2557
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2451
2558
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2452
2559
|
];
|
|
2453
2560
|
}).s("DataExchange", "ListJobs", {}).n("DataExchangeClient", "ListJobsCommand").f(void 0, void 0).ser(se_ListJobsCommand).de(de_ListJobsCommand).build() {
|
|
2561
|
+
static {
|
|
2562
|
+
__name(this, "ListJobsCommand");
|
|
2563
|
+
}
|
|
2454
2564
|
};
|
|
2455
|
-
__name(_ListJobsCommand, "ListJobsCommand");
|
|
2456
|
-
var ListJobsCommand = _ListJobsCommand;
|
|
2457
2565
|
|
|
2458
2566
|
// src/commands/ListReceivedDataGrantsCommand.ts
|
|
2459
2567
|
|
|
2460
2568
|
|
|
2461
2569
|
|
|
2462
|
-
var
|
|
2570
|
+
var ListReceivedDataGrantsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2463
2571
|
return [
|
|
2464
2572
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2465
2573
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2466
2574
|
];
|
|
2467
2575
|
}).s("DataExchange", "ListReceivedDataGrants", {}).n("DataExchangeClient", "ListReceivedDataGrantsCommand").f(void 0, void 0).ser(se_ListReceivedDataGrantsCommand).de(de_ListReceivedDataGrantsCommand).build() {
|
|
2576
|
+
static {
|
|
2577
|
+
__name(this, "ListReceivedDataGrantsCommand");
|
|
2578
|
+
}
|
|
2468
2579
|
};
|
|
2469
|
-
__name(_ListReceivedDataGrantsCommand, "ListReceivedDataGrantsCommand");
|
|
2470
|
-
var ListReceivedDataGrantsCommand = _ListReceivedDataGrantsCommand;
|
|
2471
2580
|
|
|
2472
2581
|
// src/commands/ListRevisionAssetsCommand.ts
|
|
2473
2582
|
|
|
2474
2583
|
|
|
2475
2584
|
|
|
2476
|
-
var
|
|
2585
|
+
var ListRevisionAssetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2477
2586
|
return [
|
|
2478
2587
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2479
2588
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2480
2589
|
];
|
|
2481
2590
|
}).s("DataExchange", "ListRevisionAssets", {}).n("DataExchangeClient", "ListRevisionAssetsCommand").f(void 0, void 0).ser(se_ListRevisionAssetsCommand).de(de_ListRevisionAssetsCommand).build() {
|
|
2591
|
+
static {
|
|
2592
|
+
__name(this, "ListRevisionAssetsCommand");
|
|
2593
|
+
}
|
|
2482
2594
|
};
|
|
2483
|
-
__name(_ListRevisionAssetsCommand, "ListRevisionAssetsCommand");
|
|
2484
|
-
var ListRevisionAssetsCommand = _ListRevisionAssetsCommand;
|
|
2485
2595
|
|
|
2486
2596
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2487
2597
|
|
|
2488
2598
|
|
|
2489
2599
|
|
|
2490
|
-
var
|
|
2600
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2491
2601
|
return [
|
|
2492
2602
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2493
2603
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2494
2604
|
];
|
|
2495
2605
|
}).s("DataExchange", "ListTagsForResource", {}).n("DataExchangeClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2606
|
+
static {
|
|
2607
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2608
|
+
}
|
|
2496
2609
|
};
|
|
2497
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2498
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2499
2610
|
|
|
2500
2611
|
// src/commands/RevokeRevisionCommand.ts
|
|
2501
2612
|
|
|
2502
2613
|
|
|
2503
2614
|
|
|
2504
|
-
var
|
|
2615
|
+
var RevokeRevisionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2505
2616
|
return [
|
|
2506
2617
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2507
2618
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2508
2619
|
];
|
|
2509
2620
|
}).s("DataExchange", "RevokeRevision", {}).n("DataExchangeClient", "RevokeRevisionCommand").f(void 0, void 0).ser(se_RevokeRevisionCommand).de(de_RevokeRevisionCommand).build() {
|
|
2621
|
+
static {
|
|
2622
|
+
__name(this, "RevokeRevisionCommand");
|
|
2623
|
+
}
|
|
2510
2624
|
};
|
|
2511
|
-
__name(_RevokeRevisionCommand, "RevokeRevisionCommand");
|
|
2512
|
-
var RevokeRevisionCommand = _RevokeRevisionCommand;
|
|
2513
2625
|
|
|
2514
2626
|
// src/commands/SendApiAssetCommand.ts
|
|
2515
2627
|
|
|
2516
2628
|
|
|
2517
2629
|
|
|
2518
|
-
var
|
|
2630
|
+
var SendApiAssetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2519
2631
|
return [
|
|
2520
2632
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2521
2633
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2522
2634
|
];
|
|
2523
2635
|
}).s("DataExchange", "SendApiAsset", {}).n("DataExchangeClient", "SendApiAssetCommand").f(void 0, void 0).ser(se_SendApiAssetCommand).de(de_SendApiAssetCommand).build() {
|
|
2636
|
+
static {
|
|
2637
|
+
__name(this, "SendApiAssetCommand");
|
|
2638
|
+
}
|
|
2524
2639
|
};
|
|
2525
|
-
__name(_SendApiAssetCommand, "SendApiAssetCommand");
|
|
2526
|
-
var SendApiAssetCommand = _SendApiAssetCommand;
|
|
2527
2640
|
|
|
2528
2641
|
// src/commands/SendDataSetNotificationCommand.ts
|
|
2529
2642
|
|
|
2530
2643
|
|
|
2531
2644
|
|
|
2532
|
-
var
|
|
2645
|
+
var SendDataSetNotificationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2533
2646
|
return [
|
|
2534
2647
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2535
2648
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2536
2649
|
];
|
|
2537
2650
|
}).s("DataExchange", "SendDataSetNotification", {}).n("DataExchangeClient", "SendDataSetNotificationCommand").f(void 0, void 0).ser(se_SendDataSetNotificationCommand).de(de_SendDataSetNotificationCommand).build() {
|
|
2651
|
+
static {
|
|
2652
|
+
__name(this, "SendDataSetNotificationCommand");
|
|
2653
|
+
}
|
|
2538
2654
|
};
|
|
2539
|
-
__name(_SendDataSetNotificationCommand, "SendDataSetNotificationCommand");
|
|
2540
|
-
var SendDataSetNotificationCommand = _SendDataSetNotificationCommand;
|
|
2541
2655
|
|
|
2542
2656
|
// src/commands/StartJobCommand.ts
|
|
2543
2657
|
|
|
2544
2658
|
|
|
2545
2659
|
|
|
2546
|
-
var
|
|
2660
|
+
var StartJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2547
2661
|
return [
|
|
2548
2662
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2549
2663
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2550
2664
|
];
|
|
2551
2665
|
}).s("DataExchange", "StartJob", {}).n("DataExchangeClient", "StartJobCommand").f(void 0, void 0).ser(se_StartJobCommand).de(de_StartJobCommand).build() {
|
|
2666
|
+
static {
|
|
2667
|
+
__name(this, "StartJobCommand");
|
|
2668
|
+
}
|
|
2552
2669
|
};
|
|
2553
|
-
__name(_StartJobCommand, "StartJobCommand");
|
|
2554
|
-
var StartJobCommand = _StartJobCommand;
|
|
2555
2670
|
|
|
2556
2671
|
// src/commands/TagResourceCommand.ts
|
|
2557
2672
|
|
|
2558
2673
|
|
|
2559
2674
|
|
|
2560
|
-
var
|
|
2675
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2561
2676
|
return [
|
|
2562
2677
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2563
2678
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2564
2679
|
];
|
|
2565
2680
|
}).s("DataExchange", "TagResource", {}).n("DataExchangeClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2681
|
+
static {
|
|
2682
|
+
__name(this, "TagResourceCommand");
|
|
2683
|
+
}
|
|
2566
2684
|
};
|
|
2567
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2568
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2569
2685
|
|
|
2570
2686
|
// src/commands/UntagResourceCommand.ts
|
|
2571
2687
|
|
|
2572
2688
|
|
|
2573
2689
|
|
|
2574
|
-
var
|
|
2690
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2575
2691
|
return [
|
|
2576
2692
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2577
2693
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2578
2694
|
];
|
|
2579
2695
|
}).s("DataExchange", "UntagResource", {}).n("DataExchangeClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2696
|
+
static {
|
|
2697
|
+
__name(this, "UntagResourceCommand");
|
|
2698
|
+
}
|
|
2580
2699
|
};
|
|
2581
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2582
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2583
2700
|
|
|
2584
2701
|
// src/commands/UpdateAssetCommand.ts
|
|
2585
2702
|
|
|
2586
2703
|
|
|
2587
2704
|
|
|
2588
|
-
var
|
|
2705
|
+
var UpdateAssetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2589
2706
|
return [
|
|
2590
2707
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2591
2708
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2592
2709
|
];
|
|
2593
2710
|
}).s("DataExchange", "UpdateAsset", {}).n("DataExchangeClient", "UpdateAssetCommand").f(void 0, void 0).ser(se_UpdateAssetCommand).de(de_UpdateAssetCommand).build() {
|
|
2711
|
+
static {
|
|
2712
|
+
__name(this, "UpdateAssetCommand");
|
|
2713
|
+
}
|
|
2594
2714
|
};
|
|
2595
|
-
__name(_UpdateAssetCommand, "UpdateAssetCommand");
|
|
2596
|
-
var UpdateAssetCommand = _UpdateAssetCommand;
|
|
2597
2715
|
|
|
2598
2716
|
// src/commands/UpdateDataSetCommand.ts
|
|
2599
2717
|
|
|
2600
2718
|
|
|
2601
2719
|
|
|
2602
|
-
var
|
|
2720
|
+
var UpdateDataSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2603
2721
|
return [
|
|
2604
2722
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2605
2723
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2606
2724
|
];
|
|
2607
2725
|
}).s("DataExchange", "UpdateDataSet", {}).n("DataExchangeClient", "UpdateDataSetCommand").f(void 0, void 0).ser(se_UpdateDataSetCommand).de(de_UpdateDataSetCommand).build() {
|
|
2726
|
+
static {
|
|
2727
|
+
__name(this, "UpdateDataSetCommand");
|
|
2728
|
+
}
|
|
2608
2729
|
};
|
|
2609
|
-
__name(_UpdateDataSetCommand, "UpdateDataSetCommand");
|
|
2610
|
-
var UpdateDataSetCommand = _UpdateDataSetCommand;
|
|
2611
2730
|
|
|
2612
2731
|
// src/commands/UpdateEventActionCommand.ts
|
|
2613
2732
|
|
|
2614
2733
|
|
|
2615
2734
|
|
|
2616
|
-
var
|
|
2735
|
+
var UpdateEventActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2617
2736
|
return [
|
|
2618
2737
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2619
2738
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2620
2739
|
];
|
|
2621
2740
|
}).s("DataExchange", "UpdateEventAction", {}).n("DataExchangeClient", "UpdateEventActionCommand").f(void 0, void 0).ser(se_UpdateEventActionCommand).de(de_UpdateEventActionCommand).build() {
|
|
2741
|
+
static {
|
|
2742
|
+
__name(this, "UpdateEventActionCommand");
|
|
2743
|
+
}
|
|
2622
2744
|
};
|
|
2623
|
-
__name(_UpdateEventActionCommand, "UpdateEventActionCommand");
|
|
2624
|
-
var UpdateEventActionCommand = _UpdateEventActionCommand;
|
|
2625
2745
|
|
|
2626
2746
|
// src/commands/UpdateRevisionCommand.ts
|
|
2627
2747
|
|
|
2628
2748
|
|
|
2629
2749
|
|
|
2630
|
-
var
|
|
2750
|
+
var UpdateRevisionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2631
2751
|
return [
|
|
2632
2752
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2633
2753
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2634
2754
|
];
|
|
2635
2755
|
}).s("DataExchange", "UpdateRevision", {}).n("DataExchangeClient", "UpdateRevisionCommand").f(void 0, void 0).ser(se_UpdateRevisionCommand).de(de_UpdateRevisionCommand).build() {
|
|
2756
|
+
static {
|
|
2757
|
+
__name(this, "UpdateRevisionCommand");
|
|
2758
|
+
}
|
|
2636
2759
|
};
|
|
2637
|
-
__name(_UpdateRevisionCommand, "UpdateRevisionCommand");
|
|
2638
|
-
var UpdateRevisionCommand = _UpdateRevisionCommand;
|
|
2639
2760
|
|
|
2640
2761
|
// src/DataExchange.ts
|
|
2641
2762
|
var commands = {
|
|
@@ -2677,10 +2798,11 @@ var commands = {
|
|
|
2677
2798
|
UpdateEventActionCommand,
|
|
2678
2799
|
UpdateRevisionCommand
|
|
2679
2800
|
};
|
|
2680
|
-
var
|
|
2801
|
+
var DataExchange = class extends DataExchangeClient {
|
|
2802
|
+
static {
|
|
2803
|
+
__name(this, "DataExchange");
|
|
2804
|
+
}
|
|
2681
2805
|
};
|
|
2682
|
-
__name(_DataExchange, "DataExchange");
|
|
2683
|
-
var DataExchange = _DataExchange;
|
|
2684
2806
|
(0, import_smithy_client.createAggregatedClient)(commands, DataExchange);
|
|
2685
2807
|
|
|
2686
2808
|
// src/pagination/ListDataGrantsPaginator.ts
|