clarifai-web-grpc 11.1.2 → 11.2.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 +2772 -4
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +210 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +1884 -5
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +3 -2
- package/dist/esm/proto/clarifai/api/resources_pb.js +2772 -4
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +210 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +1884 -5
- 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 +425 -0
- package/proto/clarifai/api/resources_pb.js +3444 -4
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +60 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +305 -0
- package/proto/clarifai/api/service_pb.d.ts +277 -0
- package/proto/clarifai/api/service_pb.js +2350 -5
- 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
|
@@ -1172,6 +1172,23 @@ export class Data extends jspb.Message {
|
|
|
1172
1172
|
hasNdarray(): boolean;
|
|
1173
1173
|
clearNdarray(): Data;
|
|
1174
1174
|
|
|
1175
|
+
getIntValue(): number;
|
|
1176
|
+
setIntValue(value: number): Data;
|
|
1177
|
+
|
|
1178
|
+
getFloatValue(): number;
|
|
1179
|
+
setFloatValue(value: number): Data;
|
|
1180
|
+
|
|
1181
|
+
getBytesValue(): Uint8Array | string;
|
|
1182
|
+
getBytesValue_asU8(): Uint8Array;
|
|
1183
|
+
getBytesValue_asB64(): string;
|
|
1184
|
+
setBytesValue(value: Uint8Array | string): Data;
|
|
1185
|
+
|
|
1186
|
+
getBoolValue(): boolean;
|
|
1187
|
+
setBoolValue(value: boolean): Data;
|
|
1188
|
+
|
|
1189
|
+
getStringValue(): string;
|
|
1190
|
+
setStringValue(value: string): Data;
|
|
1191
|
+
|
|
1175
1192
|
serializeBinary(): Uint8Array;
|
|
1176
1193
|
toObject(includeInstance?: boolean): Data.AsObject;
|
|
1177
1194
|
static toObject(includeInstance: boolean, msg: Data): Data.AsObject;
|
|
@@ -1200,6 +1217,11 @@ export namespace Data {
|
|
|
1200
1217
|
heatmapsList: Array<Image.AsObject>,
|
|
1201
1218
|
partsList: Array<Part.AsObject>,
|
|
1202
1219
|
ndarray?: NDArray.AsObject,
|
|
1220
|
+
intValue: number,
|
|
1221
|
+
floatValue: number,
|
|
1222
|
+
bytesValue: Uint8Array | string,
|
|
1223
|
+
boolValue: boolean,
|
|
1224
|
+
stringValue: string,
|
|
1203
1225
|
}
|
|
1204
1226
|
}
|
|
1205
1227
|
|
|
@@ -1209,6 +1231,9 @@ export class Part extends jspb.Message {
|
|
|
1209
1231
|
hasData(): boolean;
|
|
1210
1232
|
clearData(): Part;
|
|
1211
1233
|
|
|
1234
|
+
getId(): string;
|
|
1235
|
+
setId(value: string): Part;
|
|
1236
|
+
|
|
1212
1237
|
serializeBinary(): Uint8Array;
|
|
1213
1238
|
toObject(includeInstance?: boolean): Part.AsObject;
|
|
1214
1239
|
static toObject(includeInstance: boolean, msg: Part): Part.AsObject;
|
|
@@ -1220,6 +1245,7 @@ export class Part extends jspb.Message {
|
|
|
1220
1245
|
export namespace Part {
|
|
1221
1246
|
export type AsObject = {
|
|
1222
1247
|
data?: Data.AsObject,
|
|
1248
|
+
id: string,
|
|
1223
1249
|
}
|
|
1224
1250
|
}
|
|
1225
1251
|
|
|
@@ -2678,6 +2704,9 @@ export class Model extends jspb.Message {
|
|
|
2678
2704
|
getVersionCount(): number;
|
|
2679
2705
|
setVersionCount(value: number): Model;
|
|
2680
2706
|
|
|
2707
|
+
getBillingType(): Model.BillingType;
|
|
2708
|
+
setBillingType(value: Model.BillingType): Model;
|
|
2709
|
+
|
|
2681
2710
|
serializeBinary(): Uint8Array;
|
|
2682
2711
|
toObject(includeInstance?: boolean): Model.AsObject;
|
|
2683
2712
|
static toObject(includeInstance: boolean, msg: Model): Model.AsObject;
|
|
@@ -2719,6 +2748,7 @@ export namespace Model {
|
|
|
2719
2748
|
source: Model.Source,
|
|
2720
2749
|
creator: string,
|
|
2721
2750
|
versionCount: number,
|
|
2751
|
+
billingType: Model.BillingType,
|
|
2722
2752
|
}
|
|
2723
2753
|
|
|
2724
2754
|
export enum Source {
|
|
@@ -2726,6 +2756,12 @@ export namespace Model {
|
|
|
2726
2756
|
HOSTED = 1,
|
|
2727
2757
|
WRAPPED = 2,
|
|
2728
2758
|
}
|
|
2759
|
+
|
|
2760
|
+
export enum BillingType {
|
|
2761
|
+
UNKNOWN = 0,
|
|
2762
|
+
TOKENS = 1,
|
|
2763
|
+
OPS = 2,
|
|
2764
|
+
}
|
|
2729
2765
|
}
|
|
2730
2766
|
|
|
2731
2767
|
export class ModelReference extends jspb.Message {
|
|
@@ -8566,6 +8602,9 @@ export class AutoscaleConfig extends jspb.Message {
|
|
|
8566
8602
|
getDisablePacking(): boolean;
|
|
8567
8603
|
setDisablePacking(value: boolean): AutoscaleConfig;
|
|
8568
8604
|
|
|
8605
|
+
getScaleToZeroDelaySeconds(): number;
|
|
8606
|
+
setScaleToZeroDelaySeconds(value: number): AutoscaleConfig;
|
|
8607
|
+
|
|
8569
8608
|
serializeBinary(): Uint8Array;
|
|
8570
8609
|
toObject(includeInstance?: boolean): AutoscaleConfig.AsObject;
|
|
8571
8610
|
static toObject(includeInstance: boolean, msg: AutoscaleConfig): AutoscaleConfig.AsObject;
|
|
@@ -8582,6 +8621,7 @@ export namespace AutoscaleConfig {
|
|
|
8582
8621
|
scaleDownDelaySeconds: number,
|
|
8583
8622
|
scaleUpDelaySeconds: number,
|
|
8584
8623
|
disablePacking: boolean,
|
|
8624
|
+
scaleToZeroDelaySeconds: number,
|
|
8585
8625
|
}
|
|
8586
8626
|
}
|
|
8587
8627
|
|
|
@@ -9192,6 +9232,391 @@ export namespace ComputeSourceMetadata {
|
|
|
9192
9232
|
}
|
|
9193
9233
|
}
|
|
9194
9234
|
|
|
9235
|
+
export class WorkflowVersionEvaluation extends jspb.Message {
|
|
9236
|
+
getId(): string;
|
|
9237
|
+
setId(value: string): WorkflowVersionEvaluation;
|
|
9238
|
+
|
|
9239
|
+
getWorkflowId(): string;
|
|
9240
|
+
setWorkflowId(value: string): WorkflowVersionEvaluation;
|
|
9241
|
+
|
|
9242
|
+
getWorkflowVersionId(): string;
|
|
9243
|
+
setWorkflowVersionId(value: string): WorkflowVersionEvaluation;
|
|
9244
|
+
|
|
9245
|
+
getGroundTruthDatasetId(): string;
|
|
9246
|
+
setGroundTruthDatasetId(value: string): WorkflowVersionEvaluation;
|
|
9247
|
+
|
|
9248
|
+
getGroundTruthDatasetVersionId(): string;
|
|
9249
|
+
setGroundTruthDatasetVersionId(value: string): WorkflowVersionEvaluation;
|
|
9250
|
+
|
|
9251
|
+
getPredictionsDatasetId(): string;
|
|
9252
|
+
setPredictionsDatasetId(value: string): WorkflowVersionEvaluation;
|
|
9253
|
+
|
|
9254
|
+
getPredictionsDatasetVersionId(): string;
|
|
9255
|
+
setPredictionsDatasetVersionId(value: string): WorkflowVersionEvaluation;
|
|
9256
|
+
|
|
9257
|
+
getEvaluationTemplateId(): string;
|
|
9258
|
+
setEvaluationTemplateId(value: string): WorkflowVersionEvaluation;
|
|
9259
|
+
|
|
9260
|
+
getWorkflowEvaluationResult(): WorkflowEvaluationResult | undefined;
|
|
9261
|
+
setWorkflowEvaluationResult(value?: WorkflowEvaluationResult): WorkflowVersionEvaluation;
|
|
9262
|
+
hasWorkflowEvaluationResult(): boolean;
|
|
9263
|
+
clearWorkflowEvaluationResult(): WorkflowVersionEvaluation;
|
|
9264
|
+
|
|
9265
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
9266
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): WorkflowVersionEvaluation;
|
|
9267
|
+
hasStatus(): boolean;
|
|
9268
|
+
clearStatus(): WorkflowVersionEvaluation;
|
|
9269
|
+
|
|
9270
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9271
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): WorkflowVersionEvaluation;
|
|
9272
|
+
hasCreatedAt(): boolean;
|
|
9273
|
+
clearCreatedAt(): WorkflowVersionEvaluation;
|
|
9274
|
+
|
|
9275
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9276
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): WorkflowVersionEvaluation;
|
|
9277
|
+
hasModifiedAt(): boolean;
|
|
9278
|
+
clearModifiedAt(): WorkflowVersionEvaluation;
|
|
9279
|
+
|
|
9280
|
+
serializeBinary(): Uint8Array;
|
|
9281
|
+
toObject(includeInstance?: boolean): WorkflowVersionEvaluation.AsObject;
|
|
9282
|
+
static toObject(includeInstance: boolean, msg: WorkflowVersionEvaluation): WorkflowVersionEvaluation.AsObject;
|
|
9283
|
+
static serializeBinaryToWriter(message: WorkflowVersionEvaluation, writer: jspb.BinaryWriter): void;
|
|
9284
|
+
static deserializeBinary(bytes: Uint8Array): WorkflowVersionEvaluation;
|
|
9285
|
+
static deserializeBinaryFromReader(message: WorkflowVersionEvaluation, reader: jspb.BinaryReader): WorkflowVersionEvaluation;
|
|
9286
|
+
}
|
|
9287
|
+
|
|
9288
|
+
export namespace WorkflowVersionEvaluation {
|
|
9289
|
+
export type AsObject = {
|
|
9290
|
+
id: string,
|
|
9291
|
+
workflowId: string,
|
|
9292
|
+
workflowVersionId: string,
|
|
9293
|
+
groundTruthDatasetId: string,
|
|
9294
|
+
groundTruthDatasetVersionId: string,
|
|
9295
|
+
predictionsDatasetId: string,
|
|
9296
|
+
predictionsDatasetVersionId: string,
|
|
9297
|
+
evaluationTemplateId: string,
|
|
9298
|
+
workflowEvaluationResult?: WorkflowEvaluationResult.AsObject,
|
|
9299
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
9300
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9301
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9302
|
+
}
|
|
9303
|
+
}
|
|
9304
|
+
|
|
9305
|
+
export class WorkflowEvaluationResult extends jspb.Message {
|
|
9306
|
+
getSummary(): WorkflowEvaluationResultSummary | undefined;
|
|
9307
|
+
setSummary(value?: WorkflowEvaluationResultSummary): WorkflowEvaluationResult;
|
|
9308
|
+
hasSummary(): boolean;
|
|
9309
|
+
clearSummary(): WorkflowEvaluationResult;
|
|
9310
|
+
|
|
9311
|
+
serializeBinary(): Uint8Array;
|
|
9312
|
+
toObject(includeInstance?: boolean): WorkflowEvaluationResult.AsObject;
|
|
9313
|
+
static toObject(includeInstance: boolean, msg: WorkflowEvaluationResult): WorkflowEvaluationResult.AsObject;
|
|
9314
|
+
static serializeBinaryToWriter(message: WorkflowEvaluationResult, writer: jspb.BinaryWriter): void;
|
|
9315
|
+
static deserializeBinary(bytes: Uint8Array): WorkflowEvaluationResult;
|
|
9316
|
+
static deserializeBinaryFromReader(message: WorkflowEvaluationResult, reader: jspb.BinaryReader): WorkflowEvaluationResult;
|
|
9317
|
+
}
|
|
9318
|
+
|
|
9319
|
+
export namespace WorkflowEvaluationResult {
|
|
9320
|
+
export type AsObject = {
|
|
9321
|
+
summary?: WorkflowEvaluationResultSummary.AsObject,
|
|
9322
|
+
}
|
|
9323
|
+
}
|
|
9324
|
+
|
|
9325
|
+
export class WorkflowEvaluationResultSummary extends jspb.Message {
|
|
9326
|
+
getEvaluationMetricValuesList(): Array<EvaluationMetricValue>;
|
|
9327
|
+
setEvaluationMetricValuesList(value: Array<EvaluationMetricValue>): WorkflowEvaluationResultSummary;
|
|
9328
|
+
clearEvaluationMetricValuesList(): WorkflowEvaluationResultSummary;
|
|
9329
|
+
addEvaluationMetricValues(value?: EvaluationMetricValue, index?: number): EvaluationMetricValue;
|
|
9330
|
+
|
|
9331
|
+
serializeBinary(): Uint8Array;
|
|
9332
|
+
toObject(includeInstance?: boolean): WorkflowEvaluationResultSummary.AsObject;
|
|
9333
|
+
static toObject(includeInstance: boolean, msg: WorkflowEvaluationResultSummary): WorkflowEvaluationResultSummary.AsObject;
|
|
9334
|
+
static serializeBinaryToWriter(message: WorkflowEvaluationResultSummary, writer: jspb.BinaryWriter): void;
|
|
9335
|
+
static deserializeBinary(bytes: Uint8Array): WorkflowEvaluationResultSummary;
|
|
9336
|
+
static deserializeBinaryFromReader(message: WorkflowEvaluationResultSummary, reader: jspb.BinaryReader): WorkflowEvaluationResultSummary;
|
|
9337
|
+
}
|
|
9338
|
+
|
|
9339
|
+
export namespace WorkflowEvaluationResultSummary {
|
|
9340
|
+
export type AsObject = {
|
|
9341
|
+
evaluationMetricValuesList: Array<EvaluationMetricValue.AsObject>,
|
|
9342
|
+
}
|
|
9343
|
+
}
|
|
9344
|
+
|
|
9345
|
+
export class EvaluationMetricValue extends jspb.Message {
|
|
9346
|
+
getEvaluationMetricId(): string;
|
|
9347
|
+
setEvaluationMetricId(value: string): EvaluationMetricValue;
|
|
9348
|
+
|
|
9349
|
+
getMetricValue(): MetricValue | undefined;
|
|
9350
|
+
setMetricValue(value?: MetricValue): EvaluationMetricValue;
|
|
9351
|
+
hasMetricValue(): boolean;
|
|
9352
|
+
clearMetricValue(): EvaluationMetricValue;
|
|
9353
|
+
|
|
9354
|
+
getExplanation(): string;
|
|
9355
|
+
setExplanation(value: string): EvaluationMetricValue;
|
|
9356
|
+
|
|
9357
|
+
getPerConceptValuesMap(): jspb.Map<string, MetricValue>;
|
|
9358
|
+
clearPerConceptValuesMap(): EvaluationMetricValue;
|
|
9359
|
+
|
|
9360
|
+
serializeBinary(): Uint8Array;
|
|
9361
|
+
toObject(includeInstance?: boolean): EvaluationMetricValue.AsObject;
|
|
9362
|
+
static toObject(includeInstance: boolean, msg: EvaluationMetricValue): EvaluationMetricValue.AsObject;
|
|
9363
|
+
static serializeBinaryToWriter(message: EvaluationMetricValue, writer: jspb.BinaryWriter): void;
|
|
9364
|
+
static deserializeBinary(bytes: Uint8Array): EvaluationMetricValue;
|
|
9365
|
+
static deserializeBinaryFromReader(message: EvaluationMetricValue, reader: jspb.BinaryReader): EvaluationMetricValue;
|
|
9366
|
+
}
|
|
9367
|
+
|
|
9368
|
+
export namespace EvaluationMetricValue {
|
|
9369
|
+
export type AsObject = {
|
|
9370
|
+
evaluationMetricId: string,
|
|
9371
|
+
metricValue?: MetricValue.AsObject,
|
|
9372
|
+
explanation: string,
|
|
9373
|
+
perConceptValuesMap: Array<[string, MetricValue.AsObject]>,
|
|
9374
|
+
}
|
|
9375
|
+
}
|
|
9376
|
+
|
|
9377
|
+
export class MetricValue extends jspb.Message {
|
|
9378
|
+
getStringValue(): string;
|
|
9379
|
+
setStringValue(value: string): MetricValue;
|
|
9380
|
+
|
|
9381
|
+
getFloatValue(): number;
|
|
9382
|
+
setFloatValue(value: number): MetricValue;
|
|
9383
|
+
|
|
9384
|
+
getIntValue(): number;
|
|
9385
|
+
setIntValue(value: number): MetricValue;
|
|
9386
|
+
|
|
9387
|
+
getMetricValueCase(): MetricValue.MetricValueCase;
|
|
9388
|
+
|
|
9389
|
+
serializeBinary(): Uint8Array;
|
|
9390
|
+
toObject(includeInstance?: boolean): MetricValue.AsObject;
|
|
9391
|
+
static toObject(includeInstance: boolean, msg: MetricValue): MetricValue.AsObject;
|
|
9392
|
+
static serializeBinaryToWriter(message: MetricValue, writer: jspb.BinaryWriter): void;
|
|
9393
|
+
static deserializeBinary(bytes: Uint8Array): MetricValue;
|
|
9394
|
+
static deserializeBinaryFromReader(message: MetricValue, reader: jspb.BinaryReader): MetricValue;
|
|
9395
|
+
}
|
|
9396
|
+
|
|
9397
|
+
export namespace MetricValue {
|
|
9398
|
+
export type AsObject = {
|
|
9399
|
+
stringValue: string,
|
|
9400
|
+
floatValue: number,
|
|
9401
|
+
intValue: number,
|
|
9402
|
+
}
|
|
9403
|
+
|
|
9404
|
+
export enum MetricValueCase {
|
|
9405
|
+
METRIC_VALUE_NOT_SET = 0,
|
|
9406
|
+
STRING_VALUE = 1,
|
|
9407
|
+
FLOAT_VALUE = 2,
|
|
9408
|
+
INT_VALUE = 3,
|
|
9409
|
+
}
|
|
9410
|
+
}
|
|
9411
|
+
|
|
9412
|
+
export class ArgoOrchestrationSpec extends jspb.Message {
|
|
9413
|
+
getApiVersion(): string;
|
|
9414
|
+
setApiVersion(value: string): ArgoOrchestrationSpec;
|
|
9415
|
+
|
|
9416
|
+
getSpecJson(): string;
|
|
9417
|
+
setSpecJson(value: string): ArgoOrchestrationSpec;
|
|
9418
|
+
|
|
9419
|
+
serializeBinary(): Uint8Array;
|
|
9420
|
+
toObject(includeInstance?: boolean): ArgoOrchestrationSpec.AsObject;
|
|
9421
|
+
static toObject(includeInstance: boolean, msg: ArgoOrchestrationSpec): ArgoOrchestrationSpec.AsObject;
|
|
9422
|
+
static serializeBinaryToWriter(message: ArgoOrchestrationSpec, writer: jspb.BinaryWriter): void;
|
|
9423
|
+
static deserializeBinary(bytes: Uint8Array): ArgoOrchestrationSpec;
|
|
9424
|
+
static deserializeBinaryFromReader(message: ArgoOrchestrationSpec, reader: jspb.BinaryReader): ArgoOrchestrationSpec;
|
|
9425
|
+
}
|
|
9426
|
+
|
|
9427
|
+
export namespace ArgoOrchestrationSpec {
|
|
9428
|
+
export type AsObject = {
|
|
9429
|
+
apiVersion: string,
|
|
9430
|
+
specJson: string,
|
|
9431
|
+
}
|
|
9432
|
+
}
|
|
9433
|
+
|
|
9434
|
+
export class OrchestrationSpec extends jspb.Message {
|
|
9435
|
+
getArgoOrchestrationSpec(): ArgoOrchestrationSpec | undefined;
|
|
9436
|
+
setArgoOrchestrationSpec(value?: ArgoOrchestrationSpec): OrchestrationSpec;
|
|
9437
|
+
hasArgoOrchestrationSpec(): boolean;
|
|
9438
|
+
clearArgoOrchestrationSpec(): OrchestrationSpec;
|
|
9439
|
+
|
|
9440
|
+
getOrchestrationCase(): OrchestrationSpec.OrchestrationCase;
|
|
9441
|
+
|
|
9442
|
+
serializeBinary(): Uint8Array;
|
|
9443
|
+
toObject(includeInstance?: boolean): OrchestrationSpec.AsObject;
|
|
9444
|
+
static toObject(includeInstance: boolean, msg: OrchestrationSpec): OrchestrationSpec.AsObject;
|
|
9445
|
+
static serializeBinaryToWriter(message: OrchestrationSpec, writer: jspb.BinaryWriter): void;
|
|
9446
|
+
static deserializeBinary(bytes: Uint8Array): OrchestrationSpec;
|
|
9447
|
+
static deserializeBinaryFromReader(message: OrchestrationSpec, reader: jspb.BinaryReader): OrchestrationSpec;
|
|
9448
|
+
}
|
|
9449
|
+
|
|
9450
|
+
export namespace OrchestrationSpec {
|
|
9451
|
+
export type AsObject = {
|
|
9452
|
+
argoOrchestrationSpec?: ArgoOrchestrationSpec.AsObject,
|
|
9453
|
+
}
|
|
9454
|
+
|
|
9455
|
+
export enum OrchestrationCase {
|
|
9456
|
+
ORCHESTRATION_NOT_SET = 0,
|
|
9457
|
+
ARGO_ORCHESTRATION_SPEC = 1,
|
|
9458
|
+
}
|
|
9459
|
+
}
|
|
9460
|
+
|
|
9461
|
+
export class PipelineVersion extends jspb.Message {
|
|
9462
|
+
getId(): string;
|
|
9463
|
+
setId(value: string): PipelineVersion;
|
|
9464
|
+
|
|
9465
|
+
getAppId(): string;
|
|
9466
|
+
setAppId(value: string): PipelineVersion;
|
|
9467
|
+
|
|
9468
|
+
getUserId(): string;
|
|
9469
|
+
setUserId(value: string): PipelineVersion;
|
|
9470
|
+
|
|
9471
|
+
getOrchestrationSpec(): OrchestrationSpec | undefined;
|
|
9472
|
+
setOrchestrationSpec(value?: OrchestrationSpec): PipelineVersion;
|
|
9473
|
+
hasOrchestrationSpec(): boolean;
|
|
9474
|
+
clearOrchestrationSpec(): PipelineVersion;
|
|
9475
|
+
|
|
9476
|
+
getPipelineId(): string;
|
|
9477
|
+
setPipelineId(value: string): PipelineVersion;
|
|
9478
|
+
|
|
9479
|
+
getDescription(): string;
|
|
9480
|
+
setDescription(value: string): PipelineVersion;
|
|
9481
|
+
|
|
9482
|
+
getVisibility(): Visibility | undefined;
|
|
9483
|
+
setVisibility(value?: Visibility): PipelineVersion;
|
|
9484
|
+
hasVisibility(): boolean;
|
|
9485
|
+
clearVisibility(): PipelineVersion;
|
|
9486
|
+
|
|
9487
|
+
getMetadata(): google_protobuf_struct_pb.Struct | undefined;
|
|
9488
|
+
setMetadata(value?: google_protobuf_struct_pb.Struct): PipelineVersion;
|
|
9489
|
+
hasMetadata(): boolean;
|
|
9490
|
+
clearMetadata(): PipelineVersion;
|
|
9491
|
+
|
|
9492
|
+
getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9493
|
+
setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): PipelineVersion;
|
|
9494
|
+
hasCreatedAt(): boolean;
|
|
9495
|
+
clearCreatedAt(): PipelineVersion;
|
|
9496
|
+
|
|
9497
|
+
getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
9498
|
+
setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): PipelineVersion;
|
|
9499
|
+
hasModifiedAt(): boolean;
|
|
9500
|
+
clearModifiedAt(): PipelineVersion;
|
|
9501
|
+
|
|
9502
|
+
serializeBinary(): Uint8Array;
|
|
9503
|
+
toObject(includeInstance?: boolean): PipelineVersion.AsObject;
|
|
9504
|
+
static toObject(includeInstance: boolean, msg: PipelineVersion): PipelineVersion.AsObject;
|
|
9505
|
+
static serializeBinaryToWriter(message: PipelineVersion, writer: jspb.BinaryWriter): void;
|
|
9506
|
+
static deserializeBinary(bytes: Uint8Array): PipelineVersion;
|
|
9507
|
+
static deserializeBinaryFromReader(message: PipelineVersion, reader: jspb.BinaryReader): PipelineVersion;
|
|
9508
|
+
}
|
|
9509
|
+
|
|
9510
|
+
export namespace PipelineVersion {
|
|
9511
|
+
export type AsObject = {
|
|
9512
|
+
id: string,
|
|
9513
|
+
appId: string,
|
|
9514
|
+
userId: string,
|
|
9515
|
+
orchestrationSpec?: OrchestrationSpec.AsObject,
|
|
9516
|
+
pipelineId: string,
|
|
9517
|
+
description: string,
|
|
9518
|
+
visibility?: Visibility.AsObject,
|
|
9519
|
+
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
9520
|
+
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9521
|
+
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
9522
|
+
}
|
|
9523
|
+
}
|
|
9524
|
+
|
|
9525
|
+
export class OrchestrationStatus extends jspb.Message {
|
|
9526
|
+
getArgoStatus(): ArgoOrchestrationStatus | undefined;
|
|
9527
|
+
setArgoStatus(value?: ArgoOrchestrationStatus): OrchestrationStatus;
|
|
9528
|
+
hasArgoStatus(): boolean;
|
|
9529
|
+
clearArgoStatus(): OrchestrationStatus;
|
|
9530
|
+
|
|
9531
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
9532
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): OrchestrationStatus;
|
|
9533
|
+
hasStatus(): boolean;
|
|
9534
|
+
clearStatus(): OrchestrationStatus;
|
|
9535
|
+
|
|
9536
|
+
getStatusDetailsCase(): OrchestrationStatus.StatusDetailsCase;
|
|
9537
|
+
|
|
9538
|
+
serializeBinary(): Uint8Array;
|
|
9539
|
+
toObject(includeInstance?: boolean): OrchestrationStatus.AsObject;
|
|
9540
|
+
static toObject(includeInstance: boolean, msg: OrchestrationStatus): OrchestrationStatus.AsObject;
|
|
9541
|
+
static serializeBinaryToWriter(message: OrchestrationStatus, writer: jspb.BinaryWriter): void;
|
|
9542
|
+
static deserializeBinary(bytes: Uint8Array): OrchestrationStatus;
|
|
9543
|
+
static deserializeBinaryFromReader(message: OrchestrationStatus, reader: jspb.BinaryReader): OrchestrationStatus;
|
|
9544
|
+
}
|
|
9545
|
+
|
|
9546
|
+
export namespace OrchestrationStatus {
|
|
9547
|
+
export type AsObject = {
|
|
9548
|
+
argoStatus?: ArgoOrchestrationStatus.AsObject,
|
|
9549
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
9550
|
+
}
|
|
9551
|
+
|
|
9552
|
+
export enum StatusDetailsCase {
|
|
9553
|
+
STATUS_DETAILS_NOT_SET = 0,
|
|
9554
|
+
ARGO_STATUS = 1,
|
|
9555
|
+
}
|
|
9556
|
+
}
|
|
9557
|
+
|
|
9558
|
+
export class ArgoOrchestrationStatus extends jspb.Message {
|
|
9559
|
+
getStatus(): string;
|
|
9560
|
+
setStatus(value: string): ArgoOrchestrationStatus;
|
|
9561
|
+
|
|
9562
|
+
serializeBinary(): Uint8Array;
|
|
9563
|
+
toObject(includeInstance?: boolean): ArgoOrchestrationStatus.AsObject;
|
|
9564
|
+
static toObject(includeInstance: boolean, msg: ArgoOrchestrationStatus): ArgoOrchestrationStatus.AsObject;
|
|
9565
|
+
static serializeBinaryToWriter(message: ArgoOrchestrationStatus, writer: jspb.BinaryWriter): void;
|
|
9566
|
+
static deserializeBinary(bytes: Uint8Array): ArgoOrchestrationStatus;
|
|
9567
|
+
static deserializeBinaryFromReader(message: ArgoOrchestrationStatus, reader: jspb.BinaryReader): ArgoOrchestrationStatus;
|
|
9568
|
+
}
|
|
9569
|
+
|
|
9570
|
+
export namespace ArgoOrchestrationStatus {
|
|
9571
|
+
export type AsObject = {
|
|
9572
|
+
status: string,
|
|
9573
|
+
}
|
|
9574
|
+
}
|
|
9575
|
+
|
|
9576
|
+
export class PipelineVersionRun extends jspb.Message {
|
|
9577
|
+
getId(): string;
|
|
9578
|
+
setId(value: string): PipelineVersionRun;
|
|
9579
|
+
|
|
9580
|
+
getPipelineVersion(): PipelineVersion | undefined;
|
|
9581
|
+
setPipelineVersion(value?: PipelineVersion): PipelineVersionRun;
|
|
9582
|
+
hasPipelineVersion(): boolean;
|
|
9583
|
+
clearPipelineVersion(): PipelineVersionRun;
|
|
9584
|
+
|
|
9585
|
+
getNodepoolsList(): Array<Nodepool>;
|
|
9586
|
+
setNodepoolsList(value: Array<Nodepool>): PipelineVersionRun;
|
|
9587
|
+
clearNodepoolsList(): PipelineVersionRun;
|
|
9588
|
+
addNodepools(value?: Nodepool, index?: number): Nodepool;
|
|
9589
|
+
|
|
9590
|
+
getOrchestrationStatus(): OrchestrationStatus | undefined;
|
|
9591
|
+
setOrchestrationStatus(value?: OrchestrationStatus): PipelineVersionRun;
|
|
9592
|
+
hasOrchestrationStatus(): boolean;
|
|
9593
|
+
clearOrchestrationStatus(): PipelineVersionRun;
|
|
9594
|
+
|
|
9595
|
+
getUserId(): string;
|
|
9596
|
+
setUserId(value: string): PipelineVersionRun;
|
|
9597
|
+
|
|
9598
|
+
getAppId(): string;
|
|
9599
|
+
setAppId(value: string): PipelineVersionRun;
|
|
9600
|
+
|
|
9601
|
+
serializeBinary(): Uint8Array;
|
|
9602
|
+
toObject(includeInstance?: boolean): PipelineVersionRun.AsObject;
|
|
9603
|
+
static toObject(includeInstance: boolean, msg: PipelineVersionRun): PipelineVersionRun.AsObject;
|
|
9604
|
+
static serializeBinaryToWriter(message: PipelineVersionRun, writer: jspb.BinaryWriter): void;
|
|
9605
|
+
static deserializeBinary(bytes: Uint8Array): PipelineVersionRun;
|
|
9606
|
+
static deserializeBinaryFromReader(message: PipelineVersionRun, reader: jspb.BinaryReader): PipelineVersionRun;
|
|
9607
|
+
}
|
|
9608
|
+
|
|
9609
|
+
export namespace PipelineVersionRun {
|
|
9610
|
+
export type AsObject = {
|
|
9611
|
+
id: string,
|
|
9612
|
+
pipelineVersion?: PipelineVersion.AsObject,
|
|
9613
|
+
nodepoolsList: Array<Nodepool.AsObject>,
|
|
9614
|
+
orchestrationStatus?: OrchestrationStatus.AsObject,
|
|
9615
|
+
userId: string,
|
|
9616
|
+
appId: string,
|
|
9617
|
+
}
|
|
9618
|
+
}
|
|
9619
|
+
|
|
9195
9620
|
export enum WorkflowModelUseCase {
|
|
9196
9621
|
WORKFLOW_MODEL_USE_CASE_NOT_SET = 0,
|
|
9197
9622
|
CLASSIFICATION = 1,
|