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
|
@@ -3180,6 +3180,15 @@ export class ListLogEntriesRequest extends jspb.Message {
|
|
|
3180
3180
|
getRunnerId(): string;
|
|
3181
3181
|
setRunnerId(value: string): ListLogEntriesRequest;
|
|
3182
3182
|
|
|
3183
|
+
getPipelineId(): string;
|
|
3184
|
+
setPipelineId(value: string): ListLogEntriesRequest;
|
|
3185
|
+
|
|
3186
|
+
getPipelineVersionId(): string;
|
|
3187
|
+
setPipelineVersionId(value: string): ListLogEntriesRequest;
|
|
3188
|
+
|
|
3189
|
+
getPipelineVersionRunId(): string;
|
|
3190
|
+
setPipelineVersionRunId(value: string): ListLogEntriesRequest;
|
|
3191
|
+
|
|
3183
3192
|
serializeBinary(): Uint8Array;
|
|
3184
3193
|
toObject(includeInstance?: boolean): ListLogEntriesRequest.AsObject;
|
|
3185
3194
|
static toObject(includeInstance: boolean, msg: ListLogEntriesRequest): ListLogEntriesRequest.AsObject;
|
|
@@ -3200,6 +3209,9 @@ export namespace ListLogEntriesRequest {
|
|
|
3200
3209
|
computeClusterId: string,
|
|
3201
3210
|
nodepoolId: string,
|
|
3202
3211
|
runnerId: string,
|
|
3212
|
+
pipelineId: string,
|
|
3213
|
+
pipelineVersionId: string,
|
|
3214
|
+
pipelineVersionRunId: string,
|
|
3203
3215
|
}
|
|
3204
3216
|
}
|
|
3205
3217
|
|
|
@@ -3230,6 +3242,15 @@ export class StreamLogEntriesRequest extends jspb.Message {
|
|
|
3230
3242
|
getRunnerId(): string;
|
|
3231
3243
|
setRunnerId(value: string): StreamLogEntriesRequest;
|
|
3232
3244
|
|
|
3245
|
+
getPipelineId(): string;
|
|
3246
|
+
setPipelineId(value: string): StreamLogEntriesRequest;
|
|
3247
|
+
|
|
3248
|
+
getPipelineVersionId(): string;
|
|
3249
|
+
setPipelineVersionId(value: string): StreamLogEntriesRequest;
|
|
3250
|
+
|
|
3251
|
+
getPipelineVersionRunId(): string;
|
|
3252
|
+
setPipelineVersionRunId(value: string): StreamLogEntriesRequest;
|
|
3253
|
+
|
|
3233
3254
|
serializeBinary(): Uint8Array;
|
|
3234
3255
|
toObject(includeInstance?: boolean): StreamLogEntriesRequest.AsObject;
|
|
3235
3256
|
static toObject(includeInstance: boolean, msg: StreamLogEntriesRequest): StreamLogEntriesRequest.AsObject;
|
|
@@ -3248,6 +3269,9 @@ export namespace StreamLogEntriesRequest {
|
|
|
3248
3269
|
computeClusterId: string,
|
|
3249
3270
|
nodepoolId: string,
|
|
3250
3271
|
runnerId: string,
|
|
3272
|
+
pipelineId: string,
|
|
3273
|
+
pipelineVersionId: string,
|
|
3274
|
+
pipelineVersionRunId: string,
|
|
3251
3275
|
}
|
|
3252
3276
|
}
|
|
3253
3277
|
|
|
@@ -4470,6 +4494,9 @@ export class PostModelVersionsRequest extends jspb.Message {
|
|
|
4470
4494
|
hasEvalInfo(): boolean;
|
|
4471
4495
|
clearEvalInfo(): PostModelVersionsRequest;
|
|
4472
4496
|
|
|
4497
|
+
getDoMigration(): boolean;
|
|
4498
|
+
setDoMigration(value: boolean): PostModelVersionsRequest;
|
|
4499
|
+
|
|
4473
4500
|
serializeBinary(): Uint8Array;
|
|
4474
4501
|
toObject(includeInstance?: boolean): PostModelVersionsRequest.AsObject;
|
|
4475
4502
|
static toObject(includeInstance: boolean, msg: PostModelVersionsRequest): PostModelVersionsRequest.AsObject;
|
|
@@ -4485,6 +4512,7 @@ export namespace PostModelVersionsRequest {
|
|
|
4485
4512
|
modelVersionsList: Array<proto_clarifai_api_resources_pb.ModelVersion.AsObject>,
|
|
4486
4513
|
description: string,
|
|
4487
4514
|
evalInfo?: proto_clarifai_api_resources_pb.EvalInfo.AsObject,
|
|
4515
|
+
doMigration: boolean,
|
|
4488
4516
|
}
|
|
4489
4517
|
}
|
|
4490
4518
|
|
|
@@ -9925,6 +9953,44 @@ export namespace PostRunnersRequest {
|
|
|
9925
9953
|
}
|
|
9926
9954
|
}
|
|
9927
9955
|
|
|
9956
|
+
export class PatchRunnersRequest extends jspb.Message {
|
|
9957
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
9958
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PatchRunnersRequest;
|
|
9959
|
+
hasUserAppId(): boolean;
|
|
9960
|
+
clearUserAppId(): PatchRunnersRequest;
|
|
9961
|
+
|
|
9962
|
+
getNodepoolId(): string;
|
|
9963
|
+
setNodepoolId(value: string): PatchRunnersRequest;
|
|
9964
|
+
|
|
9965
|
+
getRunnersList(): Array<proto_clarifai_api_resources_pb.Runner>;
|
|
9966
|
+
setRunnersList(value: Array<proto_clarifai_api_resources_pb.Runner>): PatchRunnersRequest;
|
|
9967
|
+
clearRunnersList(): PatchRunnersRequest;
|
|
9968
|
+
addRunners(value?: proto_clarifai_api_resources_pb.Runner, index?: number): proto_clarifai_api_resources_pb.Runner;
|
|
9969
|
+
|
|
9970
|
+
getComputeClusterId(): string;
|
|
9971
|
+
setComputeClusterId(value: string): PatchRunnersRequest;
|
|
9972
|
+
|
|
9973
|
+
getAction(): string;
|
|
9974
|
+
setAction(value: string): PatchRunnersRequest;
|
|
9975
|
+
|
|
9976
|
+
serializeBinary(): Uint8Array;
|
|
9977
|
+
toObject(includeInstance?: boolean): PatchRunnersRequest.AsObject;
|
|
9978
|
+
static toObject(includeInstance: boolean, msg: PatchRunnersRequest): PatchRunnersRequest.AsObject;
|
|
9979
|
+
static serializeBinaryToWriter(message: PatchRunnersRequest, writer: jspb.BinaryWriter): void;
|
|
9980
|
+
static deserializeBinary(bytes: Uint8Array): PatchRunnersRequest;
|
|
9981
|
+
static deserializeBinaryFromReader(message: PatchRunnersRequest, reader: jspb.BinaryReader): PatchRunnersRequest;
|
|
9982
|
+
}
|
|
9983
|
+
|
|
9984
|
+
export namespace PatchRunnersRequest {
|
|
9985
|
+
export type AsObject = {
|
|
9986
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
9987
|
+
nodepoolId: string,
|
|
9988
|
+
runnersList: Array<proto_clarifai_api_resources_pb.Runner.AsObject>,
|
|
9989
|
+
computeClusterId: string,
|
|
9990
|
+
action: string,
|
|
9991
|
+
}
|
|
9992
|
+
}
|
|
9993
|
+
|
|
9928
9994
|
export class DeleteRunnersRequest extends jspb.Message {
|
|
9929
9995
|
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
9930
9996
|
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): DeleteRunnersRequest;
|
|
@@ -10074,6 +10140,12 @@ export class PostRunnerItemOutputsRequest extends jspb.Message {
|
|
|
10074
10140
|
getComputeClusterId(): string;
|
|
10075
10141
|
setComputeClusterId(value: string): PostRunnerItemOutputsRequest;
|
|
10076
10142
|
|
|
10143
|
+
getCloudProviderId(): string;
|
|
10144
|
+
setCloudProviderId(value: string): PostRunnerItemOutputsRequest;
|
|
10145
|
+
|
|
10146
|
+
getRegion(): string;
|
|
10147
|
+
setRegion(value: string): PostRunnerItemOutputsRequest;
|
|
10148
|
+
|
|
10077
10149
|
serializeBinary(): Uint8Array;
|
|
10078
10150
|
toObject(includeInstance?: boolean): PostRunnerItemOutputsRequest.AsObject;
|
|
10079
10151
|
static toObject(includeInstance: boolean, msg: PostRunnerItemOutputsRequest): PostRunnerItemOutputsRequest.AsObject;
|
|
@@ -10092,6 +10164,50 @@ export namespace PostRunnerItemOutputsRequest {
|
|
|
10092
10164
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
10093
10165
|
runnerReplicaId: string,
|
|
10094
10166
|
computeClusterId: string,
|
|
10167
|
+
cloudProviderId: string,
|
|
10168
|
+
region: string,
|
|
10169
|
+
}
|
|
10170
|
+
}
|
|
10171
|
+
|
|
10172
|
+
export class SyncStateRequest extends jspb.Message {
|
|
10173
|
+
getOperationType(): string;
|
|
10174
|
+
setOperationType(value: string): SyncStateRequest;
|
|
10175
|
+
|
|
10176
|
+
getComputeClustersList(): Array<proto_clarifai_api_resources_pb.ComputeCluster>;
|
|
10177
|
+
setComputeClustersList(value: Array<proto_clarifai_api_resources_pb.ComputeCluster>): SyncStateRequest;
|
|
10178
|
+
clearComputeClustersList(): SyncStateRequest;
|
|
10179
|
+
addComputeClusters(value?: proto_clarifai_api_resources_pb.ComputeCluster, index?: number): proto_clarifai_api_resources_pb.ComputeCluster;
|
|
10180
|
+
|
|
10181
|
+
getNodepoolsList(): Array<proto_clarifai_api_resources_pb.Nodepool>;
|
|
10182
|
+
setNodepoolsList(value: Array<proto_clarifai_api_resources_pb.Nodepool>): SyncStateRequest;
|
|
10183
|
+
clearNodepoolsList(): SyncStateRequest;
|
|
10184
|
+
addNodepools(value?: proto_clarifai_api_resources_pb.Nodepool, index?: number): proto_clarifai_api_resources_pb.Nodepool;
|
|
10185
|
+
|
|
10186
|
+
getRunnersList(): Array<proto_clarifai_api_resources_pb.Runner>;
|
|
10187
|
+
setRunnersList(value: Array<proto_clarifai_api_resources_pb.Runner>): SyncStateRequest;
|
|
10188
|
+
clearRunnersList(): SyncStateRequest;
|
|
10189
|
+
addRunners(value?: proto_clarifai_api_resources_pb.Runner, index?: number): proto_clarifai_api_resources_pb.Runner;
|
|
10190
|
+
|
|
10191
|
+
getPipelineVersionRunsList(): Array<proto_clarifai_api_resources_pb.PipelineVersionRun>;
|
|
10192
|
+
setPipelineVersionRunsList(value: Array<proto_clarifai_api_resources_pb.PipelineVersionRun>): SyncStateRequest;
|
|
10193
|
+
clearPipelineVersionRunsList(): SyncStateRequest;
|
|
10194
|
+
addPipelineVersionRuns(value?: proto_clarifai_api_resources_pb.PipelineVersionRun, index?: number): proto_clarifai_api_resources_pb.PipelineVersionRun;
|
|
10195
|
+
|
|
10196
|
+
serializeBinary(): Uint8Array;
|
|
10197
|
+
toObject(includeInstance?: boolean): SyncStateRequest.AsObject;
|
|
10198
|
+
static toObject(includeInstance: boolean, msg: SyncStateRequest): SyncStateRequest.AsObject;
|
|
10199
|
+
static serializeBinaryToWriter(message: SyncStateRequest, writer: jspb.BinaryWriter): void;
|
|
10200
|
+
static deserializeBinary(bytes: Uint8Array): SyncStateRequest;
|
|
10201
|
+
static deserializeBinaryFromReader(message: SyncStateRequest, reader: jspb.BinaryReader): SyncStateRequest;
|
|
10202
|
+
}
|
|
10203
|
+
|
|
10204
|
+
export namespace SyncStateRequest {
|
|
10205
|
+
export type AsObject = {
|
|
10206
|
+
operationType: string,
|
|
10207
|
+
computeClustersList: Array<proto_clarifai_api_resources_pb.ComputeCluster.AsObject>,
|
|
10208
|
+
nodepoolsList: Array<proto_clarifai_api_resources_pb.Nodepool.AsObject>,
|
|
10209
|
+
runnersList: Array<proto_clarifai_api_resources_pb.Runner.AsObject>,
|
|
10210
|
+
pipelineVersionRunsList: Array<proto_clarifai_api_resources_pb.PipelineVersionRun.AsObject>,
|
|
10095
10211
|
}
|
|
10096
10212
|
}
|
|
10097
10213
|
|
|
@@ -10138,6 +10254,11 @@ export class RunnerItem extends jspb.Message {
|
|
|
10138
10254
|
hasPostModelOutputsRequest(): boolean;
|
|
10139
10255
|
clearPostModelOutputsRequest(): RunnerItem;
|
|
10140
10256
|
|
|
10257
|
+
getSyncStateRequest(): SyncStateRequest | undefined;
|
|
10258
|
+
setSyncStateRequest(value?: SyncStateRequest): RunnerItem;
|
|
10259
|
+
hasSyncStateRequest(): boolean;
|
|
10260
|
+
clearSyncStateRequest(): RunnerItem;
|
|
10261
|
+
|
|
10141
10262
|
getRequestCase(): RunnerItem.RequestCase;
|
|
10142
10263
|
|
|
10143
10264
|
serializeBinary(): Uint8Array;
|
|
@@ -10154,11 +10275,13 @@ export namespace RunnerItem {
|
|
|
10154
10275
|
description: string,
|
|
10155
10276
|
processingInfo?: proto_clarifai_api_resources_pb.ProcessingInfo.AsObject,
|
|
10156
10277
|
postModelOutputsRequest?: PostModelOutputsRequest.AsObject,
|
|
10278
|
+
syncStateRequest?: SyncStateRequest.AsObject,
|
|
10157
10279
|
}
|
|
10158
10280
|
|
|
10159
10281
|
export enum RequestCase {
|
|
10160
10282
|
REQUEST_NOT_SET = 0,
|
|
10161
10283
|
POST_MODEL_OUTPUTS_REQUEST = 4,
|
|
10284
|
+
SYNC_STATE_REQUEST = 5,
|
|
10162
10285
|
}
|
|
10163
10286
|
}
|
|
10164
10287
|
|
|
@@ -11077,6 +11200,222 @@ export namespace MultiWorkflowEvaluationTemplateResponse {
|
|
|
11077
11200
|
}
|
|
11078
11201
|
}
|
|
11079
11202
|
|
|
11203
|
+
export class PostWorkflowVersionEvaluationsRequest extends jspb.Message {
|
|
11204
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
11205
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PostWorkflowVersionEvaluationsRequest;
|
|
11206
|
+
hasUserAppId(): boolean;
|
|
11207
|
+
clearUserAppId(): PostWorkflowVersionEvaluationsRequest;
|
|
11208
|
+
|
|
11209
|
+
getWorkflowId(): string;
|
|
11210
|
+
setWorkflowId(value: string): PostWorkflowVersionEvaluationsRequest;
|
|
11211
|
+
|
|
11212
|
+
getWorkflowVersionId(): string;
|
|
11213
|
+
setWorkflowVersionId(value: string): PostWorkflowVersionEvaluationsRequest;
|
|
11214
|
+
|
|
11215
|
+
getWorkflowVersionEvaluationsList(): Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>;
|
|
11216
|
+
setWorkflowVersionEvaluationsList(value: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>): PostWorkflowVersionEvaluationsRequest;
|
|
11217
|
+
clearWorkflowVersionEvaluationsList(): PostWorkflowVersionEvaluationsRequest;
|
|
11218
|
+
addWorkflowVersionEvaluations(value?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation, index?: number): proto_clarifai_api_resources_pb.WorkflowVersionEvaluation;
|
|
11219
|
+
|
|
11220
|
+
serializeBinary(): Uint8Array;
|
|
11221
|
+
toObject(includeInstance?: boolean): PostWorkflowVersionEvaluationsRequest.AsObject;
|
|
11222
|
+
static toObject(includeInstance: boolean, msg: PostWorkflowVersionEvaluationsRequest): PostWorkflowVersionEvaluationsRequest.AsObject;
|
|
11223
|
+
static serializeBinaryToWriter(message: PostWorkflowVersionEvaluationsRequest, writer: jspb.BinaryWriter): void;
|
|
11224
|
+
static deserializeBinary(bytes: Uint8Array): PostWorkflowVersionEvaluationsRequest;
|
|
11225
|
+
static deserializeBinaryFromReader(message: PostWorkflowVersionEvaluationsRequest, reader: jspb.BinaryReader): PostWorkflowVersionEvaluationsRequest;
|
|
11226
|
+
}
|
|
11227
|
+
|
|
11228
|
+
export namespace PostWorkflowVersionEvaluationsRequest {
|
|
11229
|
+
export type AsObject = {
|
|
11230
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
11231
|
+
workflowId: string,
|
|
11232
|
+
workflowVersionId: string,
|
|
11233
|
+
workflowVersionEvaluationsList: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation.AsObject>,
|
|
11234
|
+
}
|
|
11235
|
+
}
|
|
11236
|
+
|
|
11237
|
+
export class PatchWorkflowVersionEvaluationsRequest extends jspb.Message {
|
|
11238
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
11239
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PatchWorkflowVersionEvaluationsRequest;
|
|
11240
|
+
hasUserAppId(): boolean;
|
|
11241
|
+
clearUserAppId(): PatchWorkflowVersionEvaluationsRequest;
|
|
11242
|
+
|
|
11243
|
+
getWorkflowId(): string;
|
|
11244
|
+
setWorkflowId(value: string): PatchWorkflowVersionEvaluationsRequest;
|
|
11245
|
+
|
|
11246
|
+
getWorkflowVersionId(): string;
|
|
11247
|
+
setWorkflowVersionId(value: string): PatchWorkflowVersionEvaluationsRequest;
|
|
11248
|
+
|
|
11249
|
+
getWorkflowVersionEvaluationsList(): Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>;
|
|
11250
|
+
setWorkflowVersionEvaluationsList(value: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>): PatchWorkflowVersionEvaluationsRequest;
|
|
11251
|
+
clearWorkflowVersionEvaluationsList(): PatchWorkflowVersionEvaluationsRequest;
|
|
11252
|
+
addWorkflowVersionEvaluations(value?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation, index?: number): proto_clarifai_api_resources_pb.WorkflowVersionEvaluation;
|
|
11253
|
+
|
|
11254
|
+
getAction(): string;
|
|
11255
|
+
setAction(value: string): PatchWorkflowVersionEvaluationsRequest;
|
|
11256
|
+
|
|
11257
|
+
serializeBinary(): Uint8Array;
|
|
11258
|
+
toObject(includeInstance?: boolean): PatchWorkflowVersionEvaluationsRequest.AsObject;
|
|
11259
|
+
static toObject(includeInstance: boolean, msg: PatchWorkflowVersionEvaluationsRequest): PatchWorkflowVersionEvaluationsRequest.AsObject;
|
|
11260
|
+
static serializeBinaryToWriter(message: PatchWorkflowVersionEvaluationsRequest, writer: jspb.BinaryWriter): void;
|
|
11261
|
+
static deserializeBinary(bytes: Uint8Array): PatchWorkflowVersionEvaluationsRequest;
|
|
11262
|
+
static deserializeBinaryFromReader(message: PatchWorkflowVersionEvaluationsRequest, reader: jspb.BinaryReader): PatchWorkflowVersionEvaluationsRequest;
|
|
11263
|
+
}
|
|
11264
|
+
|
|
11265
|
+
export namespace PatchWorkflowVersionEvaluationsRequest {
|
|
11266
|
+
export type AsObject = {
|
|
11267
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
11268
|
+
workflowId: string,
|
|
11269
|
+
workflowVersionId: string,
|
|
11270
|
+
workflowVersionEvaluationsList: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation.AsObject>,
|
|
11271
|
+
action: string,
|
|
11272
|
+
}
|
|
11273
|
+
}
|
|
11274
|
+
|
|
11275
|
+
export class MultiWorkflowVersionEvaluationResponse extends jspb.Message {
|
|
11276
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
11277
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): MultiWorkflowVersionEvaluationResponse;
|
|
11278
|
+
hasStatus(): boolean;
|
|
11279
|
+
clearStatus(): MultiWorkflowVersionEvaluationResponse;
|
|
11280
|
+
|
|
11281
|
+
getWorkflowVersionEvaluationsList(): Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>;
|
|
11282
|
+
setWorkflowVersionEvaluationsList(value: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>): MultiWorkflowVersionEvaluationResponse;
|
|
11283
|
+
clearWorkflowVersionEvaluationsList(): MultiWorkflowVersionEvaluationResponse;
|
|
11284
|
+
addWorkflowVersionEvaluations(value?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation, index?: number): proto_clarifai_api_resources_pb.WorkflowVersionEvaluation;
|
|
11285
|
+
|
|
11286
|
+
serializeBinary(): Uint8Array;
|
|
11287
|
+
toObject(includeInstance?: boolean): MultiWorkflowVersionEvaluationResponse.AsObject;
|
|
11288
|
+
static toObject(includeInstance: boolean, msg: MultiWorkflowVersionEvaluationResponse): MultiWorkflowVersionEvaluationResponse.AsObject;
|
|
11289
|
+
static serializeBinaryToWriter(message: MultiWorkflowVersionEvaluationResponse, writer: jspb.BinaryWriter): void;
|
|
11290
|
+
static deserializeBinary(bytes: Uint8Array): MultiWorkflowVersionEvaluationResponse;
|
|
11291
|
+
static deserializeBinaryFromReader(message: MultiWorkflowVersionEvaluationResponse, reader: jspb.BinaryReader): MultiWorkflowVersionEvaluationResponse;
|
|
11292
|
+
}
|
|
11293
|
+
|
|
11294
|
+
export namespace MultiWorkflowVersionEvaluationResponse {
|
|
11295
|
+
export type AsObject = {
|
|
11296
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
11297
|
+
workflowVersionEvaluationsList: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation.AsObject>,
|
|
11298
|
+
}
|
|
11299
|
+
}
|
|
11300
|
+
|
|
11301
|
+
export class SingleWorkflowVersionEvaluationResponse extends jspb.Message {
|
|
11302
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
11303
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): SingleWorkflowVersionEvaluationResponse;
|
|
11304
|
+
hasStatus(): boolean;
|
|
11305
|
+
clearStatus(): SingleWorkflowVersionEvaluationResponse;
|
|
11306
|
+
|
|
11307
|
+
getWorkflowVersionEvaluation(): proto_clarifai_api_resources_pb.WorkflowVersionEvaluation | undefined;
|
|
11308
|
+
setWorkflowVersionEvaluation(value?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation): SingleWorkflowVersionEvaluationResponse;
|
|
11309
|
+
hasWorkflowVersionEvaluation(): boolean;
|
|
11310
|
+
clearWorkflowVersionEvaluation(): SingleWorkflowVersionEvaluationResponse;
|
|
11311
|
+
|
|
11312
|
+
serializeBinary(): Uint8Array;
|
|
11313
|
+
toObject(includeInstance?: boolean): SingleWorkflowVersionEvaluationResponse.AsObject;
|
|
11314
|
+
static toObject(includeInstance: boolean, msg: SingleWorkflowVersionEvaluationResponse): SingleWorkflowVersionEvaluationResponse.AsObject;
|
|
11315
|
+
static serializeBinaryToWriter(message: SingleWorkflowVersionEvaluationResponse, writer: jspb.BinaryWriter): void;
|
|
11316
|
+
static deserializeBinary(bytes: Uint8Array): SingleWorkflowVersionEvaluationResponse;
|
|
11317
|
+
static deserializeBinaryFromReader(message: SingleWorkflowVersionEvaluationResponse, reader: jspb.BinaryReader): SingleWorkflowVersionEvaluationResponse;
|
|
11318
|
+
}
|
|
11319
|
+
|
|
11320
|
+
export namespace SingleWorkflowVersionEvaluationResponse {
|
|
11321
|
+
export type AsObject = {
|
|
11322
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
11323
|
+
workflowVersionEvaluation?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation.AsObject,
|
|
11324
|
+
}
|
|
11325
|
+
}
|
|
11326
|
+
|
|
11327
|
+
export class GetWorkflowVersionEvaluationRequest extends jspb.Message {
|
|
11328
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
11329
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): GetWorkflowVersionEvaluationRequest;
|
|
11330
|
+
hasUserAppId(): boolean;
|
|
11331
|
+
clearUserAppId(): GetWorkflowVersionEvaluationRequest;
|
|
11332
|
+
|
|
11333
|
+
getWorkflowId(): string;
|
|
11334
|
+
setWorkflowId(value: string): GetWorkflowVersionEvaluationRequest;
|
|
11335
|
+
|
|
11336
|
+
getWorkflowVersionId(): string;
|
|
11337
|
+
setWorkflowVersionId(value: string): GetWorkflowVersionEvaluationRequest;
|
|
11338
|
+
|
|
11339
|
+
getWorkflowVersionEvaluationId(): string;
|
|
11340
|
+
setWorkflowVersionEvaluationId(value: string): GetWorkflowVersionEvaluationRequest;
|
|
11341
|
+
|
|
11342
|
+
serializeBinary(): Uint8Array;
|
|
11343
|
+
toObject(includeInstance?: boolean): GetWorkflowVersionEvaluationRequest.AsObject;
|
|
11344
|
+
static toObject(includeInstance: boolean, msg: GetWorkflowVersionEvaluationRequest): GetWorkflowVersionEvaluationRequest.AsObject;
|
|
11345
|
+
static serializeBinaryToWriter(message: GetWorkflowVersionEvaluationRequest, writer: jspb.BinaryWriter): void;
|
|
11346
|
+
static deserializeBinary(bytes: Uint8Array): GetWorkflowVersionEvaluationRequest;
|
|
11347
|
+
static deserializeBinaryFromReader(message: GetWorkflowVersionEvaluationRequest, reader: jspb.BinaryReader): GetWorkflowVersionEvaluationRequest;
|
|
11348
|
+
}
|
|
11349
|
+
|
|
11350
|
+
export namespace GetWorkflowVersionEvaluationRequest {
|
|
11351
|
+
export type AsObject = {
|
|
11352
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
11353
|
+
workflowId: string,
|
|
11354
|
+
workflowVersionId: string,
|
|
11355
|
+
workflowVersionEvaluationId: string,
|
|
11356
|
+
}
|
|
11357
|
+
}
|
|
11358
|
+
|
|
11359
|
+
export class ListWorkflowVersionEvaluationsRequest extends jspb.Message {
|
|
11360
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
11361
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): ListWorkflowVersionEvaluationsRequest;
|
|
11362
|
+
hasUserAppId(): boolean;
|
|
11363
|
+
clearUserAppId(): ListWorkflowVersionEvaluationsRequest;
|
|
11364
|
+
|
|
11365
|
+
getWorkflowId(): string;
|
|
11366
|
+
setWorkflowId(value: string): ListWorkflowVersionEvaluationsRequest;
|
|
11367
|
+
|
|
11368
|
+
getWorkflowVersionId(): string;
|
|
11369
|
+
setWorkflowVersionId(value: string): ListWorkflowVersionEvaluationsRequest;
|
|
11370
|
+
|
|
11371
|
+
getPage(): number;
|
|
11372
|
+
setPage(value: number): ListWorkflowVersionEvaluationsRequest;
|
|
11373
|
+
|
|
11374
|
+
getPerPage(): number;
|
|
11375
|
+
setPerPage(value: number): ListWorkflowVersionEvaluationsRequest;
|
|
11376
|
+
|
|
11377
|
+
serializeBinary(): Uint8Array;
|
|
11378
|
+
toObject(includeInstance?: boolean): ListWorkflowVersionEvaluationsRequest.AsObject;
|
|
11379
|
+
static toObject(includeInstance: boolean, msg: ListWorkflowVersionEvaluationsRequest): ListWorkflowVersionEvaluationsRequest.AsObject;
|
|
11380
|
+
static serializeBinaryToWriter(message: ListWorkflowVersionEvaluationsRequest, writer: jspb.BinaryWriter): void;
|
|
11381
|
+
static deserializeBinary(bytes: Uint8Array): ListWorkflowVersionEvaluationsRequest;
|
|
11382
|
+
static deserializeBinaryFromReader(message: ListWorkflowVersionEvaluationsRequest, reader: jspb.BinaryReader): ListWorkflowVersionEvaluationsRequest;
|
|
11383
|
+
}
|
|
11384
|
+
|
|
11385
|
+
export namespace ListWorkflowVersionEvaluationsRequest {
|
|
11386
|
+
export type AsObject = {
|
|
11387
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
11388
|
+
workflowId: string,
|
|
11389
|
+
workflowVersionId: string,
|
|
11390
|
+
page: number,
|
|
11391
|
+
perPage: number,
|
|
11392
|
+
}
|
|
11393
|
+
}
|
|
11394
|
+
|
|
11395
|
+
export class PostModelMigrationRequest extends jspb.Message {
|
|
11396
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
11397
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PostModelMigrationRequest;
|
|
11398
|
+
hasUserAppId(): boolean;
|
|
11399
|
+
clearUserAppId(): PostModelMigrationRequest;
|
|
11400
|
+
|
|
11401
|
+
getModelId(): string;
|
|
11402
|
+
setModelId(value: string): PostModelMigrationRequest;
|
|
11403
|
+
|
|
11404
|
+
serializeBinary(): Uint8Array;
|
|
11405
|
+
toObject(includeInstance?: boolean): PostModelMigrationRequest.AsObject;
|
|
11406
|
+
static toObject(includeInstance: boolean, msg: PostModelMigrationRequest): PostModelMigrationRequest.AsObject;
|
|
11407
|
+
static serializeBinaryToWriter(message: PostModelMigrationRequest, writer: jspb.BinaryWriter): void;
|
|
11408
|
+
static deserializeBinary(bytes: Uint8Array): PostModelMigrationRequest;
|
|
11409
|
+
static deserializeBinaryFromReader(message: PostModelMigrationRequest, reader: jspb.BinaryReader): PostModelMigrationRequest;
|
|
11410
|
+
}
|
|
11411
|
+
|
|
11412
|
+
export namespace PostModelMigrationRequest {
|
|
11413
|
+
export type AsObject = {
|
|
11414
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
11415
|
+
modelId: string,
|
|
11416
|
+
}
|
|
11417
|
+
}
|
|
11418
|
+
|
|
11080
11419
|
export enum OrganizationInvitationStatus {
|
|
11081
11420
|
NOT_SET = 0,
|
|
11082
11421
|
PENDING = 1,
|