@aws-sdk/client-omics 3.511.0 → 3.513.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/index.js +202 -144
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/OmicsClient.js +17 -4
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/runtimeConfig.shared.js +10 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/OmicsClient.d.ts +13 -11
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -4
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +11 -9
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -221,13 +221,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
221
221
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
222
222
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
223
223
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
224
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
225
224
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
226
225
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
226
|
+
var import_core = require("@smithy/core");
|
|
227
227
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
228
228
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
229
229
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
230
230
|
|
|
231
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
231
232
|
|
|
232
233
|
// src/endpoint/EndpointParameters.ts
|
|
233
234
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -252,19 +253,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
252
253
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
253
254
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
254
255
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
256
|
+
|
|
257
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
258
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
259
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
260
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
261
|
+
let _credentials = runtimeConfig.credentials;
|
|
262
|
+
return {
|
|
263
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
264
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
265
|
+
if (index === -1) {
|
|
266
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
267
|
+
} else {
|
|
268
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
httpAuthSchemes() {
|
|
272
|
+
return _httpAuthSchemes;
|
|
273
|
+
},
|
|
274
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
275
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
276
|
+
},
|
|
277
|
+
httpAuthSchemeProvider() {
|
|
278
|
+
return _httpAuthSchemeProvider;
|
|
279
|
+
},
|
|
280
|
+
setCredentials(credentials) {
|
|
281
|
+
_credentials = credentials;
|
|
282
|
+
},
|
|
283
|
+
credentials() {
|
|
284
|
+
return _credentials;
|
|
285
|
+
}
|
|
286
|
+
};
|
|
287
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
288
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
289
|
+
return {
|
|
290
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
291
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
292
|
+
credentials: config.credentials()
|
|
293
|
+
};
|
|
294
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
295
|
+
|
|
296
|
+
// src/runtimeExtensions.ts
|
|
255
297
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
256
298
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
257
299
|
const extensionConfiguration = {
|
|
258
300
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
259
301
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
260
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
302
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
303
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
261
304
|
};
|
|
262
305
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
263
306
|
return {
|
|
264
307
|
...runtimeConfig,
|
|
265
308
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
266
309
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
267
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
310
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
311
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
268
312
|
};
|
|
269
313
|
}, "resolveRuntimeExtensions");
|
|
270
314
|
|
|
@@ -277,8 +321,8 @@ var _OmicsClient = class _OmicsClient extends import_smithy_client.Client {
|
|
|
277
321
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
278
322
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
279
323
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
280
|
-
const _config_6 = (0,
|
|
281
|
-
const _config_7 = (0,
|
|
324
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
325
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
282
326
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
283
327
|
super(_config_8);
|
|
284
328
|
this.config = _config_8;
|
|
@@ -287,8 +331,14 @@ var _OmicsClient = class _OmicsClient extends import_smithy_client.Client {
|
|
|
287
331
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
288
332
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
289
333
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
290
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
291
334
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
335
|
+
this.middlewareStack.use(
|
|
336
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
337
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
338
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
339
|
+
})
|
|
340
|
+
);
|
|
341
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
292
342
|
}
|
|
293
343
|
/**
|
|
294
344
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -298,6 +348,14 @@ var _OmicsClient = class _OmicsClient extends import_smithy_client.Client {
|
|
|
298
348
|
destroy() {
|
|
299
349
|
super.destroy();
|
|
300
350
|
}
|
|
351
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
352
|
+
return import_httpAuthSchemeProvider.defaultOmicsHttpAuthSchemeParametersProvider;
|
|
353
|
+
}
|
|
354
|
+
getIdentityProviderConfigProvider() {
|
|
355
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
356
|
+
"aws.auth#sigv4": config.credentials
|
|
357
|
+
});
|
|
358
|
+
}
|
|
301
359
|
};
|
|
302
360
|
__name(_OmicsClient, "OmicsClient");
|
|
303
361
|
var OmicsClient = _OmicsClient;
|
|
@@ -312,8 +370,8 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
312
370
|
var import_types = require("@smithy/types");
|
|
313
371
|
|
|
314
372
|
// src/protocols/Aws_restJson1.ts
|
|
315
|
-
var
|
|
316
|
-
|
|
373
|
+
var import_core2 = require("@aws-sdk/core");
|
|
374
|
+
|
|
317
375
|
|
|
318
376
|
|
|
319
377
|
var import_uuid = require("uuid");
|
|
@@ -901,7 +959,7 @@ var UploadReadSetPartRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
901
959
|
|
|
902
960
|
// src/protocols/Aws_restJson1.ts
|
|
903
961
|
var se_AbortMultipartReadSetUploadCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
904
|
-
const b = (0,
|
|
962
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
905
963
|
const headers = {};
|
|
906
964
|
b.bp("/sequencestore/{sequenceStoreId}/upload/{uploadId}/abort");
|
|
907
965
|
b.p("sequenceStoreId", () => input.sequenceStoreId, "{sequenceStoreId}", false);
|
|
@@ -919,7 +977,7 @@ var se_AbortMultipartReadSetUploadCommand = /* @__PURE__ */ __name(async (input,
|
|
|
919
977
|
return b.build();
|
|
920
978
|
}, "se_AbortMultipartReadSetUploadCommand");
|
|
921
979
|
var se_AcceptShareCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
922
|
-
const b = (0,
|
|
980
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
923
981
|
const headers = {};
|
|
924
982
|
b.bp("/share/{shareId}");
|
|
925
983
|
b.p("shareId", () => input.shareId, "{shareId}", false);
|
|
@@ -936,7 +994,7 @@ var se_AcceptShareCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
936
994
|
return b.build();
|
|
937
995
|
}, "se_AcceptShareCommand");
|
|
938
996
|
var se_BatchDeleteReadSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
939
|
-
const b = (0,
|
|
997
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
940
998
|
const headers = {
|
|
941
999
|
"content-type": "application/json"
|
|
942
1000
|
};
|
|
@@ -960,7 +1018,7 @@ var se_BatchDeleteReadSetCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
960
1018
|
return b.build();
|
|
961
1019
|
}, "se_BatchDeleteReadSetCommand");
|
|
962
1020
|
var se_CancelAnnotationImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
963
|
-
const b = (0,
|
|
1021
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
964
1022
|
const headers = {};
|
|
965
1023
|
b.bp("/import/annotation/{jobId}");
|
|
966
1024
|
b.p("jobId", () => input.jobId, "{jobId}", false);
|
|
@@ -977,7 +1035,7 @@ var se_CancelAnnotationImportJobCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
977
1035
|
return b.build();
|
|
978
1036
|
}, "se_CancelAnnotationImportJobCommand");
|
|
979
1037
|
var se_CancelRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
980
|
-
const b = (0,
|
|
1038
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
981
1039
|
const headers = {};
|
|
982
1040
|
b.bp("/run/{id}/cancel");
|
|
983
1041
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -994,7 +1052,7 @@ var se_CancelRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
994
1052
|
return b.build();
|
|
995
1053
|
}, "se_CancelRunCommand");
|
|
996
1054
|
var se_CancelVariantImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
997
|
-
const b = (0,
|
|
1055
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
998
1056
|
const headers = {};
|
|
999
1057
|
b.bp("/import/variant/{jobId}");
|
|
1000
1058
|
b.p("jobId", () => input.jobId, "{jobId}", false);
|
|
@@ -1011,7 +1069,7 @@ var se_CancelVariantImportJobCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1011
1069
|
return b.build();
|
|
1012
1070
|
}, "se_CancelVariantImportJobCommand");
|
|
1013
1071
|
var se_CompleteMultipartReadSetUploadCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1014
|
-
const b = (0,
|
|
1072
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1015
1073
|
const headers = {
|
|
1016
1074
|
"content-type": "application/json"
|
|
1017
1075
|
};
|
|
@@ -1036,7 +1094,7 @@ var se_CompleteMultipartReadSetUploadCommand = /* @__PURE__ */ __name(async (inp
|
|
|
1036
1094
|
return b.build();
|
|
1037
1095
|
}, "se_CompleteMultipartReadSetUploadCommand");
|
|
1038
1096
|
var se_CreateAnnotationStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1039
|
-
const b = (0,
|
|
1097
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1040
1098
|
const headers = {
|
|
1041
1099
|
"content-type": "application/json"
|
|
1042
1100
|
};
|
|
@@ -1066,7 +1124,7 @@ var se_CreateAnnotationStoreCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1066
1124
|
return b.build();
|
|
1067
1125
|
}, "se_CreateAnnotationStoreCommand");
|
|
1068
1126
|
var se_CreateAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1069
|
-
const b = (0,
|
|
1127
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1070
1128
|
const headers = {
|
|
1071
1129
|
"content-type": "application/json"
|
|
1072
1130
|
};
|
|
@@ -1093,7 +1151,7 @@ var se_CreateAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (input
|
|
|
1093
1151
|
return b.build();
|
|
1094
1152
|
}, "se_CreateAnnotationStoreVersionCommand");
|
|
1095
1153
|
var se_CreateMultipartReadSetUploadCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1096
|
-
const b = (0,
|
|
1154
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1097
1155
|
const headers = {
|
|
1098
1156
|
"content-type": "application/json"
|
|
1099
1157
|
};
|
|
@@ -1125,7 +1183,7 @@ var se_CreateMultipartReadSetUploadCommand = /* @__PURE__ */ __name(async (input
|
|
|
1125
1183
|
return b.build();
|
|
1126
1184
|
}, "se_CreateMultipartReadSetUploadCommand");
|
|
1127
1185
|
var se_CreateReferenceStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1128
|
-
const b = (0,
|
|
1186
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1129
1187
|
const headers = {
|
|
1130
1188
|
"content-type": "application/json"
|
|
1131
1189
|
};
|
|
@@ -1152,7 +1210,7 @@ var se_CreateReferenceStoreCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1152
1210
|
return b.build();
|
|
1153
1211
|
}, "se_CreateReferenceStoreCommand");
|
|
1154
1212
|
var se_CreateRunGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1155
|
-
const b = (0,
|
|
1213
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1156
1214
|
const headers = {
|
|
1157
1215
|
"content-type": "application/json"
|
|
1158
1216
|
};
|
|
@@ -1181,7 +1239,7 @@ var se_CreateRunGroupCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1181
1239
|
return b.build();
|
|
1182
1240
|
}, "se_CreateRunGroupCommand");
|
|
1183
1241
|
var se_CreateSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1184
|
-
const b = (0,
|
|
1242
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1185
1243
|
const headers = {
|
|
1186
1244
|
"content-type": "application/json"
|
|
1187
1245
|
};
|
|
@@ -1209,7 +1267,7 @@ var se_CreateSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1209
1267
|
return b.build();
|
|
1210
1268
|
}, "se_CreateSequenceStoreCommand");
|
|
1211
1269
|
var se_CreateShareCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1212
|
-
const b = (0,
|
|
1270
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1213
1271
|
const headers = {
|
|
1214
1272
|
"content-type": "application/json"
|
|
1215
1273
|
};
|
|
@@ -1234,7 +1292,7 @@ var se_CreateShareCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1234
1292
|
return b.build();
|
|
1235
1293
|
}, "se_CreateShareCommand");
|
|
1236
1294
|
var se_CreateVariantStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1237
|
-
const b = (0,
|
|
1295
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1238
1296
|
const headers = {
|
|
1239
1297
|
"content-type": "application/json"
|
|
1240
1298
|
};
|
|
@@ -1261,7 +1319,7 @@ var se_CreateVariantStoreCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1261
1319
|
return b.build();
|
|
1262
1320
|
}, "se_CreateVariantStoreCommand");
|
|
1263
1321
|
var se_CreateWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1264
|
-
const b = (0,
|
|
1322
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1265
1323
|
const headers = {
|
|
1266
1324
|
"content-type": "application/json"
|
|
1267
1325
|
};
|
|
@@ -1294,7 +1352,7 @@ var se_CreateWorkflowCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1294
1352
|
return b.build();
|
|
1295
1353
|
}, "se_CreateWorkflowCommand");
|
|
1296
1354
|
var se_DeleteAnnotationStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1297
|
-
const b = (0,
|
|
1355
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1298
1356
|
const headers = {};
|
|
1299
1357
|
b.bp("/annotationStore/{name}");
|
|
1300
1358
|
b.p("name", () => input.name, "{name}", false);
|
|
@@ -1314,7 +1372,7 @@ var se_DeleteAnnotationStoreCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1314
1372
|
return b.build();
|
|
1315
1373
|
}, "se_DeleteAnnotationStoreCommand");
|
|
1316
1374
|
var se_DeleteAnnotationStoreVersionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1317
|
-
const b = (0,
|
|
1375
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1318
1376
|
const headers = {
|
|
1319
1377
|
"content-type": "application/json"
|
|
1320
1378
|
};
|
|
@@ -1341,7 +1399,7 @@ var se_DeleteAnnotationStoreVersionsCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
1341
1399
|
return b.build();
|
|
1342
1400
|
}, "se_DeleteAnnotationStoreVersionsCommand");
|
|
1343
1401
|
var se_DeleteReferenceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1344
|
-
const b = (0,
|
|
1402
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1345
1403
|
const headers = {};
|
|
1346
1404
|
b.bp("/referencestore/{referenceStoreId}/reference/{id}");
|
|
1347
1405
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1359,7 +1417,7 @@ var se_DeleteReferenceCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1359
1417
|
return b.build();
|
|
1360
1418
|
}, "se_DeleteReferenceCommand");
|
|
1361
1419
|
var se_DeleteReferenceStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1362
|
-
const b = (0,
|
|
1420
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1363
1421
|
const headers = {};
|
|
1364
1422
|
b.bp("/referencestore/{id}");
|
|
1365
1423
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1376,7 +1434,7 @@ var se_DeleteReferenceStoreCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1376
1434
|
return b.build();
|
|
1377
1435
|
}, "se_DeleteReferenceStoreCommand");
|
|
1378
1436
|
var se_DeleteRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1379
|
-
const b = (0,
|
|
1437
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1380
1438
|
const headers = {};
|
|
1381
1439
|
b.bp("/run/{id}");
|
|
1382
1440
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1393,7 +1451,7 @@ var se_DeleteRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1393
1451
|
return b.build();
|
|
1394
1452
|
}, "se_DeleteRunCommand");
|
|
1395
1453
|
var se_DeleteRunGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1396
|
-
const b = (0,
|
|
1454
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1397
1455
|
const headers = {};
|
|
1398
1456
|
b.bp("/runGroup/{id}");
|
|
1399
1457
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1410,7 +1468,7 @@ var se_DeleteRunGroupCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1410
1468
|
return b.build();
|
|
1411
1469
|
}, "se_DeleteRunGroupCommand");
|
|
1412
1470
|
var se_DeleteSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1413
|
-
const b = (0,
|
|
1471
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1414
1472
|
const headers = {};
|
|
1415
1473
|
b.bp("/sequencestore/{id}");
|
|
1416
1474
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1427,7 +1485,7 @@ var se_DeleteSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1427
1485
|
return b.build();
|
|
1428
1486
|
}, "se_DeleteSequenceStoreCommand");
|
|
1429
1487
|
var se_DeleteShareCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1430
|
-
const b = (0,
|
|
1488
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1431
1489
|
const headers = {};
|
|
1432
1490
|
b.bp("/share/{shareId}");
|
|
1433
1491
|
b.p("shareId", () => input.shareId, "{shareId}", false);
|
|
@@ -1444,7 +1502,7 @@ var se_DeleteShareCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1444
1502
|
return b.build();
|
|
1445
1503
|
}, "se_DeleteShareCommand");
|
|
1446
1504
|
var se_DeleteVariantStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1447
|
-
const b = (0,
|
|
1505
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1448
1506
|
const headers = {};
|
|
1449
1507
|
b.bp("/variantStore/{name}");
|
|
1450
1508
|
b.p("name", () => input.name, "{name}", false);
|
|
@@ -1464,7 +1522,7 @@ var se_DeleteVariantStoreCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1464
1522
|
return b.build();
|
|
1465
1523
|
}, "se_DeleteVariantStoreCommand");
|
|
1466
1524
|
var se_DeleteWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1467
|
-
const b = (0,
|
|
1525
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1468
1526
|
const headers = {};
|
|
1469
1527
|
b.bp("/workflow/{id}");
|
|
1470
1528
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1481,7 +1539,7 @@ var se_DeleteWorkflowCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1481
1539
|
return b.build();
|
|
1482
1540
|
}, "se_DeleteWorkflowCommand");
|
|
1483
1541
|
var se_GetAnnotationImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1484
|
-
const b = (0,
|
|
1542
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1485
1543
|
const headers = {};
|
|
1486
1544
|
b.bp("/import/annotation/{jobId}");
|
|
1487
1545
|
b.p("jobId", () => input.jobId, "{jobId}", false);
|
|
@@ -1498,7 +1556,7 @@ var se_GetAnnotationImportJobCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1498
1556
|
return b.build();
|
|
1499
1557
|
}, "se_GetAnnotationImportJobCommand");
|
|
1500
1558
|
var se_GetAnnotationStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1501
|
-
const b = (0,
|
|
1559
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1502
1560
|
const headers = {};
|
|
1503
1561
|
b.bp("/annotationStore/{name}");
|
|
1504
1562
|
b.p("name", () => input.name, "{name}", false);
|
|
@@ -1515,7 +1573,7 @@ var se_GetAnnotationStoreCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1515
1573
|
return b.build();
|
|
1516
1574
|
}, "se_GetAnnotationStoreCommand");
|
|
1517
1575
|
var se_GetAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1518
|
-
const b = (0,
|
|
1576
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1519
1577
|
const headers = {};
|
|
1520
1578
|
b.bp("/annotationStore/{name}/version/{versionName}");
|
|
1521
1579
|
b.p("name", () => input.name, "{name}", false);
|
|
@@ -1533,7 +1591,7 @@ var se_GetAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
1533
1591
|
return b.build();
|
|
1534
1592
|
}, "se_GetAnnotationStoreVersionCommand");
|
|
1535
1593
|
var se_GetReadSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1536
|
-
const b = (0,
|
|
1594
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1537
1595
|
const headers = {};
|
|
1538
1596
|
b.bp("/sequencestore/{sequenceStoreId}/readset/{id}");
|
|
1539
1597
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1555,7 +1613,7 @@ var se_GetReadSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1555
1613
|
return b.build();
|
|
1556
1614
|
}, "se_GetReadSetCommand");
|
|
1557
1615
|
var se_GetReadSetActivationJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1558
|
-
const b = (0,
|
|
1616
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1559
1617
|
const headers = {};
|
|
1560
1618
|
b.bp("/sequencestore/{sequenceStoreId}/activationjob/{id}");
|
|
1561
1619
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1573,7 +1631,7 @@ var se_GetReadSetActivationJobCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1573
1631
|
return b.build();
|
|
1574
1632
|
}, "se_GetReadSetActivationJobCommand");
|
|
1575
1633
|
var se_GetReadSetExportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1576
|
-
const b = (0,
|
|
1634
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1577
1635
|
const headers = {};
|
|
1578
1636
|
b.bp("/sequencestore/{sequenceStoreId}/exportjob/{id}");
|
|
1579
1637
|
b.p("sequenceStoreId", () => input.sequenceStoreId, "{sequenceStoreId}", false);
|
|
@@ -1591,7 +1649,7 @@ var se_GetReadSetExportJobCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1591
1649
|
return b.build();
|
|
1592
1650
|
}, "se_GetReadSetExportJobCommand");
|
|
1593
1651
|
var se_GetReadSetImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1594
|
-
const b = (0,
|
|
1652
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1595
1653
|
const headers = {};
|
|
1596
1654
|
b.bp("/sequencestore/{sequenceStoreId}/importjob/{id}");
|
|
1597
1655
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1609,7 +1667,7 @@ var se_GetReadSetImportJobCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1609
1667
|
return b.build();
|
|
1610
1668
|
}, "se_GetReadSetImportJobCommand");
|
|
1611
1669
|
var se_GetReadSetMetadataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1612
|
-
const b = (0,
|
|
1670
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1613
1671
|
const headers = {};
|
|
1614
1672
|
b.bp("/sequencestore/{sequenceStoreId}/readset/{id}/metadata");
|
|
1615
1673
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1627,7 +1685,7 @@ var se_GetReadSetMetadataCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1627
1685
|
return b.build();
|
|
1628
1686
|
}, "se_GetReadSetMetadataCommand");
|
|
1629
1687
|
var se_GetReferenceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1630
|
-
const b = (0,
|
|
1688
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1631
1689
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
1632
1690
|
[_r]: input[_r]
|
|
1633
1691
|
});
|
|
@@ -1651,7 +1709,7 @@ var se_GetReferenceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1651
1709
|
return b.build();
|
|
1652
1710
|
}, "se_GetReferenceCommand");
|
|
1653
1711
|
var se_GetReferenceImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1654
|
-
const b = (0,
|
|
1712
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1655
1713
|
const headers = {};
|
|
1656
1714
|
b.bp("/referencestore/{referenceStoreId}/importjob/{id}");
|
|
1657
1715
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1669,7 +1727,7 @@ var se_GetReferenceImportJobCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1669
1727
|
return b.build();
|
|
1670
1728
|
}, "se_GetReferenceImportJobCommand");
|
|
1671
1729
|
var se_GetReferenceMetadataCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1672
|
-
const b = (0,
|
|
1730
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1673
1731
|
const headers = {};
|
|
1674
1732
|
b.bp("/referencestore/{referenceStoreId}/reference/{id}/metadata");
|
|
1675
1733
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1687,7 +1745,7 @@ var se_GetReferenceMetadataCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1687
1745
|
return b.build();
|
|
1688
1746
|
}, "se_GetReferenceMetadataCommand");
|
|
1689
1747
|
var se_GetReferenceStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1690
|
-
const b = (0,
|
|
1748
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1691
1749
|
const headers = {};
|
|
1692
1750
|
b.bp("/referencestore/{id}");
|
|
1693
1751
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1704,7 +1762,7 @@ var se_GetReferenceStoreCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1704
1762
|
return b.build();
|
|
1705
1763
|
}, "se_GetReferenceStoreCommand");
|
|
1706
1764
|
var se_GetRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1707
|
-
const b = (0,
|
|
1765
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1708
1766
|
const headers = {};
|
|
1709
1767
|
b.bp("/run/{id}");
|
|
1710
1768
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1724,7 +1782,7 @@ var se_GetRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1724
1782
|
return b.build();
|
|
1725
1783
|
}, "se_GetRunCommand");
|
|
1726
1784
|
var se_GetRunGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1727
|
-
const b = (0,
|
|
1785
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1728
1786
|
const headers = {};
|
|
1729
1787
|
b.bp("/runGroup/{id}");
|
|
1730
1788
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1741,7 +1799,7 @@ var se_GetRunGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1741
1799
|
return b.build();
|
|
1742
1800
|
}, "se_GetRunGroupCommand");
|
|
1743
1801
|
var se_GetRunTaskCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1744
|
-
const b = (0,
|
|
1802
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1745
1803
|
const headers = {};
|
|
1746
1804
|
b.bp("/run/{id}/task/{taskId}");
|
|
1747
1805
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1759,7 +1817,7 @@ var se_GetRunTaskCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1759
1817
|
return b.build();
|
|
1760
1818
|
}, "se_GetRunTaskCommand");
|
|
1761
1819
|
var se_GetSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1762
|
-
const b = (0,
|
|
1820
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1763
1821
|
const headers = {};
|
|
1764
1822
|
b.bp("/sequencestore/{id}");
|
|
1765
1823
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1776,7 +1834,7 @@ var se_GetSequenceStoreCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1776
1834
|
return b.build();
|
|
1777
1835
|
}, "se_GetSequenceStoreCommand");
|
|
1778
1836
|
var se_GetShareCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1779
|
-
const b = (0,
|
|
1837
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1780
1838
|
const headers = {};
|
|
1781
1839
|
b.bp("/share/{shareId}");
|
|
1782
1840
|
b.p("shareId", () => input.shareId, "{shareId}", false);
|
|
@@ -1793,7 +1851,7 @@ var se_GetShareCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1793
1851
|
return b.build();
|
|
1794
1852
|
}, "se_GetShareCommand");
|
|
1795
1853
|
var se_GetVariantImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1796
|
-
const b = (0,
|
|
1854
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1797
1855
|
const headers = {};
|
|
1798
1856
|
b.bp("/import/variant/{jobId}");
|
|
1799
1857
|
b.p("jobId", () => input.jobId, "{jobId}", false);
|
|
@@ -1810,7 +1868,7 @@ var se_GetVariantImportJobCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1810
1868
|
return b.build();
|
|
1811
1869
|
}, "se_GetVariantImportJobCommand");
|
|
1812
1870
|
var se_GetVariantStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1813
|
-
const b = (0,
|
|
1871
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1814
1872
|
const headers = {};
|
|
1815
1873
|
b.bp("/variantStore/{name}");
|
|
1816
1874
|
b.p("name", () => input.name, "{name}", false);
|
|
@@ -1827,7 +1885,7 @@ var se_GetVariantStoreCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1827
1885
|
return b.build();
|
|
1828
1886
|
}, "se_GetVariantStoreCommand");
|
|
1829
1887
|
var se_GetWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1830
|
-
const b = (0,
|
|
1888
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1831
1889
|
const headers = {};
|
|
1832
1890
|
b.bp("/workflow/{id}");
|
|
1833
1891
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -1848,7 +1906,7 @@ var se_GetWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1848
1906
|
return b.build();
|
|
1849
1907
|
}, "se_GetWorkflowCommand");
|
|
1850
1908
|
var se_ListAnnotationImportJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1851
|
-
const b = (0,
|
|
1909
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1852
1910
|
const headers = {
|
|
1853
1911
|
"content-type": "application/json"
|
|
1854
1912
|
};
|
|
@@ -1876,7 +1934,7 @@ var se_ListAnnotationImportJobsCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
1876
1934
|
return b.build();
|
|
1877
1935
|
}, "se_ListAnnotationImportJobsCommand");
|
|
1878
1936
|
var se_ListAnnotationStoresCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1879
|
-
const b = (0,
|
|
1937
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1880
1938
|
const headers = {
|
|
1881
1939
|
"content-type": "application/json"
|
|
1882
1940
|
};
|
|
@@ -1904,7 +1962,7 @@ var se_ListAnnotationStoresCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1904
1962
|
return b.build();
|
|
1905
1963
|
}, "se_ListAnnotationStoresCommand");
|
|
1906
1964
|
var se_ListAnnotationStoreVersionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1907
|
-
const b = (0,
|
|
1965
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1908
1966
|
const headers = {
|
|
1909
1967
|
"content-type": "application/json"
|
|
1910
1968
|
};
|
|
@@ -1932,7 +1990,7 @@ var se_ListAnnotationStoreVersionsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1932
1990
|
return b.build();
|
|
1933
1991
|
}, "se_ListAnnotationStoreVersionsCommand");
|
|
1934
1992
|
var se_ListMultipartReadSetUploadsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1935
|
-
const b = (0,
|
|
1993
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1936
1994
|
const headers = {};
|
|
1937
1995
|
b.bp("/sequencestore/{sequenceStoreId}/uploads");
|
|
1938
1996
|
b.p("sequenceStoreId", () => input.sequenceStoreId, "{sequenceStoreId}", false);
|
|
@@ -1953,7 +2011,7 @@ var se_ListMultipartReadSetUploadsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1953
2011
|
return b.build();
|
|
1954
2012
|
}, "se_ListMultipartReadSetUploadsCommand");
|
|
1955
2013
|
var se_ListReadSetActivationJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1956
|
-
const b = (0,
|
|
2014
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1957
2015
|
const headers = {
|
|
1958
2016
|
"content-type": "application/json"
|
|
1959
2017
|
};
|
|
@@ -1981,7 +2039,7 @@ var se_ListReadSetActivationJobsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
1981
2039
|
return b.build();
|
|
1982
2040
|
}, "se_ListReadSetActivationJobsCommand");
|
|
1983
2041
|
var se_ListReadSetExportJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1984
|
-
const b = (0,
|
|
2042
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1985
2043
|
const headers = {
|
|
1986
2044
|
"content-type": "application/json"
|
|
1987
2045
|
};
|
|
@@ -2009,7 +2067,7 @@ var se_ListReadSetExportJobsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2009
2067
|
return b.build();
|
|
2010
2068
|
}, "se_ListReadSetExportJobsCommand");
|
|
2011
2069
|
var se_ListReadSetImportJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2012
|
-
const b = (0,
|
|
2070
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2013
2071
|
const headers = {
|
|
2014
2072
|
"content-type": "application/json"
|
|
2015
2073
|
};
|
|
@@ -2037,7 +2095,7 @@ var se_ListReadSetImportJobsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2037
2095
|
return b.build();
|
|
2038
2096
|
}, "se_ListReadSetImportJobsCommand");
|
|
2039
2097
|
var se_ListReadSetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2040
|
-
const b = (0,
|
|
2098
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2041
2099
|
const headers = {
|
|
2042
2100
|
"content-type": "application/json"
|
|
2043
2101
|
};
|
|
@@ -2065,7 +2123,7 @@ var se_ListReadSetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2065
2123
|
return b.build();
|
|
2066
2124
|
}, "se_ListReadSetsCommand");
|
|
2067
2125
|
var se_ListReadSetUploadPartsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2068
|
-
const b = (0,
|
|
2126
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2069
2127
|
const headers = {
|
|
2070
2128
|
"content-type": "application/json"
|
|
2071
2129
|
};
|
|
@@ -2095,7 +2153,7 @@ var se_ListReadSetUploadPartsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
2095
2153
|
return b.build();
|
|
2096
2154
|
}, "se_ListReadSetUploadPartsCommand");
|
|
2097
2155
|
var se_ListReferenceImportJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2098
|
-
const b = (0,
|
|
2156
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2099
2157
|
const headers = {
|
|
2100
2158
|
"content-type": "application/json"
|
|
2101
2159
|
};
|
|
@@ -2123,7 +2181,7 @@ var se_ListReferenceImportJobsCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2123
2181
|
return b.build();
|
|
2124
2182
|
}, "se_ListReferenceImportJobsCommand");
|
|
2125
2183
|
var se_ListReferencesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2126
|
-
const b = (0,
|
|
2184
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2127
2185
|
const headers = {
|
|
2128
2186
|
"content-type": "application/json"
|
|
2129
2187
|
};
|
|
@@ -2151,7 +2209,7 @@ var se_ListReferencesCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2151
2209
|
return b.build();
|
|
2152
2210
|
}, "se_ListReferencesCommand");
|
|
2153
2211
|
var se_ListReferenceStoresCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2154
|
-
const b = (0,
|
|
2212
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2155
2213
|
const headers = {
|
|
2156
2214
|
"content-type": "application/json"
|
|
2157
2215
|
};
|
|
@@ -2178,7 +2236,7 @@ var se_ListReferenceStoresCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
2178
2236
|
return b.build();
|
|
2179
2237
|
}, "se_ListReferenceStoresCommand");
|
|
2180
2238
|
var se_ListRunGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2181
|
-
const b = (0,
|
|
2239
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2182
2240
|
const headers = {};
|
|
2183
2241
|
b.bp("/runGroup");
|
|
2184
2242
|
const query = (0, import_smithy_client.map)({
|
|
@@ -2199,7 +2257,7 @@ var se_ListRunGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2199
2257
|
return b.build();
|
|
2200
2258
|
}, "se_ListRunGroupsCommand");
|
|
2201
2259
|
var se_ListRunsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2202
|
-
const b = (0,
|
|
2260
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2203
2261
|
const headers = {};
|
|
2204
2262
|
b.bp("/run");
|
|
2205
2263
|
const query = (0, import_smithy_client.map)({
|
|
@@ -2222,7 +2280,7 @@ var se_ListRunsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2222
2280
|
return b.build();
|
|
2223
2281
|
}, "se_ListRunsCommand");
|
|
2224
2282
|
var se_ListRunTasksCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2225
|
-
const b = (0,
|
|
2283
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2226
2284
|
const headers = {};
|
|
2227
2285
|
b.bp("/run/{id}/task");
|
|
2228
2286
|
b.p("id", () => input.id, "{id}", false);
|
|
@@ -2244,7 +2302,7 @@ var se_ListRunTasksCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2244
2302
|
return b.build();
|
|
2245
2303
|
}, "se_ListRunTasksCommand");
|
|
2246
2304
|
var se_ListSequenceStoresCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2247
|
-
const b = (0,
|
|
2305
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2248
2306
|
const headers = {
|
|
2249
2307
|
"content-type": "application/json"
|
|
2250
2308
|
};
|
|
@@ -2271,7 +2329,7 @@ var se_ListSequenceStoresCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2271
2329
|
return b.build();
|
|
2272
2330
|
}, "se_ListSequenceStoresCommand");
|
|
2273
2331
|
var se_ListSharesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2274
|
-
const b = (0,
|
|
2332
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2275
2333
|
const headers = {
|
|
2276
2334
|
"content-type": "application/json"
|
|
2277
2335
|
};
|
|
@@ -2299,7 +2357,7 @@ var se_ListSharesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2299
2357
|
return b.build();
|
|
2300
2358
|
}, "se_ListSharesCommand");
|
|
2301
2359
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2302
|
-
const b = (0,
|
|
2360
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2303
2361
|
const headers = {};
|
|
2304
2362
|
b.bp("/tags/{resourceArn}");
|
|
2305
2363
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -2316,7 +2374,7 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
2316
2374
|
return b.build();
|
|
2317
2375
|
}, "se_ListTagsForResourceCommand");
|
|
2318
2376
|
var se_ListVariantImportJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2319
|
-
const b = (0,
|
|
2377
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2320
2378
|
const headers = {
|
|
2321
2379
|
"content-type": "application/json"
|
|
2322
2380
|
};
|
|
@@ -2344,7 +2402,7 @@ var se_ListVariantImportJobsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2344
2402
|
return b.build();
|
|
2345
2403
|
}, "se_ListVariantImportJobsCommand");
|
|
2346
2404
|
var se_ListVariantStoresCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2347
|
-
const b = (0,
|
|
2405
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2348
2406
|
const headers = {
|
|
2349
2407
|
"content-type": "application/json"
|
|
2350
2408
|
};
|
|
@@ -2372,7 +2430,7 @@ var se_ListVariantStoresCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2372
2430
|
return b.build();
|
|
2373
2431
|
}, "se_ListVariantStoresCommand");
|
|
2374
2432
|
var se_ListWorkflowsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2375
|
-
const b = (0,
|
|
2433
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2376
2434
|
const headers = {};
|
|
2377
2435
|
b.bp("/workflow");
|
|
2378
2436
|
const query = (0, import_smithy_client.map)({
|
|
@@ -2394,7 +2452,7 @@ var se_ListWorkflowsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2394
2452
|
return b.build();
|
|
2395
2453
|
}, "se_ListWorkflowsCommand");
|
|
2396
2454
|
var se_StartAnnotationImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2397
|
-
const b = (0,
|
|
2455
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2398
2456
|
const headers = {
|
|
2399
2457
|
"content-type": "application/json"
|
|
2400
2458
|
};
|
|
@@ -2423,7 +2481,7 @@ var se_StartAnnotationImportJobCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2423
2481
|
return b.build();
|
|
2424
2482
|
}, "se_StartAnnotationImportJobCommand");
|
|
2425
2483
|
var se_StartReadSetActivationJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2426
|
-
const b = (0,
|
|
2484
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2427
2485
|
const headers = {
|
|
2428
2486
|
"content-type": "application/json"
|
|
2429
2487
|
};
|
|
@@ -2448,7 +2506,7 @@ var se_StartReadSetActivationJobCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
2448
2506
|
return b.build();
|
|
2449
2507
|
}, "se_StartReadSetActivationJobCommand");
|
|
2450
2508
|
var se_StartReadSetExportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2451
|
-
const b = (0,
|
|
2509
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2452
2510
|
const headers = {
|
|
2453
2511
|
"content-type": "application/json"
|
|
2454
2512
|
};
|
|
@@ -2475,7 +2533,7 @@ var se_StartReadSetExportJobCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2475
2533
|
return b.build();
|
|
2476
2534
|
}, "se_StartReadSetExportJobCommand");
|
|
2477
2535
|
var se_StartReadSetImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2478
|
-
const b = (0,
|
|
2536
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2479
2537
|
const headers = {
|
|
2480
2538
|
"content-type": "application/json"
|
|
2481
2539
|
};
|
|
@@ -2501,7 +2559,7 @@ var se_StartReadSetImportJobCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2501
2559
|
return b.build();
|
|
2502
2560
|
}, "se_StartReadSetImportJobCommand");
|
|
2503
2561
|
var se_StartReferenceImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2504
|
-
const b = (0,
|
|
2562
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2505
2563
|
const headers = {
|
|
2506
2564
|
"content-type": "application/json"
|
|
2507
2565
|
};
|
|
@@ -2527,7 +2585,7 @@ var se_StartReferenceImportJobCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2527
2585
|
return b.build();
|
|
2528
2586
|
}, "se_StartReferenceImportJobCommand");
|
|
2529
2587
|
var se_StartRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2530
|
-
const b = (0,
|
|
2588
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2531
2589
|
const headers = {
|
|
2532
2590
|
"content-type": "application/json"
|
|
2533
2591
|
};
|
|
@@ -2563,7 +2621,7 @@ var se_StartRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2563
2621
|
return b.build();
|
|
2564
2622
|
}, "se_StartRunCommand");
|
|
2565
2623
|
var se_StartVariantImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2566
|
-
const b = (0,
|
|
2624
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2567
2625
|
const headers = {
|
|
2568
2626
|
"content-type": "application/json"
|
|
2569
2627
|
};
|
|
@@ -2590,7 +2648,7 @@ var se_StartVariantImportJobCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2590
2648
|
return b.build();
|
|
2591
2649
|
}, "se_StartVariantImportJobCommand");
|
|
2592
2650
|
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2593
|
-
const b = (0,
|
|
2651
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2594
2652
|
const headers = {
|
|
2595
2653
|
"content-type": "application/json"
|
|
2596
2654
|
};
|
|
@@ -2614,7 +2672,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2614
2672
|
return b.build();
|
|
2615
2673
|
}, "se_TagResourceCommand");
|
|
2616
2674
|
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2617
|
-
const b = (0,
|
|
2675
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2618
2676
|
const headers = {};
|
|
2619
2677
|
b.bp("/tags/{resourceArn}");
|
|
2620
2678
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -2637,7 +2695,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2637
2695
|
return b.build();
|
|
2638
2696
|
}, "se_UntagResourceCommand");
|
|
2639
2697
|
var se_UpdateAnnotationStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2640
|
-
const b = (0,
|
|
2698
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2641
2699
|
const headers = {
|
|
2642
2700
|
"content-type": "application/json"
|
|
2643
2701
|
};
|
|
@@ -2661,7 +2719,7 @@ var se_UpdateAnnotationStoreCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2661
2719
|
return b.build();
|
|
2662
2720
|
}, "se_UpdateAnnotationStoreCommand");
|
|
2663
2721
|
var se_UpdateAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2664
|
-
const b = (0,
|
|
2722
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2665
2723
|
const headers = {
|
|
2666
2724
|
"content-type": "application/json"
|
|
2667
2725
|
};
|
|
@@ -2686,7 +2744,7 @@ var se_UpdateAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (input
|
|
|
2686
2744
|
return b.build();
|
|
2687
2745
|
}, "se_UpdateAnnotationStoreVersionCommand");
|
|
2688
2746
|
var se_UpdateRunGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2689
|
-
const b = (0,
|
|
2747
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2690
2748
|
const headers = {
|
|
2691
2749
|
"content-type": "application/json"
|
|
2692
2750
|
};
|
|
@@ -2714,7 +2772,7 @@ var se_UpdateRunGroupCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2714
2772
|
return b.build();
|
|
2715
2773
|
}, "se_UpdateRunGroupCommand");
|
|
2716
2774
|
var se_UpdateVariantStoreCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2717
|
-
const b = (0,
|
|
2775
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2718
2776
|
const headers = {
|
|
2719
2777
|
"content-type": "application/json"
|
|
2720
2778
|
};
|
|
@@ -2738,7 +2796,7 @@ var se_UpdateVariantStoreCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2738
2796
|
return b.build();
|
|
2739
2797
|
}, "se_UpdateVariantStoreCommand");
|
|
2740
2798
|
var se_UpdateWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2741
|
-
const b = (0,
|
|
2799
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2742
2800
|
const headers = {
|
|
2743
2801
|
"content-type": "application/json"
|
|
2744
2802
|
};
|
|
@@ -2763,7 +2821,7 @@ var se_UpdateWorkflowCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2763
2821
|
return b.build();
|
|
2764
2822
|
}, "se_UpdateWorkflowCommand");
|
|
2765
2823
|
var se_UploadReadSetPartCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2766
|
-
const b = (0,
|
|
2824
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2767
2825
|
const headers = {
|
|
2768
2826
|
"x-amz-content-sha256": "UNSIGNED-PAYLOAD",
|
|
2769
2827
|
"content-type": "application/octet-stream"
|
|
@@ -2884,10 +2942,10 @@ var de_CreateAnnotationStoreCommand = /* @__PURE__ */ __name(async (output, cont
|
|
|
2884
2942
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
2885
2943
|
id: import_smithy_client.expectString,
|
|
2886
2944
|
name: import_smithy_client.expectString,
|
|
2887
|
-
reference: (_) => (0, import_smithy_client._json)((0,
|
|
2945
|
+
reference: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2888
2946
|
status: import_smithy_client.expectString,
|
|
2889
2947
|
storeFormat: import_smithy_client.expectString,
|
|
2890
|
-
storeOptions: (_) => (0, import_smithy_client._json)((0,
|
|
2948
|
+
storeOptions: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
2891
2949
|
versionName: import_smithy_client.expectString
|
|
2892
2950
|
});
|
|
2893
2951
|
Object.assign(contents, doc);
|
|
@@ -2908,7 +2966,7 @@ var de_CreateAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (outpu
|
|
|
2908
2966
|
status: import_smithy_client.expectString,
|
|
2909
2967
|
storeId: import_smithy_client.expectString,
|
|
2910
2968
|
versionName: import_smithy_client.expectString,
|
|
2911
|
-
versionOptions: (_) => (0, import_smithy_client._json)((0,
|
|
2969
|
+
versionOptions: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_))
|
|
2912
2970
|
});
|
|
2913
2971
|
Object.assign(contents, doc);
|
|
2914
2972
|
return contents;
|
|
@@ -3020,7 +3078,7 @@ var de_CreateVariantStoreCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
3020
3078
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3021
3079
|
id: import_smithy_client.expectString,
|
|
3022
3080
|
name: import_smithy_client.expectString,
|
|
3023
|
-
reference: (_) => (0, import_smithy_client._json)((0,
|
|
3081
|
+
reference: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3024
3082
|
status: import_smithy_client.expectString
|
|
3025
3083
|
});
|
|
3026
3084
|
Object.assign(contents, doc);
|
|
@@ -3172,7 +3230,7 @@ var de_GetAnnotationImportJobCommand = /* @__PURE__ */ __name(async (output, con
|
|
|
3172
3230
|
completionTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3173
3231
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3174
3232
|
destinationName: import_smithy_client.expectString,
|
|
3175
|
-
formatOptions: (_) => (0, import_smithy_client._json)((0,
|
|
3233
|
+
formatOptions: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3176
3234
|
id: import_smithy_client.expectString,
|
|
3177
3235
|
items: import_smithy_client._json,
|
|
3178
3236
|
roleArn: import_smithy_client.expectString,
|
|
@@ -3199,13 +3257,13 @@ var de_GetAnnotationStoreCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
3199
3257
|
id: import_smithy_client.expectString,
|
|
3200
3258
|
name: import_smithy_client.expectString,
|
|
3201
3259
|
numVersions: import_smithy_client.expectInt32,
|
|
3202
|
-
reference: (_) => (0, import_smithy_client._json)((0,
|
|
3260
|
+
reference: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3203
3261
|
sseConfig: import_smithy_client._json,
|
|
3204
3262
|
status: import_smithy_client.expectString,
|
|
3205
3263
|
statusMessage: import_smithy_client.expectString,
|
|
3206
3264
|
storeArn: import_smithy_client.expectString,
|
|
3207
3265
|
storeFormat: import_smithy_client.expectString,
|
|
3208
|
-
storeOptions: (_) => (0, import_smithy_client._json)((0,
|
|
3266
|
+
storeOptions: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3209
3267
|
storeSizeBytes: import_smithy_client.expectLong,
|
|
3210
3268
|
tags: import_smithy_client._json,
|
|
3211
3269
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_))
|
|
@@ -3233,7 +3291,7 @@ var de_GetAnnotationStoreVersionCommand = /* @__PURE__ */ __name(async (output,
|
|
|
3233
3291
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3234
3292
|
versionArn: import_smithy_client.expectString,
|
|
3235
3293
|
versionName: import_smithy_client.expectString,
|
|
3236
|
-
versionOptions: (_) => (0, import_smithy_client._json)((0,
|
|
3294
|
+
versionOptions: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3237
3295
|
versionSizeBytes: import_smithy_client.expectLong
|
|
3238
3296
|
});
|
|
3239
3297
|
Object.assign(contents, doc);
|
|
@@ -3578,7 +3636,7 @@ var de_GetVariantStoreCommand = /* @__PURE__ */ __name(async (output, context) =
|
|
|
3578
3636
|
description: import_smithy_client.expectString,
|
|
3579
3637
|
id: import_smithy_client.expectString,
|
|
3580
3638
|
name: import_smithy_client.expectString,
|
|
3581
|
-
reference: (_) => (0, import_smithy_client._json)((0,
|
|
3639
|
+
reference: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3582
3640
|
sseConfig: import_smithy_client._json,
|
|
3583
3641
|
status: import_smithy_client.expectString,
|
|
3584
3642
|
statusMessage: import_smithy_client.expectString,
|
|
@@ -4085,10 +4143,10 @@ var de_UpdateAnnotationStoreCommand = /* @__PURE__ */ __name(async (output, cont
|
|
|
4085
4143
|
description: import_smithy_client.expectString,
|
|
4086
4144
|
id: import_smithy_client.expectString,
|
|
4087
4145
|
name: import_smithy_client.expectString,
|
|
4088
|
-
reference: (_) => (0, import_smithy_client._json)((0,
|
|
4146
|
+
reference: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4089
4147
|
status: import_smithy_client.expectString,
|
|
4090
4148
|
storeFormat: import_smithy_client.expectString,
|
|
4091
|
-
storeOptions: (_) => (0, import_smithy_client._json)((0,
|
|
4149
|
+
storeOptions: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4092
4150
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_))
|
|
4093
4151
|
});
|
|
4094
4152
|
Object.assign(contents, doc);
|
|
@@ -4138,7 +4196,7 @@ var de_UpdateVariantStoreCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
4138
4196
|
description: import_smithy_client.expectString,
|
|
4139
4197
|
id: import_smithy_client.expectString,
|
|
4140
4198
|
name: import_smithy_client.expectString,
|
|
4141
|
-
reference: (_) => (0, import_smithy_client._json)((0,
|
|
4199
|
+
reference: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4142
4200
|
status: import_smithy_client.expectString,
|
|
4143
4201
|
updateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_))
|
|
4144
4202
|
});
|
|
@@ -4459,7 +4517,7 @@ var de_AnnotationStoreItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
4459
4517
|
description: import_smithy_client.expectString,
|
|
4460
4518
|
id: import_smithy_client.expectString,
|
|
4461
4519
|
name: import_smithy_client.expectString,
|
|
4462
|
-
reference: (_) => (0, import_smithy_client._json)((0,
|
|
4520
|
+
reference: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4463
4521
|
sseConfig: import_smithy_client._json,
|
|
4464
4522
|
status: import_smithy_client.expectString,
|
|
4465
4523
|
statusMessage: import_smithy_client.expectString,
|
|
@@ -4763,7 +4821,7 @@ var de_VariantStoreItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
4763
4821
|
description: import_smithy_client.expectString,
|
|
4764
4822
|
id: import_smithy_client.expectString,
|
|
4765
4823
|
name: import_smithy_client.expectString,
|
|
4766
|
-
reference: (_) => (0, import_smithy_client._json)((0,
|
|
4824
|
+
reference: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4767
4825
|
sseConfig: import_smithy_client._json,
|
|
4768
4826
|
status: import_smithy_client.expectString,
|
|
4769
4827
|
statusMessage: import_smithy_client.expectString,
|
|
@@ -6341,84 +6399,84 @@ var Omics = _Omics;
|
|
|
6341
6399
|
(0, import_smithy_client.createAggregatedClient)(commands, Omics);
|
|
6342
6400
|
|
|
6343
6401
|
// src/pagination/ListAnnotationImportJobsPaginator.ts
|
|
6344
|
-
|
|
6345
|
-
var paginateListAnnotationImportJobs = (0,
|
|
6402
|
+
|
|
6403
|
+
var paginateListAnnotationImportJobs = (0, import_core.createPaginator)(OmicsClient, ListAnnotationImportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
6346
6404
|
|
|
6347
6405
|
// src/pagination/ListAnnotationStoreVersionsPaginator.ts
|
|
6348
|
-
|
|
6349
|
-
var paginateListAnnotationStoreVersions = (0,
|
|
6406
|
+
|
|
6407
|
+
var paginateListAnnotationStoreVersions = (0, import_core.createPaginator)(OmicsClient, ListAnnotationStoreVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
6350
6408
|
|
|
6351
6409
|
// src/pagination/ListAnnotationStoresPaginator.ts
|
|
6352
|
-
|
|
6353
|
-
var paginateListAnnotationStores = (0,
|
|
6410
|
+
|
|
6411
|
+
var paginateListAnnotationStores = (0, import_core.createPaginator)(OmicsClient, ListAnnotationStoresCommand, "nextToken", "nextToken", "maxResults");
|
|
6354
6412
|
|
|
6355
6413
|
// src/pagination/ListMultipartReadSetUploadsPaginator.ts
|
|
6356
|
-
|
|
6357
|
-
var paginateListMultipartReadSetUploads = (0,
|
|
6414
|
+
|
|
6415
|
+
var paginateListMultipartReadSetUploads = (0, import_core.createPaginator)(OmicsClient, ListMultipartReadSetUploadsCommand, "nextToken", "nextToken", "maxResults");
|
|
6358
6416
|
|
|
6359
6417
|
// src/pagination/ListReadSetActivationJobsPaginator.ts
|
|
6360
|
-
|
|
6361
|
-
var paginateListReadSetActivationJobs = (0,
|
|
6418
|
+
|
|
6419
|
+
var paginateListReadSetActivationJobs = (0, import_core.createPaginator)(OmicsClient, ListReadSetActivationJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
6362
6420
|
|
|
6363
6421
|
// src/pagination/ListReadSetExportJobsPaginator.ts
|
|
6364
|
-
|
|
6365
|
-
var paginateListReadSetExportJobs = (0,
|
|
6422
|
+
|
|
6423
|
+
var paginateListReadSetExportJobs = (0, import_core.createPaginator)(OmicsClient, ListReadSetExportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
6366
6424
|
|
|
6367
6425
|
// src/pagination/ListReadSetImportJobsPaginator.ts
|
|
6368
|
-
|
|
6369
|
-
var paginateListReadSetImportJobs = (0,
|
|
6426
|
+
|
|
6427
|
+
var paginateListReadSetImportJobs = (0, import_core.createPaginator)(OmicsClient, ListReadSetImportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
6370
6428
|
|
|
6371
6429
|
// src/pagination/ListReadSetUploadPartsPaginator.ts
|
|
6372
|
-
|
|
6373
|
-
var paginateListReadSetUploadParts = (0,
|
|
6430
|
+
|
|
6431
|
+
var paginateListReadSetUploadParts = (0, import_core.createPaginator)(OmicsClient, ListReadSetUploadPartsCommand, "nextToken", "nextToken", "maxResults");
|
|
6374
6432
|
|
|
6375
6433
|
// src/pagination/ListReadSetsPaginator.ts
|
|
6376
|
-
|
|
6377
|
-
var paginateListReadSets = (0,
|
|
6434
|
+
|
|
6435
|
+
var paginateListReadSets = (0, import_core.createPaginator)(OmicsClient, ListReadSetsCommand, "nextToken", "nextToken", "maxResults");
|
|
6378
6436
|
|
|
6379
6437
|
// src/pagination/ListReferenceImportJobsPaginator.ts
|
|
6380
|
-
|
|
6381
|
-
var paginateListReferenceImportJobs = (0,
|
|
6438
|
+
|
|
6439
|
+
var paginateListReferenceImportJobs = (0, import_core.createPaginator)(OmicsClient, ListReferenceImportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
6382
6440
|
|
|
6383
6441
|
// src/pagination/ListReferenceStoresPaginator.ts
|
|
6384
|
-
|
|
6385
|
-
var paginateListReferenceStores = (0,
|
|
6442
|
+
|
|
6443
|
+
var paginateListReferenceStores = (0, import_core.createPaginator)(OmicsClient, ListReferenceStoresCommand, "nextToken", "nextToken", "maxResults");
|
|
6386
6444
|
|
|
6387
6445
|
// src/pagination/ListReferencesPaginator.ts
|
|
6388
|
-
|
|
6389
|
-
var paginateListReferences = (0,
|
|
6446
|
+
|
|
6447
|
+
var paginateListReferences = (0, import_core.createPaginator)(OmicsClient, ListReferencesCommand, "nextToken", "nextToken", "maxResults");
|
|
6390
6448
|
|
|
6391
6449
|
// src/pagination/ListRunGroupsPaginator.ts
|
|
6392
|
-
|
|
6393
|
-
var paginateListRunGroups = (0,
|
|
6450
|
+
|
|
6451
|
+
var paginateListRunGroups = (0, import_core.createPaginator)(OmicsClient, ListRunGroupsCommand, "startingToken", "nextToken", "maxResults");
|
|
6394
6452
|
|
|
6395
6453
|
// src/pagination/ListRunTasksPaginator.ts
|
|
6396
|
-
|
|
6397
|
-
var paginateListRunTasks = (0,
|
|
6454
|
+
|
|
6455
|
+
var paginateListRunTasks = (0, import_core.createPaginator)(OmicsClient, ListRunTasksCommand, "startingToken", "nextToken", "maxResults");
|
|
6398
6456
|
|
|
6399
6457
|
// src/pagination/ListRunsPaginator.ts
|
|
6400
|
-
|
|
6401
|
-
var paginateListRuns = (0,
|
|
6458
|
+
|
|
6459
|
+
var paginateListRuns = (0, import_core.createPaginator)(OmicsClient, ListRunsCommand, "startingToken", "nextToken", "maxResults");
|
|
6402
6460
|
|
|
6403
6461
|
// src/pagination/ListSequenceStoresPaginator.ts
|
|
6404
|
-
|
|
6405
|
-
var paginateListSequenceStores = (0,
|
|
6462
|
+
|
|
6463
|
+
var paginateListSequenceStores = (0, import_core.createPaginator)(OmicsClient, ListSequenceStoresCommand, "nextToken", "nextToken", "maxResults");
|
|
6406
6464
|
|
|
6407
6465
|
// src/pagination/ListSharesPaginator.ts
|
|
6408
|
-
|
|
6409
|
-
var paginateListShares = (0,
|
|
6466
|
+
|
|
6467
|
+
var paginateListShares = (0, import_core.createPaginator)(OmicsClient, ListSharesCommand, "nextToken", "nextToken", "maxResults");
|
|
6410
6468
|
|
|
6411
6469
|
// src/pagination/ListVariantImportJobsPaginator.ts
|
|
6412
|
-
|
|
6413
|
-
var paginateListVariantImportJobs = (0,
|
|
6470
|
+
|
|
6471
|
+
var paginateListVariantImportJobs = (0, import_core.createPaginator)(OmicsClient, ListVariantImportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
6414
6472
|
|
|
6415
6473
|
// src/pagination/ListVariantStoresPaginator.ts
|
|
6416
|
-
|
|
6417
|
-
var paginateListVariantStores = (0,
|
|
6474
|
+
|
|
6475
|
+
var paginateListVariantStores = (0, import_core.createPaginator)(OmicsClient, ListVariantStoresCommand, "nextToken", "nextToken", "maxResults");
|
|
6418
6476
|
|
|
6419
6477
|
// src/pagination/ListWorkflowsPaginator.ts
|
|
6420
|
-
|
|
6421
|
-
var paginateListWorkflows = (0,
|
|
6478
|
+
|
|
6479
|
+
var paginateListWorkflows = (0, import_core.createPaginator)(OmicsClient, ListWorkflowsCommand, "startingToken", "nextToken", "maxResults");
|
|
6422
6480
|
|
|
6423
6481
|
// src/waiters/waitForAnnotationImportJobCreated.ts
|
|
6424
6482
|
var import_util_waiter = require("@smithy/util-waiter");
|