@aws-sdk/client-omics 3.331.0 → 3.332.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/README.md +56 -8
- package/dist-cjs/Omics.js +12 -0
- package/dist-cjs/commands/AbortMultipartReadSetUploadCommand.js +45 -0
- package/dist-cjs/commands/CompleteMultipartReadSetUploadCommand.js +45 -0
- package/dist-cjs/commands/CreateMultipartReadSetUploadCommand.js +45 -0
- package/dist-cjs/commands/ListMultipartReadSetUploadsCommand.js +45 -0
- package/dist-cjs/commands/ListReadSetUploadPartsCommand.js +45 -0
- package/dist-cjs/commands/UploadReadSetPartCommand.js +46 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +83 -55
- package/dist-cjs/pagination/ListMultipartReadSetUploadsPaginator.js +29 -0
- package/dist-cjs/pagination/ListReadSetUploadPartsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +625 -3
- package/dist-es/Omics.js +12 -0
- package/dist-es/commands/AbortMultipartReadSetUploadCommand.js +41 -0
- package/dist-es/commands/CompleteMultipartReadSetUploadCommand.js +41 -0
- package/dist-es/commands/CreateMultipartReadSetUploadCommand.js +41 -0
- package/dist-es/commands/ListMultipartReadSetUploadsCommand.js +41 -0
- package/dist-es/commands/ListReadSetUploadPartsCommand.js +41 -0
- package/dist-es/commands/UploadReadSetPartCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +78 -52
- package/dist-es/pagination/ListMultipartReadSetUploadsPaginator.js +25 -0
- package/dist-es/pagination/ListReadSetUploadPartsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +611 -1
- package/dist-types/Omics.d.ts +43 -1
- package/dist-types/OmicsClient.d.ts +9 -3
- package/dist-types/commands/AbortMultipartReadSetUploadCommand.d.ts +96 -0
- package/dist-types/commands/CompleteMultipartReadSetUploadCommand.d.ts +105 -0
- package/dist-types/commands/CreateMultipartReadSetUploadCommand.d.ts +120 -0
- package/dist-types/commands/CreateRunGroupCommand.d.ts +1 -0
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +2 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +1 -0
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +3 -0
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +1 -0
- package/dist-types/commands/GetRunCommand.d.ts +1 -0
- package/dist-types/commands/GetRunGroupCommand.d.ts +1 -0
- package/dist-types/commands/GetRunTaskCommand.d.ts +1 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +1 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +3 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +4 -0
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListMultipartReadSetUploadsCommand.d.ts +116 -0
- package/dist-types/commands/ListReadSetUploadPartsCommand.d.ts +115 -0
- package/dist-types/commands/ListReadSetsCommand.d.ts +4 -0
- package/dist-types/commands/ListRunGroupsCommand.d.ts +1 -0
- package/dist-types/commands/ListRunTasksCommand.d.ts +1 -0
- package/dist-types/commands/ListRunsCommand.d.ts +1 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +1 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +3 -0
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +3 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +3 -0
- package/dist-types/commands/UpdateRunGroupCommand.d.ts +1 -0
- package/dist-types/commands/UploadReadSetPartCommand.d.ts +111 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +825 -119
- package/dist-types/pagination/ListMultipartReadSetUploadsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListReadSetUploadPartsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/Omics.d.ts +102 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/AbortMultipartReadSetUploadCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CompleteMultipartReadSetUploadCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateMultipartReadSetUploadCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListMultipartReadSetUploadsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListReadSetUploadPartsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UploadReadSetPartCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +202 -52
- package/dist-types/ts3.4/pagination/ListMultipartReadSetUploadsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListReadSetUploadPartsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +5 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetReferenceResponseFilterSensitiveLog = exports.GetReadSetResponseFilterSensitiveLog = exports.WorkflowExport = exports.TaskStatus = exports.WorkflowType = exports.RunStatus = exports.RunLogLevel = exports.RunExport = exports.ReferenceStatus = exports.ReferenceImportJobStatus = exports.ReferenceImportJobItemStatus = exports.ReferenceFile = exports.ReadSetStatus = exports.ReadSetImportJobStatus = exports.ReadSetImportJobItemStatus = exports.RangeNotSatisfiableException = exports.ReadSetFile = exports.
|
|
3
|
+
exports.UploadReadSetPartRequestFilterSensitiveLog = exports.GetReferenceResponseFilterSensitiveLog = exports.GetReadSetResponseFilterSensitiveLog = exports.WorkflowExport = exports.TaskStatus = exports.WorkflowType = exports.RunStatus = exports.RunLogLevel = exports.RunExport = exports.ReferenceStatus = exports.ReferenceImportJobStatus = exports.ReferenceImportJobItemStatus = exports.ReferenceFile = exports.ReadSetStatus = exports.ReadSetImportJobStatus = exports.ReadSetImportJobItemStatus = exports.RangeNotSatisfiableException = exports.ReadSetFile = exports.ReadSetExportJobStatus = exports.ReadSetExportJobItemStatus = exports.WorkflowStatus = exports.WorkflowEngine = exports.FileType = exports.ReadSetPartSource = exports.StoreStatus = exports.StoreOptions = exports.SchemaValueType = exports.FormatToHeaderKey = exports.AnnotationType = exports.StoreFormat = exports.EncryptionType = exports.ReferenceItem = exports.ConflictException = exports.FormatOptions = exports.JobStatus = exports.ReadSetActivationJobItemStatus = exports.ReadSetActivationJobStatus = exports.Accelerators = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.RequestTimeoutException = exports.NotSupportedOperationException = exports.InternalServerException = exports.AccessDeniedException = void 0;
|
|
4
4
|
const OmicsServiceException_1 = require("./OmicsServiceException");
|
|
5
5
|
class AccessDeniedException extends OmicsServiceException_1.OmicsServiceException {
|
|
6
6
|
constructor(opts) {
|
|
@@ -15,29 +15,6 @@ class AccessDeniedException extends OmicsServiceException_1.OmicsServiceExceptio
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
exports.AccessDeniedException = AccessDeniedException;
|
|
18
|
-
exports.ReadSetActivationJobStatus = {
|
|
19
|
-
CANCELLED: "CANCELLED",
|
|
20
|
-
CANCELLING: "CANCELLING",
|
|
21
|
-
COMPLETED: "COMPLETED",
|
|
22
|
-
COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES",
|
|
23
|
-
FAILED: "FAILED",
|
|
24
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
25
|
-
SUBMITTED: "SUBMITTED",
|
|
26
|
-
};
|
|
27
|
-
exports.ReadSetActivationJobItemStatus = {
|
|
28
|
-
FAILED: "FAILED",
|
|
29
|
-
FINISHED: "FINISHED",
|
|
30
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
31
|
-
NOT_STARTED: "NOT_STARTED",
|
|
32
|
-
};
|
|
33
|
-
exports.JobStatus = {
|
|
34
|
-
CANCELLED: "CANCELLED",
|
|
35
|
-
COMPLETED: "COMPLETED",
|
|
36
|
-
COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES",
|
|
37
|
-
FAILED: "FAILED",
|
|
38
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
39
|
-
SUBMITTED: "SUBMITTED",
|
|
40
|
-
};
|
|
41
18
|
class InternalServerException extends OmicsServiceException_1.OmicsServiceException {
|
|
42
19
|
constructor(opts) {
|
|
43
20
|
super({
|
|
@@ -52,6 +29,32 @@ class InternalServerException extends OmicsServiceException_1.OmicsServiceExcept
|
|
|
52
29
|
}
|
|
53
30
|
}
|
|
54
31
|
exports.InternalServerException = InternalServerException;
|
|
32
|
+
class NotSupportedOperationException extends OmicsServiceException_1.OmicsServiceException {
|
|
33
|
+
constructor(opts) {
|
|
34
|
+
super({
|
|
35
|
+
name: "NotSupportedOperationException",
|
|
36
|
+
$fault: "client",
|
|
37
|
+
...opts,
|
|
38
|
+
});
|
|
39
|
+
this.name = "NotSupportedOperationException";
|
|
40
|
+
this.$fault = "client";
|
|
41
|
+
Object.setPrototypeOf(this, NotSupportedOperationException.prototype);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.NotSupportedOperationException = NotSupportedOperationException;
|
|
45
|
+
class RequestTimeoutException extends OmicsServiceException_1.OmicsServiceException {
|
|
46
|
+
constructor(opts) {
|
|
47
|
+
super({
|
|
48
|
+
name: "RequestTimeoutException",
|
|
49
|
+
$fault: "client",
|
|
50
|
+
...opts,
|
|
51
|
+
});
|
|
52
|
+
this.name = "RequestTimeoutException";
|
|
53
|
+
this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(this, RequestTimeoutException.prototype);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.RequestTimeoutException = RequestTimeoutException;
|
|
55
58
|
class ResourceNotFoundException extends OmicsServiceException_1.OmicsServiceException {
|
|
56
59
|
constructor(opts) {
|
|
57
60
|
super({
|
|
@@ -65,6 +68,19 @@ class ResourceNotFoundException extends OmicsServiceException_1.OmicsServiceExce
|
|
|
65
68
|
}
|
|
66
69
|
}
|
|
67
70
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
71
|
+
class ServiceQuotaExceededException extends OmicsServiceException_1.OmicsServiceException {
|
|
72
|
+
constructor(opts) {
|
|
73
|
+
super({
|
|
74
|
+
name: "ServiceQuotaExceededException",
|
|
75
|
+
$fault: "client",
|
|
76
|
+
...opts,
|
|
77
|
+
});
|
|
78
|
+
this.name = "ServiceQuotaExceededException";
|
|
79
|
+
this.$fault = "client";
|
|
80
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
68
84
|
class ThrottlingException extends OmicsServiceException_1.OmicsServiceException {
|
|
69
85
|
constructor(opts) {
|
|
70
86
|
super({
|
|
@@ -94,6 +110,32 @@ class ValidationException extends OmicsServiceException_1.OmicsServiceException
|
|
|
94
110
|
}
|
|
95
111
|
}
|
|
96
112
|
exports.ValidationException = ValidationException;
|
|
113
|
+
exports.Accelerators = {
|
|
114
|
+
GPU: "GPU",
|
|
115
|
+
};
|
|
116
|
+
exports.ReadSetActivationJobStatus = {
|
|
117
|
+
CANCELLED: "CANCELLED",
|
|
118
|
+
CANCELLING: "CANCELLING",
|
|
119
|
+
COMPLETED: "COMPLETED",
|
|
120
|
+
COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES",
|
|
121
|
+
FAILED: "FAILED",
|
|
122
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
123
|
+
SUBMITTED: "SUBMITTED",
|
|
124
|
+
};
|
|
125
|
+
exports.ReadSetActivationJobItemStatus = {
|
|
126
|
+
FAILED: "FAILED",
|
|
127
|
+
FINISHED: "FINISHED",
|
|
128
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
129
|
+
NOT_STARTED: "NOT_STARTED",
|
|
130
|
+
};
|
|
131
|
+
exports.JobStatus = {
|
|
132
|
+
CANCELLED: "CANCELLED",
|
|
133
|
+
COMPLETED: "COMPLETED",
|
|
134
|
+
COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES",
|
|
135
|
+
FAILED: "FAILED",
|
|
136
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
137
|
+
SUBMITTED: "SUBMITTED",
|
|
138
|
+
};
|
|
97
139
|
var FormatOptions;
|
|
98
140
|
(function (FormatOptions) {
|
|
99
141
|
FormatOptions.visit = (value, visitor) => {
|
|
@@ -104,19 +146,6 @@ var FormatOptions;
|
|
|
104
146
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
105
147
|
};
|
|
106
148
|
})(FormatOptions = exports.FormatOptions || (exports.FormatOptions = {}));
|
|
107
|
-
class ServiceQuotaExceededException extends OmicsServiceException_1.OmicsServiceException {
|
|
108
|
-
constructor(opts) {
|
|
109
|
-
super({
|
|
110
|
-
name: "ServiceQuotaExceededException",
|
|
111
|
-
$fault: "client",
|
|
112
|
-
...opts,
|
|
113
|
-
});
|
|
114
|
-
this.name = "ServiceQuotaExceededException";
|
|
115
|
-
this.$fault = "client";
|
|
116
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
120
149
|
class ConflictException extends OmicsServiceException_1.OmicsServiceException {
|
|
121
150
|
constructor(opts) {
|
|
122
151
|
super({
|
|
@@ -186,19 +215,15 @@ exports.StoreStatus = {
|
|
|
186
215
|
FAILED: "FAILED",
|
|
187
216
|
UPDATING: "UPDATING",
|
|
188
217
|
};
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
Object.setPrototypeOf(this, RequestTimeoutException.prototype);
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
exports.RequestTimeoutException = RequestTimeoutException;
|
|
218
|
+
exports.ReadSetPartSource = {
|
|
219
|
+
SOURCE1: "SOURCE1",
|
|
220
|
+
SOURCE2: "SOURCE2",
|
|
221
|
+
};
|
|
222
|
+
exports.FileType = {
|
|
223
|
+
BAM: "BAM",
|
|
224
|
+
CRAM: "CRAM",
|
|
225
|
+
FASTQ: "FASTQ",
|
|
226
|
+
};
|
|
202
227
|
exports.WorkflowEngine = {
|
|
203
228
|
NEXTFLOW: "NEXTFLOW",
|
|
204
229
|
WDL: "WDL",
|
|
@@ -208,6 +233,7 @@ exports.WorkflowStatus = {
|
|
|
208
233
|
CREATING: "CREATING",
|
|
209
234
|
DELETED: "DELETED",
|
|
210
235
|
FAILED: "FAILED",
|
|
236
|
+
INACTIVE: "INACTIVE",
|
|
211
237
|
UPDATING: "UPDATING",
|
|
212
238
|
};
|
|
213
239
|
exports.ReadSetExportJobItemStatus = {
|
|
@@ -225,11 +251,6 @@ exports.ReadSetExportJobStatus = {
|
|
|
225
251
|
IN_PROGRESS: "IN_PROGRESS",
|
|
226
252
|
SUBMITTED: "SUBMITTED",
|
|
227
253
|
};
|
|
228
|
-
exports.FileType = {
|
|
229
|
-
BAM: "BAM",
|
|
230
|
-
CRAM: "CRAM",
|
|
231
|
-
FASTQ: "FASTQ",
|
|
232
|
-
};
|
|
233
254
|
exports.ReadSetFile = {
|
|
234
255
|
INDEX: "INDEX",
|
|
235
256
|
SOURCE1: "SOURCE1",
|
|
@@ -270,6 +291,8 @@ exports.ReadSetStatus = {
|
|
|
270
291
|
ARCHIVED: "ARCHIVED",
|
|
271
292
|
DELETED: "DELETED",
|
|
272
293
|
DELETING: "DELETING",
|
|
294
|
+
PROCESSING_UPLOAD: "PROCESSING_UPLOAD",
|
|
295
|
+
UPLOAD_FAILED: "UPLOAD_FAILED",
|
|
273
296
|
};
|
|
274
297
|
exports.ReferenceFile = {
|
|
275
298
|
INDEX: "INDEX",
|
|
@@ -316,6 +339,7 @@ exports.RunStatus = {
|
|
|
316
339
|
};
|
|
317
340
|
exports.WorkflowType = {
|
|
318
341
|
PRIVATE: "PRIVATE",
|
|
342
|
+
READY2RUN: "READY2RUN",
|
|
319
343
|
};
|
|
320
344
|
exports.TaskStatus = {
|
|
321
345
|
CANCELLED: "CANCELLED",
|
|
@@ -337,3 +361,7 @@ const GetReferenceResponseFilterSensitiveLog = (obj) => ({
|
|
|
337
361
|
...obj,
|
|
338
362
|
});
|
|
339
363
|
exports.GetReferenceResponseFilterSensitiveLog = GetReferenceResponseFilterSensitiveLog;
|
|
364
|
+
const UploadReadSetPartRequestFilterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
});
|
|
367
|
+
exports.UploadReadSetPartRequestFilterSensitiveLog = UploadReadSetPartRequestFilterSensitiveLog;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListMultipartReadSetUploads = void 0;
|
|
4
|
+
const ListMultipartReadSetUploadsCommand_1 = require("../commands/ListMultipartReadSetUploadsCommand");
|
|
5
|
+
const OmicsClient_1 = require("../OmicsClient");
|
|
6
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
7
|
+
return await client.send(new ListMultipartReadSetUploadsCommand_1.ListMultipartReadSetUploadsCommand(input), ...args);
|
|
8
|
+
};
|
|
9
|
+
async function* paginateListMultipartReadSetUploads(config, input, ...additionalArguments) {
|
|
10
|
+
let token = config.startingToken || undefined;
|
|
11
|
+
let hasNext = true;
|
|
12
|
+
let page;
|
|
13
|
+
while (hasNext) {
|
|
14
|
+
input.nextToken = token;
|
|
15
|
+
input["maxResults"] = config.pageSize;
|
|
16
|
+
if (config.client instanceof OmicsClient_1.OmicsClient) {
|
|
17
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
+
}
|
|
19
|
+
else {
|
|
20
|
+
throw new Error("Invalid client, expected Omics | OmicsClient");
|
|
21
|
+
}
|
|
22
|
+
yield page;
|
|
23
|
+
const prevToken = token;
|
|
24
|
+
token = page.nextToken;
|
|
25
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
+
}
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
exports.paginateListMultipartReadSetUploads = paginateListMultipartReadSetUploads;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListReadSetUploadParts = void 0;
|
|
4
|
+
const ListReadSetUploadPartsCommand_1 = require("../commands/ListReadSetUploadPartsCommand");
|
|
5
|
+
const OmicsClient_1 = require("../OmicsClient");
|
|
6
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
7
|
+
return await client.send(new ListReadSetUploadPartsCommand_1.ListReadSetUploadPartsCommand(input), ...args);
|
|
8
|
+
};
|
|
9
|
+
async function* paginateListReadSetUploadParts(config, input, ...additionalArguments) {
|
|
10
|
+
let token = config.startingToken || undefined;
|
|
11
|
+
let hasNext = true;
|
|
12
|
+
let page;
|
|
13
|
+
while (hasNext) {
|
|
14
|
+
input.nextToken = token;
|
|
15
|
+
input["maxResults"] = config.pageSize;
|
|
16
|
+
if (config.client instanceof OmicsClient_1.OmicsClient) {
|
|
17
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
+
}
|
|
19
|
+
else {
|
|
20
|
+
throw new Error("Invalid client, expected Omics | OmicsClient");
|
|
21
|
+
}
|
|
22
|
+
yield page;
|
|
23
|
+
const prevToken = token;
|
|
24
|
+
token = page.nextToken;
|
|
25
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
+
}
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
exports.paginateListReadSetUploadParts = paginateListReadSetUploadParts;
|
|
@@ -4,9 +4,11 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
5
|
tslib_1.__exportStar(require("./ListAnnotationImportJobsPaginator"), exports);
|
|
6
6
|
tslib_1.__exportStar(require("./ListAnnotationStoresPaginator"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./ListMultipartReadSetUploadsPaginator"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./ListReadSetActivationJobsPaginator"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./ListReadSetExportJobsPaginator"), exports);
|
|
9
10
|
tslib_1.__exportStar(require("./ListReadSetImportJobsPaginator"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./ListReadSetUploadPartsPaginator"), exports);
|
|
10
12
|
tslib_1.__exportStar(require("./ListReadSetsPaginator"), exports);
|
|
11
13
|
tslib_1.__exportStar(require("./ListReferenceImportJobsPaginator"), exports);
|
|
12
14
|
tslib_1.__exportStar(require("./ListReferenceStoresPaginator"), exports);
|