clarifai-web-grpc 11.1.3 → 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.
@@ -4470,6 +4470,9 @@ export class PostModelVersionsRequest extends jspb.Message {
4470
4470
  hasEvalInfo(): boolean;
4471
4471
  clearEvalInfo(): PostModelVersionsRequest;
4472
4472
 
4473
+ getDoMigration(): boolean;
4474
+ setDoMigration(value: boolean): PostModelVersionsRequest;
4475
+
4473
4476
  serializeBinary(): Uint8Array;
4474
4477
  toObject(includeInstance?: boolean): PostModelVersionsRequest.AsObject;
4475
4478
  static toObject(includeInstance: boolean, msg: PostModelVersionsRequest): PostModelVersionsRequest.AsObject;
@@ -4485,6 +4488,7 @@ export namespace PostModelVersionsRequest {
4485
4488
  modelVersionsList: Array<proto_clarifai_api_resources_pb.ModelVersion.AsObject>,
4486
4489
  description: string,
4487
4490
  evalInfo?: proto_clarifai_api_resources_pb.EvalInfo.AsObject,
4491
+ doMigration: boolean,
4488
4492
  }
4489
4493
  }
4490
4494
 
@@ -10074,6 +10078,12 @@ export class PostRunnerItemOutputsRequest extends jspb.Message {
10074
10078
  getComputeClusterId(): string;
10075
10079
  setComputeClusterId(value: string): PostRunnerItemOutputsRequest;
10076
10080
 
10081
+ getCloudProviderId(): string;
10082
+ setCloudProviderId(value: string): PostRunnerItemOutputsRequest;
10083
+
10084
+ getRegion(): string;
10085
+ setRegion(value: string): PostRunnerItemOutputsRequest;
10086
+
10077
10087
  serializeBinary(): Uint8Array;
10078
10088
  toObject(includeInstance?: boolean): PostRunnerItemOutputsRequest.AsObject;
10079
10089
  static toObject(includeInstance: boolean, msg: PostRunnerItemOutputsRequest): PostRunnerItemOutputsRequest.AsObject;
@@ -10092,6 +10102,50 @@ export namespace PostRunnerItemOutputsRequest {
10092
10102
  status?: proto_clarifai_api_status_status_pb.Status.AsObject,
10093
10103
  runnerReplicaId: string,
10094
10104
  computeClusterId: string,
10105
+ cloudProviderId: string,
10106
+ region: string,
10107
+ }
10108
+ }
10109
+
10110
+ export class SyncStateRequest extends jspb.Message {
10111
+ getOperationType(): string;
10112
+ setOperationType(value: string): SyncStateRequest;
10113
+
10114
+ getComputeClustersList(): Array<proto_clarifai_api_resources_pb.ComputeCluster>;
10115
+ setComputeClustersList(value: Array<proto_clarifai_api_resources_pb.ComputeCluster>): SyncStateRequest;
10116
+ clearComputeClustersList(): SyncStateRequest;
10117
+ addComputeClusters(value?: proto_clarifai_api_resources_pb.ComputeCluster, index?: number): proto_clarifai_api_resources_pb.ComputeCluster;
10118
+
10119
+ getNodepoolsList(): Array<proto_clarifai_api_resources_pb.Nodepool>;
10120
+ setNodepoolsList(value: Array<proto_clarifai_api_resources_pb.Nodepool>): SyncStateRequest;
10121
+ clearNodepoolsList(): SyncStateRequest;
10122
+ addNodepools(value?: proto_clarifai_api_resources_pb.Nodepool, index?: number): proto_clarifai_api_resources_pb.Nodepool;
10123
+
10124
+ getRunnersList(): Array<proto_clarifai_api_resources_pb.Runner>;
10125
+ setRunnersList(value: Array<proto_clarifai_api_resources_pb.Runner>): SyncStateRequest;
10126
+ clearRunnersList(): SyncStateRequest;
10127
+ addRunners(value?: proto_clarifai_api_resources_pb.Runner, index?: number): proto_clarifai_api_resources_pb.Runner;
10128
+
10129
+ getPipelineVersionRunsList(): Array<proto_clarifai_api_resources_pb.PipelineVersionRun>;
10130
+ setPipelineVersionRunsList(value: Array<proto_clarifai_api_resources_pb.PipelineVersionRun>): SyncStateRequest;
10131
+ clearPipelineVersionRunsList(): SyncStateRequest;
10132
+ addPipelineVersionRuns(value?: proto_clarifai_api_resources_pb.PipelineVersionRun, index?: number): proto_clarifai_api_resources_pb.PipelineVersionRun;
10133
+
10134
+ serializeBinary(): Uint8Array;
10135
+ toObject(includeInstance?: boolean): SyncStateRequest.AsObject;
10136
+ static toObject(includeInstance: boolean, msg: SyncStateRequest): SyncStateRequest.AsObject;
10137
+ static serializeBinaryToWriter(message: SyncStateRequest, writer: jspb.BinaryWriter): void;
10138
+ static deserializeBinary(bytes: Uint8Array): SyncStateRequest;
10139
+ static deserializeBinaryFromReader(message: SyncStateRequest, reader: jspb.BinaryReader): SyncStateRequest;
10140
+ }
10141
+
10142
+ export namespace SyncStateRequest {
10143
+ export type AsObject = {
10144
+ operationType: string,
10145
+ computeClustersList: Array<proto_clarifai_api_resources_pb.ComputeCluster.AsObject>,
10146
+ nodepoolsList: Array<proto_clarifai_api_resources_pb.Nodepool.AsObject>,
10147
+ runnersList: Array<proto_clarifai_api_resources_pb.Runner.AsObject>,
10148
+ pipelineVersionRunsList: Array<proto_clarifai_api_resources_pb.PipelineVersionRun.AsObject>,
10095
10149
  }
10096
10150
  }
10097
10151
 
@@ -10138,6 +10192,11 @@ export class RunnerItem extends jspb.Message {
10138
10192
  hasPostModelOutputsRequest(): boolean;
10139
10193
  clearPostModelOutputsRequest(): RunnerItem;
10140
10194
 
10195
+ getSyncStateRequest(): SyncStateRequest | undefined;
10196
+ setSyncStateRequest(value?: SyncStateRequest): RunnerItem;
10197
+ hasSyncStateRequest(): boolean;
10198
+ clearSyncStateRequest(): RunnerItem;
10199
+
10141
10200
  getRequestCase(): RunnerItem.RequestCase;
10142
10201
 
10143
10202
  serializeBinary(): Uint8Array;
@@ -10154,11 +10213,13 @@ export namespace RunnerItem {
10154
10213
  description: string,
10155
10214
  processingInfo?: proto_clarifai_api_resources_pb.ProcessingInfo.AsObject,
10156
10215
  postModelOutputsRequest?: PostModelOutputsRequest.AsObject,
10216
+ syncStateRequest?: SyncStateRequest.AsObject,
10157
10217
  }
10158
10218
 
10159
10219
  export enum RequestCase {
10160
10220
  REQUEST_NOT_SET = 0,
10161
10221
  POST_MODEL_OUTPUTS_REQUEST = 4,
10222
+ SYNC_STATE_REQUEST = 5,
10162
10223
  }
10163
10224
  }
10164
10225
 
@@ -11077,6 +11138,222 @@ export namespace MultiWorkflowEvaluationTemplateResponse {
11077
11138
  }
11078
11139
  }
11079
11140
 
11141
+ export class PostWorkflowVersionEvaluationsRequest extends jspb.Message {
11142
+ getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
11143
+ setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PostWorkflowVersionEvaluationsRequest;
11144
+ hasUserAppId(): boolean;
11145
+ clearUserAppId(): PostWorkflowVersionEvaluationsRequest;
11146
+
11147
+ getWorkflowId(): string;
11148
+ setWorkflowId(value: string): PostWorkflowVersionEvaluationsRequest;
11149
+
11150
+ getWorkflowVersionId(): string;
11151
+ setWorkflowVersionId(value: string): PostWorkflowVersionEvaluationsRequest;
11152
+
11153
+ getWorkflowVersionEvaluationsList(): Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>;
11154
+ setWorkflowVersionEvaluationsList(value: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>): PostWorkflowVersionEvaluationsRequest;
11155
+ clearWorkflowVersionEvaluationsList(): PostWorkflowVersionEvaluationsRequest;
11156
+ addWorkflowVersionEvaluations(value?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation, index?: number): proto_clarifai_api_resources_pb.WorkflowVersionEvaluation;
11157
+
11158
+ serializeBinary(): Uint8Array;
11159
+ toObject(includeInstance?: boolean): PostWorkflowVersionEvaluationsRequest.AsObject;
11160
+ static toObject(includeInstance: boolean, msg: PostWorkflowVersionEvaluationsRequest): PostWorkflowVersionEvaluationsRequest.AsObject;
11161
+ static serializeBinaryToWriter(message: PostWorkflowVersionEvaluationsRequest, writer: jspb.BinaryWriter): void;
11162
+ static deserializeBinary(bytes: Uint8Array): PostWorkflowVersionEvaluationsRequest;
11163
+ static deserializeBinaryFromReader(message: PostWorkflowVersionEvaluationsRequest, reader: jspb.BinaryReader): PostWorkflowVersionEvaluationsRequest;
11164
+ }
11165
+
11166
+ export namespace PostWorkflowVersionEvaluationsRequest {
11167
+ export type AsObject = {
11168
+ userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
11169
+ workflowId: string,
11170
+ workflowVersionId: string,
11171
+ workflowVersionEvaluationsList: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation.AsObject>,
11172
+ }
11173
+ }
11174
+
11175
+ export class PatchWorkflowVersionEvaluationsRequest extends jspb.Message {
11176
+ getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
11177
+ setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PatchWorkflowVersionEvaluationsRequest;
11178
+ hasUserAppId(): boolean;
11179
+ clearUserAppId(): PatchWorkflowVersionEvaluationsRequest;
11180
+
11181
+ getWorkflowId(): string;
11182
+ setWorkflowId(value: string): PatchWorkflowVersionEvaluationsRequest;
11183
+
11184
+ getWorkflowVersionId(): string;
11185
+ setWorkflowVersionId(value: string): PatchWorkflowVersionEvaluationsRequest;
11186
+
11187
+ getWorkflowVersionEvaluationsList(): Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>;
11188
+ setWorkflowVersionEvaluationsList(value: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>): PatchWorkflowVersionEvaluationsRequest;
11189
+ clearWorkflowVersionEvaluationsList(): PatchWorkflowVersionEvaluationsRequest;
11190
+ addWorkflowVersionEvaluations(value?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation, index?: number): proto_clarifai_api_resources_pb.WorkflowVersionEvaluation;
11191
+
11192
+ getAction(): string;
11193
+ setAction(value: string): PatchWorkflowVersionEvaluationsRequest;
11194
+
11195
+ serializeBinary(): Uint8Array;
11196
+ toObject(includeInstance?: boolean): PatchWorkflowVersionEvaluationsRequest.AsObject;
11197
+ static toObject(includeInstance: boolean, msg: PatchWorkflowVersionEvaluationsRequest): PatchWorkflowVersionEvaluationsRequest.AsObject;
11198
+ static serializeBinaryToWriter(message: PatchWorkflowVersionEvaluationsRequest, writer: jspb.BinaryWriter): void;
11199
+ static deserializeBinary(bytes: Uint8Array): PatchWorkflowVersionEvaluationsRequest;
11200
+ static deserializeBinaryFromReader(message: PatchWorkflowVersionEvaluationsRequest, reader: jspb.BinaryReader): PatchWorkflowVersionEvaluationsRequest;
11201
+ }
11202
+
11203
+ export namespace PatchWorkflowVersionEvaluationsRequest {
11204
+ export type AsObject = {
11205
+ userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
11206
+ workflowId: string,
11207
+ workflowVersionId: string,
11208
+ workflowVersionEvaluationsList: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation.AsObject>,
11209
+ action: string,
11210
+ }
11211
+ }
11212
+
11213
+ export class MultiWorkflowVersionEvaluationResponse extends jspb.Message {
11214
+ getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
11215
+ setStatus(value?: proto_clarifai_api_status_status_pb.Status): MultiWorkflowVersionEvaluationResponse;
11216
+ hasStatus(): boolean;
11217
+ clearStatus(): MultiWorkflowVersionEvaluationResponse;
11218
+
11219
+ getWorkflowVersionEvaluationsList(): Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>;
11220
+ setWorkflowVersionEvaluationsList(value: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation>): MultiWorkflowVersionEvaluationResponse;
11221
+ clearWorkflowVersionEvaluationsList(): MultiWorkflowVersionEvaluationResponse;
11222
+ addWorkflowVersionEvaluations(value?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation, index?: number): proto_clarifai_api_resources_pb.WorkflowVersionEvaluation;
11223
+
11224
+ serializeBinary(): Uint8Array;
11225
+ toObject(includeInstance?: boolean): MultiWorkflowVersionEvaluationResponse.AsObject;
11226
+ static toObject(includeInstance: boolean, msg: MultiWorkflowVersionEvaluationResponse): MultiWorkflowVersionEvaluationResponse.AsObject;
11227
+ static serializeBinaryToWriter(message: MultiWorkflowVersionEvaluationResponse, writer: jspb.BinaryWriter): void;
11228
+ static deserializeBinary(bytes: Uint8Array): MultiWorkflowVersionEvaluationResponse;
11229
+ static deserializeBinaryFromReader(message: MultiWorkflowVersionEvaluationResponse, reader: jspb.BinaryReader): MultiWorkflowVersionEvaluationResponse;
11230
+ }
11231
+
11232
+ export namespace MultiWorkflowVersionEvaluationResponse {
11233
+ export type AsObject = {
11234
+ status?: proto_clarifai_api_status_status_pb.Status.AsObject,
11235
+ workflowVersionEvaluationsList: Array<proto_clarifai_api_resources_pb.WorkflowVersionEvaluation.AsObject>,
11236
+ }
11237
+ }
11238
+
11239
+ export class SingleWorkflowVersionEvaluationResponse extends jspb.Message {
11240
+ getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
11241
+ setStatus(value?: proto_clarifai_api_status_status_pb.Status): SingleWorkflowVersionEvaluationResponse;
11242
+ hasStatus(): boolean;
11243
+ clearStatus(): SingleWorkflowVersionEvaluationResponse;
11244
+
11245
+ getWorkflowVersionEvaluation(): proto_clarifai_api_resources_pb.WorkflowVersionEvaluation | undefined;
11246
+ setWorkflowVersionEvaluation(value?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation): SingleWorkflowVersionEvaluationResponse;
11247
+ hasWorkflowVersionEvaluation(): boolean;
11248
+ clearWorkflowVersionEvaluation(): SingleWorkflowVersionEvaluationResponse;
11249
+
11250
+ serializeBinary(): Uint8Array;
11251
+ toObject(includeInstance?: boolean): SingleWorkflowVersionEvaluationResponse.AsObject;
11252
+ static toObject(includeInstance: boolean, msg: SingleWorkflowVersionEvaluationResponse): SingleWorkflowVersionEvaluationResponse.AsObject;
11253
+ static serializeBinaryToWriter(message: SingleWorkflowVersionEvaluationResponse, writer: jspb.BinaryWriter): void;
11254
+ static deserializeBinary(bytes: Uint8Array): SingleWorkflowVersionEvaluationResponse;
11255
+ static deserializeBinaryFromReader(message: SingleWorkflowVersionEvaluationResponse, reader: jspb.BinaryReader): SingleWorkflowVersionEvaluationResponse;
11256
+ }
11257
+
11258
+ export namespace SingleWorkflowVersionEvaluationResponse {
11259
+ export type AsObject = {
11260
+ status?: proto_clarifai_api_status_status_pb.Status.AsObject,
11261
+ workflowVersionEvaluation?: proto_clarifai_api_resources_pb.WorkflowVersionEvaluation.AsObject,
11262
+ }
11263
+ }
11264
+
11265
+ export class GetWorkflowVersionEvaluationRequest extends jspb.Message {
11266
+ getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
11267
+ setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): GetWorkflowVersionEvaluationRequest;
11268
+ hasUserAppId(): boolean;
11269
+ clearUserAppId(): GetWorkflowVersionEvaluationRequest;
11270
+
11271
+ getWorkflowId(): string;
11272
+ setWorkflowId(value: string): GetWorkflowVersionEvaluationRequest;
11273
+
11274
+ getWorkflowVersionId(): string;
11275
+ setWorkflowVersionId(value: string): GetWorkflowVersionEvaluationRequest;
11276
+
11277
+ getWorkflowVersionEvaluationId(): string;
11278
+ setWorkflowVersionEvaluationId(value: string): GetWorkflowVersionEvaluationRequest;
11279
+
11280
+ serializeBinary(): Uint8Array;
11281
+ toObject(includeInstance?: boolean): GetWorkflowVersionEvaluationRequest.AsObject;
11282
+ static toObject(includeInstance: boolean, msg: GetWorkflowVersionEvaluationRequest): GetWorkflowVersionEvaluationRequest.AsObject;
11283
+ static serializeBinaryToWriter(message: GetWorkflowVersionEvaluationRequest, writer: jspb.BinaryWriter): void;
11284
+ static deserializeBinary(bytes: Uint8Array): GetWorkflowVersionEvaluationRequest;
11285
+ static deserializeBinaryFromReader(message: GetWorkflowVersionEvaluationRequest, reader: jspb.BinaryReader): GetWorkflowVersionEvaluationRequest;
11286
+ }
11287
+
11288
+ export namespace GetWorkflowVersionEvaluationRequest {
11289
+ export type AsObject = {
11290
+ userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
11291
+ workflowId: string,
11292
+ workflowVersionId: string,
11293
+ workflowVersionEvaluationId: string,
11294
+ }
11295
+ }
11296
+
11297
+ export class ListWorkflowVersionEvaluationsRequest extends jspb.Message {
11298
+ getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
11299
+ setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): ListWorkflowVersionEvaluationsRequest;
11300
+ hasUserAppId(): boolean;
11301
+ clearUserAppId(): ListWorkflowVersionEvaluationsRequest;
11302
+
11303
+ getWorkflowId(): string;
11304
+ setWorkflowId(value: string): ListWorkflowVersionEvaluationsRequest;
11305
+
11306
+ getWorkflowVersionId(): string;
11307
+ setWorkflowVersionId(value: string): ListWorkflowVersionEvaluationsRequest;
11308
+
11309
+ getPage(): number;
11310
+ setPage(value: number): ListWorkflowVersionEvaluationsRequest;
11311
+
11312
+ getPerPage(): number;
11313
+ setPerPage(value: number): ListWorkflowVersionEvaluationsRequest;
11314
+
11315
+ serializeBinary(): Uint8Array;
11316
+ toObject(includeInstance?: boolean): ListWorkflowVersionEvaluationsRequest.AsObject;
11317
+ static toObject(includeInstance: boolean, msg: ListWorkflowVersionEvaluationsRequest): ListWorkflowVersionEvaluationsRequest.AsObject;
11318
+ static serializeBinaryToWriter(message: ListWorkflowVersionEvaluationsRequest, writer: jspb.BinaryWriter): void;
11319
+ static deserializeBinary(bytes: Uint8Array): ListWorkflowVersionEvaluationsRequest;
11320
+ static deserializeBinaryFromReader(message: ListWorkflowVersionEvaluationsRequest, reader: jspb.BinaryReader): ListWorkflowVersionEvaluationsRequest;
11321
+ }
11322
+
11323
+ export namespace ListWorkflowVersionEvaluationsRequest {
11324
+ export type AsObject = {
11325
+ userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
11326
+ workflowId: string,
11327
+ workflowVersionId: string,
11328
+ page: number,
11329
+ perPage: number,
11330
+ }
11331
+ }
11332
+
11333
+ export class PostModelMigrationRequest extends jspb.Message {
11334
+ getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
11335
+ setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PostModelMigrationRequest;
11336
+ hasUserAppId(): boolean;
11337
+ clearUserAppId(): PostModelMigrationRequest;
11338
+
11339
+ getModelId(): string;
11340
+ setModelId(value: string): PostModelMigrationRequest;
11341
+
11342
+ serializeBinary(): Uint8Array;
11343
+ toObject(includeInstance?: boolean): PostModelMigrationRequest.AsObject;
11344
+ static toObject(includeInstance: boolean, msg: PostModelMigrationRequest): PostModelMigrationRequest.AsObject;
11345
+ static serializeBinaryToWriter(message: PostModelMigrationRequest, writer: jspb.BinaryWriter): void;
11346
+ static deserializeBinary(bytes: Uint8Array): PostModelMigrationRequest;
11347
+ static deserializeBinaryFromReader(message: PostModelMigrationRequest, reader: jspb.BinaryReader): PostModelMigrationRequest;
11348
+ }
11349
+
11350
+ export namespace PostModelMigrationRequest {
11351
+ export type AsObject = {
11352
+ userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
11353
+ modelId: string,
11354
+ }
11355
+ }
11356
+
11080
11357
  export enum OrganizationInvitationStatus {
11081
11358
  NOT_SET = 0,
11082
11359
  PENDING = 1,