@justworkflowit/cdk-constructs 0.0.311 → 0.0.313
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.
|
@@ -1482,27 +1482,76 @@ var require_createBufferedReadable = __commonJS({
|
|
|
1482
1482
|
}
|
|
1483
1483
|
});
|
|
1484
1484
|
|
|
1485
|
+
// ../node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js
|
|
1486
|
+
var require_getAwsChunkedEncodingStream_browser = __commonJS({
|
|
1487
|
+
"../node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js"(exports2) {
|
|
1488
|
+
"use strict";
|
|
1489
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1490
|
+
exports2.getAwsChunkedEncodingStream = void 0;
|
|
1491
|
+
var getAwsChunkedEncodingStream = (readableStream, options) => {
|
|
1492
|
+
const { base64Encoder, bodyLengthChecker, checksumAlgorithmFn, checksumLocationName, streamHasher } = options;
|
|
1493
|
+
const checksumRequired = base64Encoder !== void 0 && bodyLengthChecker !== void 0 && checksumAlgorithmFn !== void 0 && checksumLocationName !== void 0 && streamHasher !== void 0;
|
|
1494
|
+
const digest = checksumRequired ? streamHasher(checksumAlgorithmFn, readableStream) : void 0;
|
|
1495
|
+
const reader = readableStream.getReader();
|
|
1496
|
+
return new ReadableStream({
|
|
1497
|
+
async pull(controller) {
|
|
1498
|
+
const { value, done } = await reader.read();
|
|
1499
|
+
if (done) {
|
|
1500
|
+
controller.enqueue(`0\r
|
|
1501
|
+
`);
|
|
1502
|
+
if (checksumRequired) {
|
|
1503
|
+
const checksum = base64Encoder(await digest);
|
|
1504
|
+
controller.enqueue(`${checksumLocationName}:${checksum}\r
|
|
1505
|
+
`);
|
|
1506
|
+
controller.enqueue(`\r
|
|
1507
|
+
`);
|
|
1508
|
+
}
|
|
1509
|
+
controller.close();
|
|
1510
|
+
} else {
|
|
1511
|
+
controller.enqueue(`${(bodyLengthChecker(value) || 0).toString(16)}\r
|
|
1512
|
+
${value}\r
|
|
1513
|
+
`);
|
|
1514
|
+
}
|
|
1515
|
+
}
|
|
1516
|
+
});
|
|
1517
|
+
};
|
|
1518
|
+
exports2.getAwsChunkedEncodingStream = getAwsChunkedEncodingStream;
|
|
1519
|
+
}
|
|
1520
|
+
});
|
|
1521
|
+
|
|
1485
1522
|
// ../node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js
|
|
1486
1523
|
var require_getAwsChunkedEncodingStream = __commonJS({
|
|
1487
1524
|
"../node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js"(exports2) {
|
|
1488
1525
|
"use strict";
|
|
1489
1526
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1490
|
-
exports2.getAwsChunkedEncodingStream =
|
|
1491
|
-
var
|
|
1492
|
-
var
|
|
1527
|
+
exports2.getAwsChunkedEncodingStream = getAwsChunkedEncodingStream;
|
|
1528
|
+
var node_stream_1 = require("node:stream");
|
|
1529
|
+
var getAwsChunkedEncodingStream_browser_1 = require_getAwsChunkedEncodingStream_browser();
|
|
1530
|
+
var stream_type_check_1 = require_stream_type_check();
|
|
1531
|
+
function getAwsChunkedEncodingStream(stream, options) {
|
|
1532
|
+
const readable = stream;
|
|
1533
|
+
const readableStream = stream;
|
|
1534
|
+
if ((0, stream_type_check_1.isReadableStream)(readableStream)) {
|
|
1535
|
+
return (0, getAwsChunkedEncodingStream_browser_1.getAwsChunkedEncodingStream)(readableStream, options);
|
|
1536
|
+
}
|
|
1493
1537
|
const { base64Encoder, bodyLengthChecker, checksumAlgorithmFn, checksumLocationName, streamHasher } = options;
|
|
1494
1538
|
const checksumRequired = base64Encoder !== void 0 && checksumAlgorithmFn !== void 0 && checksumLocationName !== void 0 && streamHasher !== void 0;
|
|
1495
|
-
const digest = checksumRequired ? streamHasher(checksumAlgorithmFn,
|
|
1496
|
-
const awsChunkedEncodingStream = new
|
|
1497
|
-
|
|
1498
|
-
|
|
1539
|
+
const digest = checksumRequired ? streamHasher(checksumAlgorithmFn, readable) : void 0;
|
|
1540
|
+
const awsChunkedEncodingStream = new node_stream_1.Readable({
|
|
1541
|
+
read: () => {
|
|
1542
|
+
}
|
|
1543
|
+
});
|
|
1544
|
+
readable.on("data", (data2) => {
|
|
1499
1545
|
const length = bodyLengthChecker(data2) || 0;
|
|
1546
|
+
if (length === 0) {
|
|
1547
|
+
return;
|
|
1548
|
+
}
|
|
1500
1549
|
awsChunkedEncodingStream.push(`${length.toString(16)}\r
|
|
1501
1550
|
`);
|
|
1502
1551
|
awsChunkedEncodingStream.push(data2);
|
|
1503
1552
|
awsChunkedEncodingStream.push("\r\n");
|
|
1504
1553
|
});
|
|
1505
|
-
|
|
1554
|
+
readable.on("end", async () => {
|
|
1506
1555
|
awsChunkedEncodingStream.push(`0\r
|
|
1507
1556
|
`);
|
|
1508
1557
|
if (checksumRequired) {
|
|
@@ -1515,8 +1564,7 @@ var require_getAwsChunkedEncodingStream = __commonJS({
|
|
|
1515
1564
|
awsChunkedEncodingStream.push(null);
|
|
1516
1565
|
});
|
|
1517
1566
|
return awsChunkedEncodingStream;
|
|
1518
|
-
}
|
|
1519
|
-
exports2.getAwsChunkedEncodingStream = getAwsChunkedEncodingStream;
|
|
1567
|
+
}
|
|
1520
1568
|
}
|
|
1521
1569
|
});
|
|
1522
1570
|
|
|
@@ -1862,7 +1910,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
|
|
|
1862
1910
|
});
|
|
1863
1911
|
}
|
|
1864
1912
|
resolveDefaultConfig(options) {
|
|
1865
|
-
const { requestTimeout, connectionTimeout, socketTimeout, socketAcquisitionWarningTimeout, httpAgent, httpsAgent, throwOnRequestTimeout } = options || {};
|
|
1913
|
+
const { requestTimeout, connectionTimeout, socketTimeout, socketAcquisitionWarningTimeout, httpAgent, httpsAgent, throwOnRequestTimeout, logger: logger2 } = options || {};
|
|
1866
1914
|
const keepAlive = true;
|
|
1867
1915
|
const maxSockets = 50;
|
|
1868
1916
|
return {
|
|
@@ -1885,7 +1933,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
|
|
|
1885
1933
|
}
|
|
1886
1934
|
return new https.Agent({ keepAlive, maxSockets, ...httpsAgent });
|
|
1887
1935
|
})(),
|
|
1888
|
-
logger:
|
|
1936
|
+
logger: logger2
|
|
1889
1937
|
};
|
|
1890
1938
|
}
|
|
1891
1939
|
destroy() {
|
|
@@ -2802,6 +2850,18 @@ var require_dist_cjs15 = __commonJS({
|
|
|
2802
2850
|
return utilUtf8.toUtf8(this);
|
|
2803
2851
|
}
|
|
2804
2852
|
};
|
|
2853
|
+
Object.defineProperty(exports2, "isBlob", {
|
|
2854
|
+
enumerable: true,
|
|
2855
|
+
get: function() {
|
|
2856
|
+
return streamTypeCheck.isBlob;
|
|
2857
|
+
}
|
|
2858
|
+
});
|
|
2859
|
+
Object.defineProperty(exports2, "isReadableStream", {
|
|
2860
|
+
enumerable: true,
|
|
2861
|
+
get: function() {
|
|
2862
|
+
return streamTypeCheck.isReadableStream;
|
|
2863
|
+
}
|
|
2864
|
+
});
|
|
2805
2865
|
exports2.Uint8ArrayBlobAdapter = Uint8ArrayBlobAdapter2;
|
|
2806
2866
|
Object.keys(ChecksumStream).forEach(function(k4) {
|
|
2807
2867
|
if (k4 !== "default" && !Object.prototype.hasOwnProperty.call(exports2, k4)) Object.defineProperty(exports2, k4, {
|
|
@@ -2859,14 +2919,6 @@ var require_dist_cjs15 = __commonJS({
|
|
|
2859
2919
|
}
|
|
2860
2920
|
});
|
|
2861
2921
|
});
|
|
2862
|
-
Object.keys(streamTypeCheck).forEach(function(k4) {
|
|
2863
|
-
if (k4 !== "default" && !Object.prototype.hasOwnProperty.call(exports2, k4)) Object.defineProperty(exports2, k4, {
|
|
2864
|
-
enumerable: true,
|
|
2865
|
-
get: function() {
|
|
2866
|
-
return streamTypeCheck[k4];
|
|
2867
|
-
}
|
|
2868
|
-
});
|
|
2869
|
-
});
|
|
2870
2922
|
}
|
|
2871
2923
|
});
|
|
2872
2924
|
|
|
@@ -3225,11 +3277,14 @@ function member(memberSchema, memberName) {
|
|
|
3225
3277
|
const internalCtorAccess = NormalizedSchema;
|
|
3226
3278
|
return new internalCtorAccess(memberSchema, memberName);
|
|
3227
3279
|
}
|
|
3228
|
-
var NormalizedSchema, isMemberSchema, isStaticSchema;
|
|
3280
|
+
var anno, NormalizedSchema, isMemberSchema, isStaticSchema;
|
|
3229
3281
|
var init_NormalizedSchema = __esm({
|
|
3230
3282
|
"../node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js"() {
|
|
3231
3283
|
init_deref();
|
|
3232
3284
|
init_translateTraits();
|
|
3285
|
+
anno = {
|
|
3286
|
+
it: Symbol.for("@smithy/nor-struct-it")
|
|
3287
|
+
};
|
|
3233
3288
|
NormalizedSchema = class _NormalizedSchema {
|
|
3234
3289
|
ref;
|
|
3235
3290
|
memberName;
|
|
@@ -3308,7 +3363,7 @@ var init_NormalizedSchema = __esm({
|
|
|
3308
3363
|
}
|
|
3309
3364
|
getSchema() {
|
|
3310
3365
|
const sc = this.schema;
|
|
3311
|
-
if (sc[0] === 0) {
|
|
3366
|
+
if (Array.isArray(sc) && sc[0] === 0) {
|
|
3312
3367
|
return sc[4];
|
|
3313
3368
|
}
|
|
3314
3369
|
return sc;
|
|
@@ -3334,7 +3389,18 @@ var init_NormalizedSchema = __esm({
|
|
|
3334
3389
|
}
|
|
3335
3390
|
isStructSchema() {
|
|
3336
3391
|
const sc = this.getSchema();
|
|
3337
|
-
|
|
3392
|
+
if (typeof sc !== "object") {
|
|
3393
|
+
return false;
|
|
3394
|
+
}
|
|
3395
|
+
const id = sc[0];
|
|
3396
|
+
return id === 3 || id === -3 || id === 4;
|
|
3397
|
+
}
|
|
3398
|
+
isUnionSchema() {
|
|
3399
|
+
const sc = this.getSchema();
|
|
3400
|
+
if (typeof sc !== "object") {
|
|
3401
|
+
return false;
|
|
3402
|
+
}
|
|
3403
|
+
return sc[0] === 4;
|
|
3338
3404
|
}
|
|
3339
3405
|
isBlobSchema() {
|
|
3340
3406
|
const sc = this.getSchema();
|
|
@@ -3370,9 +3436,7 @@ var init_NormalizedSchema = __esm({
|
|
|
3370
3436
|
return !!streaming || this.getSchema() === 42;
|
|
3371
3437
|
}
|
|
3372
3438
|
isIdempotencyToken() {
|
|
3373
|
-
|
|
3374
|
-
const { normalizedTraits, traits, memberTraits } = this;
|
|
3375
|
-
return match(normalizedTraits) || match(traits) || match(memberTraits);
|
|
3439
|
+
return !!this.getMergedTraits().idempotencyToken;
|
|
3376
3440
|
}
|
|
3377
3441
|
getMergedTraits() {
|
|
3378
3442
|
return this.normalizedTraits ?? (this.normalizedTraits = {
|
|
@@ -3444,9 +3508,19 @@ var init_NormalizedSchema = __esm({
|
|
|
3444
3508
|
throw new Error("@smithy/core/schema - cannot iterate non-struct schema.");
|
|
3445
3509
|
}
|
|
3446
3510
|
const struct2 = this.getSchema();
|
|
3447
|
-
|
|
3448
|
-
|
|
3511
|
+
const z2 = struct2[4].length;
|
|
3512
|
+
let it = struct2[anno.it];
|
|
3513
|
+
if (it && z2 === it.length) {
|
|
3514
|
+
yield* it;
|
|
3515
|
+
return;
|
|
3516
|
+
}
|
|
3517
|
+
it = Array(z2);
|
|
3518
|
+
for (let i4 = 0; i4 < z2; ++i4) {
|
|
3519
|
+
const k4 = struct2[4][i4];
|
|
3520
|
+
const v4 = member([struct2[5][i4], 0], k4);
|
|
3521
|
+
yield it[i4] = [k4, v4];
|
|
3449
3522
|
}
|
|
3523
|
+
struct2[anno.it] = it;
|
|
3450
3524
|
}
|
|
3451
3525
|
};
|
|
3452
3526
|
isMemberSchema = (sc) => Array.isArray(sc) && sc.length === 2;
|
|
@@ -5070,6 +5144,11 @@ var init_EventStreamSerde = __esm({
|
|
|
5070
5144
|
[unionMember]: out
|
|
5071
5145
|
};
|
|
5072
5146
|
}
|
|
5147
|
+
if (body.byteLength === 0) {
|
|
5148
|
+
return {
|
|
5149
|
+
[unionMember]: {}
|
|
5150
|
+
};
|
|
5151
|
+
}
|
|
5073
5152
|
}
|
|
5074
5153
|
return {
|
|
5075
5154
|
[unionMember]: await this.deserializer.read(eventStreamSchema, body)
|
|
@@ -5129,7 +5208,6 @@ var init_EventStreamSerde = __esm({
|
|
|
5129
5208
|
const { eventHeader, eventPayload } = memberSchema.getMergedTraits();
|
|
5130
5209
|
if (eventPayload) {
|
|
5131
5210
|
explicitPayloadMember = memberName;
|
|
5132
|
-
break;
|
|
5133
5211
|
} else if (eventHeader) {
|
|
5134
5212
|
const value = event[unionMember][memberName];
|
|
5135
5213
|
let type = "binary";
|
|
@@ -5249,6 +5327,9 @@ var init_HttpProtocol = __esm({
|
|
|
5249
5327
|
}
|
|
5250
5328
|
}
|
|
5251
5329
|
setHostPrefix(request, operationSchema, input) {
|
|
5330
|
+
if (this.serdeContext?.disableHostPrefix) {
|
|
5331
|
+
return;
|
|
5332
|
+
}
|
|
5252
5333
|
const inputNs = NormalizedSchema.of(operationSchema.input);
|
|
5253
5334
|
const opTraits = translateTraits(operationSchema.traits ?? {});
|
|
5254
5335
|
if (opTraits.endpoint) {
|
|
@@ -5376,6 +5457,11 @@ var init_HttpBindingProtocol = __esm({
|
|
|
5376
5457
|
const memberTraits = memberNs.getMergedTraits() ?? {};
|
|
5377
5458
|
const inputMemberValue = input[memberName];
|
|
5378
5459
|
if (inputMemberValue == null && !memberNs.isIdempotencyToken()) {
|
|
5460
|
+
if (memberTraits.httpLabel) {
|
|
5461
|
+
if (request.path.includes(`{${memberName}+}`) || request.path.includes(`{${memberName}}`)) {
|
|
5462
|
+
throw new Error(`No value provided for input HTTP label: ${memberName}.`);
|
|
5463
|
+
}
|
|
5464
|
+
}
|
|
5379
5465
|
continue;
|
|
5380
5466
|
}
|
|
5381
5467
|
if (memberTraits.httpPayload) {
|
|
@@ -7850,6 +7936,7 @@ var init_CborCodec = __esm({
|
|
|
7850
7936
|
init_protocols();
|
|
7851
7937
|
init_schema();
|
|
7852
7938
|
init_serde();
|
|
7939
|
+
init_serde();
|
|
7853
7940
|
import_util_base643 = __toESM(require_dist_cjs9());
|
|
7854
7941
|
init_cbor();
|
|
7855
7942
|
init_parseCborBody();
|
|
@@ -7923,10 +8010,23 @@ var init_CborCodec = __esm({
|
|
|
7923
8010
|
newObject[key] = value;
|
|
7924
8011
|
}
|
|
7925
8012
|
}
|
|
8013
|
+
const isUnion = ns.isUnionSchema();
|
|
8014
|
+
if (isUnion && Array.isArray(sourceObject.$unknown)) {
|
|
8015
|
+
const [k4, v4] = sourceObject.$unknown;
|
|
8016
|
+
newObject[k4] = v4;
|
|
8017
|
+
} else if (typeof sourceObject.__type === "string") {
|
|
8018
|
+
for (const [k4, v4] of Object.entries(sourceObject)) {
|
|
8019
|
+
if (!(k4 in newObject)) {
|
|
8020
|
+
newObject[k4] = this.serialize(15, v4);
|
|
8021
|
+
}
|
|
8022
|
+
}
|
|
8023
|
+
}
|
|
7926
8024
|
} else if (ns.isDocumentSchema()) {
|
|
7927
8025
|
for (const key of Object.keys(sourceObject)) {
|
|
7928
8026
|
newObject[key] = this.serialize(ns.getValueSchema(), sourceObject[key]);
|
|
7929
8027
|
}
|
|
8028
|
+
} else if (ns.isBigDecimalSchema()) {
|
|
8029
|
+
return sourceObject;
|
|
7930
8030
|
}
|
|
7931
8031
|
return newObject;
|
|
7932
8032
|
}
|
|
@@ -7945,8 +8045,15 @@ var init_CborCodec = __esm({
|
|
|
7945
8045
|
}
|
|
7946
8046
|
readValue(_schema, value) {
|
|
7947
8047
|
const ns = NormalizedSchema.of(_schema);
|
|
7948
|
-
if (ns.isTimestampSchema()
|
|
7949
|
-
|
|
8048
|
+
if (ns.isTimestampSchema()) {
|
|
8049
|
+
if (typeof value === "number") {
|
|
8050
|
+
return _parseEpochTimestamp(value);
|
|
8051
|
+
}
|
|
8052
|
+
if (typeof value === "object") {
|
|
8053
|
+
if (value.tag === 1 && "value" in value) {
|
|
8054
|
+
return _parseEpochTimestamp(value.value);
|
|
8055
|
+
}
|
|
8056
|
+
}
|
|
7950
8057
|
}
|
|
7951
8058
|
if (ns.isBlobSchema()) {
|
|
7952
8059
|
if (typeof value === "string") {
|
|
@@ -7956,7 +8063,7 @@ var init_CborCodec = __esm({
|
|
|
7956
8063
|
}
|
|
7957
8064
|
if (typeof value === "undefined" || typeof value === "boolean" || typeof value === "number" || typeof value === "string" || typeof value === "bigint" || typeof value === "symbol") {
|
|
7958
8065
|
return value;
|
|
7959
|
-
} else if (typeof value === "
|
|
8066
|
+
} else if (typeof value === "object") {
|
|
7960
8067
|
if (value === null) {
|
|
7961
8068
|
return null;
|
|
7962
8069
|
}
|
|
@@ -7992,12 +8099,31 @@ var init_CborCodec = __esm({
|
|
|
7992
8099
|
}
|
|
7993
8100
|
}
|
|
7994
8101
|
} else if (ns.isStructSchema()) {
|
|
8102
|
+
const isUnion = ns.isUnionSchema();
|
|
8103
|
+
let keys;
|
|
8104
|
+
if (isUnion) {
|
|
8105
|
+
keys = new Set(Object.keys(value).filter((k4) => k4 !== "__type"));
|
|
8106
|
+
}
|
|
7995
8107
|
for (const [key, memberSchema] of ns.structIterator()) {
|
|
7996
|
-
|
|
7997
|
-
|
|
7998
|
-
|
|
8108
|
+
if (isUnion) {
|
|
8109
|
+
keys.delete(key);
|
|
8110
|
+
}
|
|
8111
|
+
if (value[key] != null) {
|
|
8112
|
+
newObject[key] = this.readValue(memberSchema, value[key]);
|
|
8113
|
+
}
|
|
8114
|
+
}
|
|
8115
|
+
if (isUnion && keys?.size === 1 && Object.keys(newObject).length === 0) {
|
|
8116
|
+
const k4 = keys.values().next().value;
|
|
8117
|
+
newObject.$unknown = [k4, value[k4]];
|
|
8118
|
+
} else if (typeof value.__type === "string") {
|
|
8119
|
+
for (const [k4, v4] of Object.entries(value)) {
|
|
8120
|
+
if (!(k4 in newObject)) {
|
|
8121
|
+
newObject[k4] = v4;
|
|
8122
|
+
}
|
|
7999
8123
|
}
|
|
8000
8124
|
}
|
|
8125
|
+
} else if (value instanceof NumericValue) {
|
|
8126
|
+
return value;
|
|
8001
8127
|
}
|
|
8002
8128
|
return newObject;
|
|
8003
8129
|
} else {
|
|
@@ -8404,6 +8530,12 @@ var require_dist_cjs20 = __commonJS({
|
|
|
8404
8530
|
handlers;
|
|
8405
8531
|
constructor(config) {
|
|
8406
8532
|
this.config = config;
|
|
8533
|
+
const { protocol, protocolSettings } = config;
|
|
8534
|
+
if (protocolSettings) {
|
|
8535
|
+
if (typeof protocol === "function") {
|
|
8536
|
+
config.protocol = new protocol(protocolSettings);
|
|
8537
|
+
}
|
|
8538
|
+
}
|
|
8407
8539
|
}
|
|
8408
8540
|
send(command, optionsOrCb, cb) {
|
|
8409
8541
|
const options = typeof optionsOrCb !== "function" ? optionsOrCb : void 0;
|
|
@@ -13274,11 +13406,7 @@ var init_invoke_store = __esm({
|
|
|
13274
13406
|
}
|
|
13275
13407
|
run(context, fn) {
|
|
13276
13408
|
this.currentContext = context;
|
|
13277
|
-
|
|
13278
|
-
return fn();
|
|
13279
|
-
} finally {
|
|
13280
|
-
this.currentContext = void 0;
|
|
13281
|
-
}
|
|
13409
|
+
return fn();
|
|
13282
13410
|
}
|
|
13283
13411
|
};
|
|
13284
13412
|
InvokeStoreMulti = class _InvokeStoreMulti extends InvokeStoreBase {
|
|
@@ -13338,7 +13466,7 @@ var init_invoke_store = __esm({
|
|
|
13338
13466
|
if (globalThis.awslambda?.InvokeStore) {
|
|
13339
13467
|
delete globalThis.awslambda.InvokeStore;
|
|
13340
13468
|
}
|
|
13341
|
-
globalThis.awslambda = {};
|
|
13469
|
+
globalThis.awslambda = { InvokeStore: void 0 };
|
|
13342
13470
|
}
|
|
13343
13471
|
} : void 0;
|
|
13344
13472
|
})(InvokeStore || (InvokeStore = {}));
|
|
@@ -15771,9 +15899,16 @@ var require_dist_cjs42 = __commonJS({
|
|
|
15771
15899
|
}
|
|
15772
15900
|
return isValidArn;
|
|
15773
15901
|
};
|
|
15774
|
-
var createConfigValueProvider = (configKey, canonicalEndpointParamKey, config) => {
|
|
15902
|
+
var createConfigValueProvider = (configKey, canonicalEndpointParamKey, config, isClientContextParam = false) => {
|
|
15775
15903
|
const configProvider = async () => {
|
|
15776
|
-
|
|
15904
|
+
let configValue;
|
|
15905
|
+
if (isClientContextParam) {
|
|
15906
|
+
const clientContextParams = config.clientContextParams;
|
|
15907
|
+
const nestedValue = clientContextParams?.[configKey];
|
|
15908
|
+
configValue = nestedValue ?? config[configKey] ?? config[canonicalEndpointParamKey];
|
|
15909
|
+
} else {
|
|
15910
|
+
configValue = config[configKey] ?? config[canonicalEndpointParamKey];
|
|
15911
|
+
}
|
|
15777
15912
|
if (typeof configValue === "function") {
|
|
15778
15913
|
return configValue();
|
|
15779
15914
|
}
|
|
@@ -15855,7 +15990,7 @@ var require_dist_cjs42 = __commonJS({
|
|
|
15855
15990
|
break;
|
|
15856
15991
|
case "clientContextParams":
|
|
15857
15992
|
case "builtInParams":
|
|
15858
|
-
endpointParams[name] = await createConfigValueProvider(instruction.name, name, clientConfig)();
|
|
15993
|
+
endpointParams[name] = await createConfigValueProvider(instruction.name, name, clientConfig, instruction.type !== "builtInParams")();
|
|
15859
15994
|
break;
|
|
15860
15995
|
case "operationContextParams":
|
|
15861
15996
|
endpointParams[name] = instruction.get(commandInput);
|
|
@@ -36772,6 +36907,30 @@ var require_httpAuthSchemeProvider3 = __commonJS({
|
|
|
36772
36907
|
break;
|
|
36773
36908
|
}
|
|
36774
36909
|
;
|
|
36910
|
+
case "GetMarketplaceListing":
|
|
36911
|
+
{
|
|
36912
|
+
options.push(createSmithyApiNoAuthHttpAuthOption4(authParameters));
|
|
36913
|
+
break;
|
|
36914
|
+
}
|
|
36915
|
+
;
|
|
36916
|
+
case "GetPublicInvitationDetails":
|
|
36917
|
+
{
|
|
36918
|
+
options.push(createSmithyApiNoAuthHttpAuthOption4(authParameters));
|
|
36919
|
+
break;
|
|
36920
|
+
}
|
|
36921
|
+
;
|
|
36922
|
+
case "ListMarketplaceListings":
|
|
36923
|
+
{
|
|
36924
|
+
options.push(createSmithyApiNoAuthHttpAuthOption4(authParameters));
|
|
36925
|
+
break;
|
|
36926
|
+
}
|
|
36927
|
+
;
|
|
36928
|
+
case "SearchMarketplaceOrganizations":
|
|
36929
|
+
{
|
|
36930
|
+
options.push(createSmithyApiNoAuthHttpAuthOption4(authParameters));
|
|
36931
|
+
break;
|
|
36932
|
+
}
|
|
36933
|
+
;
|
|
36775
36934
|
default:
|
|
36776
36935
|
{
|
|
36777
36936
|
options.push(createAwsAuthCognitoUserPoolsHttpAuthOption(authParameters));
|
|
@@ -36799,7 +36958,7 @@ var require_package3 = __commonJS({
|
|
|
36799
36958
|
module2.exports = {
|
|
36800
36959
|
name: "@justworkflowit/api-client",
|
|
36801
36960
|
description: "@justworkflowit/api-client client",
|
|
36802
|
-
version: "0.0.
|
|
36961
|
+
version: "0.0.315",
|
|
36803
36962
|
scripts: {
|
|
36804
36963
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
36805
36964
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -40650,7 +40809,7 @@ var require_models_0 = __commonJS({
|
|
|
40650
40809
|
"../JustWorkflowItApiClient/dist-cjs/models/models_0.js"(exports2) {
|
|
40651
40810
|
"use strict";
|
|
40652
40811
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40653
|
-
exports2.WorkflowVersionSelector = exports2.WorkflowMetricType = exports2.TimeBucket = exports2.MetricAggregation = exports2.ExecutionStatus = exports2.HistorySource = exports2.OrgRole = exports2.JobStatus = exports2.PermissionEnum = exports2.ValidationError = exports2.UnhandledError = exports2.NotFoundError = exports2.AuthorizationError = exports2.AuthenticationError = void 0;
|
|
40812
|
+
exports2.WorkflowVersionSelector = exports2.WorkflowMetricType = exports2.TimeBucket = exports2.MetricAggregation = exports2.MarketplaceVisibility = exports2.MarketplaceListingStatus = exports2.RateLimitWindowUnit = exports2.MarketplaceBillingModel = exports2.UsageTimeBucket = exports2.ExecutionStatus = exports2.HistorySource = exports2.OrgRole = exports2.JobStatus = exports2.PermissionEnum = exports2.ValidationError = exports2.UnhandledError = exports2.NotFoundError = exports2.AuthorizationError = exports2.AuthenticationError = void 0;
|
|
40654
40813
|
var JustWorkflowItServiceException_1 = require_JustWorkflowItServiceException();
|
|
40655
40814
|
var AuthenticationError = class _AuthenticationError extends JustWorkflowItServiceException_1.JustWorkflowItServiceException {
|
|
40656
40815
|
name = "AuthenticationError";
|
|
@@ -40771,6 +40930,10 @@ var require_models_0 = __commonJS({
|
|
|
40771
40930
|
JOB_READ: "job:read",
|
|
40772
40931
|
JOB_SUBMIT: "job:submit",
|
|
40773
40932
|
JOB_UPDATE: "job:update",
|
|
40933
|
+
MARKETPLACE_ALLOWLIST: "marketplace:allowlist",
|
|
40934
|
+
MARKETPLACE_GRANT: "marketplace:grant",
|
|
40935
|
+
MARKETPLACE_PUBLISH: "marketplace:publish",
|
|
40936
|
+
MARKETPLACE_UNPUBLISH: "marketplace:unpublish",
|
|
40774
40937
|
METRICS_READ: "metrics:read",
|
|
40775
40938
|
ORGANIZATION_DELETE: "organization:delete",
|
|
40776
40939
|
ORGANIZATION_READ: "organization:read",
|
|
@@ -40780,6 +40943,8 @@ var require_models_0 = __commonJS({
|
|
|
40780
40943
|
RESOURCEPOOL_LIST: "resourcepool:list",
|
|
40781
40944
|
RESOURCEPOOL_READ: "resourcepool:read",
|
|
40782
40945
|
RESOURCEPOOL_UPDATE: "resourcepool:update",
|
|
40946
|
+
STAFF_READ: "staff:read",
|
|
40947
|
+
STAFF_WRITE: "staff:write",
|
|
40783
40948
|
SUBSCRIPTIONPLAN_READ: "subscription:read",
|
|
40784
40949
|
WORKFLOW_CREATE: "workflow:create",
|
|
40785
40950
|
WORKFLOW_DELETE: "workflow:delete",
|
|
@@ -40808,6 +40973,29 @@ var require_models_0 = __commonJS({
|
|
|
40808
40973
|
SUCCESS: "success",
|
|
40809
40974
|
SUCCESSFUL_BUT_INCOMPLETE: "successful_but_incomplete"
|
|
40810
40975
|
};
|
|
40976
|
+
exports2.UsageTimeBucket = {
|
|
40977
|
+
DAILY: "DAILY",
|
|
40978
|
+
HOURLY: "HOURLY"
|
|
40979
|
+
};
|
|
40980
|
+
exports2.MarketplaceBillingModel = {
|
|
40981
|
+
FREE: "FREE",
|
|
40982
|
+
PER_INVOCATION: "PER_INVOCATION",
|
|
40983
|
+
PER_MONTH: "PER_MONTH",
|
|
40984
|
+
PER_TRANSACTION_UNIT: "PER_TRANSACTION_UNIT"
|
|
40985
|
+
};
|
|
40986
|
+
exports2.RateLimitWindowUnit = {
|
|
40987
|
+
HOURS: "HOURS",
|
|
40988
|
+
MINUTES: "MINUTES"
|
|
40989
|
+
};
|
|
40990
|
+
exports2.MarketplaceListingStatus = {
|
|
40991
|
+
ARCHIVED: "ARCHIVED",
|
|
40992
|
+
DRAFT: "DRAFT",
|
|
40993
|
+
PUBLISHED: "PUBLISHED"
|
|
40994
|
+
};
|
|
40995
|
+
exports2.MarketplaceVisibility = {
|
|
40996
|
+
PRIVATE: "PRIVATE",
|
|
40997
|
+
PUBLIC: "PUBLIC"
|
|
40998
|
+
};
|
|
40811
40999
|
exports2.MetricAggregation = {
|
|
40812
41000
|
AVG: "avg",
|
|
40813
41001
|
COUNT: "count",
|
|
@@ -40818,6 +41006,7 @@ var require_models_0 = __commonJS({
|
|
|
40818
41006
|
HOUR: "hour"
|
|
40819
41007
|
};
|
|
40820
41008
|
exports2.WorkflowMetricType = {
|
|
41009
|
+
BILLABLE_TRANSACTION_UNITS: "billable_transaction_units",
|
|
40821
41010
|
JOBS_COMPLETED_SUCCESSFULLY: "jobs_completed_successfully",
|
|
40822
41011
|
JOBS_FAILED: "jobs_failed",
|
|
40823
41012
|
JOBS_SUBMITTED: "jobs_submitted",
|
|
@@ -40850,8 +41039,10 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
40850
41039
|
"../JustWorkflowItApiClient/dist-cjs/protocols/Aws_restJson1.js"(exports2) {
|
|
40851
41040
|
"use strict";
|
|
40852
41041
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
40853
|
-
exports2.
|
|
40854
|
-
exports2.
|
|
41042
|
+
exports2.se_ListMarketplaceListingsCommand = exports2.se_ListMarketplaceListingBillingOverridesCommand = exports2.se_ListJobsCommand = exports2.se_ListApiAuthTokensCommand = exports2.se_ListAllowlistedMarketplaceListingsCommand = exports2.se_IsMarketplaceListingAllowlistedCommand = exports2.se_GrantMarketplaceAccessCommand = exports2.se_GetWorkflowVersionCommand = exports2.se_GetWorkflowStateCommand = exports2.se_GetWorkflowMetricTimeSeriesCommand = exports2.se_GetWorkflowCommand = exports2.se_GetTaggedWorkflowVersionCommand = exports2.se_GetTaggedMarketplaceListingVersionCommand = exports2.se_GetSubscriptionPlanCommand = exports2.se_GetRoleCommand = exports2.se_GetResourcePoolCommand = exports2.se_GetPublisherListingUsageTimeSeriesCommand = exports2.se_GetPublisherListingConsumerBreakdownCommand = exports2.se_GetPublicInvitationDetailsCommand = exports2.se_GetOrganizationSubscriptionPlanCommand = exports2.se_GetOrganizationInvitationCommand = exports2.se_GetOrganizationCommand = exports2.se_GetMyPermissionsCommand = exports2.se_GetMarketplaceListingVersionCommand = exports2.se_GetMarketplaceListingCommand = exports2.se_GetJobCommand = exports2.se_GetConsumerListingUsageTimeSeriesCommand = exports2.se_GetApiAuthTokenCommand = exports2.se_DeleteRoleCommand = exports2.se_DeleteResourcePoolCommand = exports2.se_DeleteOrganizationCommand = exports2.se_DeleteMarketplaceListingBillingOverrideCommand = exports2.se_CreateRoleCommand = exports2.se_CreateResourcePoolCommand = exports2.se_CreateOrganizationInvitationCommand = exports2.se_CreateOrganizationCommand = exports2.se_CreateMarketplaceListingVersionCommand = exports2.se_CreateInterestCommand = exports2.se_CreateApiAuthTokenCommand = exports2.se_CancelOrganizationInvitationCommand = exports2.se_CancelJobCommand = exports2.se_AllowlistMarketplaceListingCommand = exports2.se_AdminUpdateRoleCommand = exports2.se_AdminListRolesCommand = exports2.se_AdminListOrganizationsCommand = exports2.se_AdminGetRoleCommand = exports2.se_AdminGetOrganizationCommand = exports2.se_AdminDeleteRoleCommand = exports2.se_AdminCreateRoleCommand = exports2.se_AcceptOrganizationInvitationCommand = void 0;
|
|
41043
|
+
exports2.de_CreateResourcePoolCommand = exports2.de_CreateOrganizationInvitationCommand = exports2.de_CreateOrganizationCommand = exports2.de_CreateMarketplaceListingVersionCommand = exports2.de_CreateInterestCommand = exports2.de_CreateApiAuthTokenCommand = exports2.de_CancelOrganizationInvitationCommand = exports2.de_CancelJobCommand = exports2.de_AllowlistMarketplaceListingCommand = exports2.de_AdminUpdateRoleCommand = exports2.de_AdminListRolesCommand = exports2.de_AdminListOrganizationsCommand = exports2.de_AdminGetRoleCommand = exports2.de_AdminGetOrganizationCommand = exports2.de_AdminDeleteRoleCommand = exports2.de_AdminCreateRoleCommand = exports2.de_AcceptOrganizationInvitationCommand = exports2.se_UpsertMarketplaceListingBillingOverrideCommand = exports2.se_UpdateRoleCommand = exports2.se_UpdateResourcePoolCommand = exports2.se_UpdateOrganizationMembershipCommand = exports2.se_UpdateOrganizationCommand = exports2.se_UpdateMarketplaceListingMetadataCommand = exports2.se_UpdateMarketplaceListingBillingCommand = exports2.se_UpdateApiAuthTokenCommand = exports2.se_UnpublishWorkflowFromMarketplaceCommand = exports2.se_UnallowlistMarketplaceListingCommand = exports2.se_SubmitJobCommand = exports2.se_SetWorkflowVersionTagCommand = exports2.se_SetMarketplaceListingVersionTagCommand = exports2.se_SendJobEventCommand = exports2.se_SearchMarketplaceOrganizationsCommand = exports2.se_RevokeMarketplaceAccessCommand = exports2.se_RevokeApiAuthTokenCommand = exports2.se_ResumeJobCommand = exports2.se_RemoveOrganizationMembershipCommand = exports2.se_RejectOrganizationInvitationCommand = exports2.se_RegisterWorkflowVersionCommand = exports2.se_RegisterWorkflowCommand = exports2.se_PublishWorkflowToMarketplaceCommand = exports2.se_ListWorkflowVersionsCommand = exports2.se_ListWorkflowsCommand = exports2.se_ListSubscriptionPlansCommand = exports2.se_ListRolesCommand = exports2.se_ListResourcePoolsCommand = exports2.se_ListOrganizationUsersAndInvitationsCommand = exports2.se_ListOrganizationsCommand = exports2.se_ListOrganizationInvitationsForUserCommand = exports2.se_ListMyMarketplaceListingsCommand = exports2.se_ListMarketplaceListingVersionsCommand = void 0;
|
|
41044
|
+
exports2.de_RevokeApiAuthTokenCommand = exports2.de_ResumeJobCommand = exports2.de_RemoveOrganizationMembershipCommand = exports2.de_RejectOrganizationInvitationCommand = exports2.de_RegisterWorkflowVersionCommand = exports2.de_RegisterWorkflowCommand = exports2.de_PublishWorkflowToMarketplaceCommand = exports2.de_ListWorkflowVersionsCommand = exports2.de_ListWorkflowsCommand = exports2.de_ListSubscriptionPlansCommand = exports2.de_ListRolesCommand = exports2.de_ListResourcePoolsCommand = exports2.de_ListOrganizationUsersAndInvitationsCommand = exports2.de_ListOrganizationsCommand = exports2.de_ListOrganizationInvitationsForUserCommand = exports2.de_ListMyMarketplaceListingsCommand = exports2.de_ListMarketplaceListingVersionsCommand = exports2.de_ListMarketplaceListingsCommand = exports2.de_ListMarketplaceListingBillingOverridesCommand = exports2.de_ListJobsCommand = exports2.de_ListApiAuthTokensCommand = exports2.de_ListAllowlistedMarketplaceListingsCommand = exports2.de_IsMarketplaceListingAllowlistedCommand = exports2.de_GrantMarketplaceAccessCommand = exports2.de_GetWorkflowVersionCommand = exports2.de_GetWorkflowStateCommand = exports2.de_GetWorkflowMetricTimeSeriesCommand = exports2.de_GetWorkflowCommand = exports2.de_GetTaggedWorkflowVersionCommand = exports2.de_GetTaggedMarketplaceListingVersionCommand = exports2.de_GetSubscriptionPlanCommand = exports2.de_GetRoleCommand = exports2.de_GetResourcePoolCommand = exports2.de_GetPublisherListingUsageTimeSeriesCommand = exports2.de_GetPublisherListingConsumerBreakdownCommand = exports2.de_GetPublicInvitationDetailsCommand = exports2.de_GetOrganizationSubscriptionPlanCommand = exports2.de_GetOrganizationInvitationCommand = exports2.de_GetOrganizationCommand = exports2.de_GetMyPermissionsCommand = exports2.de_GetMarketplaceListingVersionCommand = exports2.de_GetMarketplaceListingCommand = exports2.de_GetJobCommand = exports2.de_GetConsumerListingUsageTimeSeriesCommand = exports2.de_GetApiAuthTokenCommand = exports2.de_DeleteRoleCommand = exports2.de_DeleteResourcePoolCommand = exports2.de_DeleteOrganizationCommand = exports2.de_DeleteMarketplaceListingBillingOverrideCommand = exports2.de_CreateRoleCommand = void 0;
|
|
41045
|
+
exports2.de_UpsertMarketplaceListingBillingOverrideCommand = exports2.de_UpdateRoleCommand = exports2.de_UpdateResourcePoolCommand = exports2.de_UpdateOrganizationMembershipCommand = exports2.de_UpdateOrganizationCommand = exports2.de_UpdateMarketplaceListingMetadataCommand = exports2.de_UpdateMarketplaceListingBillingCommand = exports2.de_UpdateApiAuthTokenCommand = exports2.de_UnpublishWorkflowFromMarketplaceCommand = exports2.de_UnallowlistMarketplaceListingCommand = exports2.de_SubmitJobCommand = exports2.de_SetWorkflowVersionTagCommand = exports2.de_SetMarketplaceListingVersionTagCommand = exports2.de_SendJobEventCommand = exports2.de_SearchMarketplaceOrganizationsCommand = exports2.de_RevokeMarketplaceAccessCommand = void 0;
|
|
40855
41046
|
var JustWorkflowItServiceException_1 = require_JustWorkflowItServiceException();
|
|
40856
41047
|
var models_0_1 = require_models_0();
|
|
40857
41048
|
var core_1 = (init_dist_es3(), __toCommonJS(dist_es_exports3));
|
|
@@ -40868,6 +41059,111 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
40868
41059
|
return b4.build();
|
|
40869
41060
|
};
|
|
40870
41061
|
exports2.se_AcceptOrganizationInvitationCommand = se_AcceptOrganizationInvitationCommand;
|
|
41062
|
+
var se_AdminCreateRoleCommand = async (input, context) => {
|
|
41063
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41064
|
+
const headers = {
|
|
41065
|
+
"content-type": "application/json"
|
|
41066
|
+
};
|
|
41067
|
+
b4.bp("/admin/organizations/{organizationId}/roles");
|
|
41068
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41069
|
+
let body;
|
|
41070
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
41071
|
+
"description": [],
|
|
41072
|
+
"name": []
|
|
41073
|
+
}));
|
|
41074
|
+
b4.m("POST").h(headers).b(body);
|
|
41075
|
+
return b4.build();
|
|
41076
|
+
};
|
|
41077
|
+
exports2.se_AdminCreateRoleCommand = se_AdminCreateRoleCommand;
|
|
41078
|
+
var se_AdminDeleteRoleCommand = async (input, context) => {
|
|
41079
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41080
|
+
const headers = {};
|
|
41081
|
+
b4.bp("/admin/organizations/{organizationId}/roles/{roleId}");
|
|
41082
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41083
|
+
b4.p("roleId", () => input.roleId, "{roleId}", false);
|
|
41084
|
+
let body;
|
|
41085
|
+
b4.m("DELETE").h(headers).b(body);
|
|
41086
|
+
return b4.build();
|
|
41087
|
+
};
|
|
41088
|
+
exports2.se_AdminDeleteRoleCommand = se_AdminDeleteRoleCommand;
|
|
41089
|
+
var se_AdminGetOrganizationCommand = async (input, context) => {
|
|
41090
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41091
|
+
const headers = {};
|
|
41092
|
+
b4.bp("/admin/organizations/{organizationId}");
|
|
41093
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41094
|
+
let body;
|
|
41095
|
+
b4.m("GET").h(headers).b(body);
|
|
41096
|
+
return b4.build();
|
|
41097
|
+
};
|
|
41098
|
+
exports2.se_AdminGetOrganizationCommand = se_AdminGetOrganizationCommand;
|
|
41099
|
+
var se_AdminGetRoleCommand = async (input, context) => {
|
|
41100
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41101
|
+
const headers = {};
|
|
41102
|
+
b4.bp("/admin/organizations/{organizationId}/roles/{roleId}");
|
|
41103
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41104
|
+
b4.p("roleId", () => input.roleId, "{roleId}", false);
|
|
41105
|
+
let body;
|
|
41106
|
+
b4.m("GET").h(headers).b(body);
|
|
41107
|
+
return b4.build();
|
|
41108
|
+
};
|
|
41109
|
+
exports2.se_AdminGetRoleCommand = se_AdminGetRoleCommand;
|
|
41110
|
+
var se_AdminListOrganizationsCommand = async (input, context) => {
|
|
41111
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41112
|
+
const headers = {};
|
|
41113
|
+
b4.bp("/admin/organizations");
|
|
41114
|
+
const query = (0, smithy_client_1.map)({
|
|
41115
|
+
[_s4]: [, input[_s4]],
|
|
41116
|
+
[_l]: [() => input.limit !== void 0, () => input[_l].toString()],
|
|
41117
|
+
[_nT]: [, input[_nT]]
|
|
41118
|
+
});
|
|
41119
|
+
let body;
|
|
41120
|
+
b4.m("GET").h(headers).q(query).b(body);
|
|
41121
|
+
return b4.build();
|
|
41122
|
+
};
|
|
41123
|
+
exports2.se_AdminListOrganizationsCommand = se_AdminListOrganizationsCommand;
|
|
41124
|
+
var se_AdminListRolesCommand = async (input, context) => {
|
|
41125
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41126
|
+
const headers = {};
|
|
41127
|
+
b4.bp("/admin/organizations/{organizationId}/roles");
|
|
41128
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41129
|
+
let body;
|
|
41130
|
+
b4.m("GET").h(headers).b(body);
|
|
41131
|
+
return b4.build();
|
|
41132
|
+
};
|
|
41133
|
+
exports2.se_AdminListRolesCommand = se_AdminListRolesCommand;
|
|
41134
|
+
var se_AdminUpdateRoleCommand = async (input, context) => {
|
|
41135
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41136
|
+
const headers = {
|
|
41137
|
+
"content-type": "application/json"
|
|
41138
|
+
};
|
|
41139
|
+
b4.bp("/admin/organizations/{organizationId}/roles/{roleId}");
|
|
41140
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41141
|
+
b4.p("roleId", () => input.roleId, "{roleId}", false);
|
|
41142
|
+
let body;
|
|
41143
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
41144
|
+
"description": [],
|
|
41145
|
+
"name": [],
|
|
41146
|
+
"permissions": (_) => (0, smithy_client_1._json)(_)
|
|
41147
|
+
}));
|
|
41148
|
+
b4.m("PATCH").h(headers).b(body);
|
|
41149
|
+
return b4.build();
|
|
41150
|
+
};
|
|
41151
|
+
exports2.se_AdminUpdateRoleCommand = se_AdminUpdateRoleCommand;
|
|
41152
|
+
var se_AllowlistMarketplaceListingCommand = async (input, context) => {
|
|
41153
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41154
|
+
const headers = {
|
|
41155
|
+
"content-type": "application/json"
|
|
41156
|
+
};
|
|
41157
|
+
b4.bp("/organizations/{organizationId}/marketplace/allowlist");
|
|
41158
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41159
|
+
let body;
|
|
41160
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
41161
|
+
"listingId": []
|
|
41162
|
+
}));
|
|
41163
|
+
b4.m("POST").h(headers).b(body);
|
|
41164
|
+
return b4.build();
|
|
41165
|
+
};
|
|
41166
|
+
exports2.se_AllowlistMarketplaceListingCommand = se_AllowlistMarketplaceListingCommand;
|
|
40871
41167
|
var se_CancelJobCommand = async (input, context) => {
|
|
40872
41168
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
40873
41169
|
const headers = {};
|
|
@@ -40929,6 +41225,23 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
40929
41225
|
return b4.build();
|
|
40930
41226
|
};
|
|
40931
41227
|
exports2.se_CreateInterestCommand = se_CreateInterestCommand;
|
|
41228
|
+
var se_CreateMarketplaceListingVersionCommand = async (input, context) => {
|
|
41229
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41230
|
+
const headers = {
|
|
41231
|
+
"content-type": "application/json"
|
|
41232
|
+
};
|
|
41233
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/versions");
|
|
41234
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41235
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41236
|
+
let body;
|
|
41237
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
41238
|
+
"setAsLive": [],
|
|
41239
|
+
"workflowVersionId": []
|
|
41240
|
+
}));
|
|
41241
|
+
b4.m("POST").h(headers).b(body);
|
|
41242
|
+
return b4.build();
|
|
41243
|
+
};
|
|
41244
|
+
exports2.se_CreateMarketplaceListingVersionCommand = se_CreateMarketplaceListingVersionCommand;
|
|
40932
41245
|
var se_CreateOrganizationCommand = async (input, context) => {
|
|
40933
41246
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
40934
41247
|
const headers = {
|
|
@@ -40938,6 +41251,7 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
40938
41251
|
let body;
|
|
40939
41252
|
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
40940
41253
|
"displayName": [],
|
|
41254
|
+
"key": [],
|
|
40941
41255
|
"name": []
|
|
40942
41256
|
}));
|
|
40943
41257
|
b4.m("POST").h(headers).b(body);
|
|
@@ -40994,6 +41308,18 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
40994
41308
|
return b4.build();
|
|
40995
41309
|
};
|
|
40996
41310
|
exports2.se_CreateRoleCommand = se_CreateRoleCommand;
|
|
41311
|
+
var se_DeleteMarketplaceListingBillingOverrideCommand = async (input, context) => {
|
|
41312
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41313
|
+
const headers = {};
|
|
41314
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/billing/overrides/{organizationKey}");
|
|
41315
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41316
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41317
|
+
b4.p("organizationKey", () => input.organizationKey, "{organizationKey}", false);
|
|
41318
|
+
let body;
|
|
41319
|
+
b4.m("DELETE").h(headers).b(body);
|
|
41320
|
+
return b4.build();
|
|
41321
|
+
};
|
|
41322
|
+
exports2.se_DeleteMarketplaceListingBillingOverrideCommand = se_DeleteMarketplaceListingBillingOverrideCommand;
|
|
40997
41323
|
var se_DeleteOrganizationCommand = async (input, context) => {
|
|
40998
41324
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
40999
41325
|
const headers = {};
|
|
@@ -41037,6 +41363,22 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41037
41363
|
return b4.build();
|
|
41038
41364
|
};
|
|
41039
41365
|
exports2.se_GetApiAuthTokenCommand = se_GetApiAuthTokenCommand;
|
|
41366
|
+
var se_GetConsumerListingUsageTimeSeriesCommand = async (input, context) => {
|
|
41367
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41368
|
+
const headers = {};
|
|
41369
|
+
b4.bp("/organizations/{organizationId}/marketplace/subscribed/{listingId}/usage/timeseries");
|
|
41370
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41371
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41372
|
+
const query = (0, smithy_client_1.map)({
|
|
41373
|
+
[_si]: [(0, smithy_client_1.expectNonNull)(input.since, `since`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_si]).toString()],
|
|
41374
|
+
[_u]: [(0, smithy_client_1.expectNonNull)(input.until, `until`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_u]).toString()],
|
|
41375
|
+
[_b]: [, input[_b]]
|
|
41376
|
+
});
|
|
41377
|
+
let body;
|
|
41378
|
+
b4.m("GET").h(headers).q(query).b(body);
|
|
41379
|
+
return b4.build();
|
|
41380
|
+
};
|
|
41381
|
+
exports2.se_GetConsumerListingUsageTimeSeriesCommand = se_GetConsumerListingUsageTimeSeriesCommand;
|
|
41040
41382
|
var se_GetJobCommand = async (input, context) => {
|
|
41041
41383
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41042
41384
|
const headers = {};
|
|
@@ -41048,6 +41390,38 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41048
41390
|
return b4.build();
|
|
41049
41391
|
};
|
|
41050
41392
|
exports2.se_GetJobCommand = se_GetJobCommand;
|
|
41393
|
+
var se_GetMarketplaceListingCommand = async (input, context) => {
|
|
41394
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41395
|
+
const headers = {};
|
|
41396
|
+
b4.bp("/marketplace/listings/{listingId}");
|
|
41397
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41398
|
+
let body;
|
|
41399
|
+
b4.m("GET").h(headers).b(body);
|
|
41400
|
+
return b4.build();
|
|
41401
|
+
};
|
|
41402
|
+
exports2.se_GetMarketplaceListingCommand = se_GetMarketplaceListingCommand;
|
|
41403
|
+
var se_GetMarketplaceListingVersionCommand = async (input, context) => {
|
|
41404
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41405
|
+
const headers = {};
|
|
41406
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/versions/{versionId}");
|
|
41407
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41408
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41409
|
+
b4.p("versionId", () => input.versionId, "{versionId}", false);
|
|
41410
|
+
let body;
|
|
41411
|
+
b4.m("GET").h(headers).b(body);
|
|
41412
|
+
return b4.build();
|
|
41413
|
+
};
|
|
41414
|
+
exports2.se_GetMarketplaceListingVersionCommand = se_GetMarketplaceListingVersionCommand;
|
|
41415
|
+
var se_GetMyPermissionsCommand = async (input, context) => {
|
|
41416
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41417
|
+
const headers = {};
|
|
41418
|
+
b4.bp("/organizations/{organizationId}/users/me/permissions");
|
|
41419
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41420
|
+
let body;
|
|
41421
|
+
b4.m("GET").h(headers).b(body);
|
|
41422
|
+
return b4.build();
|
|
41423
|
+
};
|
|
41424
|
+
exports2.se_GetMyPermissionsCommand = se_GetMyPermissionsCommand;
|
|
41051
41425
|
var se_GetOrganizationCommand = async (input, context) => {
|
|
41052
41426
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41053
41427
|
const headers = {};
|
|
@@ -41079,6 +41453,47 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41079
41453
|
return b4.build();
|
|
41080
41454
|
};
|
|
41081
41455
|
exports2.se_GetOrganizationSubscriptionPlanCommand = se_GetOrganizationSubscriptionPlanCommand;
|
|
41456
|
+
var se_GetPublicInvitationDetailsCommand = async (input, context) => {
|
|
41457
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41458
|
+
const headers = {};
|
|
41459
|
+
b4.bp("/public/invitations/{invitationId}");
|
|
41460
|
+
b4.p("invitationId", () => input.invitationId, "{invitationId}", false);
|
|
41461
|
+
let body;
|
|
41462
|
+
b4.m("GET").h(headers).b(body);
|
|
41463
|
+
return b4.build();
|
|
41464
|
+
};
|
|
41465
|
+
exports2.se_GetPublicInvitationDetailsCommand = se_GetPublicInvitationDetailsCommand;
|
|
41466
|
+
var se_GetPublisherListingConsumerBreakdownCommand = async (input, context) => {
|
|
41467
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41468
|
+
const headers = {};
|
|
41469
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/usage/consumers");
|
|
41470
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41471
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41472
|
+
const query = (0, smithy_client_1.map)({
|
|
41473
|
+
[_si]: [(0, smithy_client_1.expectNonNull)(input.since, `since`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_si]).toString()],
|
|
41474
|
+
[_u]: [(0, smithy_client_1.expectNonNull)(input.until, `until`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_u]).toString()]
|
|
41475
|
+
});
|
|
41476
|
+
let body;
|
|
41477
|
+
b4.m("GET").h(headers).q(query).b(body);
|
|
41478
|
+
return b4.build();
|
|
41479
|
+
};
|
|
41480
|
+
exports2.se_GetPublisherListingConsumerBreakdownCommand = se_GetPublisherListingConsumerBreakdownCommand;
|
|
41481
|
+
var se_GetPublisherListingUsageTimeSeriesCommand = async (input, context) => {
|
|
41482
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41483
|
+
const headers = {};
|
|
41484
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/usage/timeseries");
|
|
41485
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41486
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41487
|
+
const query = (0, smithy_client_1.map)({
|
|
41488
|
+
[_si]: [(0, smithy_client_1.expectNonNull)(input.since, `since`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_si]).toString()],
|
|
41489
|
+
[_u]: [(0, smithy_client_1.expectNonNull)(input.until, `until`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_u]).toString()],
|
|
41490
|
+
[_b]: [, input[_b]]
|
|
41491
|
+
});
|
|
41492
|
+
let body;
|
|
41493
|
+
b4.m("GET").h(headers).q(query).b(body);
|
|
41494
|
+
return b4.build();
|
|
41495
|
+
};
|
|
41496
|
+
exports2.se_GetPublisherListingUsageTimeSeriesCommand = se_GetPublisherListingUsageTimeSeriesCommand;
|
|
41082
41497
|
var se_GetResourcePoolCommand = async (input, context) => {
|
|
41083
41498
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41084
41499
|
const headers = {};
|
|
@@ -41111,6 +41526,18 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41111
41526
|
return b4.build();
|
|
41112
41527
|
};
|
|
41113
41528
|
exports2.se_GetSubscriptionPlanCommand = se_GetSubscriptionPlanCommand;
|
|
41529
|
+
var se_GetTaggedMarketplaceListingVersionCommand = async (input, context) => {
|
|
41530
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41531
|
+
const headers = {};
|
|
41532
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/tags/{tag}");
|
|
41533
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41534
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41535
|
+
b4.p("tag", () => input.tag, "{tag}", false);
|
|
41536
|
+
let body;
|
|
41537
|
+
b4.m("GET").h(headers).b(body);
|
|
41538
|
+
return b4.build();
|
|
41539
|
+
};
|
|
41540
|
+
exports2.se_GetTaggedMarketplaceListingVersionCommand = se_GetTaggedMarketplaceListingVersionCommand;
|
|
41114
41541
|
var se_GetTaggedWorkflowVersionCommand = async (input, context) => {
|
|
41115
41542
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41116
41543
|
const headers = {};
|
|
@@ -41143,7 +41570,7 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41143
41570
|
[_m3]: [, (0, smithy_client_1.expectNonNull)(input[_m3], `metric`)],
|
|
41144
41571
|
[_a2]: [, (0, smithy_client_1.expectNonNull)(input[_a2], `aggregation`)],
|
|
41145
41572
|
[_b]: [, (0, smithy_client_1.expectNonNull)(input[_b], `bucket`)],
|
|
41146
|
-
[
|
|
41573
|
+
[_si]: [(0, smithy_client_1.expectNonNull)(input.since, `since`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_si]).toString()],
|
|
41147
41574
|
[_u]: [(0, smithy_client_1.expectNonNull)(input.until, `until`) != null, () => (0, smithy_client_1.serializeDateTime)(input[_u]).toString()]
|
|
41148
41575
|
});
|
|
41149
41576
|
let body;
|
|
@@ -41174,6 +41601,43 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41174
41601
|
return b4.build();
|
|
41175
41602
|
};
|
|
41176
41603
|
exports2.se_GetWorkflowVersionCommand = se_GetWorkflowVersionCommand;
|
|
41604
|
+
var se_GrantMarketplaceAccessCommand = async (input, context) => {
|
|
41605
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41606
|
+
const headers = {
|
|
41607
|
+
"content-type": "application/json"
|
|
41608
|
+
};
|
|
41609
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/grants");
|
|
41610
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41611
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41612
|
+
let body;
|
|
41613
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
41614
|
+
"grantedOrganizationId": []
|
|
41615
|
+
}));
|
|
41616
|
+
b4.m("POST").h(headers).b(body);
|
|
41617
|
+
return b4.build();
|
|
41618
|
+
};
|
|
41619
|
+
exports2.se_GrantMarketplaceAccessCommand = se_GrantMarketplaceAccessCommand;
|
|
41620
|
+
var se_IsMarketplaceListingAllowlistedCommand = async (input, context) => {
|
|
41621
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41622
|
+
const headers = {};
|
|
41623
|
+
b4.bp("/organizations/{organizationId}/marketplace/allowlist/{listingId}");
|
|
41624
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41625
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41626
|
+
let body;
|
|
41627
|
+
b4.m("GET").h(headers).b(body);
|
|
41628
|
+
return b4.build();
|
|
41629
|
+
};
|
|
41630
|
+
exports2.se_IsMarketplaceListingAllowlistedCommand = se_IsMarketplaceListingAllowlistedCommand;
|
|
41631
|
+
var se_ListAllowlistedMarketplaceListingsCommand = async (input, context) => {
|
|
41632
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41633
|
+
const headers = {};
|
|
41634
|
+
b4.bp("/organizations/{organizationId}/marketplace/allowlist");
|
|
41635
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41636
|
+
let body;
|
|
41637
|
+
b4.m("GET").h(headers).b(body);
|
|
41638
|
+
return b4.build();
|
|
41639
|
+
};
|
|
41640
|
+
exports2.se_ListAllowlistedMarketplaceListingsCommand = se_ListAllowlistedMarketplaceListingsCommand;
|
|
41177
41641
|
var se_ListApiAuthTokensCommand = async (input, context) => {
|
|
41178
41642
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41179
41643
|
const headers = {};
|
|
@@ -41199,6 +41663,56 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41199
41663
|
return b4.build();
|
|
41200
41664
|
};
|
|
41201
41665
|
exports2.se_ListJobsCommand = se_ListJobsCommand;
|
|
41666
|
+
var se_ListMarketplaceListingBillingOverridesCommand = async (input, context) => {
|
|
41667
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41668
|
+
const headers = {};
|
|
41669
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/billing/overrides");
|
|
41670
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41671
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41672
|
+
let body;
|
|
41673
|
+
b4.m("GET").h(headers).b(body);
|
|
41674
|
+
return b4.build();
|
|
41675
|
+
};
|
|
41676
|
+
exports2.se_ListMarketplaceListingBillingOverridesCommand = se_ListMarketplaceListingBillingOverridesCommand;
|
|
41677
|
+
var se_ListMarketplaceListingsCommand = async (input, context) => {
|
|
41678
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41679
|
+
const headers = {};
|
|
41680
|
+
b4.bp("/marketplace/listings");
|
|
41681
|
+
const query = (0, smithy_client_1.map)({
|
|
41682
|
+
[_s4]: [, input[_s4]],
|
|
41683
|
+
[_oI]: [, input[_oI]],
|
|
41684
|
+
[_l]: [() => input.limit !== void 0, () => input[_l].toString()],
|
|
41685
|
+
[_nT]: [, input[_nT]]
|
|
41686
|
+
});
|
|
41687
|
+
let body;
|
|
41688
|
+
b4.m("GET").h(headers).q(query).b(body);
|
|
41689
|
+
return b4.build();
|
|
41690
|
+
};
|
|
41691
|
+
exports2.se_ListMarketplaceListingsCommand = se_ListMarketplaceListingsCommand;
|
|
41692
|
+
var se_ListMarketplaceListingVersionsCommand = async (input, context) => {
|
|
41693
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41694
|
+
const headers = {};
|
|
41695
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/versions");
|
|
41696
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41697
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41698
|
+
let body;
|
|
41699
|
+
b4.m("GET").h(headers).b(body);
|
|
41700
|
+
return b4.build();
|
|
41701
|
+
};
|
|
41702
|
+
exports2.se_ListMarketplaceListingVersionsCommand = se_ListMarketplaceListingVersionsCommand;
|
|
41703
|
+
var se_ListMyMarketplaceListingsCommand = async (input, context) => {
|
|
41704
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41705
|
+
const headers = {};
|
|
41706
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings");
|
|
41707
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41708
|
+
const query = (0, smithy_client_1.map)({
|
|
41709
|
+
[_st]: [, input[_st]]
|
|
41710
|
+
});
|
|
41711
|
+
let body;
|
|
41712
|
+
b4.m("GET").h(headers).q(query).b(body);
|
|
41713
|
+
return b4.build();
|
|
41714
|
+
};
|
|
41715
|
+
exports2.se_ListMyMarketplaceListingsCommand = se_ListMyMarketplaceListingsCommand;
|
|
41202
41716
|
var se_ListOrganizationInvitationsForUserCommand = async (input, context) => {
|
|
41203
41717
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41204
41718
|
const headers = {};
|
|
@@ -41277,6 +41791,28 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41277
41791
|
return b4.build();
|
|
41278
41792
|
};
|
|
41279
41793
|
exports2.se_ListWorkflowVersionsCommand = se_ListWorkflowVersionsCommand;
|
|
41794
|
+
var se_PublishWorkflowToMarketplaceCommand = async (input, context) => {
|
|
41795
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41796
|
+
const headers = {
|
|
41797
|
+
"content-type": "application/json"
|
|
41798
|
+
};
|
|
41799
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings");
|
|
41800
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41801
|
+
let body;
|
|
41802
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
41803
|
+
"description": [],
|
|
41804
|
+
"key": [],
|
|
41805
|
+
"rateLimitMaxRequests": [],
|
|
41806
|
+
"rateLimitWindowUnit": [],
|
|
41807
|
+
"rateLimitWindowValue": [],
|
|
41808
|
+
"title": [],
|
|
41809
|
+
"visibility": [],
|
|
41810
|
+
"workflowVersionId": []
|
|
41811
|
+
}));
|
|
41812
|
+
b4.m("POST").h(headers).b(body);
|
|
41813
|
+
return b4.build();
|
|
41814
|
+
};
|
|
41815
|
+
exports2.se_PublishWorkflowToMarketplaceCommand = se_PublishWorkflowToMarketplaceCommand;
|
|
41280
41816
|
var se_RegisterWorkflowCommand = async (input, context) => {
|
|
41281
41817
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41282
41818
|
const headers = {
|
|
@@ -41352,6 +41888,31 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41352
41888
|
return b4.build();
|
|
41353
41889
|
};
|
|
41354
41890
|
exports2.se_RevokeApiAuthTokenCommand = se_RevokeApiAuthTokenCommand;
|
|
41891
|
+
var se_RevokeMarketplaceAccessCommand = async (input, context) => {
|
|
41892
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41893
|
+
const headers = {};
|
|
41894
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/grants/{grantedOrganizationId}");
|
|
41895
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41896
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41897
|
+
b4.p("grantedOrganizationId", () => input.grantedOrganizationId, "{grantedOrganizationId}", false);
|
|
41898
|
+
let body;
|
|
41899
|
+
b4.m("DELETE").h(headers).b(body);
|
|
41900
|
+
return b4.build();
|
|
41901
|
+
};
|
|
41902
|
+
exports2.se_RevokeMarketplaceAccessCommand = se_RevokeMarketplaceAccessCommand;
|
|
41903
|
+
var se_SearchMarketplaceOrganizationsCommand = async (input, context) => {
|
|
41904
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41905
|
+
const headers = {};
|
|
41906
|
+
b4.bp("/marketplace/organizations");
|
|
41907
|
+
const query = (0, smithy_client_1.map)({
|
|
41908
|
+
[_s4]: [, input[_s4]],
|
|
41909
|
+
[_l]: [() => input.limit !== void 0, () => input[_l].toString()]
|
|
41910
|
+
});
|
|
41911
|
+
let body;
|
|
41912
|
+
b4.m("GET").h(headers).q(query).b(body);
|
|
41913
|
+
return b4.build();
|
|
41914
|
+
};
|
|
41915
|
+
exports2.se_SearchMarketplaceOrganizationsCommand = se_SearchMarketplaceOrganizationsCommand;
|
|
41355
41916
|
var se_SendJobEventCommand = async (input, context) => {
|
|
41356
41917
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41357
41918
|
const headers = {
|
|
@@ -41369,6 +41930,23 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41369
41930
|
return b4.build();
|
|
41370
41931
|
};
|
|
41371
41932
|
exports2.se_SendJobEventCommand = se_SendJobEventCommand;
|
|
41933
|
+
var se_SetMarketplaceListingVersionTagCommand = async (input, context) => {
|
|
41934
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41935
|
+
const headers = {
|
|
41936
|
+
"content-type": "application/json"
|
|
41937
|
+
};
|
|
41938
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/tags/{tag}");
|
|
41939
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41940
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41941
|
+
b4.p("tag", () => input.tag, "{tag}", false);
|
|
41942
|
+
let body;
|
|
41943
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
41944
|
+
"versionId": []
|
|
41945
|
+
}));
|
|
41946
|
+
b4.m("PUT").h(headers).b(body);
|
|
41947
|
+
return b4.build();
|
|
41948
|
+
};
|
|
41949
|
+
exports2.se_SetMarketplaceListingVersionTagCommand = se_SetMarketplaceListingVersionTagCommand;
|
|
41372
41950
|
var se_SetWorkflowVersionTagCommand = async (input, context) => {
|
|
41373
41951
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41374
41952
|
const headers = {
|
|
@@ -41403,6 +41981,28 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41403
41981
|
return b4.build();
|
|
41404
41982
|
};
|
|
41405
41983
|
exports2.se_SubmitJobCommand = se_SubmitJobCommand;
|
|
41984
|
+
var se_UnallowlistMarketplaceListingCommand = async (input, context) => {
|
|
41985
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41986
|
+
const headers = {};
|
|
41987
|
+
b4.bp("/organizations/{organizationId}/marketplace/allowlist/{listingId}");
|
|
41988
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
41989
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
41990
|
+
let body;
|
|
41991
|
+
b4.m("DELETE").h(headers).b(body);
|
|
41992
|
+
return b4.build();
|
|
41993
|
+
};
|
|
41994
|
+
exports2.se_UnallowlistMarketplaceListingCommand = se_UnallowlistMarketplaceListingCommand;
|
|
41995
|
+
var se_UnpublishWorkflowFromMarketplaceCommand = async (input, context) => {
|
|
41996
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41997
|
+
const headers = {};
|
|
41998
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}");
|
|
41999
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
42000
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
42001
|
+
let body;
|
|
42002
|
+
b4.m("DELETE").h(headers).b(body);
|
|
42003
|
+
return b4.build();
|
|
42004
|
+
};
|
|
42005
|
+
exports2.se_UnpublishWorkflowFromMarketplaceCommand = se_UnpublishWorkflowFromMarketplaceCommand;
|
|
41406
42006
|
var se_UpdateApiAuthTokenCommand = async (input, context) => {
|
|
41407
42007
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41408
42008
|
const headers = {
|
|
@@ -41420,6 +42020,45 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41420
42020
|
return b4.build();
|
|
41421
42021
|
};
|
|
41422
42022
|
exports2.se_UpdateApiAuthTokenCommand = se_UpdateApiAuthTokenCommand;
|
|
42023
|
+
var se_UpdateMarketplaceListingBillingCommand = async (input, context) => {
|
|
42024
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
42025
|
+
const headers = {
|
|
42026
|
+
"content-type": "application/json"
|
|
42027
|
+
};
|
|
42028
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/billing");
|
|
42029
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
42030
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
42031
|
+
let body;
|
|
42032
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
42033
|
+
"billingModel": [],
|
|
42034
|
+
"costPerInvocation": (_) => (0, smithy_client_1.serializeFloat)(_),
|
|
42035
|
+
"costPerMonth": (_) => (0, smithy_client_1.serializeFloat)(_),
|
|
42036
|
+
"costPerUnit": (_) => (0, smithy_client_1.serializeFloat)(_),
|
|
42037
|
+
"rateLimitMaxRequests": [],
|
|
42038
|
+
"rateLimitWindowUnit": [],
|
|
42039
|
+
"rateLimitWindowValue": []
|
|
42040
|
+
}));
|
|
42041
|
+
b4.m("PATCH").h(headers).b(body);
|
|
42042
|
+
return b4.build();
|
|
42043
|
+
};
|
|
42044
|
+
exports2.se_UpdateMarketplaceListingBillingCommand = se_UpdateMarketplaceListingBillingCommand;
|
|
42045
|
+
var se_UpdateMarketplaceListingMetadataCommand = async (input, context) => {
|
|
42046
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
42047
|
+
const headers = {
|
|
42048
|
+
"content-type": "application/json"
|
|
42049
|
+
};
|
|
42050
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}");
|
|
42051
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
42052
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
42053
|
+
let body;
|
|
42054
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
42055
|
+
"description": [],
|
|
42056
|
+
"visibility": []
|
|
42057
|
+
}));
|
|
42058
|
+
b4.m("PATCH").h(headers).b(body);
|
|
42059
|
+
return b4.build();
|
|
42060
|
+
};
|
|
42061
|
+
exports2.se_UpdateMarketplaceListingMetadataCommand = se_UpdateMarketplaceListingMetadataCommand;
|
|
41423
42062
|
var se_UpdateOrganizationCommand = async (input, context) => {
|
|
41424
42063
|
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
41425
42064
|
const headers = {
|
|
@@ -41488,6 +42127,26 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41488
42127
|
return b4.build();
|
|
41489
42128
|
};
|
|
41490
42129
|
exports2.se_UpdateRoleCommand = se_UpdateRoleCommand;
|
|
42130
|
+
var se_UpsertMarketplaceListingBillingOverrideCommand = async (input, context) => {
|
|
42131
|
+
const b4 = (0, core_2.requestBuilder)(input, context);
|
|
42132
|
+
const headers = {
|
|
42133
|
+
"content-type": "application/json"
|
|
42134
|
+
};
|
|
42135
|
+
b4.bp("/organizations/{organizationId}/marketplace/listings/{listingId}/billing/overrides/{organizationKey}");
|
|
42136
|
+
b4.p("organizationId", () => input.organizationId, "{organizationId}", false);
|
|
42137
|
+
b4.p("listingId", () => input.listingId, "{listingId}", false);
|
|
42138
|
+
b4.p("organizationKey", () => input.organizationKey, "{organizationKey}", false);
|
|
42139
|
+
let body;
|
|
42140
|
+
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
42141
|
+
"billingModel": [],
|
|
42142
|
+
"costPerInvocation": (_) => (0, smithy_client_1.serializeFloat)(_),
|
|
42143
|
+
"costPerMonth": (_) => (0, smithy_client_1.serializeFloat)(_),
|
|
42144
|
+
"costPerUnit": (_) => (0, smithy_client_1.serializeFloat)(_)
|
|
42145
|
+
}));
|
|
42146
|
+
b4.m("PUT").h(headers).b(body);
|
|
42147
|
+
return b4.build();
|
|
42148
|
+
};
|
|
42149
|
+
exports2.se_UpsertMarketplaceListingBillingOverrideCommand = se_UpsertMarketplaceListingBillingOverrideCommand;
|
|
41491
42150
|
var de_AcceptOrganizationInvitationCommand = async (output, context) => {
|
|
41492
42151
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41493
42152
|
return de_CommandError(output, context);
|
|
@@ -41504,6 +42163,147 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41504
42163
|
return contents;
|
|
41505
42164
|
};
|
|
41506
42165
|
exports2.de_AcceptOrganizationInvitationCommand = de_AcceptOrganizationInvitationCommand;
|
|
42166
|
+
var de_AdminCreateRoleCommand = async (output, context) => {
|
|
42167
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42168
|
+
return de_CommandError(output, context);
|
|
42169
|
+
}
|
|
42170
|
+
const contents = (0, smithy_client_1.map)({
|
|
42171
|
+
$metadata: deserializeMetadata(output)
|
|
42172
|
+
});
|
|
42173
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42174
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42175
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42176
|
+
"description": smithy_client_1.expectString,
|
|
42177
|
+
"name": smithy_client_1.expectString,
|
|
42178
|
+
"roleId": smithy_client_1.expectString
|
|
42179
|
+
});
|
|
42180
|
+
Object.assign(contents, doc);
|
|
42181
|
+
return contents;
|
|
42182
|
+
};
|
|
42183
|
+
exports2.de_AdminCreateRoleCommand = de_AdminCreateRoleCommand;
|
|
42184
|
+
var de_AdminDeleteRoleCommand = async (output, context) => {
|
|
42185
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42186
|
+
return de_CommandError(output, context);
|
|
42187
|
+
}
|
|
42188
|
+
const contents = (0, smithy_client_1.map)({
|
|
42189
|
+
$metadata: deserializeMetadata(output)
|
|
42190
|
+
});
|
|
42191
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
42192
|
+
return contents;
|
|
42193
|
+
};
|
|
42194
|
+
exports2.de_AdminDeleteRoleCommand = de_AdminDeleteRoleCommand;
|
|
42195
|
+
var de_AdminGetOrganizationCommand = async (output, context) => {
|
|
42196
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42197
|
+
return de_CommandError(output, context);
|
|
42198
|
+
}
|
|
42199
|
+
const contents = (0, smithy_client_1.map)({
|
|
42200
|
+
$metadata: deserializeMetadata(output)
|
|
42201
|
+
});
|
|
42202
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42203
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42204
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42205
|
+
"displayName": smithy_client_1.expectString,
|
|
42206
|
+
"jobCount": smithy_client_1.expectInt32,
|
|
42207
|
+
"key": smithy_client_1.expectString,
|
|
42208
|
+
"memberCount": smithy_client_1.expectInt32,
|
|
42209
|
+
"name": smithy_client_1.expectString,
|
|
42210
|
+
"organizationId": smithy_client_1.expectString,
|
|
42211
|
+
"roleCount": smithy_client_1.expectInt32,
|
|
42212
|
+
"subscriptionPlanId": smithy_client_1.expectString,
|
|
42213
|
+
"subscriptionPlanName": smithy_client_1.expectString,
|
|
42214
|
+
"updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42215
|
+
"workflowCount": smithy_client_1.expectInt32
|
|
42216
|
+
});
|
|
42217
|
+
Object.assign(contents, doc);
|
|
42218
|
+
return contents;
|
|
42219
|
+
};
|
|
42220
|
+
exports2.de_AdminGetOrganizationCommand = de_AdminGetOrganizationCommand;
|
|
42221
|
+
var de_AdminGetRoleCommand = async (output, context) => {
|
|
42222
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42223
|
+
return de_CommandError(output, context);
|
|
42224
|
+
}
|
|
42225
|
+
const contents = (0, smithy_client_1.map)({
|
|
42226
|
+
$metadata: deserializeMetadata(output)
|
|
42227
|
+
});
|
|
42228
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42229
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42230
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42231
|
+
"description": smithy_client_1.expectString,
|
|
42232
|
+
"name": smithy_client_1.expectString,
|
|
42233
|
+
"permissions": smithy_client_1._json,
|
|
42234
|
+
"roleId": smithy_client_1.expectString,
|
|
42235
|
+
"updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42236
|
+
"users": smithy_client_1._json
|
|
42237
|
+
});
|
|
42238
|
+
Object.assign(contents, doc);
|
|
42239
|
+
return contents;
|
|
42240
|
+
};
|
|
42241
|
+
exports2.de_AdminGetRoleCommand = de_AdminGetRoleCommand;
|
|
42242
|
+
var de_AdminListOrganizationsCommand = async (output, context) => {
|
|
42243
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42244
|
+
return de_CommandError(output, context);
|
|
42245
|
+
}
|
|
42246
|
+
const contents = (0, smithy_client_1.map)({
|
|
42247
|
+
$metadata: deserializeMetadata(output)
|
|
42248
|
+
});
|
|
42249
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42250
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42251
|
+
"nextToken": smithy_client_1.expectString,
|
|
42252
|
+
"organizations": (_) => de_AdminOrganizationSummaryList(_, context)
|
|
42253
|
+
});
|
|
42254
|
+
Object.assign(contents, doc);
|
|
42255
|
+
return contents;
|
|
42256
|
+
};
|
|
42257
|
+
exports2.de_AdminListOrganizationsCommand = de_AdminListOrganizationsCommand;
|
|
42258
|
+
var de_AdminListRolesCommand = async (output, context) => {
|
|
42259
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42260
|
+
return de_CommandError(output, context);
|
|
42261
|
+
}
|
|
42262
|
+
const contents = (0, smithy_client_1.map)({
|
|
42263
|
+
$metadata: deserializeMetadata(output)
|
|
42264
|
+
});
|
|
42265
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42266
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42267
|
+
"roles": (_) => de_AdminRoleSummaryList(_, context)
|
|
42268
|
+
});
|
|
42269
|
+
Object.assign(contents, doc);
|
|
42270
|
+
return contents;
|
|
42271
|
+
};
|
|
42272
|
+
exports2.de_AdminListRolesCommand = de_AdminListRolesCommand;
|
|
42273
|
+
var de_AdminUpdateRoleCommand = async (output, context) => {
|
|
42274
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42275
|
+
return de_CommandError(output, context);
|
|
42276
|
+
}
|
|
42277
|
+
const contents = (0, smithy_client_1.map)({
|
|
42278
|
+
$metadata: deserializeMetadata(output)
|
|
42279
|
+
});
|
|
42280
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42281
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42282
|
+
"description": smithy_client_1.expectString,
|
|
42283
|
+
"name": smithy_client_1.expectString,
|
|
42284
|
+
"permissions": smithy_client_1._json,
|
|
42285
|
+
"roleId": smithy_client_1.expectString,
|
|
42286
|
+
"updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_))
|
|
42287
|
+
});
|
|
42288
|
+
Object.assign(contents, doc);
|
|
42289
|
+
return contents;
|
|
42290
|
+
};
|
|
42291
|
+
exports2.de_AdminUpdateRoleCommand = de_AdminUpdateRoleCommand;
|
|
42292
|
+
var de_AllowlistMarketplaceListingCommand = async (output, context) => {
|
|
42293
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42294
|
+
return de_CommandError(output, context);
|
|
42295
|
+
}
|
|
42296
|
+
const contents = (0, smithy_client_1.map)({
|
|
42297
|
+
$metadata: deserializeMetadata(output)
|
|
42298
|
+
});
|
|
42299
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42300
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42301
|
+
"allowlistEntryId": smithy_client_1.expectString
|
|
42302
|
+
});
|
|
42303
|
+
Object.assign(contents, doc);
|
|
42304
|
+
return contents;
|
|
42305
|
+
};
|
|
42306
|
+
exports2.de_AllowlistMarketplaceListingCommand = de_AllowlistMarketplaceListingCommand;
|
|
41507
42307
|
var de_CancelJobCommand = async (output, context) => {
|
|
41508
42308
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41509
42309
|
return de_CommandError(output, context);
|
|
@@ -41564,6 +42364,22 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41564
42364
|
return contents;
|
|
41565
42365
|
};
|
|
41566
42366
|
exports2.de_CreateInterestCommand = de_CreateInterestCommand;
|
|
42367
|
+
var de_CreateMarketplaceListingVersionCommand = async (output, context) => {
|
|
42368
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42369
|
+
return de_CommandError(output, context);
|
|
42370
|
+
}
|
|
42371
|
+
const contents = (0, smithy_client_1.map)({
|
|
42372
|
+
$metadata: deserializeMetadata(output)
|
|
42373
|
+
});
|
|
42374
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42375
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42376
|
+
"versionId": smithy_client_1.expectString,
|
|
42377
|
+
"versionNumber": smithy_client_1.expectInt32
|
|
42378
|
+
});
|
|
42379
|
+
Object.assign(contents, doc);
|
|
42380
|
+
return contents;
|
|
42381
|
+
};
|
|
42382
|
+
exports2.de_CreateMarketplaceListingVersionCommand = de_CreateMarketplaceListingVersionCommand;
|
|
41567
42383
|
var de_CreateOrganizationCommand = async (output, context) => {
|
|
41568
42384
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41569
42385
|
return de_CommandError(output, context);
|
|
@@ -41575,6 +42391,7 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41575
42391
|
const doc = (0, smithy_client_1.take)(data2, {
|
|
41576
42392
|
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
41577
42393
|
"displayName": smithy_client_1.expectString,
|
|
42394
|
+
"key": smithy_client_1.expectString,
|
|
41578
42395
|
"name": smithy_client_1.expectString,
|
|
41579
42396
|
"organizationId": smithy_client_1.expectString
|
|
41580
42397
|
});
|
|
@@ -41627,6 +42444,17 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41627
42444
|
return contents;
|
|
41628
42445
|
};
|
|
41629
42446
|
exports2.de_CreateRoleCommand = de_CreateRoleCommand;
|
|
42447
|
+
var de_DeleteMarketplaceListingBillingOverrideCommand = async (output, context) => {
|
|
42448
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42449
|
+
return de_CommandError(output, context);
|
|
42450
|
+
}
|
|
42451
|
+
const contents = (0, smithy_client_1.map)({
|
|
42452
|
+
$metadata: deserializeMetadata(output)
|
|
42453
|
+
});
|
|
42454
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
42455
|
+
return contents;
|
|
42456
|
+
};
|
|
42457
|
+
exports2.de_DeleteMarketplaceListingBillingOverrideCommand = de_DeleteMarketplaceListingBillingOverrideCommand;
|
|
41630
42458
|
var de_DeleteOrganizationCommand = async (output, context) => {
|
|
41631
42459
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41632
42460
|
return de_CommandError(output, context);
|
|
@@ -41683,6 +42511,28 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41683
42511
|
return contents;
|
|
41684
42512
|
};
|
|
41685
42513
|
exports2.de_GetApiAuthTokenCommand = de_GetApiAuthTokenCommand;
|
|
42514
|
+
var de_GetConsumerListingUsageTimeSeriesCommand = async (output, context) => {
|
|
42515
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42516
|
+
return de_CommandError(output, context);
|
|
42517
|
+
}
|
|
42518
|
+
const contents = (0, smithy_client_1.map)({
|
|
42519
|
+
$metadata: deserializeMetadata(output)
|
|
42520
|
+
});
|
|
42521
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42522
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42523
|
+
"dataPoints": (_) => de_UsageTimeSeriesDataPointList(_, context),
|
|
42524
|
+
"effectiveBillingModel": smithy_client_1.expectString,
|
|
42525
|
+
"effectiveCostPerInvocation": smithy_client_1.limitedParseFloat32,
|
|
42526
|
+
"effectiveCostPerMonth": smithy_client_1.limitedParseFloat32,
|
|
42527
|
+
"effectiveCostPerUnit": smithy_client_1.limitedParseFloat32,
|
|
42528
|
+
"totalEstimatedCost": smithy_client_1.limitedParseFloat32,
|
|
42529
|
+
"totalInvocations": smithy_client_1.expectLong,
|
|
42530
|
+
"totalUnits": smithy_client_1.limitedParseFloat32
|
|
42531
|
+
});
|
|
42532
|
+
Object.assign(contents, doc);
|
|
42533
|
+
return contents;
|
|
42534
|
+
};
|
|
42535
|
+
exports2.de_GetConsumerListingUsageTimeSeriesCommand = de_GetConsumerListingUsageTimeSeriesCommand;
|
|
41686
42536
|
var de_GetJobCommand = async (output, context) => {
|
|
41687
42537
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41688
42538
|
return de_CommandError(output, context);
|
|
@@ -41700,6 +42550,78 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41700
42550
|
return contents;
|
|
41701
42551
|
};
|
|
41702
42552
|
exports2.de_GetJobCommand = de_GetJobCommand;
|
|
42553
|
+
var de_GetMarketplaceListingCommand = async (output, context) => {
|
|
42554
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42555
|
+
return de_CommandError(output, context);
|
|
42556
|
+
}
|
|
42557
|
+
const contents = (0, smithy_client_1.map)({
|
|
42558
|
+
$metadata: deserializeMetadata(output)
|
|
42559
|
+
});
|
|
42560
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42561
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42562
|
+
"billingModel": smithy_client_1.expectString,
|
|
42563
|
+
"costPerInvocation": smithy_client_1.limitedParseFloat32,
|
|
42564
|
+
"costPerMonth": smithy_client_1.limitedParseFloat32,
|
|
42565
|
+
"costPerUnit": smithy_client_1.limitedParseFloat32,
|
|
42566
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42567
|
+
"description": smithy_client_1.expectString,
|
|
42568
|
+
"key": smithy_client_1.expectString,
|
|
42569
|
+
"listingId": smithy_client_1.expectString,
|
|
42570
|
+
"liveVersion": (_) => de_MarketplaceListingVersionSummary(_, context),
|
|
42571
|
+
"organizationId": smithy_client_1.expectString,
|
|
42572
|
+
"organizationKey": smithy_client_1.expectString,
|
|
42573
|
+
"organizationName": smithy_client_1.expectString,
|
|
42574
|
+
"rateLimitMaxRequests": smithy_client_1.expectInt32,
|
|
42575
|
+
"rateLimitWindowUnit": smithy_client_1.expectString,
|
|
42576
|
+
"rateLimitWindowValue": smithy_client_1.expectInt32,
|
|
42577
|
+
"status": smithy_client_1.expectString,
|
|
42578
|
+
"title": smithy_client_1.expectString,
|
|
42579
|
+
"totalVersions": smithy_client_1.expectInt32,
|
|
42580
|
+
"updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42581
|
+
"visibility": smithy_client_1.expectString
|
|
42582
|
+
});
|
|
42583
|
+
Object.assign(contents, doc);
|
|
42584
|
+
return contents;
|
|
42585
|
+
};
|
|
42586
|
+
exports2.de_GetMarketplaceListingCommand = de_GetMarketplaceListingCommand;
|
|
42587
|
+
var de_GetMarketplaceListingVersionCommand = async (output, context) => {
|
|
42588
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42589
|
+
return de_CommandError(output, context);
|
|
42590
|
+
}
|
|
42591
|
+
const contents = (0, smithy_client_1.map)({
|
|
42592
|
+
$metadata: deserializeMetadata(output)
|
|
42593
|
+
});
|
|
42594
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42595
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42596
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42597
|
+
"inputSchema": smithy_client_1.expectString,
|
|
42598
|
+
"tags": smithy_client_1._json,
|
|
42599
|
+
"versionId": smithy_client_1.expectString,
|
|
42600
|
+
"versionNumber": smithy_client_1.expectInt32,
|
|
42601
|
+
"workflowId": smithy_client_1.expectString,
|
|
42602
|
+
"workflowName": smithy_client_1.expectString,
|
|
42603
|
+
"workflowVersionId": smithy_client_1.expectString,
|
|
42604
|
+
"workflowVersionNumber": smithy_client_1.expectInt32
|
|
42605
|
+
});
|
|
42606
|
+
Object.assign(contents, doc);
|
|
42607
|
+
return contents;
|
|
42608
|
+
};
|
|
42609
|
+
exports2.de_GetMarketplaceListingVersionCommand = de_GetMarketplaceListingVersionCommand;
|
|
42610
|
+
var de_GetMyPermissionsCommand = async (output, context) => {
|
|
42611
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42612
|
+
return de_CommandError(output, context);
|
|
42613
|
+
}
|
|
42614
|
+
const contents = (0, smithy_client_1.map)({
|
|
42615
|
+
$metadata: deserializeMetadata(output)
|
|
42616
|
+
});
|
|
42617
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42618
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42619
|
+
"permissions": smithy_client_1._json
|
|
42620
|
+
});
|
|
42621
|
+
Object.assign(contents, doc);
|
|
42622
|
+
return contents;
|
|
42623
|
+
};
|
|
42624
|
+
exports2.de_GetMyPermissionsCommand = de_GetMyPermissionsCommand;
|
|
41703
42625
|
var de_GetOrganizationCommand = async (output, context) => {
|
|
41704
42626
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41705
42627
|
return de_CommandError(output, context);
|
|
@@ -41711,6 +42633,7 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41711
42633
|
const doc = (0, smithy_client_1.take)(data2, {
|
|
41712
42634
|
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
41713
42635
|
"displayName": smithy_client_1.expectString,
|
|
42636
|
+
"key": smithy_client_1.expectString,
|
|
41714
42637
|
"name": smithy_client_1.expectString,
|
|
41715
42638
|
"organizationId": smithy_client_1.expectString
|
|
41716
42639
|
});
|
|
@@ -41752,6 +42675,64 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41752
42675
|
return contents;
|
|
41753
42676
|
};
|
|
41754
42677
|
exports2.de_GetOrganizationSubscriptionPlanCommand = de_GetOrganizationSubscriptionPlanCommand;
|
|
42678
|
+
var de_GetPublicInvitationDetailsCommand = async (output, context) => {
|
|
42679
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42680
|
+
return de_CommandError(output, context);
|
|
42681
|
+
}
|
|
42682
|
+
const contents = (0, smithy_client_1.map)({
|
|
42683
|
+
$metadata: deserializeMetadata(output)
|
|
42684
|
+
});
|
|
42685
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42686
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42687
|
+
"email": smithy_client_1.expectString,
|
|
42688
|
+
"expiresAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42689
|
+
"invitationId": smithy_client_1.expectString,
|
|
42690
|
+
"inviterName": smithy_client_1.expectString,
|
|
42691
|
+
"isExpired": smithy_client_1.expectBoolean,
|
|
42692
|
+
"organizationId": smithy_client_1.expectString,
|
|
42693
|
+
"organizationName": smithy_client_1.expectString,
|
|
42694
|
+
"role": smithy_client_1.expectString
|
|
42695
|
+
});
|
|
42696
|
+
Object.assign(contents, doc);
|
|
42697
|
+
return contents;
|
|
42698
|
+
};
|
|
42699
|
+
exports2.de_GetPublicInvitationDetailsCommand = de_GetPublicInvitationDetailsCommand;
|
|
42700
|
+
var de_GetPublisherListingConsumerBreakdownCommand = async (output, context) => {
|
|
42701
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42702
|
+
return de_CommandError(output, context);
|
|
42703
|
+
}
|
|
42704
|
+
const contents = (0, smithy_client_1.map)({
|
|
42705
|
+
$metadata: deserializeMetadata(output)
|
|
42706
|
+
});
|
|
42707
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42708
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42709
|
+
"consumers": (_) => de_ConsumerUsageBreakdownList(_, context),
|
|
42710
|
+
"totalEstimatedCost": smithy_client_1.limitedParseFloat32,
|
|
42711
|
+
"totalInvocations": smithy_client_1.expectLong,
|
|
42712
|
+
"totalUnits": smithy_client_1.limitedParseFloat32
|
|
42713
|
+
});
|
|
42714
|
+
Object.assign(contents, doc);
|
|
42715
|
+
return contents;
|
|
42716
|
+
};
|
|
42717
|
+
exports2.de_GetPublisherListingConsumerBreakdownCommand = de_GetPublisherListingConsumerBreakdownCommand;
|
|
42718
|
+
var de_GetPublisherListingUsageTimeSeriesCommand = async (output, context) => {
|
|
42719
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42720
|
+
return de_CommandError(output, context);
|
|
42721
|
+
}
|
|
42722
|
+
const contents = (0, smithy_client_1.map)({
|
|
42723
|
+
$metadata: deserializeMetadata(output)
|
|
42724
|
+
});
|
|
42725
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42726
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42727
|
+
"dataPoints": (_) => de_UsageTimeSeriesDataPointList(_, context),
|
|
42728
|
+
"totalEstimatedCost": smithy_client_1.limitedParseFloat32,
|
|
42729
|
+
"totalInvocations": smithy_client_1.expectLong,
|
|
42730
|
+
"totalUnits": smithy_client_1.limitedParseFloat32
|
|
42731
|
+
});
|
|
42732
|
+
Object.assign(contents, doc);
|
|
42733
|
+
return contents;
|
|
42734
|
+
};
|
|
42735
|
+
exports2.de_GetPublisherListingUsageTimeSeriesCommand = de_GetPublisherListingUsageTimeSeriesCommand;
|
|
41755
42736
|
var de_GetResourcePoolCommand = async (output, context) => {
|
|
41756
42737
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41757
42738
|
return de_CommandError(output, context);
|
|
@@ -41799,6 +42780,22 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41799
42780
|
return contents;
|
|
41800
42781
|
};
|
|
41801
42782
|
exports2.de_GetSubscriptionPlanCommand = de_GetSubscriptionPlanCommand;
|
|
42783
|
+
var de_GetTaggedMarketplaceListingVersionCommand = async (output, context) => {
|
|
42784
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42785
|
+
return de_CommandError(output, context);
|
|
42786
|
+
}
|
|
42787
|
+
const contents = (0, smithy_client_1.map)({
|
|
42788
|
+
$metadata: deserializeMetadata(output)
|
|
42789
|
+
});
|
|
42790
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42791
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42792
|
+
"versionId": smithy_client_1.expectString,
|
|
42793
|
+
"versionNumber": smithy_client_1.expectInt32
|
|
42794
|
+
});
|
|
42795
|
+
Object.assign(contents, doc);
|
|
42796
|
+
return contents;
|
|
42797
|
+
};
|
|
42798
|
+
exports2.de_GetTaggedMarketplaceListingVersionCommand = de_GetTaggedMarketplaceListingVersionCommand;
|
|
41802
42799
|
var de_GetTaggedWorkflowVersionCommand = async (output, context) => {
|
|
41803
42800
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41804
42801
|
return de_CommandError(output, context);
|
|
@@ -41882,6 +42879,52 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41882
42879
|
return contents;
|
|
41883
42880
|
};
|
|
41884
42881
|
exports2.de_GetWorkflowVersionCommand = de_GetWorkflowVersionCommand;
|
|
42882
|
+
var de_GrantMarketplaceAccessCommand = async (output, context) => {
|
|
42883
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42884
|
+
return de_CommandError(output, context);
|
|
42885
|
+
}
|
|
42886
|
+
const contents = (0, smithy_client_1.map)({
|
|
42887
|
+
$metadata: deserializeMetadata(output)
|
|
42888
|
+
});
|
|
42889
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42890
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42891
|
+
"grantId": smithy_client_1.expectString
|
|
42892
|
+
});
|
|
42893
|
+
Object.assign(contents, doc);
|
|
42894
|
+
return contents;
|
|
42895
|
+
};
|
|
42896
|
+
exports2.de_GrantMarketplaceAccessCommand = de_GrantMarketplaceAccessCommand;
|
|
42897
|
+
var de_IsMarketplaceListingAllowlistedCommand = async (output, context) => {
|
|
42898
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42899
|
+
return de_CommandError(output, context);
|
|
42900
|
+
}
|
|
42901
|
+
const contents = (0, smithy_client_1.map)({
|
|
42902
|
+
$metadata: deserializeMetadata(output)
|
|
42903
|
+
});
|
|
42904
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42905
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42906
|
+
"allowlistedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42907
|
+
"isAllowlisted": smithy_client_1.expectBoolean
|
|
42908
|
+
});
|
|
42909
|
+
Object.assign(contents, doc);
|
|
42910
|
+
return contents;
|
|
42911
|
+
};
|
|
42912
|
+
exports2.de_IsMarketplaceListingAllowlistedCommand = de_IsMarketplaceListingAllowlistedCommand;
|
|
42913
|
+
var de_ListAllowlistedMarketplaceListingsCommand = async (output, context) => {
|
|
42914
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42915
|
+
return de_CommandError(output, context);
|
|
42916
|
+
}
|
|
42917
|
+
const contents = (0, smithy_client_1.map)({
|
|
42918
|
+
$metadata: deserializeMetadata(output)
|
|
42919
|
+
});
|
|
42920
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42921
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42922
|
+
"listings": (_) => de_MarketplaceListingSummaryList(_, context)
|
|
42923
|
+
});
|
|
42924
|
+
Object.assign(contents, doc);
|
|
42925
|
+
return contents;
|
|
42926
|
+
};
|
|
42927
|
+
exports2.de_ListAllowlistedMarketplaceListingsCommand = de_ListAllowlistedMarketplaceListingsCommand;
|
|
41885
42928
|
var de_ListApiAuthTokensCommand = async (output, context) => {
|
|
41886
42929
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41887
42930
|
return de_CommandError(output, context);
|
|
@@ -41914,6 +42957,67 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
41914
42957
|
return contents;
|
|
41915
42958
|
};
|
|
41916
42959
|
exports2.de_ListJobsCommand = de_ListJobsCommand;
|
|
42960
|
+
var de_ListMarketplaceListingBillingOverridesCommand = async (output, context) => {
|
|
42961
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42962
|
+
return de_CommandError(output, context);
|
|
42963
|
+
}
|
|
42964
|
+
const contents = (0, smithy_client_1.map)({
|
|
42965
|
+
$metadata: deserializeMetadata(output)
|
|
42966
|
+
});
|
|
42967
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42968
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42969
|
+
"overrides": (_) => de_MarketplaceBillingOverrideList(_, context)
|
|
42970
|
+
});
|
|
42971
|
+
Object.assign(contents, doc);
|
|
42972
|
+
return contents;
|
|
42973
|
+
};
|
|
42974
|
+
exports2.de_ListMarketplaceListingBillingOverridesCommand = de_ListMarketplaceListingBillingOverridesCommand;
|
|
42975
|
+
var de_ListMarketplaceListingsCommand = async (output, context) => {
|
|
42976
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42977
|
+
return de_CommandError(output, context);
|
|
42978
|
+
}
|
|
42979
|
+
const contents = (0, smithy_client_1.map)({
|
|
42980
|
+
$metadata: deserializeMetadata(output)
|
|
42981
|
+
});
|
|
42982
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42983
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
42984
|
+
"listings": (_) => de_MarketplaceListingSummaryList(_, context),
|
|
42985
|
+
"nextToken": smithy_client_1.expectString
|
|
42986
|
+
});
|
|
42987
|
+
Object.assign(contents, doc);
|
|
42988
|
+
return contents;
|
|
42989
|
+
};
|
|
42990
|
+
exports2.de_ListMarketplaceListingsCommand = de_ListMarketplaceListingsCommand;
|
|
42991
|
+
var de_ListMarketplaceListingVersionsCommand = async (output, context) => {
|
|
42992
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42993
|
+
return de_CommandError(output, context);
|
|
42994
|
+
}
|
|
42995
|
+
const contents = (0, smithy_client_1.map)({
|
|
42996
|
+
$metadata: deserializeMetadata(output)
|
|
42997
|
+
});
|
|
42998
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
42999
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
43000
|
+
"versions": (_) => de_MarketplaceListingVersionSummaryList(_, context)
|
|
43001
|
+
});
|
|
43002
|
+
Object.assign(contents, doc);
|
|
43003
|
+
return contents;
|
|
43004
|
+
};
|
|
43005
|
+
exports2.de_ListMarketplaceListingVersionsCommand = de_ListMarketplaceListingVersionsCommand;
|
|
43006
|
+
var de_ListMyMarketplaceListingsCommand = async (output, context) => {
|
|
43007
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43008
|
+
return de_CommandError(output, context);
|
|
43009
|
+
}
|
|
43010
|
+
const contents = (0, smithy_client_1.map)({
|
|
43011
|
+
$metadata: deserializeMetadata(output)
|
|
43012
|
+
});
|
|
43013
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
43014
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
43015
|
+
"listings": (_) => de_MarketplaceListingSummaryList(_, context)
|
|
43016
|
+
});
|
|
43017
|
+
Object.assign(contents, doc);
|
|
43018
|
+
return contents;
|
|
43019
|
+
};
|
|
43020
|
+
exports2.de_ListMyMarketplaceListingsCommand = de_ListMyMarketplaceListingsCommand;
|
|
41917
43021
|
var de_ListOrganizationInvitationsForUserCommand = async (output, context) => {
|
|
41918
43022
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
41919
43023
|
return de_CommandError(output, context);
|
|
@@ -42035,6 +43139,22 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42035
43139
|
return contents;
|
|
42036
43140
|
};
|
|
42037
43141
|
exports2.de_ListWorkflowVersionsCommand = de_ListWorkflowVersionsCommand;
|
|
43142
|
+
var de_PublishWorkflowToMarketplaceCommand = async (output, context) => {
|
|
43143
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43144
|
+
return de_CommandError(output, context);
|
|
43145
|
+
}
|
|
43146
|
+
const contents = (0, smithy_client_1.map)({
|
|
43147
|
+
$metadata: deserializeMetadata(output)
|
|
43148
|
+
});
|
|
43149
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
43150
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
43151
|
+
"key": smithy_client_1.expectString,
|
|
43152
|
+
"listingId": smithy_client_1.expectString
|
|
43153
|
+
});
|
|
43154
|
+
Object.assign(contents, doc);
|
|
43155
|
+
return contents;
|
|
43156
|
+
};
|
|
43157
|
+
exports2.de_PublishWorkflowToMarketplaceCommand = de_PublishWorkflowToMarketplaceCommand;
|
|
42038
43158
|
var de_RegisterWorkflowCommand = async (output, context) => {
|
|
42039
43159
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42040
43160
|
return de_CommandError(output, context);
|
|
@@ -42120,6 +43240,32 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42120
43240
|
return contents;
|
|
42121
43241
|
};
|
|
42122
43242
|
exports2.de_RevokeApiAuthTokenCommand = de_RevokeApiAuthTokenCommand;
|
|
43243
|
+
var de_RevokeMarketplaceAccessCommand = async (output, context) => {
|
|
43244
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43245
|
+
return de_CommandError(output, context);
|
|
43246
|
+
}
|
|
43247
|
+
const contents = (0, smithy_client_1.map)({
|
|
43248
|
+
$metadata: deserializeMetadata(output)
|
|
43249
|
+
});
|
|
43250
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
43251
|
+
return contents;
|
|
43252
|
+
};
|
|
43253
|
+
exports2.de_RevokeMarketplaceAccessCommand = de_RevokeMarketplaceAccessCommand;
|
|
43254
|
+
var de_SearchMarketplaceOrganizationsCommand = async (output, context) => {
|
|
43255
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43256
|
+
return de_CommandError(output, context);
|
|
43257
|
+
}
|
|
43258
|
+
const contents = (0, smithy_client_1.map)({
|
|
43259
|
+
$metadata: deserializeMetadata(output)
|
|
43260
|
+
});
|
|
43261
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
43262
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
43263
|
+
"organizations": smithy_client_1._json
|
|
43264
|
+
});
|
|
43265
|
+
Object.assign(contents, doc);
|
|
43266
|
+
return contents;
|
|
43267
|
+
};
|
|
43268
|
+
exports2.de_SearchMarketplaceOrganizationsCommand = de_SearchMarketplaceOrganizationsCommand;
|
|
42123
43269
|
var de_SendJobEventCommand = async (output, context) => {
|
|
42124
43270
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42125
43271
|
return de_CommandError(output, context);
|
|
@@ -42136,6 +43282,21 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42136
43282
|
return contents;
|
|
42137
43283
|
};
|
|
42138
43284
|
exports2.de_SendJobEventCommand = de_SendJobEventCommand;
|
|
43285
|
+
var de_SetMarketplaceListingVersionTagCommand = async (output, context) => {
|
|
43286
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43287
|
+
return de_CommandError(output, context);
|
|
43288
|
+
}
|
|
43289
|
+
const contents = (0, smithy_client_1.map)({
|
|
43290
|
+
$metadata: deserializeMetadata(output)
|
|
43291
|
+
});
|
|
43292
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
43293
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
43294
|
+
"success": smithy_client_1.expectBoolean
|
|
43295
|
+
});
|
|
43296
|
+
Object.assign(contents, doc);
|
|
43297
|
+
return contents;
|
|
43298
|
+
};
|
|
43299
|
+
exports2.de_SetMarketplaceListingVersionTagCommand = de_SetMarketplaceListingVersionTagCommand;
|
|
42139
43300
|
var de_SetWorkflowVersionTagCommand = async (output, context) => {
|
|
42140
43301
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42141
43302
|
return de_CommandError(output, context);
|
|
@@ -42166,6 +43327,28 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42166
43327
|
return contents;
|
|
42167
43328
|
};
|
|
42168
43329
|
exports2.de_SubmitJobCommand = de_SubmitJobCommand;
|
|
43330
|
+
var de_UnallowlistMarketplaceListingCommand = async (output, context) => {
|
|
43331
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43332
|
+
return de_CommandError(output, context);
|
|
43333
|
+
}
|
|
43334
|
+
const contents = (0, smithy_client_1.map)({
|
|
43335
|
+
$metadata: deserializeMetadata(output)
|
|
43336
|
+
});
|
|
43337
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
43338
|
+
return contents;
|
|
43339
|
+
};
|
|
43340
|
+
exports2.de_UnallowlistMarketplaceListingCommand = de_UnallowlistMarketplaceListingCommand;
|
|
43341
|
+
var de_UnpublishWorkflowFromMarketplaceCommand = async (output, context) => {
|
|
43342
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43343
|
+
return de_CommandError(output, context);
|
|
43344
|
+
}
|
|
43345
|
+
const contents = (0, smithy_client_1.map)({
|
|
43346
|
+
$metadata: deserializeMetadata(output)
|
|
43347
|
+
});
|
|
43348
|
+
await (0, smithy_client_1.collectBody)(output.body, context);
|
|
43349
|
+
return contents;
|
|
43350
|
+
};
|
|
43351
|
+
exports2.de_UnpublishWorkflowFromMarketplaceCommand = de_UnpublishWorkflowFromMarketplaceCommand;
|
|
42169
43352
|
var de_UpdateApiAuthTokenCommand = async (output, context) => {
|
|
42170
43353
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42171
43354
|
return de_CommandError(output, context);
|
|
@@ -42185,6 +43368,36 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42185
43368
|
return contents;
|
|
42186
43369
|
};
|
|
42187
43370
|
exports2.de_UpdateApiAuthTokenCommand = de_UpdateApiAuthTokenCommand;
|
|
43371
|
+
var de_UpdateMarketplaceListingBillingCommand = async (output, context) => {
|
|
43372
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43373
|
+
return de_CommandError(output, context);
|
|
43374
|
+
}
|
|
43375
|
+
const contents = (0, smithy_client_1.map)({
|
|
43376
|
+
$metadata: deserializeMetadata(output)
|
|
43377
|
+
});
|
|
43378
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
43379
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
43380
|
+
"success": smithy_client_1.expectBoolean
|
|
43381
|
+
});
|
|
43382
|
+
Object.assign(contents, doc);
|
|
43383
|
+
return contents;
|
|
43384
|
+
};
|
|
43385
|
+
exports2.de_UpdateMarketplaceListingBillingCommand = de_UpdateMarketplaceListingBillingCommand;
|
|
43386
|
+
var de_UpdateMarketplaceListingMetadataCommand = async (output, context) => {
|
|
43387
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43388
|
+
return de_CommandError(output, context);
|
|
43389
|
+
}
|
|
43390
|
+
const contents = (0, smithy_client_1.map)({
|
|
43391
|
+
$metadata: deserializeMetadata(output)
|
|
43392
|
+
});
|
|
43393
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
43394
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
43395
|
+
"success": smithy_client_1.expectBoolean
|
|
43396
|
+
});
|
|
43397
|
+
Object.assign(contents, doc);
|
|
43398
|
+
return contents;
|
|
43399
|
+
};
|
|
43400
|
+
exports2.de_UpdateMarketplaceListingMetadataCommand = de_UpdateMarketplaceListingMetadataCommand;
|
|
42188
43401
|
var de_UpdateOrganizationCommand = async (output, context) => {
|
|
42189
43402
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
42190
43403
|
return de_CommandError(output, context);
|
|
@@ -42196,6 +43409,7 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42196
43409
|
const doc = (0, smithy_client_1.take)(data2, {
|
|
42197
43410
|
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42198
43411
|
"displayName": smithy_client_1.expectString,
|
|
43412
|
+
"key": smithy_client_1.expectString,
|
|
42199
43413
|
"name": smithy_client_1.expectString,
|
|
42200
43414
|
"organizationId": smithy_client_1.expectString
|
|
42201
43415
|
});
|
|
@@ -42252,6 +43466,21 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42252
43466
|
return contents;
|
|
42253
43467
|
};
|
|
42254
43468
|
exports2.de_UpdateRoleCommand = de_UpdateRoleCommand;
|
|
43469
|
+
var de_UpsertMarketplaceListingBillingOverrideCommand = async (output, context) => {
|
|
43470
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
43471
|
+
return de_CommandError(output, context);
|
|
43472
|
+
}
|
|
43473
|
+
const contents = (0, smithy_client_1.map)({
|
|
43474
|
+
$metadata: deserializeMetadata(output)
|
|
43475
|
+
});
|
|
43476
|
+
const data2 = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await (0, core_1.parseJsonBody)(output.body, context)), "body");
|
|
43477
|
+
const doc = (0, smithy_client_1.take)(data2, {
|
|
43478
|
+
"id": smithy_client_1.expectString
|
|
43479
|
+
});
|
|
43480
|
+
Object.assign(contents, doc);
|
|
43481
|
+
return contents;
|
|
43482
|
+
};
|
|
43483
|
+
exports2.de_UpsertMarketplaceListingBillingOverrideCommand = de_UpsertMarketplaceListingBillingOverrideCommand;
|
|
42255
43484
|
var de_CommandError = async (output, context) => {
|
|
42256
43485
|
const parsedOutput = {
|
|
42257
43486
|
...output,
|
|
@@ -42363,6 +43592,41 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42363
43592
|
var se_Document = (input, context) => {
|
|
42364
43593
|
return input;
|
|
42365
43594
|
};
|
|
43595
|
+
var de_AdminOrganizationSummary = (output, context) => {
|
|
43596
|
+
return (0, smithy_client_1.take)(output, {
|
|
43597
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
43598
|
+
"displayName": smithy_client_1.expectString,
|
|
43599
|
+
"key": smithy_client_1.expectString,
|
|
43600
|
+
"memberCount": smithy_client_1.expectInt32,
|
|
43601
|
+
"name": smithy_client_1.expectString,
|
|
43602
|
+
"organizationId": smithy_client_1.expectString,
|
|
43603
|
+
"subscriptionPlanName": smithy_client_1.expectString,
|
|
43604
|
+
"updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
43605
|
+
"workflowCount": smithy_client_1.expectInt32
|
|
43606
|
+
});
|
|
43607
|
+
};
|
|
43608
|
+
var de_AdminOrganizationSummaryList = (output, context) => {
|
|
43609
|
+
const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
|
|
43610
|
+
return de_AdminOrganizationSummary(entry, context);
|
|
43611
|
+
});
|
|
43612
|
+
return retVal;
|
|
43613
|
+
};
|
|
43614
|
+
var de_AdminRoleSummary = (output, context) => {
|
|
43615
|
+
return (0, smithy_client_1.take)(output, {
|
|
43616
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
43617
|
+
"description": smithy_client_1.expectString,
|
|
43618
|
+
"name": smithy_client_1.expectString,
|
|
43619
|
+
"permissionCount": smithy_client_1.expectInt32,
|
|
43620
|
+
"roleId": smithy_client_1.expectString,
|
|
43621
|
+
"userCount": smithy_client_1.expectInt32
|
|
43622
|
+
});
|
|
43623
|
+
};
|
|
43624
|
+
var de_AdminRoleSummaryList = (output, context) => {
|
|
43625
|
+
const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
|
|
43626
|
+
return de_AdminRoleSummary(entry, context);
|
|
43627
|
+
});
|
|
43628
|
+
return retVal;
|
|
43629
|
+
};
|
|
42366
43630
|
var de_AggregatedMetricResult = (output, context) => {
|
|
42367
43631
|
return (0, smithy_client_1.take)(output, {
|
|
42368
43632
|
"timestamp": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
@@ -42406,6 +43670,22 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42406
43670
|
});
|
|
42407
43671
|
return retVal;
|
|
42408
43672
|
};
|
|
43673
|
+
var de_ConsumerUsageBreakdown = (output, context) => {
|
|
43674
|
+
return (0, smithy_client_1.take)(output, {
|
|
43675
|
+
"estimatedCost": smithy_client_1.limitedParseFloat32,
|
|
43676
|
+
"invocations": smithy_client_1.expectLong,
|
|
43677
|
+
"organizationId": smithy_client_1.expectString,
|
|
43678
|
+
"organizationKey": smithy_client_1.expectString,
|
|
43679
|
+
"organizationName": smithy_client_1.expectString,
|
|
43680
|
+
"units": smithy_client_1.limitedParseFloat32
|
|
43681
|
+
});
|
|
43682
|
+
};
|
|
43683
|
+
var de_ConsumerUsageBreakdownList = (output, context) => {
|
|
43684
|
+
const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
|
|
43685
|
+
return de_ConsumerUsageBreakdown(entry, context);
|
|
43686
|
+
});
|
|
43687
|
+
return retVal;
|
|
43688
|
+
};
|
|
42409
43689
|
var de_ExecutionHistoryItem = (output, context) => {
|
|
42410
43690
|
return (0, smithy_client_1.take)(output, {
|
|
42411
43691
|
"endTimestamp": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
@@ -42429,11 +43709,13 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42429
43709
|
};
|
|
42430
43710
|
var de_JobSummary = (output, context) => {
|
|
42431
43711
|
return (0, smithy_client_1.take)(output, {
|
|
43712
|
+
"billableTransactionUnits": smithy_client_1.limitedParseDouble,
|
|
42432
43713
|
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42433
43714
|
"finishedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42434
43715
|
"jobId": smithy_client_1.expectString,
|
|
42435
43716
|
"parentJobId": smithy_client_1.expectString,
|
|
42436
43717
|
"parentStepName": smithy_client_1.expectString,
|
|
43718
|
+
"rootJobId": smithy_client_1.expectString,
|
|
42437
43719
|
"startedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42438
43720
|
"status": smithy_client_1.expectString,
|
|
42439
43721
|
"submittedByUser": smithy_client_1.expectString,
|
|
@@ -42449,6 +43731,75 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42449
43731
|
});
|
|
42450
43732
|
return retVal;
|
|
42451
43733
|
};
|
|
43734
|
+
var de_MarketplaceBillingOverride = (output, context) => {
|
|
43735
|
+
return (0, smithy_client_1.take)(output, {
|
|
43736
|
+
"billingModel": smithy_client_1.expectString,
|
|
43737
|
+
"costPerInvocation": smithy_client_1.limitedParseFloat32,
|
|
43738
|
+
"costPerMonth": smithy_client_1.limitedParseFloat32,
|
|
43739
|
+
"costPerUnit": smithy_client_1.limitedParseFloat32,
|
|
43740
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
43741
|
+
"id": smithy_client_1.expectString,
|
|
43742
|
+
"organizationKey": smithy_client_1.expectString,
|
|
43743
|
+
"updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_))
|
|
43744
|
+
});
|
|
43745
|
+
};
|
|
43746
|
+
var de_MarketplaceBillingOverrideList = (output, context) => {
|
|
43747
|
+
const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
|
|
43748
|
+
return de_MarketplaceBillingOverride(entry, context);
|
|
43749
|
+
});
|
|
43750
|
+
return retVal;
|
|
43751
|
+
};
|
|
43752
|
+
var de_MarketplaceListingSummary = (output, context) => {
|
|
43753
|
+
return (0, smithy_client_1.take)(output, {
|
|
43754
|
+
"billingModel": smithy_client_1.expectString,
|
|
43755
|
+
"costPerInvocation": smithy_client_1.limitedParseFloat32,
|
|
43756
|
+
"costPerMonth": smithy_client_1.limitedParseFloat32,
|
|
43757
|
+
"costPerUnit": smithy_client_1.limitedParseFloat32,
|
|
43758
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
43759
|
+
"description": smithy_client_1.expectString,
|
|
43760
|
+
"key": smithy_client_1.expectString,
|
|
43761
|
+
"listingId": smithy_client_1.expectString,
|
|
43762
|
+
"liveVersionNumber": smithy_client_1.expectInt32,
|
|
43763
|
+
"organizationId": smithy_client_1.expectString,
|
|
43764
|
+
"organizationKey": smithy_client_1.expectString,
|
|
43765
|
+
"organizationName": smithy_client_1.expectString,
|
|
43766
|
+
"rateLimitMaxRequests": smithy_client_1.expectInt32,
|
|
43767
|
+
"rateLimitWindowUnit": smithy_client_1.expectString,
|
|
43768
|
+
"rateLimitWindowValue": smithy_client_1.expectInt32,
|
|
43769
|
+
"status": smithy_client_1.expectString,
|
|
43770
|
+
"title": smithy_client_1.expectString,
|
|
43771
|
+
"totalVersions": smithy_client_1.expectInt32,
|
|
43772
|
+
"updatedAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
43773
|
+
"visibility": smithy_client_1.expectString,
|
|
43774
|
+
"workflowName": smithy_client_1.expectString,
|
|
43775
|
+
"workflowVersionNumber": smithy_client_1.expectInt32
|
|
43776
|
+
});
|
|
43777
|
+
};
|
|
43778
|
+
var de_MarketplaceListingSummaryList = (output, context) => {
|
|
43779
|
+
const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
|
|
43780
|
+
return de_MarketplaceListingSummary(entry, context);
|
|
43781
|
+
});
|
|
43782
|
+
return retVal;
|
|
43783
|
+
};
|
|
43784
|
+
var de_MarketplaceListingVersionSummary = (output, context) => {
|
|
43785
|
+
return (0, smithy_client_1.take)(output, {
|
|
43786
|
+
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
43787
|
+
"inputSchema": smithy_client_1.expectString,
|
|
43788
|
+
"tags": smithy_client_1._json,
|
|
43789
|
+
"versionId": smithy_client_1.expectString,
|
|
43790
|
+
"versionNumber": smithy_client_1.expectInt32,
|
|
43791
|
+
"workflowId": smithy_client_1.expectString,
|
|
43792
|
+
"workflowName": smithy_client_1.expectString,
|
|
43793
|
+
"workflowVersionId": smithy_client_1.expectString,
|
|
43794
|
+
"workflowVersionNumber": smithy_client_1.expectInt32
|
|
43795
|
+
});
|
|
43796
|
+
};
|
|
43797
|
+
var de_MarketplaceListingVersionSummaryList = (output, context) => {
|
|
43798
|
+
const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
|
|
43799
|
+
return de_MarketplaceListingVersionSummary(entry, context);
|
|
43800
|
+
});
|
|
43801
|
+
return retVal;
|
|
43802
|
+
};
|
|
42452
43803
|
var de_OrganizationInvitationSummary = (output, context) => {
|
|
42453
43804
|
return (0, smithy_client_1.take)(output, {
|
|
42454
43805
|
"email": smithy_client_1.expectString,
|
|
@@ -42474,6 +43825,7 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42474
43825
|
return (0, smithy_client_1.take)(output, {
|
|
42475
43826
|
"createdAt": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
42476
43827
|
"displayName": smithy_client_1.expectString,
|
|
43828
|
+
"key": smithy_client_1.expectString,
|
|
42477
43829
|
"name": smithy_client_1.expectString,
|
|
42478
43830
|
"organizationId": smithy_client_1.expectString
|
|
42479
43831
|
});
|
|
@@ -42526,6 +43878,20 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42526
43878
|
"status": smithy_client_1.expectString
|
|
42527
43879
|
});
|
|
42528
43880
|
};
|
|
43881
|
+
var de_UsageTimeSeriesDataPoint = (output, context) => {
|
|
43882
|
+
return (0, smithy_client_1.take)(output, {
|
|
43883
|
+
"estimatedCost": smithy_client_1.limitedParseFloat32,
|
|
43884
|
+
"invocations": smithy_client_1.expectLong,
|
|
43885
|
+
"timestamp": (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
|
|
43886
|
+
"units": smithy_client_1.limitedParseFloat32
|
|
43887
|
+
});
|
|
43888
|
+
};
|
|
43889
|
+
var de_UsageTimeSeriesDataPointList = (output, context) => {
|
|
43890
|
+
const retVal = (output || []).filter((e4) => e4 != null).map((entry) => {
|
|
43891
|
+
return de_UsageTimeSeriesDataPoint(entry, context);
|
|
43892
|
+
});
|
|
43893
|
+
return retVal;
|
|
43894
|
+
};
|
|
42529
43895
|
var de_WorkflowState = (output, context) => {
|
|
42530
43896
|
return (0, smithy_client_1.take)(output, {
|
|
42531
43897
|
"executionData": (_) => de_Document(_, context),
|
|
@@ -42572,10 +43938,14 @@ var require_Aws_restJson1 = __commonJS({
|
|
|
42572
43938
|
});
|
|
42573
43939
|
var _a2 = "aggregation";
|
|
42574
43940
|
var _b = "bucket";
|
|
43941
|
+
var _l = "limit";
|
|
42575
43942
|
var _m3 = "metric";
|
|
43943
|
+
var _nT = "nextToken";
|
|
43944
|
+
var _oI = "organizationId";
|
|
42576
43945
|
var _pS = "pageSize";
|
|
42577
43946
|
var _pT = "pageToken";
|
|
42578
|
-
var _s4 = "
|
|
43947
|
+
var _s4 = "search";
|
|
43948
|
+
var _si = "since";
|
|
42579
43949
|
var _st = "status";
|
|
42580
43950
|
var _u = "until";
|
|
42581
43951
|
}
|
|
@@ -42603,6 +43973,182 @@ var require_AcceptOrganizationInvitationCommand = __commonJS({
|
|
|
42603
43973
|
}
|
|
42604
43974
|
});
|
|
42605
43975
|
|
|
43976
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/AdminCreateRoleCommand.js
|
|
43977
|
+
var require_AdminCreateRoleCommand = __commonJS({
|
|
43978
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/AdminCreateRoleCommand.js"(exports2) {
|
|
43979
|
+
"use strict";
|
|
43980
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43981
|
+
exports2.AdminCreateRoleCommand = exports2.$Command = void 0;
|
|
43982
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
43983
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
43984
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
43985
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
43986
|
+
return smithy_client_1.Command;
|
|
43987
|
+
} });
|
|
43988
|
+
var AdminCreateRoleCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
43989
|
+
return [
|
|
43990
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
43991
|
+
];
|
|
43992
|
+
}).s("JustWorkflowItService", "AdminCreateRole", {}).n("JustWorkflowItClient", "AdminCreateRoleCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminCreateRoleCommand).de(Aws_restJson1_1.de_AdminCreateRoleCommand).build() {
|
|
43993
|
+
};
|
|
43994
|
+
exports2.AdminCreateRoleCommand = AdminCreateRoleCommand;
|
|
43995
|
+
}
|
|
43996
|
+
});
|
|
43997
|
+
|
|
43998
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/AdminDeleteRoleCommand.js
|
|
43999
|
+
var require_AdminDeleteRoleCommand = __commonJS({
|
|
44000
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/AdminDeleteRoleCommand.js"(exports2) {
|
|
44001
|
+
"use strict";
|
|
44002
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44003
|
+
exports2.AdminDeleteRoleCommand = exports2.$Command = void 0;
|
|
44004
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44005
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44006
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44007
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44008
|
+
return smithy_client_1.Command;
|
|
44009
|
+
} });
|
|
44010
|
+
var AdminDeleteRoleCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44011
|
+
return [
|
|
44012
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44013
|
+
];
|
|
44014
|
+
}).s("JustWorkflowItService", "AdminDeleteRole", {}).n("JustWorkflowItClient", "AdminDeleteRoleCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminDeleteRoleCommand).de(Aws_restJson1_1.de_AdminDeleteRoleCommand).build() {
|
|
44015
|
+
};
|
|
44016
|
+
exports2.AdminDeleteRoleCommand = AdminDeleteRoleCommand;
|
|
44017
|
+
}
|
|
44018
|
+
});
|
|
44019
|
+
|
|
44020
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/AdminGetOrganizationCommand.js
|
|
44021
|
+
var require_AdminGetOrganizationCommand = __commonJS({
|
|
44022
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/AdminGetOrganizationCommand.js"(exports2) {
|
|
44023
|
+
"use strict";
|
|
44024
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44025
|
+
exports2.AdminGetOrganizationCommand = exports2.$Command = void 0;
|
|
44026
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44027
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44028
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44029
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44030
|
+
return smithy_client_1.Command;
|
|
44031
|
+
} });
|
|
44032
|
+
var AdminGetOrganizationCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44033
|
+
return [
|
|
44034
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44035
|
+
];
|
|
44036
|
+
}).s("JustWorkflowItService", "AdminGetOrganization", {}).n("JustWorkflowItClient", "AdminGetOrganizationCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminGetOrganizationCommand).de(Aws_restJson1_1.de_AdminGetOrganizationCommand).build() {
|
|
44037
|
+
};
|
|
44038
|
+
exports2.AdminGetOrganizationCommand = AdminGetOrganizationCommand;
|
|
44039
|
+
}
|
|
44040
|
+
});
|
|
44041
|
+
|
|
44042
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/AdminGetRoleCommand.js
|
|
44043
|
+
var require_AdminGetRoleCommand = __commonJS({
|
|
44044
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/AdminGetRoleCommand.js"(exports2) {
|
|
44045
|
+
"use strict";
|
|
44046
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44047
|
+
exports2.AdminGetRoleCommand = exports2.$Command = void 0;
|
|
44048
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44049
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44050
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44051
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44052
|
+
return smithy_client_1.Command;
|
|
44053
|
+
} });
|
|
44054
|
+
var AdminGetRoleCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44055
|
+
return [
|
|
44056
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44057
|
+
];
|
|
44058
|
+
}).s("JustWorkflowItService", "AdminGetRole", {}).n("JustWorkflowItClient", "AdminGetRoleCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminGetRoleCommand).de(Aws_restJson1_1.de_AdminGetRoleCommand).build() {
|
|
44059
|
+
};
|
|
44060
|
+
exports2.AdminGetRoleCommand = AdminGetRoleCommand;
|
|
44061
|
+
}
|
|
44062
|
+
});
|
|
44063
|
+
|
|
44064
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/AdminListOrganizationsCommand.js
|
|
44065
|
+
var require_AdminListOrganizationsCommand = __commonJS({
|
|
44066
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/AdminListOrganizationsCommand.js"(exports2) {
|
|
44067
|
+
"use strict";
|
|
44068
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44069
|
+
exports2.AdminListOrganizationsCommand = exports2.$Command = void 0;
|
|
44070
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44071
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44072
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44073
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44074
|
+
return smithy_client_1.Command;
|
|
44075
|
+
} });
|
|
44076
|
+
var AdminListOrganizationsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44077
|
+
return [
|
|
44078
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44079
|
+
];
|
|
44080
|
+
}).s("JustWorkflowItService", "AdminListOrganizations", {}).n("JustWorkflowItClient", "AdminListOrganizationsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminListOrganizationsCommand).de(Aws_restJson1_1.de_AdminListOrganizationsCommand).build() {
|
|
44081
|
+
};
|
|
44082
|
+
exports2.AdminListOrganizationsCommand = AdminListOrganizationsCommand;
|
|
44083
|
+
}
|
|
44084
|
+
});
|
|
44085
|
+
|
|
44086
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/AdminListRolesCommand.js
|
|
44087
|
+
var require_AdminListRolesCommand = __commonJS({
|
|
44088
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/AdminListRolesCommand.js"(exports2) {
|
|
44089
|
+
"use strict";
|
|
44090
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44091
|
+
exports2.AdminListRolesCommand = exports2.$Command = void 0;
|
|
44092
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44093
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44094
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44095
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44096
|
+
return smithy_client_1.Command;
|
|
44097
|
+
} });
|
|
44098
|
+
var AdminListRolesCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44099
|
+
return [
|
|
44100
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44101
|
+
];
|
|
44102
|
+
}).s("JustWorkflowItService", "AdminListRoles", {}).n("JustWorkflowItClient", "AdminListRolesCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminListRolesCommand).de(Aws_restJson1_1.de_AdminListRolesCommand).build() {
|
|
44103
|
+
};
|
|
44104
|
+
exports2.AdminListRolesCommand = AdminListRolesCommand;
|
|
44105
|
+
}
|
|
44106
|
+
});
|
|
44107
|
+
|
|
44108
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/AdminUpdateRoleCommand.js
|
|
44109
|
+
var require_AdminUpdateRoleCommand = __commonJS({
|
|
44110
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/AdminUpdateRoleCommand.js"(exports2) {
|
|
44111
|
+
"use strict";
|
|
44112
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44113
|
+
exports2.AdminUpdateRoleCommand = exports2.$Command = void 0;
|
|
44114
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44115
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44116
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44117
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44118
|
+
return smithy_client_1.Command;
|
|
44119
|
+
} });
|
|
44120
|
+
var AdminUpdateRoleCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44121
|
+
return [
|
|
44122
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44123
|
+
];
|
|
44124
|
+
}).s("JustWorkflowItService", "AdminUpdateRole", {}).n("JustWorkflowItClient", "AdminUpdateRoleCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AdminUpdateRoleCommand).de(Aws_restJson1_1.de_AdminUpdateRoleCommand).build() {
|
|
44125
|
+
};
|
|
44126
|
+
exports2.AdminUpdateRoleCommand = AdminUpdateRoleCommand;
|
|
44127
|
+
}
|
|
44128
|
+
});
|
|
44129
|
+
|
|
44130
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/AllowlistMarketplaceListingCommand.js
|
|
44131
|
+
var require_AllowlistMarketplaceListingCommand = __commonJS({
|
|
44132
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/AllowlistMarketplaceListingCommand.js"(exports2) {
|
|
44133
|
+
"use strict";
|
|
44134
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44135
|
+
exports2.AllowlistMarketplaceListingCommand = exports2.$Command = void 0;
|
|
44136
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44137
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44138
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44139
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44140
|
+
return smithy_client_1.Command;
|
|
44141
|
+
} });
|
|
44142
|
+
var AllowlistMarketplaceListingCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44143
|
+
return [
|
|
44144
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44145
|
+
];
|
|
44146
|
+
}).s("JustWorkflowItService", "AllowlistMarketplaceListing", {}).n("JustWorkflowItClient", "AllowlistMarketplaceListingCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_AllowlistMarketplaceListingCommand).de(Aws_restJson1_1.de_AllowlistMarketplaceListingCommand).build() {
|
|
44147
|
+
};
|
|
44148
|
+
exports2.AllowlistMarketplaceListingCommand = AllowlistMarketplaceListingCommand;
|
|
44149
|
+
}
|
|
44150
|
+
});
|
|
44151
|
+
|
|
42606
44152
|
// ../JustWorkflowItApiClient/dist-cjs/commands/CancelJobCommand.js
|
|
42607
44153
|
var require_CancelJobCommand = __commonJS({
|
|
42608
44154
|
"../JustWorkflowItApiClient/dist-cjs/commands/CancelJobCommand.js"(exports2) {
|
|
@@ -42691,6 +44237,28 @@ var require_CreateInterestCommand = __commonJS({
|
|
|
42691
44237
|
}
|
|
42692
44238
|
});
|
|
42693
44239
|
|
|
44240
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/CreateMarketplaceListingVersionCommand.js
|
|
44241
|
+
var require_CreateMarketplaceListingVersionCommand = __commonJS({
|
|
44242
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/CreateMarketplaceListingVersionCommand.js"(exports2) {
|
|
44243
|
+
"use strict";
|
|
44244
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44245
|
+
exports2.CreateMarketplaceListingVersionCommand = exports2.$Command = void 0;
|
|
44246
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44247
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44248
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44249
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44250
|
+
return smithy_client_1.Command;
|
|
44251
|
+
} });
|
|
44252
|
+
var CreateMarketplaceListingVersionCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44253
|
+
return [
|
|
44254
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44255
|
+
];
|
|
44256
|
+
}).s("JustWorkflowItService", "CreateMarketplaceListingVersion", {}).n("JustWorkflowItClient", "CreateMarketplaceListingVersionCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_CreateMarketplaceListingVersionCommand).de(Aws_restJson1_1.de_CreateMarketplaceListingVersionCommand).build() {
|
|
44257
|
+
};
|
|
44258
|
+
exports2.CreateMarketplaceListingVersionCommand = CreateMarketplaceListingVersionCommand;
|
|
44259
|
+
}
|
|
44260
|
+
});
|
|
44261
|
+
|
|
42694
44262
|
// ../JustWorkflowItApiClient/dist-cjs/commands/CreateOrganizationCommand.js
|
|
42695
44263
|
var require_CreateOrganizationCommand = __commonJS({
|
|
42696
44264
|
"../JustWorkflowItApiClient/dist-cjs/commands/CreateOrganizationCommand.js"(exports2) {
|
|
@@ -42779,6 +44347,28 @@ var require_CreateRoleCommand = __commonJS({
|
|
|
42779
44347
|
}
|
|
42780
44348
|
});
|
|
42781
44349
|
|
|
44350
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/DeleteMarketplaceListingBillingOverrideCommand.js
|
|
44351
|
+
var require_DeleteMarketplaceListingBillingOverrideCommand = __commonJS({
|
|
44352
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/DeleteMarketplaceListingBillingOverrideCommand.js"(exports2) {
|
|
44353
|
+
"use strict";
|
|
44354
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44355
|
+
exports2.DeleteMarketplaceListingBillingOverrideCommand = exports2.$Command = void 0;
|
|
44356
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44357
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44358
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44359
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44360
|
+
return smithy_client_1.Command;
|
|
44361
|
+
} });
|
|
44362
|
+
var DeleteMarketplaceListingBillingOverrideCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44363
|
+
return [
|
|
44364
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44365
|
+
];
|
|
44366
|
+
}).s("JustWorkflowItService", "DeleteMarketplaceListingBillingOverride", {}).n("JustWorkflowItClient", "DeleteMarketplaceListingBillingOverrideCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_DeleteMarketplaceListingBillingOverrideCommand).de(Aws_restJson1_1.de_DeleteMarketplaceListingBillingOverrideCommand).build() {
|
|
44367
|
+
};
|
|
44368
|
+
exports2.DeleteMarketplaceListingBillingOverrideCommand = DeleteMarketplaceListingBillingOverrideCommand;
|
|
44369
|
+
}
|
|
44370
|
+
});
|
|
44371
|
+
|
|
42782
44372
|
// ../JustWorkflowItApiClient/dist-cjs/commands/DeleteOrganizationCommand.js
|
|
42783
44373
|
var require_DeleteOrganizationCommand = __commonJS({
|
|
42784
44374
|
"../JustWorkflowItApiClient/dist-cjs/commands/DeleteOrganizationCommand.js"(exports2) {
|
|
@@ -42867,6 +44457,28 @@ var require_GetApiAuthTokenCommand = __commonJS({
|
|
|
42867
44457
|
}
|
|
42868
44458
|
});
|
|
42869
44459
|
|
|
44460
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/GetConsumerListingUsageTimeSeriesCommand.js
|
|
44461
|
+
var require_GetConsumerListingUsageTimeSeriesCommand = __commonJS({
|
|
44462
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/GetConsumerListingUsageTimeSeriesCommand.js"(exports2) {
|
|
44463
|
+
"use strict";
|
|
44464
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44465
|
+
exports2.GetConsumerListingUsageTimeSeriesCommand = exports2.$Command = void 0;
|
|
44466
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44467
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44468
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44469
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44470
|
+
return smithy_client_1.Command;
|
|
44471
|
+
} });
|
|
44472
|
+
var GetConsumerListingUsageTimeSeriesCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44473
|
+
return [
|
|
44474
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44475
|
+
];
|
|
44476
|
+
}).s("JustWorkflowItService", "GetConsumerListingUsageTimeSeries", {}).n("JustWorkflowItClient", "GetConsumerListingUsageTimeSeriesCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetConsumerListingUsageTimeSeriesCommand).de(Aws_restJson1_1.de_GetConsumerListingUsageTimeSeriesCommand).build() {
|
|
44477
|
+
};
|
|
44478
|
+
exports2.GetConsumerListingUsageTimeSeriesCommand = GetConsumerListingUsageTimeSeriesCommand;
|
|
44479
|
+
}
|
|
44480
|
+
});
|
|
44481
|
+
|
|
42870
44482
|
// ../JustWorkflowItApiClient/dist-cjs/commands/GetJobCommand.js
|
|
42871
44483
|
var require_GetJobCommand = __commonJS({
|
|
42872
44484
|
"../JustWorkflowItApiClient/dist-cjs/commands/GetJobCommand.js"(exports2) {
|
|
@@ -42889,6 +44501,72 @@ var require_GetJobCommand = __commonJS({
|
|
|
42889
44501
|
}
|
|
42890
44502
|
});
|
|
42891
44503
|
|
|
44504
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/GetMarketplaceListingCommand.js
|
|
44505
|
+
var require_GetMarketplaceListingCommand = __commonJS({
|
|
44506
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/GetMarketplaceListingCommand.js"(exports2) {
|
|
44507
|
+
"use strict";
|
|
44508
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44509
|
+
exports2.GetMarketplaceListingCommand = exports2.$Command = void 0;
|
|
44510
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44511
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44512
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44513
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44514
|
+
return smithy_client_1.Command;
|
|
44515
|
+
} });
|
|
44516
|
+
var GetMarketplaceListingCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44517
|
+
return [
|
|
44518
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44519
|
+
];
|
|
44520
|
+
}).s("JustWorkflowItService", "GetMarketplaceListing", {}).n("JustWorkflowItClient", "GetMarketplaceListingCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetMarketplaceListingCommand).de(Aws_restJson1_1.de_GetMarketplaceListingCommand).build() {
|
|
44521
|
+
};
|
|
44522
|
+
exports2.GetMarketplaceListingCommand = GetMarketplaceListingCommand;
|
|
44523
|
+
}
|
|
44524
|
+
});
|
|
44525
|
+
|
|
44526
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/GetMarketplaceListingVersionCommand.js
|
|
44527
|
+
var require_GetMarketplaceListingVersionCommand = __commonJS({
|
|
44528
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/GetMarketplaceListingVersionCommand.js"(exports2) {
|
|
44529
|
+
"use strict";
|
|
44530
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44531
|
+
exports2.GetMarketplaceListingVersionCommand = exports2.$Command = void 0;
|
|
44532
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44533
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44534
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44535
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44536
|
+
return smithy_client_1.Command;
|
|
44537
|
+
} });
|
|
44538
|
+
var GetMarketplaceListingVersionCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44539
|
+
return [
|
|
44540
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44541
|
+
];
|
|
44542
|
+
}).s("JustWorkflowItService", "GetMarketplaceListingVersion", {}).n("JustWorkflowItClient", "GetMarketplaceListingVersionCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetMarketplaceListingVersionCommand).de(Aws_restJson1_1.de_GetMarketplaceListingVersionCommand).build() {
|
|
44543
|
+
};
|
|
44544
|
+
exports2.GetMarketplaceListingVersionCommand = GetMarketplaceListingVersionCommand;
|
|
44545
|
+
}
|
|
44546
|
+
});
|
|
44547
|
+
|
|
44548
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/GetMyPermissionsCommand.js
|
|
44549
|
+
var require_GetMyPermissionsCommand = __commonJS({
|
|
44550
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/GetMyPermissionsCommand.js"(exports2) {
|
|
44551
|
+
"use strict";
|
|
44552
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44553
|
+
exports2.GetMyPermissionsCommand = exports2.$Command = void 0;
|
|
44554
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44555
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44556
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44557
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44558
|
+
return smithy_client_1.Command;
|
|
44559
|
+
} });
|
|
44560
|
+
var GetMyPermissionsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44561
|
+
return [
|
|
44562
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44563
|
+
];
|
|
44564
|
+
}).s("JustWorkflowItService", "GetMyPermissions", {}).n("JustWorkflowItClient", "GetMyPermissionsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetMyPermissionsCommand).de(Aws_restJson1_1.de_GetMyPermissionsCommand).build() {
|
|
44565
|
+
};
|
|
44566
|
+
exports2.GetMyPermissionsCommand = GetMyPermissionsCommand;
|
|
44567
|
+
}
|
|
44568
|
+
});
|
|
44569
|
+
|
|
42892
44570
|
// ../JustWorkflowItApiClient/dist-cjs/commands/GetOrganizationCommand.js
|
|
42893
44571
|
var require_GetOrganizationCommand = __commonJS({
|
|
42894
44572
|
"../JustWorkflowItApiClient/dist-cjs/commands/GetOrganizationCommand.js"(exports2) {
|
|
@@ -42955,6 +44633,72 @@ var require_GetOrganizationSubscriptionPlanCommand = __commonJS({
|
|
|
42955
44633
|
}
|
|
42956
44634
|
});
|
|
42957
44635
|
|
|
44636
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/GetPublicInvitationDetailsCommand.js
|
|
44637
|
+
var require_GetPublicInvitationDetailsCommand = __commonJS({
|
|
44638
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/GetPublicInvitationDetailsCommand.js"(exports2) {
|
|
44639
|
+
"use strict";
|
|
44640
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44641
|
+
exports2.GetPublicInvitationDetailsCommand = exports2.$Command = void 0;
|
|
44642
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44643
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44644
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44645
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44646
|
+
return smithy_client_1.Command;
|
|
44647
|
+
} });
|
|
44648
|
+
var GetPublicInvitationDetailsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44649
|
+
return [
|
|
44650
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44651
|
+
];
|
|
44652
|
+
}).s("JustWorkflowItService", "GetPublicInvitationDetails", {}).n("JustWorkflowItClient", "GetPublicInvitationDetailsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetPublicInvitationDetailsCommand).de(Aws_restJson1_1.de_GetPublicInvitationDetailsCommand).build() {
|
|
44653
|
+
};
|
|
44654
|
+
exports2.GetPublicInvitationDetailsCommand = GetPublicInvitationDetailsCommand;
|
|
44655
|
+
}
|
|
44656
|
+
});
|
|
44657
|
+
|
|
44658
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/GetPublisherListingConsumerBreakdownCommand.js
|
|
44659
|
+
var require_GetPublisherListingConsumerBreakdownCommand = __commonJS({
|
|
44660
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/GetPublisherListingConsumerBreakdownCommand.js"(exports2) {
|
|
44661
|
+
"use strict";
|
|
44662
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44663
|
+
exports2.GetPublisherListingConsumerBreakdownCommand = exports2.$Command = void 0;
|
|
44664
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44665
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44666
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44667
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44668
|
+
return smithy_client_1.Command;
|
|
44669
|
+
} });
|
|
44670
|
+
var GetPublisherListingConsumerBreakdownCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44671
|
+
return [
|
|
44672
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44673
|
+
];
|
|
44674
|
+
}).s("JustWorkflowItService", "GetPublisherListingConsumerBreakdown", {}).n("JustWorkflowItClient", "GetPublisherListingConsumerBreakdownCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetPublisherListingConsumerBreakdownCommand).de(Aws_restJson1_1.de_GetPublisherListingConsumerBreakdownCommand).build() {
|
|
44675
|
+
};
|
|
44676
|
+
exports2.GetPublisherListingConsumerBreakdownCommand = GetPublisherListingConsumerBreakdownCommand;
|
|
44677
|
+
}
|
|
44678
|
+
});
|
|
44679
|
+
|
|
44680
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/GetPublisherListingUsageTimeSeriesCommand.js
|
|
44681
|
+
var require_GetPublisherListingUsageTimeSeriesCommand = __commonJS({
|
|
44682
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/GetPublisherListingUsageTimeSeriesCommand.js"(exports2) {
|
|
44683
|
+
"use strict";
|
|
44684
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44685
|
+
exports2.GetPublisherListingUsageTimeSeriesCommand = exports2.$Command = void 0;
|
|
44686
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44687
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44688
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44689
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44690
|
+
return smithy_client_1.Command;
|
|
44691
|
+
} });
|
|
44692
|
+
var GetPublisherListingUsageTimeSeriesCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44693
|
+
return [
|
|
44694
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44695
|
+
];
|
|
44696
|
+
}).s("JustWorkflowItService", "GetPublisherListingUsageTimeSeries", {}).n("JustWorkflowItClient", "GetPublisherListingUsageTimeSeriesCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetPublisherListingUsageTimeSeriesCommand).de(Aws_restJson1_1.de_GetPublisherListingUsageTimeSeriesCommand).build() {
|
|
44697
|
+
};
|
|
44698
|
+
exports2.GetPublisherListingUsageTimeSeriesCommand = GetPublisherListingUsageTimeSeriesCommand;
|
|
44699
|
+
}
|
|
44700
|
+
});
|
|
44701
|
+
|
|
42958
44702
|
// ../JustWorkflowItApiClient/dist-cjs/commands/GetResourcePoolCommand.js
|
|
42959
44703
|
var require_GetResourcePoolCommand = __commonJS({
|
|
42960
44704
|
"../JustWorkflowItApiClient/dist-cjs/commands/GetResourcePoolCommand.js"(exports2) {
|
|
@@ -43021,6 +44765,28 @@ var require_GetSubscriptionPlanCommand = __commonJS({
|
|
|
43021
44765
|
}
|
|
43022
44766
|
});
|
|
43023
44767
|
|
|
44768
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/GetTaggedMarketplaceListingVersionCommand.js
|
|
44769
|
+
var require_GetTaggedMarketplaceListingVersionCommand = __commonJS({
|
|
44770
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/GetTaggedMarketplaceListingVersionCommand.js"(exports2) {
|
|
44771
|
+
"use strict";
|
|
44772
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44773
|
+
exports2.GetTaggedMarketplaceListingVersionCommand = exports2.$Command = void 0;
|
|
44774
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44775
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44776
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44777
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44778
|
+
return smithy_client_1.Command;
|
|
44779
|
+
} });
|
|
44780
|
+
var GetTaggedMarketplaceListingVersionCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44781
|
+
return [
|
|
44782
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44783
|
+
];
|
|
44784
|
+
}).s("JustWorkflowItService", "GetTaggedMarketplaceListingVersion", {}).n("JustWorkflowItClient", "GetTaggedMarketplaceListingVersionCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GetTaggedMarketplaceListingVersionCommand).de(Aws_restJson1_1.de_GetTaggedMarketplaceListingVersionCommand).build() {
|
|
44785
|
+
};
|
|
44786
|
+
exports2.GetTaggedMarketplaceListingVersionCommand = GetTaggedMarketplaceListingVersionCommand;
|
|
44787
|
+
}
|
|
44788
|
+
});
|
|
44789
|
+
|
|
43024
44790
|
// ../JustWorkflowItApiClient/dist-cjs/commands/GetTaggedWorkflowVersionCommand.js
|
|
43025
44791
|
var require_GetTaggedWorkflowVersionCommand = __commonJS({
|
|
43026
44792
|
"../JustWorkflowItApiClient/dist-cjs/commands/GetTaggedWorkflowVersionCommand.js"(exports2) {
|
|
@@ -43131,6 +44897,72 @@ var require_GetWorkflowVersionCommand = __commonJS({
|
|
|
43131
44897
|
}
|
|
43132
44898
|
});
|
|
43133
44899
|
|
|
44900
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/GrantMarketplaceAccessCommand.js
|
|
44901
|
+
var require_GrantMarketplaceAccessCommand = __commonJS({
|
|
44902
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/GrantMarketplaceAccessCommand.js"(exports2) {
|
|
44903
|
+
"use strict";
|
|
44904
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44905
|
+
exports2.GrantMarketplaceAccessCommand = exports2.$Command = void 0;
|
|
44906
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44907
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44908
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44909
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44910
|
+
return smithy_client_1.Command;
|
|
44911
|
+
} });
|
|
44912
|
+
var GrantMarketplaceAccessCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44913
|
+
return [
|
|
44914
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44915
|
+
];
|
|
44916
|
+
}).s("JustWorkflowItService", "GrantMarketplaceAccess", {}).n("JustWorkflowItClient", "GrantMarketplaceAccessCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_GrantMarketplaceAccessCommand).de(Aws_restJson1_1.de_GrantMarketplaceAccessCommand).build() {
|
|
44917
|
+
};
|
|
44918
|
+
exports2.GrantMarketplaceAccessCommand = GrantMarketplaceAccessCommand;
|
|
44919
|
+
}
|
|
44920
|
+
});
|
|
44921
|
+
|
|
44922
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/IsMarketplaceListingAllowlistedCommand.js
|
|
44923
|
+
var require_IsMarketplaceListingAllowlistedCommand = __commonJS({
|
|
44924
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/IsMarketplaceListingAllowlistedCommand.js"(exports2) {
|
|
44925
|
+
"use strict";
|
|
44926
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44927
|
+
exports2.IsMarketplaceListingAllowlistedCommand = exports2.$Command = void 0;
|
|
44928
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44929
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44930
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44931
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44932
|
+
return smithy_client_1.Command;
|
|
44933
|
+
} });
|
|
44934
|
+
var IsMarketplaceListingAllowlistedCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44935
|
+
return [
|
|
44936
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44937
|
+
];
|
|
44938
|
+
}).s("JustWorkflowItService", "IsMarketplaceListingAllowlisted", {}).n("JustWorkflowItClient", "IsMarketplaceListingAllowlistedCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_IsMarketplaceListingAllowlistedCommand).de(Aws_restJson1_1.de_IsMarketplaceListingAllowlistedCommand).build() {
|
|
44939
|
+
};
|
|
44940
|
+
exports2.IsMarketplaceListingAllowlistedCommand = IsMarketplaceListingAllowlistedCommand;
|
|
44941
|
+
}
|
|
44942
|
+
});
|
|
44943
|
+
|
|
44944
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/ListAllowlistedMarketplaceListingsCommand.js
|
|
44945
|
+
var require_ListAllowlistedMarketplaceListingsCommand = __commonJS({
|
|
44946
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/ListAllowlistedMarketplaceListingsCommand.js"(exports2) {
|
|
44947
|
+
"use strict";
|
|
44948
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44949
|
+
exports2.ListAllowlistedMarketplaceListingsCommand = exports2.$Command = void 0;
|
|
44950
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
44951
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
44952
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
44953
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
44954
|
+
return smithy_client_1.Command;
|
|
44955
|
+
} });
|
|
44956
|
+
var ListAllowlistedMarketplaceListingsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
44957
|
+
return [
|
|
44958
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
44959
|
+
];
|
|
44960
|
+
}).s("JustWorkflowItService", "ListAllowlistedMarketplaceListings", {}).n("JustWorkflowItClient", "ListAllowlistedMarketplaceListingsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListAllowlistedMarketplaceListingsCommand).de(Aws_restJson1_1.de_ListAllowlistedMarketplaceListingsCommand).build() {
|
|
44961
|
+
};
|
|
44962
|
+
exports2.ListAllowlistedMarketplaceListingsCommand = ListAllowlistedMarketplaceListingsCommand;
|
|
44963
|
+
}
|
|
44964
|
+
});
|
|
44965
|
+
|
|
43134
44966
|
// ../JustWorkflowItApiClient/dist-cjs/commands/ListApiAuthTokensCommand.js
|
|
43135
44967
|
var require_ListApiAuthTokensCommand = __commonJS({
|
|
43136
44968
|
"../JustWorkflowItApiClient/dist-cjs/commands/ListApiAuthTokensCommand.js"(exports2) {
|
|
@@ -43175,6 +45007,94 @@ var require_ListJobsCommand = __commonJS({
|
|
|
43175
45007
|
}
|
|
43176
45008
|
});
|
|
43177
45009
|
|
|
45010
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingBillingOverridesCommand.js
|
|
45011
|
+
var require_ListMarketplaceListingBillingOverridesCommand = __commonJS({
|
|
45012
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingBillingOverridesCommand.js"(exports2) {
|
|
45013
|
+
"use strict";
|
|
45014
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45015
|
+
exports2.ListMarketplaceListingBillingOverridesCommand = exports2.$Command = void 0;
|
|
45016
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45017
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45018
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45019
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45020
|
+
return smithy_client_1.Command;
|
|
45021
|
+
} });
|
|
45022
|
+
var ListMarketplaceListingBillingOverridesCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45023
|
+
return [
|
|
45024
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45025
|
+
];
|
|
45026
|
+
}).s("JustWorkflowItService", "ListMarketplaceListingBillingOverrides", {}).n("JustWorkflowItClient", "ListMarketplaceListingBillingOverridesCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListMarketplaceListingBillingOverridesCommand).de(Aws_restJson1_1.de_ListMarketplaceListingBillingOverridesCommand).build() {
|
|
45027
|
+
};
|
|
45028
|
+
exports2.ListMarketplaceListingBillingOverridesCommand = ListMarketplaceListingBillingOverridesCommand;
|
|
45029
|
+
}
|
|
45030
|
+
});
|
|
45031
|
+
|
|
45032
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingVersionsCommand.js
|
|
45033
|
+
var require_ListMarketplaceListingVersionsCommand = __commonJS({
|
|
45034
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingVersionsCommand.js"(exports2) {
|
|
45035
|
+
"use strict";
|
|
45036
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45037
|
+
exports2.ListMarketplaceListingVersionsCommand = exports2.$Command = void 0;
|
|
45038
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45039
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45040
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45041
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45042
|
+
return smithy_client_1.Command;
|
|
45043
|
+
} });
|
|
45044
|
+
var ListMarketplaceListingVersionsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45045
|
+
return [
|
|
45046
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45047
|
+
];
|
|
45048
|
+
}).s("JustWorkflowItService", "ListMarketplaceListingVersions", {}).n("JustWorkflowItClient", "ListMarketplaceListingVersionsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListMarketplaceListingVersionsCommand).de(Aws_restJson1_1.de_ListMarketplaceListingVersionsCommand).build() {
|
|
45049
|
+
};
|
|
45050
|
+
exports2.ListMarketplaceListingVersionsCommand = ListMarketplaceListingVersionsCommand;
|
|
45051
|
+
}
|
|
45052
|
+
});
|
|
45053
|
+
|
|
45054
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingsCommand.js
|
|
45055
|
+
var require_ListMarketplaceListingsCommand = __commonJS({
|
|
45056
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/ListMarketplaceListingsCommand.js"(exports2) {
|
|
45057
|
+
"use strict";
|
|
45058
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45059
|
+
exports2.ListMarketplaceListingsCommand = exports2.$Command = void 0;
|
|
45060
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45061
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45062
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45063
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45064
|
+
return smithy_client_1.Command;
|
|
45065
|
+
} });
|
|
45066
|
+
var ListMarketplaceListingsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45067
|
+
return [
|
|
45068
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45069
|
+
];
|
|
45070
|
+
}).s("JustWorkflowItService", "ListMarketplaceListings", {}).n("JustWorkflowItClient", "ListMarketplaceListingsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListMarketplaceListingsCommand).de(Aws_restJson1_1.de_ListMarketplaceListingsCommand).build() {
|
|
45071
|
+
};
|
|
45072
|
+
exports2.ListMarketplaceListingsCommand = ListMarketplaceListingsCommand;
|
|
45073
|
+
}
|
|
45074
|
+
});
|
|
45075
|
+
|
|
45076
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/ListMyMarketplaceListingsCommand.js
|
|
45077
|
+
var require_ListMyMarketplaceListingsCommand = __commonJS({
|
|
45078
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/ListMyMarketplaceListingsCommand.js"(exports2) {
|
|
45079
|
+
"use strict";
|
|
45080
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45081
|
+
exports2.ListMyMarketplaceListingsCommand = exports2.$Command = void 0;
|
|
45082
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45083
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45084
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45085
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45086
|
+
return smithy_client_1.Command;
|
|
45087
|
+
} });
|
|
45088
|
+
var ListMyMarketplaceListingsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45089
|
+
return [
|
|
45090
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45091
|
+
];
|
|
45092
|
+
}).s("JustWorkflowItService", "ListMyMarketplaceListings", {}).n("JustWorkflowItClient", "ListMyMarketplaceListingsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_ListMyMarketplaceListingsCommand).de(Aws_restJson1_1.de_ListMyMarketplaceListingsCommand).build() {
|
|
45093
|
+
};
|
|
45094
|
+
exports2.ListMyMarketplaceListingsCommand = ListMyMarketplaceListingsCommand;
|
|
45095
|
+
}
|
|
45096
|
+
});
|
|
45097
|
+
|
|
43178
45098
|
// ../JustWorkflowItApiClient/dist-cjs/commands/ListOrganizationInvitationsForUserCommand.js
|
|
43179
45099
|
var require_ListOrganizationInvitationsForUserCommand = __commonJS({
|
|
43180
45100
|
"../JustWorkflowItApiClient/dist-cjs/commands/ListOrganizationInvitationsForUserCommand.js"(exports2) {
|
|
@@ -43351,6 +45271,28 @@ var require_ListWorkflowsCommand = __commonJS({
|
|
|
43351
45271
|
}
|
|
43352
45272
|
});
|
|
43353
45273
|
|
|
45274
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/PublishWorkflowToMarketplaceCommand.js
|
|
45275
|
+
var require_PublishWorkflowToMarketplaceCommand = __commonJS({
|
|
45276
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/PublishWorkflowToMarketplaceCommand.js"(exports2) {
|
|
45277
|
+
"use strict";
|
|
45278
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45279
|
+
exports2.PublishWorkflowToMarketplaceCommand = exports2.$Command = void 0;
|
|
45280
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45281
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45282
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45283
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45284
|
+
return smithy_client_1.Command;
|
|
45285
|
+
} });
|
|
45286
|
+
var PublishWorkflowToMarketplaceCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45287
|
+
return [
|
|
45288
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45289
|
+
];
|
|
45290
|
+
}).s("JustWorkflowItService", "PublishWorkflowToMarketplace", {}).n("JustWorkflowItClient", "PublishWorkflowToMarketplaceCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_PublishWorkflowToMarketplaceCommand).de(Aws_restJson1_1.de_PublishWorkflowToMarketplaceCommand).build() {
|
|
45291
|
+
};
|
|
45292
|
+
exports2.PublishWorkflowToMarketplaceCommand = PublishWorkflowToMarketplaceCommand;
|
|
45293
|
+
}
|
|
45294
|
+
});
|
|
45295
|
+
|
|
43354
45296
|
// ../JustWorkflowItApiClient/dist-cjs/commands/RegisterWorkflowCommand.js
|
|
43355
45297
|
var require_RegisterWorkflowCommand = __commonJS({
|
|
43356
45298
|
"../JustWorkflowItApiClient/dist-cjs/commands/RegisterWorkflowCommand.js"(exports2) {
|
|
@@ -43483,6 +45425,50 @@ var require_RevokeApiAuthTokenCommand = __commonJS({
|
|
|
43483
45425
|
}
|
|
43484
45426
|
});
|
|
43485
45427
|
|
|
45428
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/RevokeMarketplaceAccessCommand.js
|
|
45429
|
+
var require_RevokeMarketplaceAccessCommand = __commonJS({
|
|
45430
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/RevokeMarketplaceAccessCommand.js"(exports2) {
|
|
45431
|
+
"use strict";
|
|
45432
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45433
|
+
exports2.RevokeMarketplaceAccessCommand = exports2.$Command = void 0;
|
|
45434
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45435
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45436
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45437
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45438
|
+
return smithy_client_1.Command;
|
|
45439
|
+
} });
|
|
45440
|
+
var RevokeMarketplaceAccessCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45441
|
+
return [
|
|
45442
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45443
|
+
];
|
|
45444
|
+
}).s("JustWorkflowItService", "RevokeMarketplaceAccess", {}).n("JustWorkflowItClient", "RevokeMarketplaceAccessCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_RevokeMarketplaceAccessCommand).de(Aws_restJson1_1.de_RevokeMarketplaceAccessCommand).build() {
|
|
45445
|
+
};
|
|
45446
|
+
exports2.RevokeMarketplaceAccessCommand = RevokeMarketplaceAccessCommand;
|
|
45447
|
+
}
|
|
45448
|
+
});
|
|
45449
|
+
|
|
45450
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/SearchMarketplaceOrganizationsCommand.js
|
|
45451
|
+
var require_SearchMarketplaceOrganizationsCommand = __commonJS({
|
|
45452
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/SearchMarketplaceOrganizationsCommand.js"(exports2) {
|
|
45453
|
+
"use strict";
|
|
45454
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45455
|
+
exports2.SearchMarketplaceOrganizationsCommand = exports2.$Command = void 0;
|
|
45456
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45457
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45458
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45459
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45460
|
+
return smithy_client_1.Command;
|
|
45461
|
+
} });
|
|
45462
|
+
var SearchMarketplaceOrganizationsCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45463
|
+
return [
|
|
45464
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45465
|
+
];
|
|
45466
|
+
}).s("JustWorkflowItService", "SearchMarketplaceOrganizations", {}).n("JustWorkflowItClient", "SearchMarketplaceOrganizationsCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_SearchMarketplaceOrganizationsCommand).de(Aws_restJson1_1.de_SearchMarketplaceOrganizationsCommand).build() {
|
|
45467
|
+
};
|
|
45468
|
+
exports2.SearchMarketplaceOrganizationsCommand = SearchMarketplaceOrganizationsCommand;
|
|
45469
|
+
}
|
|
45470
|
+
});
|
|
45471
|
+
|
|
43486
45472
|
// ../JustWorkflowItApiClient/dist-cjs/commands/SendJobEventCommand.js
|
|
43487
45473
|
var require_SendJobEventCommand = __commonJS({
|
|
43488
45474
|
"../JustWorkflowItApiClient/dist-cjs/commands/SendJobEventCommand.js"(exports2) {
|
|
@@ -43505,6 +45491,28 @@ var require_SendJobEventCommand = __commonJS({
|
|
|
43505
45491
|
}
|
|
43506
45492
|
});
|
|
43507
45493
|
|
|
45494
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/SetMarketplaceListingVersionTagCommand.js
|
|
45495
|
+
var require_SetMarketplaceListingVersionTagCommand = __commonJS({
|
|
45496
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/SetMarketplaceListingVersionTagCommand.js"(exports2) {
|
|
45497
|
+
"use strict";
|
|
45498
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45499
|
+
exports2.SetMarketplaceListingVersionTagCommand = exports2.$Command = void 0;
|
|
45500
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45501
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45502
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45503
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45504
|
+
return smithy_client_1.Command;
|
|
45505
|
+
} });
|
|
45506
|
+
var SetMarketplaceListingVersionTagCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45507
|
+
return [
|
|
45508
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45509
|
+
];
|
|
45510
|
+
}).s("JustWorkflowItService", "SetMarketplaceListingVersionTag", {}).n("JustWorkflowItClient", "SetMarketplaceListingVersionTagCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_SetMarketplaceListingVersionTagCommand).de(Aws_restJson1_1.de_SetMarketplaceListingVersionTagCommand).build() {
|
|
45511
|
+
};
|
|
45512
|
+
exports2.SetMarketplaceListingVersionTagCommand = SetMarketplaceListingVersionTagCommand;
|
|
45513
|
+
}
|
|
45514
|
+
});
|
|
45515
|
+
|
|
43508
45516
|
// ../JustWorkflowItApiClient/dist-cjs/commands/SetWorkflowVersionTagCommand.js
|
|
43509
45517
|
var require_SetWorkflowVersionTagCommand = __commonJS({
|
|
43510
45518
|
"../JustWorkflowItApiClient/dist-cjs/commands/SetWorkflowVersionTagCommand.js"(exports2) {
|
|
@@ -43549,6 +45557,50 @@ var require_SubmitJobCommand = __commonJS({
|
|
|
43549
45557
|
}
|
|
43550
45558
|
});
|
|
43551
45559
|
|
|
45560
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/UnallowlistMarketplaceListingCommand.js
|
|
45561
|
+
var require_UnallowlistMarketplaceListingCommand = __commonJS({
|
|
45562
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/UnallowlistMarketplaceListingCommand.js"(exports2) {
|
|
45563
|
+
"use strict";
|
|
45564
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45565
|
+
exports2.UnallowlistMarketplaceListingCommand = exports2.$Command = void 0;
|
|
45566
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45567
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45568
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45569
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45570
|
+
return smithy_client_1.Command;
|
|
45571
|
+
} });
|
|
45572
|
+
var UnallowlistMarketplaceListingCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45573
|
+
return [
|
|
45574
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45575
|
+
];
|
|
45576
|
+
}).s("JustWorkflowItService", "UnallowlistMarketplaceListing", {}).n("JustWorkflowItClient", "UnallowlistMarketplaceListingCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UnallowlistMarketplaceListingCommand).de(Aws_restJson1_1.de_UnallowlistMarketplaceListingCommand).build() {
|
|
45577
|
+
};
|
|
45578
|
+
exports2.UnallowlistMarketplaceListingCommand = UnallowlistMarketplaceListingCommand;
|
|
45579
|
+
}
|
|
45580
|
+
});
|
|
45581
|
+
|
|
45582
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/UnpublishWorkflowFromMarketplaceCommand.js
|
|
45583
|
+
var require_UnpublishWorkflowFromMarketplaceCommand = __commonJS({
|
|
45584
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/UnpublishWorkflowFromMarketplaceCommand.js"(exports2) {
|
|
45585
|
+
"use strict";
|
|
45586
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45587
|
+
exports2.UnpublishWorkflowFromMarketplaceCommand = exports2.$Command = void 0;
|
|
45588
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45589
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45590
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45591
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45592
|
+
return smithy_client_1.Command;
|
|
45593
|
+
} });
|
|
45594
|
+
var UnpublishWorkflowFromMarketplaceCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45595
|
+
return [
|
|
45596
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45597
|
+
];
|
|
45598
|
+
}).s("JustWorkflowItService", "UnpublishWorkflowFromMarketplace", {}).n("JustWorkflowItClient", "UnpublishWorkflowFromMarketplaceCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UnpublishWorkflowFromMarketplaceCommand).de(Aws_restJson1_1.de_UnpublishWorkflowFromMarketplaceCommand).build() {
|
|
45599
|
+
};
|
|
45600
|
+
exports2.UnpublishWorkflowFromMarketplaceCommand = UnpublishWorkflowFromMarketplaceCommand;
|
|
45601
|
+
}
|
|
45602
|
+
});
|
|
45603
|
+
|
|
43552
45604
|
// ../JustWorkflowItApiClient/dist-cjs/commands/UpdateApiAuthTokenCommand.js
|
|
43553
45605
|
var require_UpdateApiAuthTokenCommand = __commonJS({
|
|
43554
45606
|
"../JustWorkflowItApiClient/dist-cjs/commands/UpdateApiAuthTokenCommand.js"(exports2) {
|
|
@@ -43571,6 +45623,50 @@ var require_UpdateApiAuthTokenCommand = __commonJS({
|
|
|
43571
45623
|
}
|
|
43572
45624
|
});
|
|
43573
45625
|
|
|
45626
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/UpdateMarketplaceListingBillingCommand.js
|
|
45627
|
+
var require_UpdateMarketplaceListingBillingCommand = __commonJS({
|
|
45628
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/UpdateMarketplaceListingBillingCommand.js"(exports2) {
|
|
45629
|
+
"use strict";
|
|
45630
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45631
|
+
exports2.UpdateMarketplaceListingBillingCommand = exports2.$Command = void 0;
|
|
45632
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45633
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45634
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45635
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45636
|
+
return smithy_client_1.Command;
|
|
45637
|
+
} });
|
|
45638
|
+
var UpdateMarketplaceListingBillingCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45639
|
+
return [
|
|
45640
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45641
|
+
];
|
|
45642
|
+
}).s("JustWorkflowItService", "UpdateMarketplaceListingBilling", {}).n("JustWorkflowItClient", "UpdateMarketplaceListingBillingCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UpdateMarketplaceListingBillingCommand).de(Aws_restJson1_1.de_UpdateMarketplaceListingBillingCommand).build() {
|
|
45643
|
+
};
|
|
45644
|
+
exports2.UpdateMarketplaceListingBillingCommand = UpdateMarketplaceListingBillingCommand;
|
|
45645
|
+
}
|
|
45646
|
+
});
|
|
45647
|
+
|
|
45648
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/UpdateMarketplaceListingMetadataCommand.js
|
|
45649
|
+
var require_UpdateMarketplaceListingMetadataCommand = __commonJS({
|
|
45650
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/UpdateMarketplaceListingMetadataCommand.js"(exports2) {
|
|
45651
|
+
"use strict";
|
|
45652
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45653
|
+
exports2.UpdateMarketplaceListingMetadataCommand = exports2.$Command = void 0;
|
|
45654
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45655
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45656
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45657
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45658
|
+
return smithy_client_1.Command;
|
|
45659
|
+
} });
|
|
45660
|
+
var UpdateMarketplaceListingMetadataCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45661
|
+
return [
|
|
45662
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45663
|
+
];
|
|
45664
|
+
}).s("JustWorkflowItService", "UpdateMarketplaceListingMetadata", {}).n("JustWorkflowItClient", "UpdateMarketplaceListingMetadataCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UpdateMarketplaceListingMetadataCommand).de(Aws_restJson1_1.de_UpdateMarketplaceListingMetadataCommand).build() {
|
|
45665
|
+
};
|
|
45666
|
+
exports2.UpdateMarketplaceListingMetadataCommand = UpdateMarketplaceListingMetadataCommand;
|
|
45667
|
+
}
|
|
45668
|
+
});
|
|
45669
|
+
|
|
43574
45670
|
// ../JustWorkflowItApiClient/dist-cjs/commands/UpdateOrganizationCommand.js
|
|
43575
45671
|
var require_UpdateOrganizationCommand = __commonJS({
|
|
43576
45672
|
"../JustWorkflowItApiClient/dist-cjs/commands/UpdateOrganizationCommand.js"(exports2) {
|
|
@@ -43659,6 +45755,28 @@ var require_UpdateRoleCommand = __commonJS({
|
|
|
43659
45755
|
}
|
|
43660
45756
|
});
|
|
43661
45757
|
|
|
45758
|
+
// ../JustWorkflowItApiClient/dist-cjs/commands/UpsertMarketplaceListingBillingOverrideCommand.js
|
|
45759
|
+
var require_UpsertMarketplaceListingBillingOverrideCommand = __commonJS({
|
|
45760
|
+
"../JustWorkflowItApiClient/dist-cjs/commands/UpsertMarketplaceListingBillingOverrideCommand.js"(exports2) {
|
|
45761
|
+
"use strict";
|
|
45762
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45763
|
+
exports2.UpsertMarketplaceListingBillingOverrideCommand = exports2.$Command = void 0;
|
|
45764
|
+
var Aws_restJson1_1 = require_Aws_restJson1();
|
|
45765
|
+
var middleware_serde_1 = require_dist_cjs5();
|
|
45766
|
+
var smithy_client_1 = require_dist_cjs20();
|
|
45767
|
+
Object.defineProperty(exports2, "$Command", { enumerable: true, get: function() {
|
|
45768
|
+
return smithy_client_1.Command;
|
|
45769
|
+
} });
|
|
45770
|
+
var UpsertMarketplaceListingBillingOverrideCommand = class extends smithy_client_1.Command.classBuilder().m(function(Command, cs, config, o4) {
|
|
45771
|
+
return [
|
|
45772
|
+
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize)
|
|
45773
|
+
];
|
|
45774
|
+
}).s("JustWorkflowItService", "UpsertMarketplaceListingBillingOverride", {}).n("JustWorkflowItClient", "UpsertMarketplaceListingBillingOverrideCommand").f(void 0, void 0).ser(Aws_restJson1_1.se_UpsertMarketplaceListingBillingOverrideCommand).de(Aws_restJson1_1.de_UpsertMarketplaceListingBillingOverrideCommand).build() {
|
|
45775
|
+
};
|
|
45776
|
+
exports2.UpsertMarketplaceListingBillingOverrideCommand = UpsertMarketplaceListingBillingOverrideCommand;
|
|
45777
|
+
}
|
|
45778
|
+
});
|
|
45779
|
+
|
|
43662
45780
|
// ../JustWorkflowItApiClient/dist-cjs/JustWorkflowIt.js
|
|
43663
45781
|
var require_JustWorkflowIt = __commonJS({
|
|
43664
45782
|
"../JustWorkflowItApiClient/dist-cjs/JustWorkflowIt.js"(exports2) {
|
|
@@ -43667,32 +45785,57 @@ var require_JustWorkflowIt = __commonJS({
|
|
|
43667
45785
|
exports2.JustWorkflowIt = void 0;
|
|
43668
45786
|
var JustWorkflowItClient_1 = require_JustWorkflowItClient();
|
|
43669
45787
|
var AcceptOrganizationInvitationCommand_1 = require_AcceptOrganizationInvitationCommand();
|
|
45788
|
+
var AdminCreateRoleCommand_1 = require_AdminCreateRoleCommand();
|
|
45789
|
+
var AdminDeleteRoleCommand_1 = require_AdminDeleteRoleCommand();
|
|
45790
|
+
var AdminGetOrganizationCommand_1 = require_AdminGetOrganizationCommand();
|
|
45791
|
+
var AdminGetRoleCommand_1 = require_AdminGetRoleCommand();
|
|
45792
|
+
var AdminListOrganizationsCommand_1 = require_AdminListOrganizationsCommand();
|
|
45793
|
+
var AdminListRolesCommand_1 = require_AdminListRolesCommand();
|
|
45794
|
+
var AdminUpdateRoleCommand_1 = require_AdminUpdateRoleCommand();
|
|
45795
|
+
var AllowlistMarketplaceListingCommand_1 = require_AllowlistMarketplaceListingCommand();
|
|
43670
45796
|
var CancelJobCommand_1 = require_CancelJobCommand();
|
|
43671
45797
|
var CancelOrganizationInvitationCommand_1 = require_CancelOrganizationInvitationCommand();
|
|
43672
45798
|
var CreateApiAuthTokenCommand_1 = require_CreateApiAuthTokenCommand();
|
|
43673
45799
|
var CreateInterestCommand_1 = require_CreateInterestCommand();
|
|
45800
|
+
var CreateMarketplaceListingVersionCommand_1 = require_CreateMarketplaceListingVersionCommand();
|
|
43674
45801
|
var CreateOrganizationCommand_1 = require_CreateOrganizationCommand();
|
|
43675
45802
|
var CreateOrganizationInvitationCommand_1 = require_CreateOrganizationInvitationCommand();
|
|
43676
45803
|
var CreateResourcePoolCommand_1 = require_CreateResourcePoolCommand();
|
|
43677
45804
|
var CreateRoleCommand_1 = require_CreateRoleCommand();
|
|
45805
|
+
var DeleteMarketplaceListingBillingOverrideCommand_1 = require_DeleteMarketplaceListingBillingOverrideCommand();
|
|
43678
45806
|
var DeleteOrganizationCommand_1 = require_DeleteOrganizationCommand();
|
|
43679
45807
|
var DeleteResourcePoolCommand_1 = require_DeleteResourcePoolCommand();
|
|
43680
45808
|
var DeleteRoleCommand_1 = require_DeleteRoleCommand();
|
|
43681
45809
|
var GetApiAuthTokenCommand_1 = require_GetApiAuthTokenCommand();
|
|
45810
|
+
var GetConsumerListingUsageTimeSeriesCommand_1 = require_GetConsumerListingUsageTimeSeriesCommand();
|
|
43682
45811
|
var GetJobCommand_1 = require_GetJobCommand();
|
|
45812
|
+
var GetMarketplaceListingCommand_1 = require_GetMarketplaceListingCommand();
|
|
45813
|
+
var GetMarketplaceListingVersionCommand_1 = require_GetMarketplaceListingVersionCommand();
|
|
45814
|
+
var GetMyPermissionsCommand_1 = require_GetMyPermissionsCommand();
|
|
43683
45815
|
var GetOrganizationCommand_1 = require_GetOrganizationCommand();
|
|
43684
45816
|
var GetOrganizationInvitationCommand_1 = require_GetOrganizationInvitationCommand();
|
|
43685
45817
|
var GetOrganizationSubscriptionPlanCommand_1 = require_GetOrganizationSubscriptionPlanCommand();
|
|
45818
|
+
var GetPublicInvitationDetailsCommand_1 = require_GetPublicInvitationDetailsCommand();
|
|
45819
|
+
var GetPublisherListingConsumerBreakdownCommand_1 = require_GetPublisherListingConsumerBreakdownCommand();
|
|
45820
|
+
var GetPublisherListingUsageTimeSeriesCommand_1 = require_GetPublisherListingUsageTimeSeriesCommand();
|
|
43686
45821
|
var GetResourcePoolCommand_1 = require_GetResourcePoolCommand();
|
|
43687
45822
|
var GetRoleCommand_1 = require_GetRoleCommand();
|
|
43688
45823
|
var GetSubscriptionPlanCommand_1 = require_GetSubscriptionPlanCommand();
|
|
45824
|
+
var GetTaggedMarketplaceListingVersionCommand_1 = require_GetTaggedMarketplaceListingVersionCommand();
|
|
43689
45825
|
var GetTaggedWorkflowVersionCommand_1 = require_GetTaggedWorkflowVersionCommand();
|
|
43690
45826
|
var GetWorkflowCommand_1 = require_GetWorkflowCommand();
|
|
43691
45827
|
var GetWorkflowMetricTimeSeriesCommand_1 = require_GetWorkflowMetricTimeSeriesCommand();
|
|
43692
45828
|
var GetWorkflowStateCommand_1 = require_GetWorkflowStateCommand();
|
|
43693
45829
|
var GetWorkflowVersionCommand_1 = require_GetWorkflowVersionCommand();
|
|
45830
|
+
var GrantMarketplaceAccessCommand_1 = require_GrantMarketplaceAccessCommand();
|
|
45831
|
+
var IsMarketplaceListingAllowlistedCommand_1 = require_IsMarketplaceListingAllowlistedCommand();
|
|
45832
|
+
var ListAllowlistedMarketplaceListingsCommand_1 = require_ListAllowlistedMarketplaceListingsCommand();
|
|
43694
45833
|
var ListApiAuthTokensCommand_1 = require_ListApiAuthTokensCommand();
|
|
43695
45834
|
var ListJobsCommand_1 = require_ListJobsCommand();
|
|
45835
|
+
var ListMarketplaceListingBillingOverridesCommand_1 = require_ListMarketplaceListingBillingOverridesCommand();
|
|
45836
|
+
var ListMarketplaceListingVersionsCommand_1 = require_ListMarketplaceListingVersionsCommand();
|
|
45837
|
+
var ListMarketplaceListingsCommand_1 = require_ListMarketplaceListingsCommand();
|
|
45838
|
+
var ListMyMarketplaceListingsCommand_1 = require_ListMyMarketplaceListingsCommand();
|
|
43696
45839
|
var ListOrganizationInvitationsForUserCommand_1 = require_ListOrganizationInvitationsForUserCommand();
|
|
43697
45840
|
var ListOrganizationUsersAndInvitationsCommand_1 = require_ListOrganizationUsersAndInvitationsCommand();
|
|
43698
45841
|
var ListOrganizationsCommand_1 = require_ListOrganizationsCommand();
|
|
@@ -43701,49 +45844,83 @@ var require_JustWorkflowIt = __commonJS({
|
|
|
43701
45844
|
var ListSubscriptionPlansCommand_1 = require_ListSubscriptionPlansCommand();
|
|
43702
45845
|
var ListWorkflowVersionsCommand_1 = require_ListWorkflowVersionsCommand();
|
|
43703
45846
|
var ListWorkflowsCommand_1 = require_ListWorkflowsCommand();
|
|
45847
|
+
var PublishWorkflowToMarketplaceCommand_1 = require_PublishWorkflowToMarketplaceCommand();
|
|
43704
45848
|
var RegisterWorkflowCommand_1 = require_RegisterWorkflowCommand();
|
|
43705
45849
|
var RegisterWorkflowVersionCommand_1 = require_RegisterWorkflowVersionCommand();
|
|
43706
45850
|
var RejectOrganizationInvitationCommand_1 = require_RejectOrganizationInvitationCommand();
|
|
43707
45851
|
var RemoveOrganizationMembershipCommand_1 = require_RemoveOrganizationMembershipCommand();
|
|
43708
45852
|
var ResumeJobCommand_1 = require_ResumeJobCommand();
|
|
43709
45853
|
var RevokeApiAuthTokenCommand_1 = require_RevokeApiAuthTokenCommand();
|
|
45854
|
+
var RevokeMarketplaceAccessCommand_1 = require_RevokeMarketplaceAccessCommand();
|
|
45855
|
+
var SearchMarketplaceOrganizationsCommand_1 = require_SearchMarketplaceOrganizationsCommand();
|
|
43710
45856
|
var SendJobEventCommand_1 = require_SendJobEventCommand();
|
|
45857
|
+
var SetMarketplaceListingVersionTagCommand_1 = require_SetMarketplaceListingVersionTagCommand();
|
|
43711
45858
|
var SetWorkflowVersionTagCommand_1 = require_SetWorkflowVersionTagCommand();
|
|
43712
45859
|
var SubmitJobCommand_1 = require_SubmitJobCommand();
|
|
45860
|
+
var UnallowlistMarketplaceListingCommand_1 = require_UnallowlistMarketplaceListingCommand();
|
|
45861
|
+
var UnpublishWorkflowFromMarketplaceCommand_1 = require_UnpublishWorkflowFromMarketplaceCommand();
|
|
43713
45862
|
var UpdateApiAuthTokenCommand_1 = require_UpdateApiAuthTokenCommand();
|
|
45863
|
+
var UpdateMarketplaceListingBillingCommand_1 = require_UpdateMarketplaceListingBillingCommand();
|
|
45864
|
+
var UpdateMarketplaceListingMetadataCommand_1 = require_UpdateMarketplaceListingMetadataCommand();
|
|
43714
45865
|
var UpdateOrganizationCommand_1 = require_UpdateOrganizationCommand();
|
|
43715
45866
|
var UpdateOrganizationMembershipCommand_1 = require_UpdateOrganizationMembershipCommand();
|
|
43716
45867
|
var UpdateResourcePoolCommand_1 = require_UpdateResourcePoolCommand();
|
|
43717
45868
|
var UpdateRoleCommand_1 = require_UpdateRoleCommand();
|
|
45869
|
+
var UpsertMarketplaceListingBillingOverrideCommand_1 = require_UpsertMarketplaceListingBillingOverrideCommand();
|
|
43718
45870
|
var smithy_client_1 = require_dist_cjs20();
|
|
43719
45871
|
var commands4 = {
|
|
43720
45872
|
AcceptOrganizationInvitationCommand: AcceptOrganizationInvitationCommand_1.AcceptOrganizationInvitationCommand,
|
|
45873
|
+
AdminCreateRoleCommand: AdminCreateRoleCommand_1.AdminCreateRoleCommand,
|
|
45874
|
+
AdminDeleteRoleCommand: AdminDeleteRoleCommand_1.AdminDeleteRoleCommand,
|
|
45875
|
+
AdminGetOrganizationCommand: AdminGetOrganizationCommand_1.AdminGetOrganizationCommand,
|
|
45876
|
+
AdminGetRoleCommand: AdminGetRoleCommand_1.AdminGetRoleCommand,
|
|
45877
|
+
AdminListOrganizationsCommand: AdminListOrganizationsCommand_1.AdminListOrganizationsCommand,
|
|
45878
|
+
AdminListRolesCommand: AdminListRolesCommand_1.AdminListRolesCommand,
|
|
45879
|
+
AdminUpdateRoleCommand: AdminUpdateRoleCommand_1.AdminUpdateRoleCommand,
|
|
45880
|
+
AllowlistMarketplaceListingCommand: AllowlistMarketplaceListingCommand_1.AllowlistMarketplaceListingCommand,
|
|
43721
45881
|
CancelJobCommand: CancelJobCommand_1.CancelJobCommand,
|
|
43722
45882
|
CancelOrganizationInvitationCommand: CancelOrganizationInvitationCommand_1.CancelOrganizationInvitationCommand,
|
|
43723
45883
|
CreateApiAuthTokenCommand: CreateApiAuthTokenCommand_1.CreateApiAuthTokenCommand,
|
|
43724
45884
|
CreateInterestCommand: CreateInterestCommand_1.CreateInterestCommand,
|
|
45885
|
+
CreateMarketplaceListingVersionCommand: CreateMarketplaceListingVersionCommand_1.CreateMarketplaceListingVersionCommand,
|
|
43725
45886
|
CreateOrganizationCommand: CreateOrganizationCommand_1.CreateOrganizationCommand,
|
|
43726
45887
|
CreateOrganizationInvitationCommand: CreateOrganizationInvitationCommand_1.CreateOrganizationInvitationCommand,
|
|
43727
45888
|
CreateResourcePoolCommand: CreateResourcePoolCommand_1.CreateResourcePoolCommand,
|
|
43728
45889
|
CreateRoleCommand: CreateRoleCommand_1.CreateRoleCommand,
|
|
45890
|
+
DeleteMarketplaceListingBillingOverrideCommand: DeleteMarketplaceListingBillingOverrideCommand_1.DeleteMarketplaceListingBillingOverrideCommand,
|
|
43729
45891
|
DeleteOrganizationCommand: DeleteOrganizationCommand_1.DeleteOrganizationCommand,
|
|
43730
45892
|
DeleteResourcePoolCommand: DeleteResourcePoolCommand_1.DeleteResourcePoolCommand,
|
|
43731
45893
|
DeleteRoleCommand: DeleteRoleCommand_1.DeleteRoleCommand,
|
|
43732
45894
|
GetApiAuthTokenCommand: GetApiAuthTokenCommand_1.GetApiAuthTokenCommand,
|
|
45895
|
+
GetConsumerListingUsageTimeSeriesCommand: GetConsumerListingUsageTimeSeriesCommand_1.GetConsumerListingUsageTimeSeriesCommand,
|
|
43733
45896
|
GetJobCommand: GetJobCommand_1.GetJobCommand,
|
|
45897
|
+
GetMarketplaceListingCommand: GetMarketplaceListingCommand_1.GetMarketplaceListingCommand,
|
|
45898
|
+
GetMarketplaceListingVersionCommand: GetMarketplaceListingVersionCommand_1.GetMarketplaceListingVersionCommand,
|
|
45899
|
+
GetMyPermissionsCommand: GetMyPermissionsCommand_1.GetMyPermissionsCommand,
|
|
43734
45900
|
GetOrganizationCommand: GetOrganizationCommand_1.GetOrganizationCommand,
|
|
43735
45901
|
GetOrganizationInvitationCommand: GetOrganizationInvitationCommand_1.GetOrganizationInvitationCommand,
|
|
43736
45902
|
GetOrganizationSubscriptionPlanCommand: GetOrganizationSubscriptionPlanCommand_1.GetOrganizationSubscriptionPlanCommand,
|
|
45903
|
+
GetPublicInvitationDetailsCommand: GetPublicInvitationDetailsCommand_1.GetPublicInvitationDetailsCommand,
|
|
45904
|
+
GetPublisherListingConsumerBreakdownCommand: GetPublisherListingConsumerBreakdownCommand_1.GetPublisherListingConsumerBreakdownCommand,
|
|
45905
|
+
GetPublisherListingUsageTimeSeriesCommand: GetPublisherListingUsageTimeSeriesCommand_1.GetPublisherListingUsageTimeSeriesCommand,
|
|
43737
45906
|
GetResourcePoolCommand: GetResourcePoolCommand_1.GetResourcePoolCommand,
|
|
43738
45907
|
GetRoleCommand: GetRoleCommand_1.GetRoleCommand,
|
|
43739
45908
|
GetSubscriptionPlanCommand: GetSubscriptionPlanCommand_1.GetSubscriptionPlanCommand,
|
|
45909
|
+
GetTaggedMarketplaceListingVersionCommand: GetTaggedMarketplaceListingVersionCommand_1.GetTaggedMarketplaceListingVersionCommand,
|
|
43740
45910
|
GetTaggedWorkflowVersionCommand: GetTaggedWorkflowVersionCommand_1.GetTaggedWorkflowVersionCommand,
|
|
43741
45911
|
GetWorkflowCommand: GetWorkflowCommand_1.GetWorkflowCommand,
|
|
43742
45912
|
GetWorkflowMetricTimeSeriesCommand: GetWorkflowMetricTimeSeriesCommand_1.GetWorkflowMetricTimeSeriesCommand,
|
|
43743
45913
|
GetWorkflowStateCommand: GetWorkflowStateCommand_1.GetWorkflowStateCommand,
|
|
43744
45914
|
GetWorkflowVersionCommand: GetWorkflowVersionCommand_1.GetWorkflowVersionCommand,
|
|
45915
|
+
GrantMarketplaceAccessCommand: GrantMarketplaceAccessCommand_1.GrantMarketplaceAccessCommand,
|
|
45916
|
+
IsMarketplaceListingAllowlistedCommand: IsMarketplaceListingAllowlistedCommand_1.IsMarketplaceListingAllowlistedCommand,
|
|
45917
|
+
ListAllowlistedMarketplaceListingsCommand: ListAllowlistedMarketplaceListingsCommand_1.ListAllowlistedMarketplaceListingsCommand,
|
|
43745
45918
|
ListApiAuthTokensCommand: ListApiAuthTokensCommand_1.ListApiAuthTokensCommand,
|
|
43746
45919
|
ListJobsCommand: ListJobsCommand_1.ListJobsCommand,
|
|
45920
|
+
ListMarketplaceListingBillingOverridesCommand: ListMarketplaceListingBillingOverridesCommand_1.ListMarketplaceListingBillingOverridesCommand,
|
|
45921
|
+
ListMarketplaceListingsCommand: ListMarketplaceListingsCommand_1.ListMarketplaceListingsCommand,
|
|
45922
|
+
ListMarketplaceListingVersionsCommand: ListMarketplaceListingVersionsCommand_1.ListMarketplaceListingVersionsCommand,
|
|
45923
|
+
ListMyMarketplaceListingsCommand: ListMyMarketplaceListingsCommand_1.ListMyMarketplaceListingsCommand,
|
|
43747
45924
|
ListOrganizationInvitationsForUserCommand: ListOrganizationInvitationsForUserCommand_1.ListOrganizationInvitationsForUserCommand,
|
|
43748
45925
|
ListOrganizationsCommand: ListOrganizationsCommand_1.ListOrganizationsCommand,
|
|
43749
45926
|
ListOrganizationUsersAndInvitationsCommand: ListOrganizationUsersAndInvitationsCommand_1.ListOrganizationUsersAndInvitationsCommand,
|
|
@@ -43752,20 +45929,29 @@ var require_JustWorkflowIt = __commonJS({
|
|
|
43752
45929
|
ListSubscriptionPlansCommand: ListSubscriptionPlansCommand_1.ListSubscriptionPlansCommand,
|
|
43753
45930
|
ListWorkflowsCommand: ListWorkflowsCommand_1.ListWorkflowsCommand,
|
|
43754
45931
|
ListWorkflowVersionsCommand: ListWorkflowVersionsCommand_1.ListWorkflowVersionsCommand,
|
|
45932
|
+
PublishWorkflowToMarketplaceCommand: PublishWorkflowToMarketplaceCommand_1.PublishWorkflowToMarketplaceCommand,
|
|
43755
45933
|
RegisterWorkflowCommand: RegisterWorkflowCommand_1.RegisterWorkflowCommand,
|
|
43756
45934
|
RegisterWorkflowVersionCommand: RegisterWorkflowVersionCommand_1.RegisterWorkflowVersionCommand,
|
|
43757
45935
|
RejectOrganizationInvitationCommand: RejectOrganizationInvitationCommand_1.RejectOrganizationInvitationCommand,
|
|
43758
45936
|
RemoveOrganizationMembershipCommand: RemoveOrganizationMembershipCommand_1.RemoveOrganizationMembershipCommand,
|
|
43759
45937
|
ResumeJobCommand: ResumeJobCommand_1.ResumeJobCommand,
|
|
43760
45938
|
RevokeApiAuthTokenCommand: RevokeApiAuthTokenCommand_1.RevokeApiAuthTokenCommand,
|
|
45939
|
+
RevokeMarketplaceAccessCommand: RevokeMarketplaceAccessCommand_1.RevokeMarketplaceAccessCommand,
|
|
45940
|
+
SearchMarketplaceOrganizationsCommand: SearchMarketplaceOrganizationsCommand_1.SearchMarketplaceOrganizationsCommand,
|
|
43761
45941
|
SendJobEventCommand: SendJobEventCommand_1.SendJobEventCommand,
|
|
45942
|
+
SetMarketplaceListingVersionTagCommand: SetMarketplaceListingVersionTagCommand_1.SetMarketplaceListingVersionTagCommand,
|
|
43762
45943
|
SetWorkflowVersionTagCommand: SetWorkflowVersionTagCommand_1.SetWorkflowVersionTagCommand,
|
|
43763
45944
|
SubmitJobCommand: SubmitJobCommand_1.SubmitJobCommand,
|
|
45945
|
+
UnallowlistMarketplaceListingCommand: UnallowlistMarketplaceListingCommand_1.UnallowlistMarketplaceListingCommand,
|
|
45946
|
+
UnpublishWorkflowFromMarketplaceCommand: UnpublishWorkflowFromMarketplaceCommand_1.UnpublishWorkflowFromMarketplaceCommand,
|
|
43764
45947
|
UpdateApiAuthTokenCommand: UpdateApiAuthTokenCommand_1.UpdateApiAuthTokenCommand,
|
|
45948
|
+
UpdateMarketplaceListingBillingCommand: UpdateMarketplaceListingBillingCommand_1.UpdateMarketplaceListingBillingCommand,
|
|
45949
|
+
UpdateMarketplaceListingMetadataCommand: UpdateMarketplaceListingMetadataCommand_1.UpdateMarketplaceListingMetadataCommand,
|
|
43765
45950
|
UpdateOrganizationCommand: UpdateOrganizationCommand_1.UpdateOrganizationCommand,
|
|
43766
45951
|
UpdateOrganizationMembershipCommand: UpdateOrganizationMembershipCommand_1.UpdateOrganizationMembershipCommand,
|
|
43767
45952
|
UpdateResourcePoolCommand: UpdateResourcePoolCommand_1.UpdateResourcePoolCommand,
|
|
43768
|
-
UpdateRoleCommand: UpdateRoleCommand_1.UpdateRoleCommand
|
|
45953
|
+
UpdateRoleCommand: UpdateRoleCommand_1.UpdateRoleCommand,
|
|
45954
|
+
UpsertMarketplaceListingBillingOverrideCommand: UpsertMarketplaceListingBillingOverrideCommand_1.UpsertMarketplaceListingBillingOverrideCommand
|
|
43769
45955
|
};
|
|
43770
45956
|
var JustWorkflowIt2 = class extends JustWorkflowItClient_1.JustWorkflowItClient {
|
|
43771
45957
|
};
|
|
@@ -43781,32 +45967,57 @@ var require_commands = __commonJS({
|
|
|
43781
45967
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
43782
45968
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
43783
45969
|
tslib_1.__exportStar(require_AcceptOrganizationInvitationCommand(), exports2);
|
|
45970
|
+
tslib_1.__exportStar(require_AdminCreateRoleCommand(), exports2);
|
|
45971
|
+
tslib_1.__exportStar(require_AdminDeleteRoleCommand(), exports2);
|
|
45972
|
+
tslib_1.__exportStar(require_AdminGetOrganizationCommand(), exports2);
|
|
45973
|
+
tslib_1.__exportStar(require_AdminGetRoleCommand(), exports2);
|
|
45974
|
+
tslib_1.__exportStar(require_AdminListOrganizationsCommand(), exports2);
|
|
45975
|
+
tslib_1.__exportStar(require_AdminListRolesCommand(), exports2);
|
|
45976
|
+
tslib_1.__exportStar(require_AdminUpdateRoleCommand(), exports2);
|
|
45977
|
+
tslib_1.__exportStar(require_AllowlistMarketplaceListingCommand(), exports2);
|
|
43784
45978
|
tslib_1.__exportStar(require_CancelJobCommand(), exports2);
|
|
43785
45979
|
tslib_1.__exportStar(require_CancelOrganizationInvitationCommand(), exports2);
|
|
43786
45980
|
tslib_1.__exportStar(require_CreateApiAuthTokenCommand(), exports2);
|
|
43787
45981
|
tslib_1.__exportStar(require_CreateInterestCommand(), exports2);
|
|
45982
|
+
tslib_1.__exportStar(require_CreateMarketplaceListingVersionCommand(), exports2);
|
|
43788
45983
|
tslib_1.__exportStar(require_CreateOrganizationCommand(), exports2);
|
|
43789
45984
|
tslib_1.__exportStar(require_CreateOrganizationInvitationCommand(), exports2);
|
|
43790
45985
|
tslib_1.__exportStar(require_CreateResourcePoolCommand(), exports2);
|
|
43791
45986
|
tslib_1.__exportStar(require_CreateRoleCommand(), exports2);
|
|
45987
|
+
tslib_1.__exportStar(require_DeleteMarketplaceListingBillingOverrideCommand(), exports2);
|
|
43792
45988
|
tslib_1.__exportStar(require_DeleteOrganizationCommand(), exports2);
|
|
43793
45989
|
tslib_1.__exportStar(require_DeleteResourcePoolCommand(), exports2);
|
|
43794
45990
|
tslib_1.__exportStar(require_DeleteRoleCommand(), exports2);
|
|
43795
45991
|
tslib_1.__exportStar(require_GetApiAuthTokenCommand(), exports2);
|
|
45992
|
+
tslib_1.__exportStar(require_GetConsumerListingUsageTimeSeriesCommand(), exports2);
|
|
43796
45993
|
tslib_1.__exportStar(require_GetJobCommand(), exports2);
|
|
45994
|
+
tslib_1.__exportStar(require_GetMarketplaceListingCommand(), exports2);
|
|
45995
|
+
tslib_1.__exportStar(require_GetMarketplaceListingVersionCommand(), exports2);
|
|
45996
|
+
tslib_1.__exportStar(require_GetMyPermissionsCommand(), exports2);
|
|
43797
45997
|
tslib_1.__exportStar(require_GetOrganizationCommand(), exports2);
|
|
43798
45998
|
tslib_1.__exportStar(require_GetOrganizationInvitationCommand(), exports2);
|
|
43799
45999
|
tslib_1.__exportStar(require_GetOrganizationSubscriptionPlanCommand(), exports2);
|
|
46000
|
+
tslib_1.__exportStar(require_GetPublicInvitationDetailsCommand(), exports2);
|
|
46001
|
+
tslib_1.__exportStar(require_GetPublisherListingConsumerBreakdownCommand(), exports2);
|
|
46002
|
+
tslib_1.__exportStar(require_GetPublisherListingUsageTimeSeriesCommand(), exports2);
|
|
43800
46003
|
tslib_1.__exportStar(require_GetResourcePoolCommand(), exports2);
|
|
43801
46004
|
tslib_1.__exportStar(require_GetRoleCommand(), exports2);
|
|
43802
46005
|
tslib_1.__exportStar(require_GetSubscriptionPlanCommand(), exports2);
|
|
46006
|
+
tslib_1.__exportStar(require_GetTaggedMarketplaceListingVersionCommand(), exports2);
|
|
43803
46007
|
tslib_1.__exportStar(require_GetTaggedWorkflowVersionCommand(), exports2);
|
|
43804
46008
|
tslib_1.__exportStar(require_GetWorkflowCommand(), exports2);
|
|
43805
46009
|
tslib_1.__exportStar(require_GetWorkflowMetricTimeSeriesCommand(), exports2);
|
|
43806
46010
|
tslib_1.__exportStar(require_GetWorkflowStateCommand(), exports2);
|
|
43807
46011
|
tslib_1.__exportStar(require_GetWorkflowVersionCommand(), exports2);
|
|
46012
|
+
tslib_1.__exportStar(require_GrantMarketplaceAccessCommand(), exports2);
|
|
46013
|
+
tslib_1.__exportStar(require_IsMarketplaceListingAllowlistedCommand(), exports2);
|
|
46014
|
+
tslib_1.__exportStar(require_ListAllowlistedMarketplaceListingsCommand(), exports2);
|
|
43808
46015
|
tslib_1.__exportStar(require_ListApiAuthTokensCommand(), exports2);
|
|
43809
46016
|
tslib_1.__exportStar(require_ListJobsCommand(), exports2);
|
|
46017
|
+
tslib_1.__exportStar(require_ListMarketplaceListingBillingOverridesCommand(), exports2);
|
|
46018
|
+
tslib_1.__exportStar(require_ListMarketplaceListingsCommand(), exports2);
|
|
46019
|
+
tslib_1.__exportStar(require_ListMarketplaceListingVersionsCommand(), exports2);
|
|
46020
|
+
tslib_1.__exportStar(require_ListMyMarketplaceListingsCommand(), exports2);
|
|
43810
46021
|
tslib_1.__exportStar(require_ListOrganizationInvitationsForUserCommand(), exports2);
|
|
43811
46022
|
tslib_1.__exportStar(require_ListOrganizationsCommand(), exports2);
|
|
43812
46023
|
tslib_1.__exportStar(require_ListOrganizationUsersAndInvitationsCommand(), exports2);
|
|
@@ -43815,20 +46026,61 @@ var require_commands = __commonJS({
|
|
|
43815
46026
|
tslib_1.__exportStar(require_ListSubscriptionPlansCommand(), exports2);
|
|
43816
46027
|
tslib_1.__exportStar(require_ListWorkflowsCommand(), exports2);
|
|
43817
46028
|
tslib_1.__exportStar(require_ListWorkflowVersionsCommand(), exports2);
|
|
46029
|
+
tslib_1.__exportStar(require_PublishWorkflowToMarketplaceCommand(), exports2);
|
|
43818
46030
|
tslib_1.__exportStar(require_RegisterWorkflowCommand(), exports2);
|
|
43819
46031
|
tslib_1.__exportStar(require_RegisterWorkflowVersionCommand(), exports2);
|
|
43820
46032
|
tslib_1.__exportStar(require_RejectOrganizationInvitationCommand(), exports2);
|
|
43821
46033
|
tslib_1.__exportStar(require_RemoveOrganizationMembershipCommand(), exports2);
|
|
43822
46034
|
tslib_1.__exportStar(require_ResumeJobCommand(), exports2);
|
|
43823
46035
|
tslib_1.__exportStar(require_RevokeApiAuthTokenCommand(), exports2);
|
|
46036
|
+
tslib_1.__exportStar(require_RevokeMarketplaceAccessCommand(), exports2);
|
|
46037
|
+
tslib_1.__exportStar(require_SearchMarketplaceOrganizationsCommand(), exports2);
|
|
43824
46038
|
tslib_1.__exportStar(require_SendJobEventCommand(), exports2);
|
|
46039
|
+
tslib_1.__exportStar(require_SetMarketplaceListingVersionTagCommand(), exports2);
|
|
43825
46040
|
tslib_1.__exportStar(require_SetWorkflowVersionTagCommand(), exports2);
|
|
43826
46041
|
tslib_1.__exportStar(require_SubmitJobCommand(), exports2);
|
|
46042
|
+
tslib_1.__exportStar(require_UnallowlistMarketplaceListingCommand(), exports2);
|
|
46043
|
+
tslib_1.__exportStar(require_UnpublishWorkflowFromMarketplaceCommand(), exports2);
|
|
43827
46044
|
tslib_1.__exportStar(require_UpdateApiAuthTokenCommand(), exports2);
|
|
46045
|
+
tslib_1.__exportStar(require_UpdateMarketplaceListingBillingCommand(), exports2);
|
|
46046
|
+
tslib_1.__exportStar(require_UpdateMarketplaceListingMetadataCommand(), exports2);
|
|
43828
46047
|
tslib_1.__exportStar(require_UpdateOrganizationCommand(), exports2);
|
|
43829
46048
|
tslib_1.__exportStar(require_UpdateOrganizationMembershipCommand(), exports2);
|
|
43830
46049
|
tslib_1.__exportStar(require_UpdateResourcePoolCommand(), exports2);
|
|
43831
46050
|
tslib_1.__exportStar(require_UpdateRoleCommand(), exports2);
|
|
46051
|
+
tslib_1.__exportStar(require_UpsertMarketplaceListingBillingOverrideCommand(), exports2);
|
|
46052
|
+
}
|
|
46053
|
+
});
|
|
46054
|
+
|
|
46055
|
+
// ../JustWorkflowItApiClient/dist-cjs/pagination/Interfaces.js
|
|
46056
|
+
var require_Interfaces = __commonJS({
|
|
46057
|
+
"../JustWorkflowItApiClient/dist-cjs/pagination/Interfaces.js"(exports2) {
|
|
46058
|
+
"use strict";
|
|
46059
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46060
|
+
}
|
|
46061
|
+
});
|
|
46062
|
+
|
|
46063
|
+
// ../JustWorkflowItApiClient/dist-cjs/pagination/AdminListOrganizationsPaginator.js
|
|
46064
|
+
var require_AdminListOrganizationsPaginator = __commonJS({
|
|
46065
|
+
"../JustWorkflowItApiClient/dist-cjs/pagination/AdminListOrganizationsPaginator.js"(exports2) {
|
|
46066
|
+
"use strict";
|
|
46067
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46068
|
+
exports2.paginateAdminListOrganizations = void 0;
|
|
46069
|
+
var JustWorkflowItClient_1 = require_JustWorkflowItClient();
|
|
46070
|
+
var AdminListOrganizationsCommand_1 = require_AdminListOrganizationsCommand();
|
|
46071
|
+
var core_1 = (init_dist_es(), __toCommonJS(dist_es_exports));
|
|
46072
|
+
exports2.paginateAdminListOrganizations = (0, core_1.createPaginator)(JustWorkflowItClient_1.JustWorkflowItClient, AdminListOrganizationsCommand_1.AdminListOrganizationsCommand, "nextToken", "nextToken", "limit");
|
|
46073
|
+
}
|
|
46074
|
+
});
|
|
46075
|
+
|
|
46076
|
+
// ../JustWorkflowItApiClient/dist-cjs/pagination/index.js
|
|
46077
|
+
var require_pagination = __commonJS({
|
|
46078
|
+
"../JustWorkflowItApiClient/dist-cjs/pagination/index.js"(exports2) {
|
|
46079
|
+
"use strict";
|
|
46080
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
46081
|
+
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
46082
|
+
tslib_1.__exportStar(require_Interfaces(), exports2);
|
|
46083
|
+
tslib_1.__exportStar(require_AdminListOrganizationsPaginator(), exports2);
|
|
43832
46084
|
}
|
|
43833
46085
|
});
|
|
43834
46086
|
|
|
@@ -43930,11 +46182,10 @@ var require_createAuthenticatedClient = __commonJS({
|
|
|
43930
46182
|
const cognitoSigner = {
|
|
43931
46183
|
async sign(request, identity) {
|
|
43932
46184
|
const tokenIdentity = identity;
|
|
43933
|
-
if (!tokenIdentity.token) {
|
|
43934
|
-
throw new Error("Cognito User Pools signer requires a token identity");
|
|
43935
|
-
}
|
|
43936
46185
|
const cloned = protocol_http_1.HttpRequest.clone(request);
|
|
43937
|
-
|
|
46186
|
+
if (tokenIdentity.token) {
|
|
46187
|
+
cloned.headers["Authorization"] = `Bearer ${tokenIdentity.token}`;
|
|
46188
|
+
}
|
|
43938
46189
|
return cloned;
|
|
43939
46190
|
}
|
|
43940
46191
|
};
|
|
@@ -44016,6 +46267,7 @@ var require_dist_cjs79 = __commonJS({
|
|
|
44016
46267
|
tslib_1.__exportStar(require_JustWorkflowItClient(), exports2);
|
|
44017
46268
|
tslib_1.__exportStar(require_JustWorkflowIt(), exports2);
|
|
44018
46269
|
tslib_1.__exportStar(require_commands(), exports2);
|
|
46270
|
+
tslib_1.__exportStar(require_pagination(), exports2);
|
|
44019
46271
|
tslib_1.__exportStar(require_models(), exports2);
|
|
44020
46272
|
var JustWorkflowItServiceException_1 = require_JustWorkflowItServiceException();
|
|
44021
46273
|
Object.defineProperty(exports2, "JustWorkflowItServiceException", { enumerable: true, get: function() {
|
|
@@ -45799,10 +48051,18 @@ async function deployWorkflows(organizationId, bucket, keys) {
|
|
|
45799
48051
|
const matchingWorkflow = workflowResponse.workflows.find(
|
|
45800
48052
|
(w4) => w4.name.toUpperCase() === workflowName.toUpperCase()
|
|
45801
48053
|
);
|
|
48054
|
+
let workflowId;
|
|
45802
48055
|
if (!matchingWorkflow) {
|
|
45803
|
-
|
|
48056
|
+
console.log(`\u2139\uFE0F Workflow ${workflowName} not found. Creating it...`);
|
|
48057
|
+
const createResponse = await api.registerWorkflow({
|
|
48058
|
+
organizationId,
|
|
48059
|
+
name: workflowName
|
|
48060
|
+
});
|
|
48061
|
+
workflowId = createResponse.workflowId;
|
|
48062
|
+
console.log(`\u2705 Created workflow ${workflowName} with ID ${workflowId}`);
|
|
48063
|
+
} else {
|
|
48064
|
+
workflowId = matchingWorkflow.workflowId;
|
|
45804
48065
|
}
|
|
45805
|
-
const { workflowId } = matchingWorkflow;
|
|
45806
48066
|
const registered = await registerWorkflowVersionWithRetry(
|
|
45807
48067
|
api,
|
|
45808
48068
|
{
|