clarifai-web-grpc 11.1.3 → 11.2.1
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 +3045 -32
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +252 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +2282 -7
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +3 -2
- package/dist/esm/proto/clarifai/api/resources_pb.js +3045 -32
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +252 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +2282 -7
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +3 -2
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +467 -6
- package/proto/clarifai/api/resources_pb.js +3778 -34
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +72 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +366 -0
- package/proto/clarifai/api/service_pb.d.ts +339 -0
- package/proto/clarifai/api/service_pb.js +2855 -7
- package/proto/clarifai/auth/scope/scope_pb.d.ts +2 -1
- package/proto/clarifai/auth/scope/scope_pb.js +3 -2
|
@@ -276,7 +276,6 @@ proto.clarifai.auth.scope.S = {
|
|
|
276
276
|
LABELORDERS_GET: 67,
|
|
277
277
|
LABELORDERS_ADD: 68,
|
|
278
278
|
LABELORDERS_DELETE: 69,
|
|
279
|
-
USERFEATURECONFIGS_GET: 71,
|
|
280
279
|
FINDDUPLICATEANNOTATIONSJOBS_ADD: 102,
|
|
281
280
|
FINDDUPLICATEANNOTATIONSJOBS_GET: 103,
|
|
282
281
|
FINDDUPLICATEANNOTATIONSJOBS_DELETE: 104,
|
|
@@ -320,7 +319,9 @@ proto.clarifai.auth.scope.S = {
|
|
|
320
319
|
DEPLOYMENTS_DELETE: 146,
|
|
321
320
|
INSTANCETYPES_GET: 148,
|
|
322
321
|
AUDITLOGS_GET: 149,
|
|
323
|
-
LOGENTRIES_GET: 151
|
|
322
|
+
LOGENTRIES_GET: 151,
|
|
323
|
+
WORKFLOWVERSIONEVALUATIONS_GET: 152,
|
|
324
|
+
WORKFLOWVERSIONEVALUATIONS_ADD: 153
|
|
324
325
|
};
|
|
325
326
|
/**
|
|
326
327
|
* A tuple of {field number, class constructor} for the extension
|
package/package.json
CHANGED
|
@@ -2704,8 +2704,8 @@ export class Model extends jspb.Message {
|
|
|
2704
2704
|
getVersionCount(): number;
|
|
2705
2705
|
setVersionCount(value: number): Model;
|
|
2706
2706
|
|
|
2707
|
-
|
|
2708
|
-
|
|
2707
|
+
getBillingType(): Model.BillingType;
|
|
2708
|
+
setBillingType(value: Model.BillingType): Model;
|
|
2709
2709
|
|
|
2710
2710
|
serializeBinary(): Uint8Array;
|
|
2711
2711
|
toObject(includeInstance?: boolean): Model.AsObject;
|
|
@@ -2748,7 +2748,7 @@ export namespace Model {
|
|
|
2748
2748
|
source: Model.Source,
|
|
2749
2749
|
creator: string,
|
|
2750
2750
|
versionCount: number,
|
|
2751
|
-
|
|
2751
|
+
billingType: Model.BillingType,
|
|
2752
2752
|
}
|
|
2753
2753
|
|
|
2754
2754
|
export enum Source {
|
|
@@ -2756,6 +2756,12 @@ export namespace Model {
|
|
|
2756
2756
|
HOSTED = 1,
|
|
2757
2757
|
WRAPPED = 2,
|
|
2758
2758
|
}
|
|
2759
|
+
|
|
2760
|
+
export enum BillingType {
|
|
2761
|
+
UNKNOWN = 0,
|
|
2762
|
+
TOKENS = 1,
|
|
2763
|
+
OPS = 2,
|
|
2764
|
+
}
|
|
2759
2765
|
}
|
|
2760
2766
|
|
|
2761
2767
|
export class ModelReference extends jspb.Message {
|
|
@@ -6451,13 +6457,23 @@ export class TaskReviewMetrics extends jspb.Message {
|
|
|
6451
6457
|
getInputsCountEstimated(): number;
|
|
6452
6458
|
setInputsCountEstimated(value: number): TaskReviewMetrics;
|
|
6453
6459
|
|
|
6460
|
+
getInputsPercentEstimated(): number;
|
|
6461
|
+
setInputsPercentEstimated(value: number): TaskReviewMetrics;
|
|
6462
|
+
|
|
6454
6463
|
getInputsCountEstimatedPerReviewerList(): Array<number>;
|
|
6455
6464
|
setInputsCountEstimatedPerReviewerList(value: Array<number>): TaskReviewMetrics;
|
|
6456
6465
|
clearInputsCountEstimatedPerReviewerList(): TaskReviewMetrics;
|
|
6457
6466
|
addInputsCountEstimatedPerReviewer(value: number, index?: number): TaskReviewMetrics;
|
|
6458
6467
|
|
|
6459
|
-
|
|
6460
|
-
|
|
6468
|
+
getInputsReviewableCountEstimatedPerReviewerList(): Array<number>;
|
|
6469
|
+
setInputsReviewableCountEstimatedPerReviewerList(value: Array<number>): TaskReviewMetrics;
|
|
6470
|
+
clearInputsReviewableCountEstimatedPerReviewerList(): TaskReviewMetrics;
|
|
6471
|
+
addInputsReviewableCountEstimatedPerReviewer(value: number, index?: number): TaskReviewMetrics;
|
|
6472
|
+
|
|
6473
|
+
getInputsPercentEstimatedPerReviewerList(): Array<number>;
|
|
6474
|
+
setInputsPercentEstimatedPerReviewerList(value: Array<number>): TaskReviewMetrics;
|
|
6475
|
+
clearInputsPercentEstimatedPerReviewerList(): TaskReviewMetrics;
|
|
6476
|
+
addInputsPercentEstimatedPerReviewer(value: number, index?: number): TaskReviewMetrics;
|
|
6461
6477
|
|
|
6462
6478
|
serializeBinary(): Uint8Array;
|
|
6463
6479
|
toObject(includeInstance?: boolean): TaskReviewMetrics.AsObject;
|
|
@@ -6470,8 +6486,10 @@ export class TaskReviewMetrics extends jspb.Message {
|
|
|
6470
6486
|
export namespace TaskReviewMetrics {
|
|
6471
6487
|
export type AsObject = {
|
|
6472
6488
|
inputsCountEstimated: number,
|
|
6473
|
-
inputsCountEstimatedPerReviewerList: Array<number>,
|
|
6474
6489
|
inputsPercentEstimated: number,
|
|
6490
|
+
inputsCountEstimatedPerReviewerList: Array<number>,
|
|
6491
|
+
inputsReviewableCountEstimatedPerReviewerList: Array<number>,
|
|
6492
|
+
inputsPercentEstimatedPerReviewerList: Array<number>,
|
|
6475
6493
|
}
|
|
6476
6494
|
}
|
|
6477
6495
|
|
|
@@ -8596,6 +8614,9 @@ export class AutoscaleConfig extends jspb.Message {
|
|
|
8596
8614
|
getDisablePacking(): boolean;
|
|
8597
8615
|
setDisablePacking(value: boolean): AutoscaleConfig;
|
|
8598
8616
|
|
|
8617
|
+
getScaleToZeroDelaySeconds(): number;
|
|
8618
|
+
setScaleToZeroDelaySeconds(value: number): AutoscaleConfig;
|
|
8619
|
+
|
|
8599
8620
|
serializeBinary(): Uint8Array;
|
|
8600
8621
|
toObject(includeInstance?: boolean): AutoscaleConfig.AsObject;
|
|
8601
8622
|
static toObject(includeInstance: boolean, msg: AutoscaleConfig): AutoscaleConfig.AsObject;
|
|
@@ -8612,6 +8633,7 @@ export namespace AutoscaleConfig {
|
|
|
8612
8633
|
scaleDownDelaySeconds: number,
|
|
8613
8634
|
scaleUpDelaySeconds: number,
|
|
8614
8635
|
disablePacking: boolean,
|
|
8636
|
+
scaleToZeroDelaySeconds: number,
|
|
8615
8637
|
}
|
|
8616
8638
|
}
|
|
8617
8639
|
|
|
@@ -9088,6 +9110,11 @@ export class ComputePlaneMetrics extends jspb.Message {
|
|
|
9088
9110
|
getHostname(): string;
|
|
9089
9111
|
setHostname(value: string): ComputePlaneMetrics;
|
|
9090
9112
|
|
|
9113
|
+
getCpuMetricsList(): Array<CpuMetrics>;
|
|
9114
|
+
setCpuMetricsList(value: Array<CpuMetrics>): ComputePlaneMetrics;
|
|
9115
|
+
clearCpuMetricsList(): ComputePlaneMetrics;
|
|
9116
|
+
addCpuMetrics(value?: CpuMetrics, index?: number): CpuMetrics;
|
|
9117
|
+
|
|
9091
9118
|
serializeBinary(): Uint8Array;
|
|
9092
9119
|
toObject(includeInstance?: boolean): ComputePlaneMetrics.AsObject;
|
|
9093
9120
|
static toObject(includeInstance: boolean, msg: ComputePlaneMetrics): ComputePlaneMetrics.AsObject;
|
|
@@ -9109,6 +9136,7 @@ export namespace ComputePlaneMetrics {
|
|
|
9109
9136
|
eventType: string,
|
|
9110
9137
|
gpuMetricsList: Array<GpuMetrics.AsObject>,
|
|
9111
9138
|
hostname: string,
|
|
9139
|
+
cpuMetricsList: Array<CpuMetrics.AsObject>,
|
|
9112
9140
|
}
|
|
9113
9141
|
}
|
|
9114
9142
|
|
|
@@ -9146,6 +9174,42 @@ export namespace GpuMetrics {
|
|
|
9146
9174
|
}
|
|
9147
9175
|
}
|
|
9148
9176
|
|
|
9177
|
+
export class CpuMetrics extends jspb.Message {
|
|
9178
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9179
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): CpuMetrics;
|
|
9180
|
+
hasTimestamp(): boolean;
|
|
9181
|
+
clearTimestamp(): CpuMetrics;
|
|
9182
|
+
|
|
9183
|
+
getCpuUtilizationPct(): number;
|
|
9184
|
+
setCpuUtilizationPct(value: number): CpuMetrics;
|
|
9185
|
+
|
|
9186
|
+
getMemoryUtilizationPct(): number;
|
|
9187
|
+
setMemoryUtilizationPct(value: number): CpuMetrics;
|
|
9188
|
+
|
|
9189
|
+
getMillicores(): number;
|
|
9190
|
+
setMillicores(value: number): CpuMetrics;
|
|
9191
|
+
|
|
9192
|
+
getMemoryBytes(): number;
|
|
9193
|
+
setMemoryBytes(value: number): CpuMetrics;
|
|
9194
|
+
|
|
9195
|
+
serializeBinary(): Uint8Array;
|
|
9196
|
+
toObject(includeInstance?: boolean): CpuMetrics.AsObject;
|
|
9197
|
+
static toObject(includeInstance: boolean, msg: CpuMetrics): CpuMetrics.AsObject;
|
|
9198
|
+
static serializeBinaryToWriter(message: CpuMetrics, writer: jspb.BinaryWriter): void;
|
|
9199
|
+
static deserializeBinary(bytes: Uint8Array): CpuMetrics;
|
|
9200
|
+
static deserializeBinaryFromReader(message: CpuMetrics, reader: jspb.BinaryReader): CpuMetrics;
|
|
9201
|
+
}
|
|
9202
|
+
|
|
9203
|
+
export namespace CpuMetrics {
|
|
9204
|
+
export type AsObject = {
|
|
9205
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9206
|
+
cpuUtilizationPct: number,
|
|
9207
|
+
memoryUtilizationPct: number,
|
|
9208
|
+
millicores: number,
|
|
9209
|
+
memoryBytes: number,
|
|
9210
|
+
}
|
|
9211
|
+
}
|
|
9212
|
+
|
|
9149
9213
|
export class LogEntry extends jspb.Message {
|
|
9150
9214
|
getMessage(): string;
|
|
9151
9215
|
setMessage(value: string): LogEntry;
|
|
@@ -9202,6 +9266,15 @@ export class ComputeSourceMetadata extends jspb.Message {
|
|
|
9202
9266
|
getRunnerId(): string;
|
|
9203
9267
|
setRunnerId(value: string): ComputeSourceMetadata;
|
|
9204
9268
|
|
|
9269
|
+
getPipelineId(): string;
|
|
9270
|
+
setPipelineId(value: string): ComputeSourceMetadata;
|
|
9271
|
+
|
|
9272
|
+
getPipelineVersionId(): string;
|
|
9273
|
+
setPipelineVersionId(value: string): ComputeSourceMetadata;
|
|
9274
|
+
|
|
9275
|
+
getPipelineVersionRunId(): string;
|
|
9276
|
+
setPipelineVersionRunId(value: string): ComputeSourceMetadata;
|
|
9277
|
+
|
|
9205
9278
|
serializeBinary(): Uint8Array;
|
|
9206
9279
|
toObject(includeInstance?: boolean): ComputeSourceMetadata.AsObject;
|
|
9207
9280
|
static toObject(includeInstance: boolean, msg: ComputeSourceMetadata): ComputeSourceMetadata.AsObject;
|
|
@@ -9219,6 +9292,394 @@ export namespace ComputeSourceMetadata {
|
|
|
9219
9292
|
computeClusterId: string,
|
|
9220
9293
|
nodepoolId: string,
|
|
9221
9294
|
runnerId: string,
|
|
9295
|
+
pipelineId: string,
|
|
9296
|
+
pipelineVersionId: string,
|
|
9297
|
+
pipelineVersionRunId: string,
|
|
9298
|
+
}
|
|
9299
|
+
}
|
|
9300
|
+
|
|
9301
|
+
export class WorkflowVersionEvaluation extends jspb.Message {
|
|
9302
|
+
getId(): string;
|
|
9303
|
+
setId(value: string): WorkflowVersionEvaluation;
|
|
9304
|
+
|
|
9305
|
+
getWorkflowId(): string;
|
|
9306
|
+
setWorkflowId(value: string): WorkflowVersionEvaluation;
|
|
9307
|
+
|
|
9308
|
+
getWorkflowVersionId(): string;
|
|
9309
|
+
setWorkflowVersionId(value: string): WorkflowVersionEvaluation;
|
|
9310
|
+
|
|
9311
|
+
getGroundTruthDatasetId(): string;
|
|
9312
|
+
setGroundTruthDatasetId(value: string): WorkflowVersionEvaluation;
|
|
9313
|
+
|
|
9314
|
+
getGroundTruthDatasetVersionId(): string;
|
|
9315
|
+
setGroundTruthDatasetVersionId(value: string): WorkflowVersionEvaluation;
|
|
9316
|
+
|
|
9317
|
+
getPredictionsDatasetId(): string;
|
|
9318
|
+
setPredictionsDatasetId(value: string): WorkflowVersionEvaluation;
|
|
9319
|
+
|
|
9320
|
+
getPredictionsDatasetVersionId(): string;
|
|
9321
|
+
setPredictionsDatasetVersionId(value: string): WorkflowVersionEvaluation;
|
|
9322
|
+
|
|
9323
|
+
getEvaluationTemplateId(): string;
|
|
9324
|
+
setEvaluationTemplateId(value: string): WorkflowVersionEvaluation;
|
|
9325
|
+
|
|
9326
|
+
getWorkflowEvaluationResult(): WorkflowEvaluationResult | undefined;
|
|
9327
|
+
setWorkflowEvaluationResult(value?: WorkflowEvaluationResult): WorkflowVersionEvaluation;
|
|
9328
|
+
hasWorkflowEvaluationResult(): boolean;
|
|
9329
|
+
clearWorkflowEvaluationResult(): WorkflowVersionEvaluation;
|
|
9330
|
+
|
|
9331
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
9332
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): WorkflowVersionEvaluation;
|
|
9333
|
+
hasStatus(): boolean;
|
|
9334
|
+
clearStatus(): WorkflowVersionEvaluation;
|
|
9335
|
+
|
|
9336
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9337
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): WorkflowVersionEvaluation;
|
|
9338
|
+
hasCreatedAt(): boolean;
|
|
9339
|
+
clearCreatedAt(): WorkflowVersionEvaluation;
|
|
9340
|
+
|
|
9341
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9342
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): WorkflowVersionEvaluation;
|
|
9343
|
+
hasModifiedAt(): boolean;
|
|
9344
|
+
clearModifiedAt(): WorkflowVersionEvaluation;
|
|
9345
|
+
|
|
9346
|
+
serializeBinary(): Uint8Array;
|
|
9347
|
+
toObject(includeInstance?: boolean): WorkflowVersionEvaluation.AsObject;
|
|
9348
|
+
static toObject(includeInstance: boolean, msg: WorkflowVersionEvaluation): WorkflowVersionEvaluation.AsObject;
|
|
9349
|
+
static serializeBinaryToWriter(message: WorkflowVersionEvaluation, writer: jspb.BinaryWriter): void;
|
|
9350
|
+
static deserializeBinary(bytes: Uint8Array): WorkflowVersionEvaluation;
|
|
9351
|
+
static deserializeBinaryFromReader(message: WorkflowVersionEvaluation, reader: jspb.BinaryReader): WorkflowVersionEvaluation;
|
|
9352
|
+
}
|
|
9353
|
+
|
|
9354
|
+
export namespace WorkflowVersionEvaluation {
|
|
9355
|
+
export type AsObject = {
|
|
9356
|
+
id: string,
|
|
9357
|
+
workflowId: string,
|
|
9358
|
+
workflowVersionId: string,
|
|
9359
|
+
groundTruthDatasetId: string,
|
|
9360
|
+
groundTruthDatasetVersionId: string,
|
|
9361
|
+
predictionsDatasetId: string,
|
|
9362
|
+
predictionsDatasetVersionId: string,
|
|
9363
|
+
evaluationTemplateId: string,
|
|
9364
|
+
workflowEvaluationResult?: WorkflowEvaluationResult.AsObject,
|
|
9365
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
9366
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9367
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9368
|
+
}
|
|
9369
|
+
}
|
|
9370
|
+
|
|
9371
|
+
export class WorkflowEvaluationResult extends jspb.Message {
|
|
9372
|
+
getSummary(): WorkflowEvaluationResultSummary | undefined;
|
|
9373
|
+
setSummary(value?: WorkflowEvaluationResultSummary): WorkflowEvaluationResult;
|
|
9374
|
+
hasSummary(): boolean;
|
|
9375
|
+
clearSummary(): WorkflowEvaluationResult;
|
|
9376
|
+
|
|
9377
|
+
serializeBinary(): Uint8Array;
|
|
9378
|
+
toObject(includeInstance?: boolean): WorkflowEvaluationResult.AsObject;
|
|
9379
|
+
static toObject(includeInstance: boolean, msg: WorkflowEvaluationResult): WorkflowEvaluationResult.AsObject;
|
|
9380
|
+
static serializeBinaryToWriter(message: WorkflowEvaluationResult, writer: jspb.BinaryWriter): void;
|
|
9381
|
+
static deserializeBinary(bytes: Uint8Array): WorkflowEvaluationResult;
|
|
9382
|
+
static deserializeBinaryFromReader(message: WorkflowEvaluationResult, reader: jspb.BinaryReader): WorkflowEvaluationResult;
|
|
9383
|
+
}
|
|
9384
|
+
|
|
9385
|
+
export namespace WorkflowEvaluationResult {
|
|
9386
|
+
export type AsObject = {
|
|
9387
|
+
summary?: WorkflowEvaluationResultSummary.AsObject,
|
|
9388
|
+
}
|
|
9389
|
+
}
|
|
9390
|
+
|
|
9391
|
+
export class WorkflowEvaluationResultSummary extends jspb.Message {
|
|
9392
|
+
getEvaluationMetricValuesList(): Array<EvaluationMetricValue>;
|
|
9393
|
+
setEvaluationMetricValuesList(value: Array<EvaluationMetricValue>): WorkflowEvaluationResultSummary;
|
|
9394
|
+
clearEvaluationMetricValuesList(): WorkflowEvaluationResultSummary;
|
|
9395
|
+
addEvaluationMetricValues(value?: EvaluationMetricValue, index?: number): EvaluationMetricValue;
|
|
9396
|
+
|
|
9397
|
+
serializeBinary(): Uint8Array;
|
|
9398
|
+
toObject(includeInstance?: boolean): WorkflowEvaluationResultSummary.AsObject;
|
|
9399
|
+
static toObject(includeInstance: boolean, msg: WorkflowEvaluationResultSummary): WorkflowEvaluationResultSummary.AsObject;
|
|
9400
|
+
static serializeBinaryToWriter(message: WorkflowEvaluationResultSummary, writer: jspb.BinaryWriter): void;
|
|
9401
|
+
static deserializeBinary(bytes: Uint8Array): WorkflowEvaluationResultSummary;
|
|
9402
|
+
static deserializeBinaryFromReader(message: WorkflowEvaluationResultSummary, reader: jspb.BinaryReader): WorkflowEvaluationResultSummary;
|
|
9403
|
+
}
|
|
9404
|
+
|
|
9405
|
+
export namespace WorkflowEvaluationResultSummary {
|
|
9406
|
+
export type AsObject = {
|
|
9407
|
+
evaluationMetricValuesList: Array<EvaluationMetricValue.AsObject>,
|
|
9408
|
+
}
|
|
9409
|
+
}
|
|
9410
|
+
|
|
9411
|
+
export class EvaluationMetricValue extends jspb.Message {
|
|
9412
|
+
getEvaluationMetricId(): string;
|
|
9413
|
+
setEvaluationMetricId(value: string): EvaluationMetricValue;
|
|
9414
|
+
|
|
9415
|
+
getMetricValue(): MetricValue | undefined;
|
|
9416
|
+
setMetricValue(value?: MetricValue): EvaluationMetricValue;
|
|
9417
|
+
hasMetricValue(): boolean;
|
|
9418
|
+
clearMetricValue(): EvaluationMetricValue;
|
|
9419
|
+
|
|
9420
|
+
getExplanation(): string;
|
|
9421
|
+
setExplanation(value: string): EvaluationMetricValue;
|
|
9422
|
+
|
|
9423
|
+
getPerConceptValuesMap(): jspb.Map<string, MetricValue>;
|
|
9424
|
+
clearPerConceptValuesMap(): EvaluationMetricValue;
|
|
9425
|
+
|
|
9426
|
+
serializeBinary(): Uint8Array;
|
|
9427
|
+
toObject(includeInstance?: boolean): EvaluationMetricValue.AsObject;
|
|
9428
|
+
static toObject(includeInstance: boolean, msg: EvaluationMetricValue): EvaluationMetricValue.AsObject;
|
|
9429
|
+
static serializeBinaryToWriter(message: EvaluationMetricValue, writer: jspb.BinaryWriter): void;
|
|
9430
|
+
static deserializeBinary(bytes: Uint8Array): EvaluationMetricValue;
|
|
9431
|
+
static deserializeBinaryFromReader(message: EvaluationMetricValue, reader: jspb.BinaryReader): EvaluationMetricValue;
|
|
9432
|
+
}
|
|
9433
|
+
|
|
9434
|
+
export namespace EvaluationMetricValue {
|
|
9435
|
+
export type AsObject = {
|
|
9436
|
+
evaluationMetricId: string,
|
|
9437
|
+
metricValue?: MetricValue.AsObject,
|
|
9438
|
+
explanation: string,
|
|
9439
|
+
perConceptValuesMap: Array<[string, MetricValue.AsObject]>,
|
|
9440
|
+
}
|
|
9441
|
+
}
|
|
9442
|
+
|
|
9443
|
+
export class MetricValue extends jspb.Message {
|
|
9444
|
+
getStringValue(): string;
|
|
9445
|
+
setStringValue(value: string): MetricValue;
|
|
9446
|
+
|
|
9447
|
+
getFloatValue(): number;
|
|
9448
|
+
setFloatValue(value: number): MetricValue;
|
|
9449
|
+
|
|
9450
|
+
getIntValue(): number;
|
|
9451
|
+
setIntValue(value: number): MetricValue;
|
|
9452
|
+
|
|
9453
|
+
getMetricValueCase(): MetricValue.MetricValueCase;
|
|
9454
|
+
|
|
9455
|
+
serializeBinary(): Uint8Array;
|
|
9456
|
+
toObject(includeInstance?: boolean): MetricValue.AsObject;
|
|
9457
|
+
static toObject(includeInstance: boolean, msg: MetricValue): MetricValue.AsObject;
|
|
9458
|
+
static serializeBinaryToWriter(message: MetricValue, writer: jspb.BinaryWriter): void;
|
|
9459
|
+
static deserializeBinary(bytes: Uint8Array): MetricValue;
|
|
9460
|
+
static deserializeBinaryFromReader(message: MetricValue, reader: jspb.BinaryReader): MetricValue;
|
|
9461
|
+
}
|
|
9462
|
+
|
|
9463
|
+
export namespace MetricValue {
|
|
9464
|
+
export type AsObject = {
|
|
9465
|
+
stringValue: string,
|
|
9466
|
+
floatValue: number,
|
|
9467
|
+
intValue: number,
|
|
9468
|
+
}
|
|
9469
|
+
|
|
9470
|
+
export enum MetricValueCase {
|
|
9471
|
+
METRIC_VALUE_NOT_SET = 0,
|
|
9472
|
+
STRING_VALUE = 1,
|
|
9473
|
+
FLOAT_VALUE = 2,
|
|
9474
|
+
INT_VALUE = 3,
|
|
9475
|
+
}
|
|
9476
|
+
}
|
|
9477
|
+
|
|
9478
|
+
export class ArgoOrchestrationSpec extends jspb.Message {
|
|
9479
|
+
getApiVersion(): string;
|
|
9480
|
+
setApiVersion(value: string): ArgoOrchestrationSpec;
|
|
9481
|
+
|
|
9482
|
+
getSpecJson(): string;
|
|
9483
|
+
setSpecJson(value: string): ArgoOrchestrationSpec;
|
|
9484
|
+
|
|
9485
|
+
serializeBinary(): Uint8Array;
|
|
9486
|
+
toObject(includeInstance?: boolean): ArgoOrchestrationSpec.AsObject;
|
|
9487
|
+
static toObject(includeInstance: boolean, msg: ArgoOrchestrationSpec): ArgoOrchestrationSpec.AsObject;
|
|
9488
|
+
static serializeBinaryToWriter(message: ArgoOrchestrationSpec, writer: jspb.BinaryWriter): void;
|
|
9489
|
+
static deserializeBinary(bytes: Uint8Array): ArgoOrchestrationSpec;
|
|
9490
|
+
static deserializeBinaryFromReader(message: ArgoOrchestrationSpec, reader: jspb.BinaryReader): ArgoOrchestrationSpec;
|
|
9491
|
+
}
|
|
9492
|
+
|
|
9493
|
+
export namespace ArgoOrchestrationSpec {
|
|
9494
|
+
export type AsObject = {
|
|
9495
|
+
apiVersion: string,
|
|
9496
|
+
specJson: string,
|
|
9497
|
+
}
|
|
9498
|
+
}
|
|
9499
|
+
|
|
9500
|
+
export class OrchestrationSpec extends jspb.Message {
|
|
9501
|
+
getArgoOrchestrationSpec(): ArgoOrchestrationSpec | undefined;
|
|
9502
|
+
setArgoOrchestrationSpec(value?: ArgoOrchestrationSpec): OrchestrationSpec;
|
|
9503
|
+
hasArgoOrchestrationSpec(): boolean;
|
|
9504
|
+
clearArgoOrchestrationSpec(): OrchestrationSpec;
|
|
9505
|
+
|
|
9506
|
+
getOrchestrationCase(): OrchestrationSpec.OrchestrationCase;
|
|
9507
|
+
|
|
9508
|
+
serializeBinary(): Uint8Array;
|
|
9509
|
+
toObject(includeInstance?: boolean): OrchestrationSpec.AsObject;
|
|
9510
|
+
static toObject(includeInstance: boolean, msg: OrchestrationSpec): OrchestrationSpec.AsObject;
|
|
9511
|
+
static serializeBinaryToWriter(message: OrchestrationSpec, writer: jspb.BinaryWriter): void;
|
|
9512
|
+
static deserializeBinary(bytes: Uint8Array): OrchestrationSpec;
|
|
9513
|
+
static deserializeBinaryFromReader(message: OrchestrationSpec, reader: jspb.BinaryReader): OrchestrationSpec;
|
|
9514
|
+
}
|
|
9515
|
+
|
|
9516
|
+
export namespace OrchestrationSpec {
|
|
9517
|
+
export type AsObject = {
|
|
9518
|
+
argoOrchestrationSpec?: ArgoOrchestrationSpec.AsObject,
|
|
9519
|
+
}
|
|
9520
|
+
|
|
9521
|
+
export enum OrchestrationCase {
|
|
9522
|
+
ORCHESTRATION_NOT_SET = 0,
|
|
9523
|
+
ARGO_ORCHESTRATION_SPEC = 1,
|
|
9524
|
+
}
|
|
9525
|
+
}
|
|
9526
|
+
|
|
9527
|
+
export class PipelineVersion extends jspb.Message {
|
|
9528
|
+
getId(): string;
|
|
9529
|
+
setId(value: string): PipelineVersion;
|
|
9530
|
+
|
|
9531
|
+
getAppId(): string;
|
|
9532
|
+
setAppId(value: string): PipelineVersion;
|
|
9533
|
+
|
|
9534
|
+
getUserId(): string;
|
|
9535
|
+
setUserId(value: string): PipelineVersion;
|
|
9536
|
+
|
|
9537
|
+
getOrchestrationSpec(): OrchestrationSpec | undefined;
|
|
9538
|
+
setOrchestrationSpec(value?: OrchestrationSpec): PipelineVersion;
|
|
9539
|
+
hasOrchestrationSpec(): boolean;
|
|
9540
|
+
clearOrchestrationSpec(): PipelineVersion;
|
|
9541
|
+
|
|
9542
|
+
getPipelineId(): string;
|
|
9543
|
+
setPipelineId(value: string): PipelineVersion;
|
|
9544
|
+
|
|
9545
|
+
getDescription(): string;
|
|
9546
|
+
setDescription(value: string): PipelineVersion;
|
|
9547
|
+
|
|
9548
|
+
getVisibility(): Visibility | undefined;
|
|
9549
|
+
setVisibility(value?: Visibility): PipelineVersion;
|
|
9550
|
+
hasVisibility(): boolean;
|
|
9551
|
+
clearVisibility(): PipelineVersion;
|
|
9552
|
+
|
|
9553
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
9554
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): PipelineVersion;
|
|
9555
|
+
hasMetadata(): boolean;
|
|
9556
|
+
clearMetadata(): PipelineVersion;
|
|
9557
|
+
|
|
9558
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9559
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): PipelineVersion;
|
|
9560
|
+
hasCreatedAt(): boolean;
|
|
9561
|
+
clearCreatedAt(): PipelineVersion;
|
|
9562
|
+
|
|
9563
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9564
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): PipelineVersion;
|
|
9565
|
+
hasModifiedAt(): boolean;
|
|
9566
|
+
clearModifiedAt(): PipelineVersion;
|
|
9567
|
+
|
|
9568
|
+
serializeBinary(): Uint8Array;
|
|
9569
|
+
toObject(includeInstance?: boolean): PipelineVersion.AsObject;
|
|
9570
|
+
static toObject(includeInstance: boolean, msg: PipelineVersion): PipelineVersion.AsObject;
|
|
9571
|
+
static serializeBinaryToWriter(message: PipelineVersion, writer: jspb.BinaryWriter): void;
|
|
9572
|
+
static deserializeBinary(bytes: Uint8Array): PipelineVersion;
|
|
9573
|
+
static deserializeBinaryFromReader(message: PipelineVersion, reader: jspb.BinaryReader): PipelineVersion;
|
|
9574
|
+
}
|
|
9575
|
+
|
|
9576
|
+
export namespace PipelineVersion {
|
|
9577
|
+
export type AsObject = {
|
|
9578
|
+
id: string,
|
|
9579
|
+
appId: string,
|
|
9580
|
+
userId: string,
|
|
9581
|
+
orchestrationSpec?: OrchestrationSpec.AsObject,
|
|
9582
|
+
pipelineId: string,
|
|
9583
|
+
description: string,
|
|
9584
|
+
visibility?: Visibility.AsObject,
|
|
9585
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
9586
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9587
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9588
|
+
}
|
|
9589
|
+
}
|
|
9590
|
+
|
|
9591
|
+
export class OrchestrationStatus extends jspb.Message {
|
|
9592
|
+
getArgoStatus(): ArgoOrchestrationStatus | undefined;
|
|
9593
|
+
setArgoStatus(value?: ArgoOrchestrationStatus): OrchestrationStatus;
|
|
9594
|
+
hasArgoStatus(): boolean;
|
|
9595
|
+
clearArgoStatus(): OrchestrationStatus;
|
|
9596
|
+
|
|
9597
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
9598
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): OrchestrationStatus;
|
|
9599
|
+
hasStatus(): boolean;
|
|
9600
|
+
clearStatus(): OrchestrationStatus;
|
|
9601
|
+
|
|
9602
|
+
getStatusDetailsCase(): OrchestrationStatus.StatusDetailsCase;
|
|
9603
|
+
|
|
9604
|
+
serializeBinary(): Uint8Array;
|
|
9605
|
+
toObject(includeInstance?: boolean): OrchestrationStatus.AsObject;
|
|
9606
|
+
static toObject(includeInstance: boolean, msg: OrchestrationStatus): OrchestrationStatus.AsObject;
|
|
9607
|
+
static serializeBinaryToWriter(message: OrchestrationStatus, writer: jspb.BinaryWriter): void;
|
|
9608
|
+
static deserializeBinary(bytes: Uint8Array): OrchestrationStatus;
|
|
9609
|
+
static deserializeBinaryFromReader(message: OrchestrationStatus, reader: jspb.BinaryReader): OrchestrationStatus;
|
|
9610
|
+
}
|
|
9611
|
+
|
|
9612
|
+
export namespace OrchestrationStatus {
|
|
9613
|
+
export type AsObject = {
|
|
9614
|
+
argoStatus?: ArgoOrchestrationStatus.AsObject,
|
|
9615
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
9616
|
+
}
|
|
9617
|
+
|
|
9618
|
+
export enum StatusDetailsCase {
|
|
9619
|
+
STATUS_DETAILS_NOT_SET = 0,
|
|
9620
|
+
ARGO_STATUS = 1,
|
|
9621
|
+
}
|
|
9622
|
+
}
|
|
9623
|
+
|
|
9624
|
+
export class ArgoOrchestrationStatus extends jspb.Message {
|
|
9625
|
+
getStatus(): string;
|
|
9626
|
+
setStatus(value: string): ArgoOrchestrationStatus;
|
|
9627
|
+
|
|
9628
|
+
serializeBinary(): Uint8Array;
|
|
9629
|
+
toObject(includeInstance?: boolean): ArgoOrchestrationStatus.AsObject;
|
|
9630
|
+
static toObject(includeInstance: boolean, msg: ArgoOrchestrationStatus): ArgoOrchestrationStatus.AsObject;
|
|
9631
|
+
static serializeBinaryToWriter(message: ArgoOrchestrationStatus, writer: jspb.BinaryWriter): void;
|
|
9632
|
+
static deserializeBinary(bytes: Uint8Array): ArgoOrchestrationStatus;
|
|
9633
|
+
static deserializeBinaryFromReader(message: ArgoOrchestrationStatus, reader: jspb.BinaryReader): ArgoOrchestrationStatus;
|
|
9634
|
+
}
|
|
9635
|
+
|
|
9636
|
+
export namespace ArgoOrchestrationStatus {
|
|
9637
|
+
export type AsObject = {
|
|
9638
|
+
status: string,
|
|
9639
|
+
}
|
|
9640
|
+
}
|
|
9641
|
+
|
|
9642
|
+
export class PipelineVersionRun extends jspb.Message {
|
|
9643
|
+
getId(): string;
|
|
9644
|
+
setId(value: string): PipelineVersionRun;
|
|
9645
|
+
|
|
9646
|
+
getPipelineVersion(): PipelineVersion | undefined;
|
|
9647
|
+
setPipelineVersion(value?: PipelineVersion): PipelineVersionRun;
|
|
9648
|
+
hasPipelineVersion(): boolean;
|
|
9649
|
+
clearPipelineVersion(): PipelineVersionRun;
|
|
9650
|
+
|
|
9651
|
+
getNodepoolsList(): Array<Nodepool>;
|
|
9652
|
+
setNodepoolsList(value: Array<Nodepool>): PipelineVersionRun;
|
|
9653
|
+
clearNodepoolsList(): PipelineVersionRun;
|
|
9654
|
+
addNodepools(value?: Nodepool, index?: number): Nodepool;
|
|
9655
|
+
|
|
9656
|
+
getOrchestrationStatus(): OrchestrationStatus | undefined;
|
|
9657
|
+
setOrchestrationStatus(value?: OrchestrationStatus): PipelineVersionRun;
|
|
9658
|
+
hasOrchestrationStatus(): boolean;
|
|
9659
|
+
clearOrchestrationStatus(): PipelineVersionRun;
|
|
9660
|
+
|
|
9661
|
+
getUserId(): string;
|
|
9662
|
+
setUserId(value: string): PipelineVersionRun;
|
|
9663
|
+
|
|
9664
|
+
getAppId(): string;
|
|
9665
|
+
setAppId(value: string): PipelineVersionRun;
|
|
9666
|
+
|
|
9667
|
+
serializeBinary(): Uint8Array;
|
|
9668
|
+
toObject(includeInstance?: boolean): PipelineVersionRun.AsObject;
|
|
9669
|
+
static toObject(includeInstance: boolean, msg: PipelineVersionRun): PipelineVersionRun.AsObject;
|
|
9670
|
+
static serializeBinaryToWriter(message: PipelineVersionRun, writer: jspb.BinaryWriter): void;
|
|
9671
|
+
static deserializeBinary(bytes: Uint8Array): PipelineVersionRun;
|
|
9672
|
+
static deserializeBinaryFromReader(message: PipelineVersionRun, reader: jspb.BinaryReader): PipelineVersionRun;
|
|
9673
|
+
}
|
|
9674
|
+
|
|
9675
|
+
export namespace PipelineVersionRun {
|
|
9676
|
+
export type AsObject = {
|
|
9677
|
+
id: string,
|
|
9678
|
+
pipelineVersion?: PipelineVersion.AsObject,
|
|
9679
|
+
nodepoolsList: Array<Nodepool.AsObject>,
|
|
9680
|
+
orchestrationStatus?: OrchestrationStatus.AsObject,
|
|
9681
|
+
userId: string,
|
|
9682
|
+
appId: string,
|
|
9222
9683
|
}
|
|
9223
9684
|
}
|
|
9224
9685
|
|