clarifai-web-grpc 11.3.1 → 11.3.3
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 +412 -105
- package/dist/cjs/proto/clarifai/api/service_pb.js +72 -3
- package/dist/esm/proto/clarifai/api/resources_pb.js +412 -105
- package/dist/esm/proto/clarifai/api/service_pb.js +72 -3
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +85 -28
- package/proto/clarifai/api/resources_pb.js +526 -116
- package/proto/clarifai/api/service_pb.d.ts +12 -0
- package/proto/clarifai/api/service_pb.js +93 -3
|
@@ -30306,7 +30306,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
30306
30306
|
modelVersionIdsList: (f = jspb.Message.getRepeatedField(msg, 28)) == null ? undefined : f,
|
|
30307
30307
|
licenseType: jspb.Message.getFieldWithDefault(msg, 29, 0),
|
|
30308
30308
|
source: jspb.Message.getFieldWithDefault(msg, 30, 0),
|
|
30309
|
-
creator: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
30309
|
+
creator: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
30310
|
+
minReplicas: jspb.Message.getFieldWithDefault(msg, 33, 0)
|
|
30310
30311
|
};
|
|
30311
30312
|
if (includeInstance) {
|
|
30312
30313
|
obj.$jspbMessageInstance = msg;
|
|
@@ -30459,6 +30460,10 @@ proto.clarifai.api.ListModelsRequest.deserializeBinaryFromReader = function (msg
|
|
|
30459
30460
|
var value = /** @type {string} */ (reader.readString());
|
|
30460
30461
|
msg.setCreator(value);
|
|
30461
30462
|
break;
|
|
30463
|
+
case 33:
|
|
30464
|
+
var value = /** @type {number} */ (reader.readUint32());
|
|
30465
|
+
msg.setMinReplicas(value);
|
|
30466
|
+
break;
|
|
30462
30467
|
default:
|
|
30463
30468
|
reader.skipField();
|
|
30464
30469
|
break;
|
|
@@ -30604,6 +30609,10 @@ proto.clarifai.api.ListModelsRequest.serializeBinaryToWriter = function (message
|
|
|
30604
30609
|
if (f.length > 0) {
|
|
30605
30610
|
writer.writeString(31, f);
|
|
30606
30611
|
}
|
|
30612
|
+
f = message.getMinReplicas();
|
|
30613
|
+
if (f !== 0) {
|
|
30614
|
+
writer.writeUint32(33, f);
|
|
30615
|
+
}
|
|
30607
30616
|
};
|
|
30608
30617
|
/**
|
|
30609
30618
|
* optional UserAppIDSet user_app_id = 1;
|
|
@@ -31214,6 +31223,20 @@ proto.clarifai.api.ListModelsRequest.prototype.getCreator = function () {
|
|
|
31214
31223
|
proto.clarifai.api.ListModelsRequest.prototype.setCreator = function (value) {
|
|
31215
31224
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
31216
31225
|
};
|
|
31226
|
+
/**
|
|
31227
|
+
* optional uint32 min_replicas = 33;
|
|
31228
|
+
* @return {number}
|
|
31229
|
+
*/
|
|
31230
|
+
proto.clarifai.api.ListModelsRequest.prototype.getMinReplicas = function () {
|
|
31231
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 33, 0));
|
|
31232
|
+
};
|
|
31233
|
+
/**
|
|
31234
|
+
* @param {number} value
|
|
31235
|
+
* @return {!proto.clarifai.api.ListModelsRequest} returns this
|
|
31236
|
+
*/
|
|
31237
|
+
proto.clarifai.api.ListModelsRequest.prototype.setMinReplicas = function (value) {
|
|
31238
|
+
return jspb.Message.setProto3IntField(this, 33, value);
|
|
31239
|
+
};
|
|
31217
31240
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
31218
31241
|
/**
|
|
31219
31242
|
* Creates an object representation of this proto.
|
|
@@ -34360,7 +34383,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
34360
34383
|
proto.clarifai.api.SingleModelResponse.toObject = function (includeInstance, msg) {
|
|
34361
34384
|
var f, obj = {
|
|
34362
34385
|
status: (f = msg.getStatus()) && proto_clarifai_api_status_status_pb.Status.toObject(includeInstance, f),
|
|
34363
|
-
model: (f = msg.getModel()) && proto_clarifai_api_resources_pb.Model.toObject(includeInstance, f)
|
|
34386
|
+
model: (f = msg.getModel()) && proto_clarifai_api_resources_pb.Model.toObject(includeInstance, f),
|
|
34387
|
+
workflowCount: jspb.Message.getFieldWithDefault(msg, 4, 0)
|
|
34364
34388
|
};
|
|
34365
34389
|
if (includeInstance) {
|
|
34366
34390
|
obj.$jspbMessageInstance = msg;
|
|
@@ -34402,6 +34426,10 @@ proto.clarifai.api.SingleModelResponse.deserializeBinaryFromReader = function (m
|
|
|
34402
34426
|
reader.readMessage(value, proto_clarifai_api_resources_pb.Model.deserializeBinaryFromReader);
|
|
34403
34427
|
msg.setModel(value);
|
|
34404
34428
|
break;
|
|
34429
|
+
case 4:
|
|
34430
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
34431
|
+
msg.setWorkflowCount(value);
|
|
34432
|
+
break;
|
|
34405
34433
|
default:
|
|
34406
34434
|
reader.skipField();
|
|
34407
34435
|
break;
|
|
@@ -34435,6 +34463,10 @@ proto.clarifai.api.SingleModelResponse.serializeBinaryToWriter = function (messa
|
|
|
34435
34463
|
if (f != null) {
|
|
34436
34464
|
writer.writeMessage(2, f, proto_clarifai_api_resources_pb.Model.serializeBinaryToWriter);
|
|
34437
34465
|
}
|
|
34466
|
+
f = message.getWorkflowCount();
|
|
34467
|
+
if (f !== 0) {
|
|
34468
|
+
writer.writeInt32(4, f);
|
|
34469
|
+
}
|
|
34438
34470
|
};
|
|
34439
34471
|
/**
|
|
34440
34472
|
* optional status.Status status = 1;
|
|
@@ -34492,6 +34524,20 @@ proto.clarifai.api.SingleModelResponse.prototype.clearModel = function () {
|
|
|
34492
34524
|
proto.clarifai.api.SingleModelResponse.prototype.hasModel = function () {
|
|
34493
34525
|
return jspb.Message.getField(this, 2) != null;
|
|
34494
34526
|
};
|
|
34527
|
+
/**
|
|
34528
|
+
* optional int32 workflow_count = 4;
|
|
34529
|
+
* @return {number}
|
|
34530
|
+
*/
|
|
34531
|
+
proto.clarifai.api.SingleModelResponse.prototype.getWorkflowCount = function () {
|
|
34532
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
|
|
34533
|
+
};
|
|
34534
|
+
/**
|
|
34535
|
+
* @param {number} value
|
|
34536
|
+
* @return {!proto.clarifai.api.SingleModelResponse} returns this
|
|
34537
|
+
*/
|
|
34538
|
+
proto.clarifai.api.SingleModelResponse.prototype.setWorkflowCount = function (value) {
|
|
34539
|
+
return jspb.Message.setProto3IntField(this, 4, value);
|
|
34540
|
+
};
|
|
34495
34541
|
/**
|
|
34496
34542
|
* List of repeated fields within this message type.
|
|
34497
34543
|
* @private {!Array<number>}
|
|
@@ -35108,7 +35154,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
35108
35154
|
sortByStatusCode: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
|
|
35109
35155
|
sortByNumInputs: jspb.Message.getBooleanFieldWithDefault(msg, 9, false),
|
|
35110
35156
|
sortByDescription: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
|
|
35111
|
-
sortByCreatedAt: jspb.Message.getBooleanFieldWithDefault(msg, 11, false)
|
|
35157
|
+
sortByCreatedAt: jspb.Message.getBooleanFieldWithDefault(msg, 11, false),
|
|
35158
|
+
minReplicas: jspb.Message.getFieldWithDefault(msg, 12, 0)
|
|
35112
35159
|
};
|
|
35113
35160
|
if (includeInstance) {
|
|
35114
35161
|
obj.$jspbMessageInstance = msg;
|
|
@@ -35185,6 +35232,10 @@ proto.clarifai.api.ListModelVersionsRequest.deserializeBinaryFromReader = functi
|
|
|
35185
35232
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
35186
35233
|
msg.setSortByCreatedAt(value);
|
|
35187
35234
|
break;
|
|
35235
|
+
case 12:
|
|
35236
|
+
var value = /** @type {number} */ (reader.readUint32());
|
|
35237
|
+
msg.setMinReplicas(value);
|
|
35238
|
+
break;
|
|
35188
35239
|
default:
|
|
35189
35240
|
reader.skipField();
|
|
35190
35241
|
break;
|
|
@@ -35254,6 +35305,10 @@ proto.clarifai.api.ListModelVersionsRequest.serializeBinaryToWriter = function (
|
|
|
35254
35305
|
if (f != null) {
|
|
35255
35306
|
writer.writeBool(11, f);
|
|
35256
35307
|
}
|
|
35308
|
+
f = message.getMinReplicas();
|
|
35309
|
+
if (f !== 0) {
|
|
35310
|
+
writer.writeUint32(12, f);
|
|
35311
|
+
}
|
|
35257
35312
|
};
|
|
35258
35313
|
/**
|
|
35259
35314
|
* optional UserAppIDSet user_app_id = 1;
|
|
@@ -35494,6 +35549,20 @@ proto.clarifai.api.ListModelVersionsRequest.prototype.clearSortByCreatedAt = fun
|
|
|
35494
35549
|
proto.clarifai.api.ListModelVersionsRequest.prototype.hasSortByCreatedAt = function () {
|
|
35495
35550
|
return jspb.Message.getField(this, 11) != null;
|
|
35496
35551
|
};
|
|
35552
|
+
/**
|
|
35553
|
+
* optional uint32 min_replicas = 12;
|
|
35554
|
+
* @return {number}
|
|
35555
|
+
*/
|
|
35556
|
+
proto.clarifai.api.ListModelVersionsRequest.prototype.getMinReplicas = function () {
|
|
35557
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
35558
|
+
};
|
|
35559
|
+
/**
|
|
35560
|
+
* @param {number} value
|
|
35561
|
+
* @return {!proto.clarifai.api.ListModelVersionsRequest} returns this
|
|
35562
|
+
*/
|
|
35563
|
+
proto.clarifai.api.ListModelVersionsRequest.prototype.setMinReplicas = function (value) {
|
|
35564
|
+
return jspb.Message.setProto3IntField(this, 12, value);
|
|
35565
|
+
};
|
|
35497
35566
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
35498
35567
|
/**
|
|
35499
35568
|
* Creates an object representation of this proto.
|
package/package.json
CHANGED
|
@@ -2707,6 +2707,11 @@ export class Model extends jspb.Message {
|
|
|
2707
2707
|
getBillingType(): Model.BillingType;
|
|
2708
2708
|
setBillingType(value: Model.BillingType): Model;
|
|
2709
2709
|
|
|
2710
|
+
getFeaturedOrder(): google_protobuf_wrappers_pb.Int32Value | undefined;
|
|
2711
|
+
setFeaturedOrder(value?: google_protobuf_wrappers_pb.Int32Value): Model;
|
|
2712
|
+
hasFeaturedOrder(): boolean;
|
|
2713
|
+
clearFeaturedOrder(): Model;
|
|
2714
|
+
|
|
2710
2715
|
serializeBinary(): Uint8Array;
|
|
2711
2716
|
toObject(includeInstance?: boolean): Model.AsObject;
|
|
2712
2717
|
static toObject(includeInstance: boolean, msg: Model): Model.AsObject;
|
|
@@ -2749,6 +2754,7 @@ export namespace Model {
|
|
|
2749
2754
|
creator: string,
|
|
2750
2755
|
versionCount: number,
|
|
2751
2756
|
billingType: Model.BillingType,
|
|
2757
|
+
featuredOrder?: google_protobuf_wrappers_pb.Int32Value.AsObject,
|
|
2752
2758
|
}
|
|
2753
2759
|
|
|
2754
2760
|
export enum Source {
|
|
@@ -3285,6 +3291,9 @@ export class ModelTypeField extends jspb.Message {
|
|
|
3285
3291
|
getDefault(): string;
|
|
3286
3292
|
setDefault(value: string): ModelTypeField;
|
|
3287
3293
|
|
|
3294
|
+
getIsParam(): boolean;
|
|
3295
|
+
setIsParam(value: boolean): ModelTypeField;
|
|
3296
|
+
|
|
3288
3297
|
serializeBinary(): Uint8Array;
|
|
3289
3298
|
toObject(includeInstance?: boolean): ModelTypeField.AsObject;
|
|
3290
3299
|
static toObject(includeInstance: boolean, msg: ModelTypeField): ModelTypeField.AsObject;
|
|
@@ -3309,6 +3318,7 @@ export namespace ModelTypeField {
|
|
|
3309
3318
|
typeArgsList: Array<ModelTypeField.AsObject>,
|
|
3310
3319
|
iterator: boolean,
|
|
3311
3320
|
pb_default: string,
|
|
3321
|
+
isParam: boolean,
|
|
3312
3322
|
}
|
|
3313
3323
|
|
|
3314
3324
|
export enum ModelTypeFieldType {
|
|
@@ -3352,9 +3362,9 @@ export namespace ModelTypeField {
|
|
|
3352
3362
|
FRAME = 12,
|
|
3353
3363
|
AUDIO = 13,
|
|
3354
3364
|
VIDEO = 14,
|
|
3355
|
-
NAMED_FIELDS =
|
|
3356
|
-
TUPLE =
|
|
3357
|
-
LIST =
|
|
3365
|
+
NAMED_FIELDS = 15,
|
|
3366
|
+
TUPLE = 16,
|
|
3367
|
+
LIST = 17,
|
|
3358
3368
|
}
|
|
3359
3369
|
}
|
|
3360
3370
|
|
|
@@ -5552,6 +5562,9 @@ export class WorkflowVersion extends jspb.Message {
|
|
|
5552
5562
|
getLicense(): string;
|
|
5553
5563
|
setLicense(value: string): WorkflowVersion;
|
|
5554
5564
|
|
|
5565
|
+
getIsDeprecated(): boolean;
|
|
5566
|
+
setIsDeprecated(value: boolean): WorkflowVersion;
|
|
5567
|
+
|
|
5555
5568
|
serializeBinary(): Uint8Array;
|
|
5556
5569
|
toObject(includeInstance?: boolean): WorkflowVersion.AsObject;
|
|
5557
5570
|
static toObject(includeInstance: boolean, msg: WorkflowVersion): WorkflowVersion.AsObject;
|
|
@@ -5573,6 +5586,7 @@ export namespace WorkflowVersion {
|
|
|
5573
5586
|
userId: string,
|
|
5574
5587
|
description: string,
|
|
5575
5588
|
license: string,
|
|
5589
|
+
isDeprecated: boolean,
|
|
5576
5590
|
}
|
|
5577
5591
|
}
|
|
5578
5592
|
|
|
@@ -8553,6 +8567,14 @@ export class InstanceType extends jspb.Message {
|
|
|
8553
8567
|
getPrice(): string;
|
|
8554
8568
|
setPrice(value: string): InstanceType;
|
|
8555
8569
|
|
|
8570
|
+
getCloudProvider(): CloudProvider | undefined;
|
|
8571
|
+
setCloudProvider(value?: CloudProvider): InstanceType;
|
|
8572
|
+
hasCloudProvider(): boolean;
|
|
8573
|
+
clearCloudProvider(): InstanceType;
|
|
8574
|
+
|
|
8575
|
+
getRegion(): string;
|
|
8576
|
+
setRegion(value: string): InstanceType;
|
|
8577
|
+
|
|
8556
8578
|
serializeBinary(): Uint8Array;
|
|
8557
8579
|
toObject(includeInstance?: boolean): InstanceType.AsObject;
|
|
8558
8580
|
static toObject(includeInstance: boolean, msg: InstanceType): InstanceType.AsObject;
|
|
@@ -8567,6 +8589,8 @@ export namespace InstanceType {
|
|
|
8567
8589
|
description: string,
|
|
8568
8590
|
computeInfo?: ComputeInfo.AsObject,
|
|
8569
8591
|
price: string,
|
|
8592
|
+
cloudProvider?: CloudProvider.AsObject,
|
|
8593
|
+
region: string,
|
|
8570
8594
|
}
|
|
8571
8595
|
}
|
|
8572
8596
|
|
|
@@ -8933,6 +8957,21 @@ export class AuditLogTarget extends jspb.Message {
|
|
|
8933
8957
|
hasModelVersion(): boolean;
|
|
8934
8958
|
clearModelVersion(): AuditLogTarget;
|
|
8935
8959
|
|
|
8960
|
+
getComputeCluster(): ComputeCluster | undefined;
|
|
8961
|
+
setComputeCluster(value?: ComputeCluster): AuditLogTarget;
|
|
8962
|
+
hasComputeCluster(): boolean;
|
|
8963
|
+
clearComputeCluster(): AuditLogTarget;
|
|
8964
|
+
|
|
8965
|
+
getNodepool(): Nodepool | undefined;
|
|
8966
|
+
setNodepool(value?: Nodepool): AuditLogTarget;
|
|
8967
|
+
hasNodepool(): boolean;
|
|
8968
|
+
clearNodepool(): AuditLogTarget;
|
|
8969
|
+
|
|
8970
|
+
getDeployment(): Deployment | undefined;
|
|
8971
|
+
setDeployment(value?: Deployment): AuditLogTarget;
|
|
8972
|
+
hasDeployment(): boolean;
|
|
8973
|
+
clearDeployment(): AuditLogTarget;
|
|
8974
|
+
|
|
8936
8975
|
getTargetCase(): AuditLogTarget.TargetCase;
|
|
8937
8976
|
|
|
8938
8977
|
serializeBinary(): Uint8Array;
|
|
@@ -8955,6 +8994,9 @@ export namespace AuditLogTarget {
|
|
|
8955
8994
|
workflowVersion?: WorkflowVersion.AsObject,
|
|
8956
8995
|
model?: Model.AsObject,
|
|
8957
8996
|
modelVersion?: ModelVersion.AsObject,
|
|
8997
|
+
computeCluster?: ComputeCluster.AsObject,
|
|
8998
|
+
nodepool?: Nodepool.AsObject,
|
|
8999
|
+
deployment?: Deployment.AsObject,
|
|
8958
9000
|
}
|
|
8959
9001
|
|
|
8960
9002
|
export enum TargetCase {
|
|
@@ -8969,6 +9011,9 @@ export namespace AuditLogTarget {
|
|
|
8969
9011
|
WORKFLOW_VERSION = 8,
|
|
8970
9012
|
MODEL = 9,
|
|
8971
9013
|
MODEL_VERSION = 10,
|
|
9014
|
+
COMPUTE_CLUSTER = 11,
|
|
9015
|
+
NODEPOOL = 12,
|
|
9016
|
+
DEPLOYMENT = 13,
|
|
8972
9017
|
}
|
|
8973
9018
|
}
|
|
8974
9019
|
|
|
@@ -9403,26 +9448,34 @@ export class WorkflowVersionEvaluation extends jspb.Message {
|
|
|
9403
9448
|
getId(): string;
|
|
9404
9449
|
setId(value: string): WorkflowVersionEvaluation;
|
|
9405
9450
|
|
|
9406
|
-
|
|
9407
|
-
|
|
9451
|
+
getWorkflowVersion(): WorkflowVersion | undefined;
|
|
9452
|
+
setWorkflowVersion(value?: WorkflowVersion): WorkflowVersionEvaluation;
|
|
9453
|
+
hasWorkflowVersion(): boolean;
|
|
9454
|
+
clearWorkflowVersion(): WorkflowVersionEvaluation;
|
|
9408
9455
|
|
|
9409
|
-
|
|
9410
|
-
|
|
9456
|
+
getTargetNodeId(): string;
|
|
9457
|
+
setTargetNodeId(value: string): WorkflowVersionEvaluation;
|
|
9411
9458
|
|
|
9412
|
-
|
|
9413
|
-
|
|
9459
|
+
getGroundTruthDatasetVersion(): DatasetVersion | undefined;
|
|
9460
|
+
setGroundTruthDatasetVersion(value?: DatasetVersion): WorkflowVersionEvaluation;
|
|
9461
|
+
hasGroundTruthDatasetVersion(): boolean;
|
|
9462
|
+
clearGroundTruthDatasetVersion(): WorkflowVersionEvaluation;
|
|
9414
9463
|
|
|
9415
|
-
|
|
9416
|
-
|
|
9464
|
+
getPredictionsDatasetVersion(): DatasetVersion | undefined;
|
|
9465
|
+
setPredictionsDatasetVersion(value?: DatasetVersion): WorkflowVersionEvaluation;
|
|
9466
|
+
hasPredictionsDatasetVersion(): boolean;
|
|
9467
|
+
clearPredictionsDatasetVersion(): WorkflowVersionEvaluation;
|
|
9417
9468
|
|
|
9418
|
-
|
|
9419
|
-
|
|
9469
|
+
getWorkflowVersionEvaluationTemplate(): WorkflowVersionEvaluationTemplate | undefined;
|
|
9470
|
+
setWorkflowVersionEvaluationTemplate(value?: WorkflowVersionEvaluationTemplate): WorkflowVersionEvaluation;
|
|
9471
|
+
hasWorkflowVersionEvaluationTemplate(): boolean;
|
|
9472
|
+
clearWorkflowVersionEvaluationTemplate(): WorkflowVersionEvaluation;
|
|
9420
9473
|
|
|
9421
|
-
|
|
9422
|
-
|
|
9474
|
+
getUserId(): string;
|
|
9475
|
+
setUserId(value: string): WorkflowVersionEvaluation;
|
|
9423
9476
|
|
|
9424
|
-
|
|
9425
|
-
|
|
9477
|
+
getAppId(): string;
|
|
9478
|
+
setAppId(value: string): WorkflowVersionEvaluation;
|
|
9426
9479
|
|
|
9427
9480
|
getWorkflowEvaluationResult(): WorkflowEvaluationResult | undefined;
|
|
9428
9481
|
setWorkflowEvaluationResult(value?: WorkflowEvaluationResult): WorkflowVersionEvaluation;
|
|
@@ -9444,9 +9497,6 @@ export class WorkflowVersionEvaluation extends jspb.Message {
|
|
|
9444
9497
|
hasModifiedAt(): boolean;
|
|
9445
9498
|
clearModifiedAt(): WorkflowVersionEvaluation;
|
|
9446
9499
|
|
|
9447
|
-
getTargetNodeId(): string;
|
|
9448
|
-
setTargetNodeId(value: string): WorkflowVersionEvaluation;
|
|
9449
|
-
|
|
9450
9500
|
serializeBinary(): Uint8Array;
|
|
9451
9501
|
toObject(includeInstance?: boolean): WorkflowVersionEvaluation.AsObject;
|
|
9452
9502
|
static toObject(includeInstance: boolean, msg: WorkflowVersionEvaluation): WorkflowVersionEvaluation.AsObject;
|
|
@@ -9458,18 +9508,17 @@ export class WorkflowVersionEvaluation extends jspb.Message {
|
|
|
9458
9508
|
export namespace WorkflowVersionEvaluation {
|
|
9459
9509
|
export type AsObject = {
|
|
9460
9510
|
id: string,
|
|
9461
|
-
|
|
9462
|
-
|
|
9463
|
-
|
|
9464
|
-
|
|
9465
|
-
|
|
9466
|
-
|
|
9467
|
-
|
|
9511
|
+
workflowVersion?: WorkflowVersion.AsObject,
|
|
9512
|
+
targetNodeId: string,
|
|
9513
|
+
groundTruthDatasetVersion?: DatasetVersion.AsObject,
|
|
9514
|
+
predictionsDatasetVersion?: DatasetVersion.AsObject,
|
|
9515
|
+
workflowVersionEvaluationTemplate?: WorkflowVersionEvaluationTemplate.AsObject,
|
|
9516
|
+
userId: string,
|
|
9517
|
+
appId: string,
|
|
9468
9518
|
workflowEvaluationResult?: WorkflowEvaluationResult.AsObject,
|
|
9469
9519
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
9470
9520
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9471
9521
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9472
|
-
targetNodeId: string,
|
|
9473
9522
|
}
|
|
9474
9523
|
}
|
|
9475
9524
|
|
|
@@ -9957,4 +10006,12 @@ export enum EventType {
|
|
|
9957
10006
|
COLLABORATOR_UPDATE = 701,
|
|
9958
10007
|
COLLABORATOR_REMOVE = 702,
|
|
9959
10008
|
USER_UPDATE = 800,
|
|
10009
|
+
COMPUTE_CLUSTER_CREATE = 900,
|
|
10010
|
+
COMPUTE_CLUSTER_DELETE = 901,
|
|
10011
|
+
NODEPOOL_CREATE = 1000,
|
|
10012
|
+
NODEPOOL_UPDATE = 1001,
|
|
10013
|
+
NODEPOOL_DELETE = 1002,
|
|
10014
|
+
DEPLOYMENT_CREATE = 1100,
|
|
10015
|
+
DEPLOYMENT_UPDATE = 1101,
|
|
10016
|
+
DEPLOYMENT_DELETE = 1102,
|
|
9960
10017
|
}
|