clarifai-web-grpc 10.11.2 → 11.0.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/VERSION +1 -1
- package/dist/cjs/proto/clarifai/api/resources_pb.js +2132 -6
- package/dist/cjs/proto/clarifai/api/service_pb.js +47 -1
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +6 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +2132 -6
- package/dist/esm/proto/clarifai/api/service_pb.js +47 -1
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +6 -0
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +335 -0
- package/proto/clarifai/api/resources_pb.js +2664 -6
- package/proto/clarifai/api/service_pb.d.ts +8 -0
- package/proto/clarifai/api/service_pb.js +61 -1
- package/proto/clarifai/api/status/status_code_pb.d.ts +6 -0
- package/proto/clarifai/api/status/status_code_pb.js +6 -0
|
@@ -42336,7 +42336,9 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
42336
42336
|
proto.clarifai.api.MultiLogEntryResponse.toObject = function (includeInstance, msg) {
|
|
42337
42337
|
var f, obj = {
|
|
42338
42338
|
status: (f = msg.getStatus()) && proto_clarifai_api_status_status_pb.Status.toObject(includeInstance, f),
|
|
42339
|
-
logEntriesList: jspb.Message.toObjectList(msg.getLogEntriesList(), proto_clarifai_api_resources_pb.LogEntry.toObject, includeInstance)
|
|
42339
|
+
logEntriesList: jspb.Message.toObjectList(msg.getLogEntriesList(), proto_clarifai_api_resources_pb.LogEntry.toObject, includeInstance),
|
|
42340
|
+
page: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
42341
|
+
perPage: jspb.Message.getFieldWithDefault(msg, 5, 0)
|
|
42340
42342
|
};
|
|
42341
42343
|
if (includeInstance) {
|
|
42342
42344
|
obj.$jspbMessageInstance = msg;
|
|
@@ -42378,6 +42380,14 @@ proto.clarifai.api.MultiLogEntryResponse.deserializeBinaryFromReader = function
|
|
|
42378
42380
|
reader.readMessage(value, proto_clarifai_api_resources_pb.LogEntry.deserializeBinaryFromReader);
|
|
42379
42381
|
msg.addLogEntries(value);
|
|
42380
42382
|
break;
|
|
42383
|
+
case 4:
|
|
42384
|
+
var value = /** @type {number} */ (reader.readUint32());
|
|
42385
|
+
msg.setPage(value);
|
|
42386
|
+
break;
|
|
42387
|
+
case 5:
|
|
42388
|
+
var value = /** @type {number} */ (reader.readUint32());
|
|
42389
|
+
msg.setPerPage(value);
|
|
42390
|
+
break;
|
|
42381
42391
|
default:
|
|
42382
42392
|
reader.skipField();
|
|
42383
42393
|
break;
|
|
@@ -42411,6 +42421,14 @@ proto.clarifai.api.MultiLogEntryResponse.serializeBinaryToWriter = function (mes
|
|
|
42411
42421
|
if (f.length > 0) {
|
|
42412
42422
|
writer.writeRepeatedMessage(2, f, proto_clarifai_api_resources_pb.LogEntry.serializeBinaryToWriter);
|
|
42413
42423
|
}
|
|
42424
|
+
f = message.getPage();
|
|
42425
|
+
if (f !== 0) {
|
|
42426
|
+
writer.writeUint32(4, f);
|
|
42427
|
+
}
|
|
42428
|
+
f = message.getPerPage();
|
|
42429
|
+
if (f !== 0) {
|
|
42430
|
+
writer.writeUint32(5, f);
|
|
42431
|
+
}
|
|
42414
42432
|
};
|
|
42415
42433
|
/**
|
|
42416
42434
|
* optional status.Status status = 1;
|
|
@@ -42469,6 +42487,34 @@ proto.clarifai.api.MultiLogEntryResponse.prototype.addLogEntries = function (opt
|
|
|
42469
42487
|
proto.clarifai.api.MultiLogEntryResponse.prototype.clearLogEntriesList = function () {
|
|
42470
42488
|
return this.setLogEntriesList([]);
|
|
42471
42489
|
};
|
|
42490
|
+
/**
|
|
42491
|
+
* optional uint32 page = 4;
|
|
42492
|
+
* @return {number}
|
|
42493
|
+
*/
|
|
42494
|
+
proto.clarifai.api.MultiLogEntryResponse.prototype.getPage = function () {
|
|
42495
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
|
|
42496
|
+
};
|
|
42497
|
+
/**
|
|
42498
|
+
* @param {number} value
|
|
42499
|
+
* @return {!proto.clarifai.api.MultiLogEntryResponse} returns this
|
|
42500
|
+
*/
|
|
42501
|
+
proto.clarifai.api.MultiLogEntryResponse.prototype.setPage = function (value) {
|
|
42502
|
+
return jspb.Message.setProto3IntField(this, 4, value);
|
|
42503
|
+
};
|
|
42504
|
+
/**
|
|
42505
|
+
* optional uint32 per_page = 5;
|
|
42506
|
+
* @return {number}
|
|
42507
|
+
*/
|
|
42508
|
+
proto.clarifai.api.MultiLogEntryResponse.prototype.getPerPage = function () {
|
|
42509
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
|
42510
|
+
};
|
|
42511
|
+
/**
|
|
42512
|
+
* @param {number} value
|
|
42513
|
+
* @return {!proto.clarifai.api.MultiLogEntryResponse} returns this
|
|
42514
|
+
*/
|
|
42515
|
+
proto.clarifai.api.MultiLogEntryResponse.prototype.setPerPage = function (value) {
|
|
42516
|
+
return jspb.Message.setProto3IntField(this, 5, value);
|
|
42517
|
+
};
|
|
42472
42518
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
42473
42519
|
/**
|
|
42474
42520
|
* Creates an object representation of this proto.
|
|
@@ -92,6 +92,8 @@ proto.clarifai.api.status.StatusCode = {
|
|
|
92
92
|
MODEL_DEPLOYING: 21351,
|
|
93
93
|
MODEL_QUEUED_FOR_DEPLOYMENT: 21352,
|
|
94
94
|
MODEL_NOT_DEPLOYED: 21353,
|
|
95
|
+
MODEL_BUSY_PLEASE_RETRY: 21354,
|
|
96
|
+
MODEL_LOADING: 21355,
|
|
95
97
|
MODEL_REFERENCE_INVALID_ARGUMENT: 21400,
|
|
96
98
|
MODEL_EXAMPLE_INPUT_INVALID_ARGUMENT: 21420,
|
|
97
99
|
MODEL_EXPORTED: 21500,
|
|
@@ -185,6 +187,10 @@ proto.clarifai.api.status.StatusCode = {
|
|
|
185
187
|
INSTANCE_TYPE_DOES_NOT_EXIST: 26000,
|
|
186
188
|
INSTANCE_TYPE_INVALID_ARGUMENT: 26001,
|
|
187
189
|
INSTANCE_TYPE_INVALID_REQUEST: 26002,
|
|
190
|
+
INPUT_SUCCESS: 30000,
|
|
191
|
+
INPUT_PENDING: 30001,
|
|
192
|
+
INPUT_FAILED: 30002,
|
|
193
|
+
INPUT_IN_PROGRESS: 30003,
|
|
188
194
|
INPUT_DOWNLOAD_SUCCESS: 30000,
|
|
189
195
|
INPUT_DOWNLOAD_PENDING: 30001,
|
|
190
196
|
INPUT_DOWNLOAD_FAILED: 30002,
|
package/package.json
CHANGED
|
@@ -1703,6 +1703,11 @@ export class Image extends jspb.Message {
|
|
|
1703
1703
|
getHostedImageInfoMap(): jspb.Map<string, ImageInfo>;
|
|
1704
1704
|
clearHostedImageInfoMap(): Image;
|
|
1705
1705
|
|
|
1706
|
+
getDecodedBytes(): Uint8Array | string;
|
|
1707
|
+
getDecodedBytes_asU8(): Uint8Array;
|
|
1708
|
+
getDecodedBytes_asB64(): string;
|
|
1709
|
+
setDecodedBytes(value: Uint8Array | string): Image;
|
|
1710
|
+
|
|
1706
1711
|
serializeBinary(): Uint8Array;
|
|
1707
1712
|
toObject(includeInstance?: boolean): Image.AsObject;
|
|
1708
1713
|
static toObject(includeInstance: boolean, msg: Image): Image.AsObject;
|
|
@@ -1719,6 +1724,7 @@ export namespace Image {
|
|
|
1719
1724
|
hosted?: HostedURL.AsObject,
|
|
1720
1725
|
imageInfo?: ImageInfo.AsObject,
|
|
1721
1726
|
hostedImageInfoMap: Array<[string, ImageInfo.AsObject]>,
|
|
1727
|
+
decodedBytes: Uint8Array | string,
|
|
1722
1728
|
}
|
|
1723
1729
|
}
|
|
1724
1730
|
|
|
@@ -1735,6 +1741,9 @@ export class ImageInfo extends jspb.Message {
|
|
|
1735
1741
|
getColorMode(): string;
|
|
1736
1742
|
setColorMode(value: string): ImageInfo;
|
|
1737
1743
|
|
|
1744
|
+
getMode(): string;
|
|
1745
|
+
setMode(value: string): ImageInfo;
|
|
1746
|
+
|
|
1738
1747
|
serializeBinary(): Uint8Array;
|
|
1739
1748
|
toObject(includeInstance?: boolean): ImageInfo.AsObject;
|
|
1740
1749
|
static toObject(includeInstance: boolean, msg: ImageInfo): ImageInfo.AsObject;
|
|
@@ -1749,6 +1758,7 @@ export namespace ImageInfo {
|
|
|
1749
1758
|
height: number,
|
|
1750
1759
|
format: string,
|
|
1751
1760
|
colorMode: string,
|
|
1761
|
+
mode: string,
|
|
1752
1762
|
}
|
|
1753
1763
|
}
|
|
1754
1764
|
|
|
@@ -6403,6 +6413,11 @@ export class TaskReviewMetrics extends jspb.Message {
|
|
|
6403
6413
|
getInputsCountEstimated(): number;
|
|
6404
6414
|
setInputsCountEstimated(value: number): TaskReviewMetrics;
|
|
6405
6415
|
|
|
6416
|
+
getInputsCountEstimatedPerReviewerList(): Array<number>;
|
|
6417
|
+
setInputsCountEstimatedPerReviewerList(value: Array<number>): TaskReviewMetrics;
|
|
6418
|
+
clearInputsCountEstimatedPerReviewerList(): TaskReviewMetrics;
|
|
6419
|
+
addInputsCountEstimatedPerReviewer(value: number, index?: number): TaskReviewMetrics;
|
|
6420
|
+
|
|
6406
6421
|
getInputsPercentEstimated(): number;
|
|
6407
6422
|
setInputsPercentEstimated(value: number): TaskReviewMetrics;
|
|
6408
6423
|
|
|
@@ -6417,6 +6432,7 @@ export class TaskReviewMetrics extends jspb.Message {
|
|
|
6417
6432
|
export namespace TaskReviewMetrics {
|
|
6418
6433
|
export type AsObject = {
|
|
6419
6434
|
inputsCountEstimated: number,
|
|
6435
|
+
inputsCountEstimatedPerReviewerList: Array<number>,
|
|
6420
6436
|
inputsPercentEstimated: number,
|
|
6421
6437
|
}
|
|
6422
6438
|
}
|
|
@@ -7251,6 +7267,11 @@ export class BulkOperation extends jspb.Message {
|
|
|
7251
7267
|
hasDataset(): boolean;
|
|
7252
7268
|
clearDataset(): BulkOperation;
|
|
7253
7269
|
|
|
7270
|
+
getAnnotationSearch(): Search | undefined;
|
|
7271
|
+
setAnnotationSearch(value?: Search): BulkOperation;
|
|
7272
|
+
hasAnnotationSearch(): boolean;
|
|
7273
|
+
clearAnnotationSearch(): BulkOperation;
|
|
7274
|
+
|
|
7254
7275
|
getOperation(): Operation | undefined;
|
|
7255
7276
|
setOperation(value?: Operation): BulkOperation;
|
|
7256
7277
|
hasOperation(): boolean;
|
|
@@ -7284,6 +7305,8 @@ export class BulkOperation extends jspb.Message {
|
|
|
7284
7305
|
|
|
7285
7306
|
getInputSourceCase(): BulkOperation.InputSourceCase;
|
|
7286
7307
|
|
|
7308
|
+
getAnnotationSourceCase(): BulkOperation.AnnotationSourceCase;
|
|
7309
|
+
|
|
7287
7310
|
serializeBinary(): Uint8Array;
|
|
7288
7311
|
toObject(includeInstance?: boolean): BulkOperation.AsObject;
|
|
7289
7312
|
static toObject(includeInstance: boolean, msg: BulkOperation): BulkOperation.AsObject;
|
|
@@ -7298,6 +7321,7 @@ export namespace BulkOperation {
|
|
|
7298
7321
|
inputIds?: InputIDs.AsObject,
|
|
7299
7322
|
search?: Search.AsObject,
|
|
7300
7323
|
dataset?: Dataset.AsObject,
|
|
7324
|
+
annotationSearch?: Search.AsObject,
|
|
7301
7325
|
operation?: Operation.AsObject,
|
|
7302
7326
|
appId: string,
|
|
7303
7327
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
@@ -7313,6 +7337,11 @@ export namespace BulkOperation {
|
|
|
7313
7337
|
SEARCH = 10,
|
|
7314
7338
|
DATASET = 11,
|
|
7315
7339
|
}
|
|
7340
|
+
|
|
7341
|
+
export enum AnnotationSourceCase {
|
|
7342
|
+
ANNOTATION_SOURCE_NOT_SET = 0,
|
|
7343
|
+
ANNOTATION_SEARCH = 12,
|
|
7344
|
+
}
|
|
7316
7345
|
}
|
|
7317
7346
|
|
|
7318
7347
|
export class InputIDs extends jspb.Message {
|
|
@@ -7403,8 +7432,15 @@ export class Operation extends jspb.Message {
|
|
|
7403
7432
|
hasSplitIntoDatasets(): boolean;
|
|
7404
7433
|
clearSplitIntoDatasets(): Operation;
|
|
7405
7434
|
|
|
7435
|
+
getDeleteAnnotations(): DeleteAnnotations | undefined;
|
|
7436
|
+
setDeleteAnnotations(value?: DeleteAnnotations): Operation;
|
|
7437
|
+
hasDeleteAnnotations(): boolean;
|
|
7438
|
+
clearDeleteAnnotations(): Operation;
|
|
7439
|
+
|
|
7406
7440
|
getOperationCase(): Operation.OperationCase;
|
|
7407
7441
|
|
|
7442
|
+
getAnnotationOperationCase(): Operation.AnnotationOperationCase;
|
|
7443
|
+
|
|
7408
7444
|
serializeBinary(): Uint8Array;
|
|
7409
7445
|
toObject(includeInstance?: boolean): Operation.AsObject;
|
|
7410
7446
|
static toObject(includeInstance: boolean, msg: Operation): Operation.AsObject;
|
|
@@ -7424,6 +7460,7 @@ export namespace Operation {
|
|
|
7424
7460
|
deleteFromDataset?: DeleteFromDataset.AsObject,
|
|
7425
7461
|
addToDataset?: AddToDataset.AsObject,
|
|
7426
7462
|
splitIntoDatasets?: SplitIntoDatasets.AsObject,
|
|
7463
|
+
deleteAnnotations?: DeleteAnnotations.AsObject,
|
|
7427
7464
|
}
|
|
7428
7465
|
|
|
7429
7466
|
export enum OperationCase {
|
|
@@ -7438,6 +7475,11 @@ export namespace Operation {
|
|
|
7438
7475
|
ADD_TO_DATASET = 8,
|
|
7439
7476
|
SPLIT_INTO_DATASETS = 9,
|
|
7440
7477
|
}
|
|
7478
|
+
|
|
7479
|
+
export enum AnnotationOperationCase {
|
|
7480
|
+
ANNOTATION_OPERATION_NOT_SET = 0,
|
|
7481
|
+
DELETE_ANNOTATIONS = 10,
|
|
7482
|
+
}
|
|
7441
7483
|
}
|
|
7442
7484
|
|
|
7443
7485
|
export class AddConcepts extends jspb.Message {
|
|
@@ -7656,6 +7698,20 @@ export namespace DatasetSplit {
|
|
|
7656
7698
|
}
|
|
7657
7699
|
}
|
|
7658
7700
|
|
|
7701
|
+
export class DeleteAnnotations extends jspb.Message {
|
|
7702
|
+
serializeBinary(): Uint8Array;
|
|
7703
|
+
toObject(includeInstance?: boolean): DeleteAnnotations.AsObject;
|
|
7704
|
+
static toObject(includeInstance: boolean, msg: DeleteAnnotations): DeleteAnnotations.AsObject;
|
|
7705
|
+
static serializeBinaryToWriter(message: DeleteAnnotations, writer: jspb.BinaryWriter): void;
|
|
7706
|
+
static deserializeBinary(bytes: Uint8Array): DeleteAnnotations;
|
|
7707
|
+
static deserializeBinaryFromReader(message: DeleteAnnotations, reader: jspb.BinaryReader): DeleteAnnotations;
|
|
7708
|
+
}
|
|
7709
|
+
|
|
7710
|
+
export namespace DeleteAnnotations {
|
|
7711
|
+
export type AsObject = {
|
|
7712
|
+
}
|
|
7713
|
+
}
|
|
7714
|
+
|
|
7659
7715
|
export class InputsAddJob extends jspb.Message {
|
|
7660
7716
|
getId(): string;
|
|
7661
7717
|
setId(value: string): InputsAddJob;
|
|
@@ -9012,6 +9068,282 @@ export namespace ComputeSourceMetadata {
|
|
|
9012
9068
|
}
|
|
9013
9069
|
}
|
|
9014
9070
|
|
|
9071
|
+
export class ArgoOrchestrationSpec extends jspb.Message {
|
|
9072
|
+
getId(): string;
|
|
9073
|
+
setId(value: string): ArgoOrchestrationSpec;
|
|
9074
|
+
|
|
9075
|
+
getApiVersion(): string;
|
|
9076
|
+
setApiVersion(value: string): ArgoOrchestrationSpec;
|
|
9077
|
+
|
|
9078
|
+
getSpecJson(): string;
|
|
9079
|
+
setSpecJson(value: string): ArgoOrchestrationSpec;
|
|
9080
|
+
|
|
9081
|
+
serializeBinary(): Uint8Array;
|
|
9082
|
+
toObject(includeInstance?: boolean): ArgoOrchestrationSpec.AsObject;
|
|
9083
|
+
static toObject(includeInstance: boolean, msg: ArgoOrchestrationSpec): ArgoOrchestrationSpec.AsObject;
|
|
9084
|
+
static serializeBinaryToWriter(message: ArgoOrchestrationSpec, writer: jspb.BinaryWriter): void;
|
|
9085
|
+
static deserializeBinary(bytes: Uint8Array): ArgoOrchestrationSpec;
|
|
9086
|
+
static deserializeBinaryFromReader(message: ArgoOrchestrationSpec, reader: jspb.BinaryReader): ArgoOrchestrationSpec;
|
|
9087
|
+
}
|
|
9088
|
+
|
|
9089
|
+
export namespace ArgoOrchestrationSpec {
|
|
9090
|
+
export type AsObject = {
|
|
9091
|
+
id: string,
|
|
9092
|
+
apiVersion: string,
|
|
9093
|
+
specJson: string,
|
|
9094
|
+
}
|
|
9095
|
+
}
|
|
9096
|
+
|
|
9097
|
+
export class OrchestrationSpec extends jspb.Message {
|
|
9098
|
+
getArgoOrchestrationSpec(): ArgoOrchestrationSpec | undefined;
|
|
9099
|
+
setArgoOrchestrationSpec(value?: ArgoOrchestrationSpec): OrchestrationSpec;
|
|
9100
|
+
hasArgoOrchestrationSpec(): boolean;
|
|
9101
|
+
clearArgoOrchestrationSpec(): OrchestrationSpec;
|
|
9102
|
+
|
|
9103
|
+
getOrchestrationCase(): OrchestrationSpec.OrchestrationCase;
|
|
9104
|
+
|
|
9105
|
+
serializeBinary(): Uint8Array;
|
|
9106
|
+
toObject(includeInstance?: boolean): OrchestrationSpec.AsObject;
|
|
9107
|
+
static toObject(includeInstance: boolean, msg: OrchestrationSpec): OrchestrationSpec.AsObject;
|
|
9108
|
+
static serializeBinaryToWriter(message: OrchestrationSpec, writer: jspb.BinaryWriter): void;
|
|
9109
|
+
static deserializeBinary(bytes: Uint8Array): OrchestrationSpec;
|
|
9110
|
+
static deserializeBinaryFromReader(message: OrchestrationSpec, reader: jspb.BinaryReader): OrchestrationSpec;
|
|
9111
|
+
}
|
|
9112
|
+
|
|
9113
|
+
export namespace OrchestrationSpec {
|
|
9114
|
+
export type AsObject = {
|
|
9115
|
+
argoOrchestrationSpec?: ArgoOrchestrationSpec.AsObject,
|
|
9116
|
+
}
|
|
9117
|
+
|
|
9118
|
+
export enum OrchestrationCase {
|
|
9119
|
+
ORCHESTRATION_NOT_SET = 0,
|
|
9120
|
+
ARGO_ORCHESTRATION_SPEC = 1,
|
|
9121
|
+
}
|
|
9122
|
+
}
|
|
9123
|
+
|
|
9124
|
+
export class Pipeline extends jspb.Message {
|
|
9125
|
+
getId(): string;
|
|
9126
|
+
setId(value: string): Pipeline;
|
|
9127
|
+
|
|
9128
|
+
getUserId(): string;
|
|
9129
|
+
setUserId(value: string): Pipeline;
|
|
9130
|
+
|
|
9131
|
+
getAppId(): string;
|
|
9132
|
+
setAppId(value: string): Pipeline;
|
|
9133
|
+
|
|
9134
|
+
getOrchestrationSpec(): OrchestrationSpec | undefined;
|
|
9135
|
+
setOrchestrationSpec(value?: OrchestrationSpec): Pipeline;
|
|
9136
|
+
hasOrchestrationSpec(): boolean;
|
|
9137
|
+
clearOrchestrationSpec(): Pipeline;
|
|
9138
|
+
|
|
9139
|
+
getPipelineVersion(): PipelineVersion | undefined;
|
|
9140
|
+
setPipelineVersion(value?: PipelineVersion): Pipeline;
|
|
9141
|
+
hasPipelineVersion(): boolean;
|
|
9142
|
+
clearPipelineVersion(): Pipeline;
|
|
9143
|
+
|
|
9144
|
+
getDescription(): string;
|
|
9145
|
+
setDescription(value: string): Pipeline;
|
|
9146
|
+
|
|
9147
|
+
getVisibility(): Visibility | undefined;
|
|
9148
|
+
setVisibility(value?: Visibility): Pipeline;
|
|
9149
|
+
hasVisibility(): boolean;
|
|
9150
|
+
clearVisibility(): Pipeline;
|
|
9151
|
+
|
|
9152
|
+
getNotes(): string;
|
|
9153
|
+
setNotes(value: string): Pipeline;
|
|
9154
|
+
|
|
9155
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
9156
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): Pipeline;
|
|
9157
|
+
hasMetadata(): boolean;
|
|
9158
|
+
clearMetadata(): Pipeline;
|
|
9159
|
+
|
|
9160
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9161
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Pipeline;
|
|
9162
|
+
hasCreatedAt(): boolean;
|
|
9163
|
+
clearCreatedAt(): Pipeline;
|
|
9164
|
+
|
|
9165
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9166
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Pipeline;
|
|
9167
|
+
hasModifiedAt(): boolean;
|
|
9168
|
+
clearModifiedAt(): Pipeline;
|
|
9169
|
+
|
|
9170
|
+
serializeBinary(): Uint8Array;
|
|
9171
|
+
toObject(includeInstance?: boolean): Pipeline.AsObject;
|
|
9172
|
+
static toObject(includeInstance: boolean, msg: Pipeline): Pipeline.AsObject;
|
|
9173
|
+
static serializeBinaryToWriter(message: Pipeline, writer: jspb.BinaryWriter): void;
|
|
9174
|
+
static deserializeBinary(bytes: Uint8Array): Pipeline;
|
|
9175
|
+
static deserializeBinaryFromReader(message: Pipeline, reader: jspb.BinaryReader): Pipeline;
|
|
9176
|
+
}
|
|
9177
|
+
|
|
9178
|
+
export namespace Pipeline {
|
|
9179
|
+
export type AsObject = {
|
|
9180
|
+
id: string,
|
|
9181
|
+
userId: string,
|
|
9182
|
+
appId: string,
|
|
9183
|
+
orchestrationSpec?: OrchestrationSpec.AsObject,
|
|
9184
|
+
pipelineVersion?: PipelineVersion.AsObject,
|
|
9185
|
+
description: string,
|
|
9186
|
+
visibility?: Visibility.AsObject,
|
|
9187
|
+
notes: string,
|
|
9188
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
9189
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9190
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9191
|
+
}
|
|
9192
|
+
}
|
|
9193
|
+
|
|
9194
|
+
export class PipelineVersion extends jspb.Message {
|
|
9195
|
+
getId(): string;
|
|
9196
|
+
setId(value: string): PipelineVersion;
|
|
9197
|
+
|
|
9198
|
+
getAppId(): string;
|
|
9199
|
+
setAppId(value: string): PipelineVersion;
|
|
9200
|
+
|
|
9201
|
+
getUserId(): string;
|
|
9202
|
+
setUserId(value: string): PipelineVersion;
|
|
9203
|
+
|
|
9204
|
+
getOrchestrationSpec(): OrchestrationSpec | undefined;
|
|
9205
|
+
setOrchestrationSpec(value?: OrchestrationSpec): PipelineVersion;
|
|
9206
|
+
hasOrchestrationSpec(): boolean;
|
|
9207
|
+
clearOrchestrationSpec(): PipelineVersion;
|
|
9208
|
+
|
|
9209
|
+
getPipelineId(): string;
|
|
9210
|
+
setPipelineId(value: string): PipelineVersion;
|
|
9211
|
+
|
|
9212
|
+
getDescription(): string;
|
|
9213
|
+
setDescription(value: string): PipelineVersion;
|
|
9214
|
+
|
|
9215
|
+
getVisibility(): Visibility | undefined;
|
|
9216
|
+
setVisibility(value?: Visibility): PipelineVersion;
|
|
9217
|
+
hasVisibility(): boolean;
|
|
9218
|
+
clearVisibility(): PipelineVersion;
|
|
9219
|
+
|
|
9220
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
9221
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): PipelineVersion;
|
|
9222
|
+
hasMetadata(): boolean;
|
|
9223
|
+
clearMetadata(): PipelineVersion;
|
|
9224
|
+
|
|
9225
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9226
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): PipelineVersion;
|
|
9227
|
+
hasCreatedAt(): boolean;
|
|
9228
|
+
clearCreatedAt(): PipelineVersion;
|
|
9229
|
+
|
|
9230
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9231
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): PipelineVersion;
|
|
9232
|
+
hasModifiedAt(): boolean;
|
|
9233
|
+
clearModifiedAt(): PipelineVersion;
|
|
9234
|
+
|
|
9235
|
+
serializeBinary(): Uint8Array;
|
|
9236
|
+
toObject(includeInstance?: boolean): PipelineVersion.AsObject;
|
|
9237
|
+
static toObject(includeInstance: boolean, msg: PipelineVersion): PipelineVersion.AsObject;
|
|
9238
|
+
static serializeBinaryToWriter(message: PipelineVersion, writer: jspb.BinaryWriter): void;
|
|
9239
|
+
static deserializeBinary(bytes: Uint8Array): PipelineVersion;
|
|
9240
|
+
static deserializeBinaryFromReader(message: PipelineVersion, reader: jspb.BinaryReader): PipelineVersion;
|
|
9241
|
+
}
|
|
9242
|
+
|
|
9243
|
+
export namespace PipelineVersion {
|
|
9244
|
+
export type AsObject = {
|
|
9245
|
+
id: string,
|
|
9246
|
+
appId: string,
|
|
9247
|
+
userId: string,
|
|
9248
|
+
orchestrationSpec?: OrchestrationSpec.AsObject,
|
|
9249
|
+
pipelineId: string,
|
|
9250
|
+
description: string,
|
|
9251
|
+
visibility?: Visibility.AsObject,
|
|
9252
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
9253
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9254
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9255
|
+
}
|
|
9256
|
+
}
|
|
9257
|
+
|
|
9258
|
+
export class OrchestrationStatus extends jspb.Message {
|
|
9259
|
+
getArgoStatus(): ArgoOrchestrationStatus | undefined;
|
|
9260
|
+
setArgoStatus(value?: ArgoOrchestrationStatus): OrchestrationStatus;
|
|
9261
|
+
hasArgoStatus(): boolean;
|
|
9262
|
+
clearArgoStatus(): OrchestrationStatus;
|
|
9263
|
+
|
|
9264
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
9265
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): OrchestrationStatus;
|
|
9266
|
+
hasStatus(): boolean;
|
|
9267
|
+
clearStatus(): OrchestrationStatus;
|
|
9268
|
+
|
|
9269
|
+
getStatusDetailsCase(): OrchestrationStatus.StatusDetailsCase;
|
|
9270
|
+
|
|
9271
|
+
serializeBinary(): Uint8Array;
|
|
9272
|
+
toObject(includeInstance?: boolean): OrchestrationStatus.AsObject;
|
|
9273
|
+
static toObject(includeInstance: boolean, msg: OrchestrationStatus): OrchestrationStatus.AsObject;
|
|
9274
|
+
static serializeBinaryToWriter(message: OrchestrationStatus, writer: jspb.BinaryWriter): void;
|
|
9275
|
+
static deserializeBinary(bytes: Uint8Array): OrchestrationStatus;
|
|
9276
|
+
static deserializeBinaryFromReader(message: OrchestrationStatus, reader: jspb.BinaryReader): OrchestrationStatus;
|
|
9277
|
+
}
|
|
9278
|
+
|
|
9279
|
+
export namespace OrchestrationStatus {
|
|
9280
|
+
export type AsObject = {
|
|
9281
|
+
argoStatus?: ArgoOrchestrationStatus.AsObject,
|
|
9282
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
9283
|
+
}
|
|
9284
|
+
|
|
9285
|
+
export enum StatusDetailsCase {
|
|
9286
|
+
STATUS_DETAILS_NOT_SET = 0,
|
|
9287
|
+
ARGO_STATUS = 1,
|
|
9288
|
+
}
|
|
9289
|
+
}
|
|
9290
|
+
|
|
9291
|
+
export class ArgoOrchestrationStatus extends jspb.Message {
|
|
9292
|
+
getStatus(): Uint8Array | string;
|
|
9293
|
+
getStatus_asU8(): Uint8Array;
|
|
9294
|
+
getStatus_asB64(): string;
|
|
9295
|
+
setStatus(value: Uint8Array | string): ArgoOrchestrationStatus;
|
|
9296
|
+
|
|
9297
|
+
serializeBinary(): Uint8Array;
|
|
9298
|
+
toObject(includeInstance?: boolean): ArgoOrchestrationStatus.AsObject;
|
|
9299
|
+
static toObject(includeInstance: boolean, msg: ArgoOrchestrationStatus): ArgoOrchestrationStatus.AsObject;
|
|
9300
|
+
static serializeBinaryToWriter(message: ArgoOrchestrationStatus, writer: jspb.BinaryWriter): void;
|
|
9301
|
+
static deserializeBinary(bytes: Uint8Array): ArgoOrchestrationStatus;
|
|
9302
|
+
static deserializeBinaryFromReader(message: ArgoOrchestrationStatus, reader: jspb.BinaryReader): ArgoOrchestrationStatus;
|
|
9303
|
+
}
|
|
9304
|
+
|
|
9305
|
+
export namespace ArgoOrchestrationStatus {
|
|
9306
|
+
export type AsObject = {
|
|
9307
|
+
status: Uint8Array | string,
|
|
9308
|
+
}
|
|
9309
|
+
}
|
|
9310
|
+
|
|
9311
|
+
export class PipelineRun extends jspb.Message {
|
|
9312
|
+
getId(): string;
|
|
9313
|
+
setId(value: string): PipelineRun;
|
|
9314
|
+
|
|
9315
|
+
getPipelineVersion(): PipelineVersion | undefined;
|
|
9316
|
+
setPipelineVersion(value?: PipelineVersion): PipelineRun;
|
|
9317
|
+
hasPipelineVersion(): boolean;
|
|
9318
|
+
clearPipelineVersion(): PipelineRun;
|
|
9319
|
+
|
|
9320
|
+
getNodepoolsList(): Array<Nodepool>;
|
|
9321
|
+
setNodepoolsList(value: Array<Nodepool>): PipelineRun;
|
|
9322
|
+
clearNodepoolsList(): PipelineRun;
|
|
9323
|
+
addNodepools(value?: Nodepool, index?: number): Nodepool;
|
|
9324
|
+
|
|
9325
|
+
getOrchestrationStatus(): OrchestrationStatus | undefined;
|
|
9326
|
+
setOrchestrationStatus(value?: OrchestrationStatus): PipelineRun;
|
|
9327
|
+
hasOrchestrationStatus(): boolean;
|
|
9328
|
+
clearOrchestrationStatus(): PipelineRun;
|
|
9329
|
+
|
|
9330
|
+
serializeBinary(): Uint8Array;
|
|
9331
|
+
toObject(includeInstance?: boolean): PipelineRun.AsObject;
|
|
9332
|
+
static toObject(includeInstance: boolean, msg: PipelineRun): PipelineRun.AsObject;
|
|
9333
|
+
static serializeBinaryToWriter(message: PipelineRun, writer: jspb.BinaryWriter): void;
|
|
9334
|
+
static deserializeBinary(bytes: Uint8Array): PipelineRun;
|
|
9335
|
+
static deserializeBinaryFromReader(message: PipelineRun, reader: jspb.BinaryReader): PipelineRun;
|
|
9336
|
+
}
|
|
9337
|
+
|
|
9338
|
+
export namespace PipelineRun {
|
|
9339
|
+
export type AsObject = {
|
|
9340
|
+
id: string,
|
|
9341
|
+
pipelineVersion?: PipelineVersion.AsObject,
|
|
9342
|
+
nodepoolsList: Array<Nodepool.AsObject>,
|
|
9343
|
+
orchestrationStatus?: OrchestrationStatus.AsObject,
|
|
9344
|
+
}
|
|
9345
|
+
}
|
|
9346
|
+
|
|
9015
9347
|
export enum WorkflowModelUseCase {
|
|
9016
9348
|
WORKFLOW_MODEL_USE_CASE_NOT_SET = 0,
|
|
9017
9349
|
CLASSIFICATION = 1,
|
|
@@ -9168,6 +9500,9 @@ export enum EventType {
|
|
|
9168
9500
|
WORKFLOW_VERSION_CREATE = 403,
|
|
9169
9501
|
WORKFLOW_VERSION_UPDATE = 404,
|
|
9170
9502
|
WORKFLOW_VERSION_DELETE = 405,
|
|
9503
|
+
APPLICATION_CREATE = 600,
|
|
9504
|
+
APPLICATION_UPDATE = 601,
|
|
9505
|
+
APPLICATION_DELETE = 602,
|
|
9171
9506
|
COLLABORATOR_ADD = 700,
|
|
9172
9507
|
COLLABORATOR_UPDATE = 701,
|
|
9173
9508
|
COLLABORATOR_REMOVE = 702,
|