clarifai-web-grpc 10.10.2 → 10.11.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.
@@ -1519,6 +1519,20 @@ export class V2Client {
1519
1519
  response: proto_clarifai_api_service_pb.MultiTrainingTimeEstimateResponse) => void
1520
1520
  ): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.MultiTrainingTimeEstimateResponse>;
1521
1521
 
1522
+ listCloudProviders(
1523
+ request: proto_clarifai_api_service_pb.ListCloudProvidersRequest,
1524
+ metadata: grpcWeb.Metadata | undefined,
1525
+ callback: (err: grpcWeb.RpcError,
1526
+ response: proto_clarifai_api_service_pb.MultiCloudProviderResponse) => void
1527
+ ): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.MultiCloudProviderResponse>;
1528
+
1529
+ listCloudRegions(
1530
+ request: proto_clarifai_api_service_pb.ListCloudRegionsRequest,
1531
+ metadata: grpcWeb.Metadata | undefined,
1532
+ callback: (err: grpcWeb.RpcError,
1533
+ response: proto_clarifai_api_service_pb.MultiCloudRegionResponse) => void
1534
+ ): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.MultiCloudRegionResponse>;
1535
+
1522
1536
  listInstanceTypes(
1523
1537
  request: proto_clarifai_api_service_pb.ListInstanceTypesRequest,
1524
1538
  metadata: grpcWeb.Metadata | undefined,
@@ -1638,6 +1652,13 @@ export class V2Client {
1638
1652
  response: proto_clarifai_api_service_pb.MultiWorkflowEvaluationTemplateResponse) => void
1639
1653
  ): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.MultiWorkflowEvaluationTemplateResponse>;
1640
1654
 
1655
+ listLogEntries(
1656
+ request: proto_clarifai_api_service_pb.ListLogEntriesRequest,
1657
+ metadata: grpcWeb.Metadata | undefined,
1658
+ callback: (err: grpcWeb.RpcError,
1659
+ response: proto_clarifai_api_service_pb.MultiLogEntryResponse) => void
1660
+ ): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.MultiLogEntryResponse>;
1661
+
1641
1662
  }
1642
1663
 
1643
1664
  export class V2PromiseClient {
@@ -2725,6 +2746,16 @@ export class V2PromiseClient {
2725
2746
  metadata?: grpcWeb.Metadata
2726
2747
  ): Promise<proto_clarifai_api_service_pb.MultiTrainingTimeEstimateResponse>;
2727
2748
 
2749
+ listCloudProviders(
2750
+ request: proto_clarifai_api_service_pb.ListCloudProvidersRequest,
2751
+ metadata?: grpcWeb.Metadata
2752
+ ): Promise<proto_clarifai_api_service_pb.MultiCloudProviderResponse>;
2753
+
2754
+ listCloudRegions(
2755
+ request: proto_clarifai_api_service_pb.ListCloudRegionsRequest,
2756
+ metadata?: grpcWeb.Metadata
2757
+ ): Promise<proto_clarifai_api_service_pb.MultiCloudRegionResponse>;
2758
+
2728
2759
  listInstanceTypes(
2729
2760
  request: proto_clarifai_api_service_pb.ListInstanceTypesRequest,
2730
2761
  metadata?: grpcWeb.Metadata
@@ -2810,5 +2841,10 @@ export class V2PromiseClient {
2810
2841
  metadata?: grpcWeb.Metadata
2811
2842
  ): Promise<proto_clarifai_api_service_pb.MultiWorkflowEvaluationTemplateResponse>;
2812
2843
 
2844
+ listLogEntries(
2845
+ request: proto_clarifai_api_service_pb.ListLogEntriesRequest,
2846
+ metadata?: grpcWeb.Metadata
2847
+ ): Promise<proto_clarifai_api_service_pb.MultiLogEntryResponse>;
2848
+
2813
2849
  }
2814
2850
 
@@ -13266,6 +13266,128 @@ proto.clarifai.api.V2PromiseClient.prototype.postModelVersionsTrainingTimeEstima
13266
13266
  };
13267
13267
 
13268
13268
 
13269
+ /**
13270
+ * @const
13271
+ * @type {!grpc.web.MethodDescriptor<
13272
+ * !proto.clarifai.api.ListCloudProvidersRequest,
13273
+ * !proto.clarifai.api.MultiCloudProviderResponse>}
13274
+ */
13275
+ const methodDescriptor_V2_ListCloudProviders = new grpc.web.MethodDescriptor(
13276
+ '/clarifai.api.V2/ListCloudProviders',
13277
+ grpc.web.MethodType.UNARY,
13278
+ proto.clarifai.api.ListCloudProvidersRequest,
13279
+ proto.clarifai.api.MultiCloudProviderResponse,
13280
+ /**
13281
+ * @param {!proto.clarifai.api.ListCloudProvidersRequest} request
13282
+ * @return {!Uint8Array}
13283
+ */
13284
+ function(request) {
13285
+ return request.serializeBinary();
13286
+ },
13287
+ proto.clarifai.api.MultiCloudProviderResponse.deserializeBinary
13288
+ );
13289
+
13290
+
13291
+ /**
13292
+ * @param {!proto.clarifai.api.ListCloudProvidersRequest} request The
13293
+ * request proto
13294
+ * @param {?Object<string, string>} metadata User defined
13295
+ * call metadata
13296
+ * @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiCloudProviderResponse)}
13297
+ * callback The callback function(error, response)
13298
+ * @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiCloudProviderResponse>|undefined}
13299
+ * The XHR Node Readable Stream
13300
+ */
13301
+ proto.clarifai.api.V2Client.prototype.listCloudProviders =
13302
+ function(request, metadata, callback) {
13303
+ return this.client_.rpcCall(this.hostname_ +
13304
+ '/clarifai.api.V2/ListCloudProviders',
13305
+ request,
13306
+ metadata || {},
13307
+ methodDescriptor_V2_ListCloudProviders,
13308
+ callback);
13309
+ };
13310
+
13311
+
13312
+ /**
13313
+ * @param {!proto.clarifai.api.ListCloudProvidersRequest} request The
13314
+ * request proto
13315
+ * @param {?Object<string, string>=} metadata User defined
13316
+ * call metadata
13317
+ * @return {!Promise<!proto.clarifai.api.MultiCloudProviderResponse>}
13318
+ * Promise that resolves to the response
13319
+ */
13320
+ proto.clarifai.api.V2PromiseClient.prototype.listCloudProviders =
13321
+ function(request, metadata) {
13322
+ return this.client_.unaryCall(this.hostname_ +
13323
+ '/clarifai.api.V2/ListCloudProviders',
13324
+ request,
13325
+ metadata || {},
13326
+ methodDescriptor_V2_ListCloudProviders);
13327
+ };
13328
+
13329
+
13330
+ /**
13331
+ * @const
13332
+ * @type {!grpc.web.MethodDescriptor<
13333
+ * !proto.clarifai.api.ListCloudRegionsRequest,
13334
+ * !proto.clarifai.api.MultiCloudRegionResponse>}
13335
+ */
13336
+ const methodDescriptor_V2_ListCloudRegions = new grpc.web.MethodDescriptor(
13337
+ '/clarifai.api.V2/ListCloudRegions',
13338
+ grpc.web.MethodType.UNARY,
13339
+ proto.clarifai.api.ListCloudRegionsRequest,
13340
+ proto.clarifai.api.MultiCloudRegionResponse,
13341
+ /**
13342
+ * @param {!proto.clarifai.api.ListCloudRegionsRequest} request
13343
+ * @return {!Uint8Array}
13344
+ */
13345
+ function(request) {
13346
+ return request.serializeBinary();
13347
+ },
13348
+ proto.clarifai.api.MultiCloudRegionResponse.deserializeBinary
13349
+ );
13350
+
13351
+
13352
+ /**
13353
+ * @param {!proto.clarifai.api.ListCloudRegionsRequest} request The
13354
+ * request proto
13355
+ * @param {?Object<string, string>} metadata User defined
13356
+ * call metadata
13357
+ * @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiCloudRegionResponse)}
13358
+ * callback The callback function(error, response)
13359
+ * @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiCloudRegionResponse>|undefined}
13360
+ * The XHR Node Readable Stream
13361
+ */
13362
+ proto.clarifai.api.V2Client.prototype.listCloudRegions =
13363
+ function(request, metadata, callback) {
13364
+ return this.client_.rpcCall(this.hostname_ +
13365
+ '/clarifai.api.V2/ListCloudRegions',
13366
+ request,
13367
+ metadata || {},
13368
+ methodDescriptor_V2_ListCloudRegions,
13369
+ callback);
13370
+ };
13371
+
13372
+
13373
+ /**
13374
+ * @param {!proto.clarifai.api.ListCloudRegionsRequest} request The
13375
+ * request proto
13376
+ * @param {?Object<string, string>=} metadata User defined
13377
+ * call metadata
13378
+ * @return {!Promise<!proto.clarifai.api.MultiCloudRegionResponse>}
13379
+ * Promise that resolves to the response
13380
+ */
13381
+ proto.clarifai.api.V2PromiseClient.prototype.listCloudRegions =
13382
+ function(request, metadata) {
13383
+ return this.client_.unaryCall(this.hostname_ +
13384
+ '/clarifai.api.V2/ListCloudRegions',
13385
+ request,
13386
+ metadata || {},
13387
+ methodDescriptor_V2_ListCloudRegions);
13388
+ };
13389
+
13390
+
13269
13391
  /**
13270
13392
  * @const
13271
13393
  * @type {!grpc.web.MethodDescriptor<
@@ -14303,5 +14425,66 @@ proto.clarifai.api.V2PromiseClient.prototype.listWorkflowEvaluationTemplates =
14303
14425
  };
14304
14426
 
14305
14427
 
14428
+ /**
14429
+ * @const
14430
+ * @type {!grpc.web.MethodDescriptor<
14431
+ * !proto.clarifai.api.ListLogEntriesRequest,
14432
+ * !proto.clarifai.api.MultiLogEntryResponse>}
14433
+ */
14434
+ const methodDescriptor_V2_ListLogEntries = new grpc.web.MethodDescriptor(
14435
+ '/clarifai.api.V2/ListLogEntries',
14436
+ grpc.web.MethodType.UNARY,
14437
+ proto.clarifai.api.ListLogEntriesRequest,
14438
+ proto.clarifai.api.MultiLogEntryResponse,
14439
+ /**
14440
+ * @param {!proto.clarifai.api.ListLogEntriesRequest} request
14441
+ * @return {!Uint8Array}
14442
+ */
14443
+ function(request) {
14444
+ return request.serializeBinary();
14445
+ },
14446
+ proto.clarifai.api.MultiLogEntryResponse.deserializeBinary
14447
+ );
14448
+
14449
+
14450
+ /**
14451
+ * @param {!proto.clarifai.api.ListLogEntriesRequest} request The
14452
+ * request proto
14453
+ * @param {?Object<string, string>} metadata User defined
14454
+ * call metadata
14455
+ * @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiLogEntryResponse)}
14456
+ * callback The callback function(error, response)
14457
+ * @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiLogEntryResponse>|undefined}
14458
+ * The XHR Node Readable Stream
14459
+ */
14460
+ proto.clarifai.api.V2Client.prototype.listLogEntries =
14461
+ function(request, metadata, callback) {
14462
+ return this.client_.rpcCall(this.hostname_ +
14463
+ '/clarifai.api.V2/ListLogEntries',
14464
+ request,
14465
+ metadata || {},
14466
+ methodDescriptor_V2_ListLogEntries,
14467
+ callback);
14468
+ };
14469
+
14470
+
14471
+ /**
14472
+ * @param {!proto.clarifai.api.ListLogEntriesRequest} request The
14473
+ * request proto
14474
+ * @param {?Object<string, string>=} metadata User defined
14475
+ * call metadata
14476
+ * @return {!Promise<!proto.clarifai.api.MultiLogEntryResponse>}
14477
+ * Promise that resolves to the response
14478
+ */
14479
+ proto.clarifai.api.V2PromiseClient.prototype.listLogEntries =
14480
+ function(request, metadata) {
14481
+ return this.client_.unaryCall(this.hostname_ +
14482
+ '/clarifai.api.V2/ListLogEntries',
14483
+ request,
14484
+ metadata || {},
14485
+ methodDescriptor_V2_ListLogEntries);
14486
+ };
14487
+
14488
+
14306
14489
  module.exports = proto.clarifai.api;
14307
14490
 
@@ -3103,6 +3103,62 @@ export namespace ListModelInputsRequest {
3103
3103
  }
3104
3104
  }
3105
3105
 
3106
+ export class ListLogEntriesRequest extends jspb.Message {
3107
+ getPage(): number;
3108
+ setPage(value: number): ListLogEntriesRequest;
3109
+
3110
+ getPerPage(): number;
3111
+ setPerPage(value: number): ListLogEntriesRequest;
3112
+
3113
+ getLogType(): string;
3114
+ setLogType(value: string): ListLogEntriesRequest;
3115
+
3116
+ getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
3117
+ setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): ListLogEntriesRequest;
3118
+ hasUserAppId(): boolean;
3119
+ clearUserAppId(): ListLogEntriesRequest;
3120
+
3121
+ getModelId(): string;
3122
+ setModelId(value: string): ListLogEntriesRequest;
3123
+
3124
+ getModelVersionId(): string;
3125
+ setModelVersionId(value: string): ListLogEntriesRequest;
3126
+
3127
+ getWorkflowId(): string;
3128
+ setWorkflowId(value: string): ListLogEntriesRequest;
3129
+
3130
+ getComputeClusterId(): string;
3131
+ setComputeClusterId(value: string): ListLogEntriesRequest;
3132
+
3133
+ getNodepoolId(): string;
3134
+ setNodepoolId(value: string): ListLogEntriesRequest;
3135
+
3136
+ getRunnerId(): string;
3137
+ setRunnerId(value: string): ListLogEntriesRequest;
3138
+
3139
+ serializeBinary(): Uint8Array;
3140
+ toObject(includeInstance?: boolean): ListLogEntriesRequest.AsObject;
3141
+ static toObject(includeInstance: boolean, msg: ListLogEntriesRequest): ListLogEntriesRequest.AsObject;
3142
+ static serializeBinaryToWriter(message: ListLogEntriesRequest, writer: jspb.BinaryWriter): void;
3143
+ static deserializeBinary(bytes: Uint8Array): ListLogEntriesRequest;
3144
+ static deserializeBinaryFromReader(message: ListLogEntriesRequest, reader: jspb.BinaryReader): ListLogEntriesRequest;
3145
+ }
3146
+
3147
+ export namespace ListLogEntriesRequest {
3148
+ export type AsObject = {
3149
+ page: number,
3150
+ perPage: number,
3151
+ logType: string,
3152
+ userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
3153
+ modelId: string,
3154
+ modelVersionId: string,
3155
+ workflowId: string,
3156
+ computeClusterId: string,
3157
+ nodepoolId: string,
3158
+ runnerId: string,
3159
+ }
3160
+ }
3161
+
3106
3162
  export class GetKeyRequest extends jspb.Message {
3107
3163
  getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
3108
3164
  setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): GetKeyRequest;
@@ -5478,6 +5534,32 @@ export namespace MultiOutputResponse {
5478
5534
  }
5479
5535
  }
5480
5536
 
5537
+ export class MultiLogEntryResponse extends jspb.Message {
5538
+ getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
5539
+ setStatus(value?: proto_clarifai_api_status_status_pb.Status): MultiLogEntryResponse;
5540
+ hasStatus(): boolean;
5541
+ clearStatus(): MultiLogEntryResponse;
5542
+
5543
+ getLogEntriesList(): Array<proto_clarifai_api_resources_pb.LogEntry>;
5544
+ setLogEntriesList(value: Array<proto_clarifai_api_resources_pb.LogEntry>): MultiLogEntryResponse;
5545
+ clearLogEntriesList(): MultiLogEntryResponse;
5546
+ addLogEntries(value?: proto_clarifai_api_resources_pb.LogEntry, index?: number): proto_clarifai_api_resources_pb.LogEntry;
5547
+
5548
+ serializeBinary(): Uint8Array;
5549
+ toObject(includeInstance?: boolean): MultiLogEntryResponse.AsObject;
5550
+ static toObject(includeInstance: boolean, msg: MultiLogEntryResponse): MultiLogEntryResponse.AsObject;
5551
+ static serializeBinaryToWriter(message: MultiLogEntryResponse, writer: jspb.BinaryWriter): void;
5552
+ static deserializeBinary(bytes: Uint8Array): MultiLogEntryResponse;
5553
+ static deserializeBinaryFromReader(message: MultiLogEntryResponse, reader: jspb.BinaryReader): MultiLogEntryResponse;
5554
+ }
5555
+
5556
+ export namespace MultiLogEntryResponse {
5557
+ export type AsObject = {
5558
+ status?: proto_clarifai_api_status_status_pb.Status.AsObject,
5559
+ logEntriesList: Array<proto_clarifai_api_resources_pb.LogEntry.AsObject>,
5560
+ }
5561
+ }
5562
+
5481
5563
  export class ListScopesRequest extends jspb.Message {
5482
5564
  getKeyType(): string;
5483
5565
  setKeyType(value: string): ListScopesRequest;
@@ -7324,6 +7406,14 @@ export class ListTasksRequest extends jspb.Message {
7324
7406
  clearIdsList(): ListTasksRequest;
7325
7407
  addIds(value: string, index?: number): ListTasksRequest;
7326
7408
 
7409
+ getInputSourceType(): proto_clarifai_api_resources_pb.TaskInputSource.TaskInputSourceType;
7410
+ setInputSourceType(value: proto_clarifai_api_resources_pb.TaskInputSource.TaskInputSourceType): ListTasksRequest;
7411
+
7412
+ getInputSourceIdsList(): Array<string>;
7413
+ setInputSourceIdsList(value: Array<string>): ListTasksRequest;
7414
+ clearInputSourceIdsList(): ListTasksRequest;
7415
+ addInputSourceIds(value: string, index?: number): ListTasksRequest;
7416
+
7327
7417
  serializeBinary(): Uint8Array;
7328
7418
  toObject(includeInstance?: boolean): ListTasksRequest.AsObject;
7329
7419
  static toObject(includeInstance: boolean, msg: ListTasksRequest): ListTasksRequest.AsObject;
@@ -7343,6 +7433,8 @@ export namespace ListTasksRequest {
7343
7433
  includingLabelOrderTasks: boolean,
7344
7434
  additionalFieldsList: Array<string>,
7345
7435
  idsList: Array<string>,
7436
+ inputSourceType: proto_clarifai_api_resources_pb.TaskInputSource.TaskInputSourceType,
7437
+ inputSourceIdsList: Array<string>,
7346
7438
  }
7347
7439
  }
7348
7440
 
@@ -10079,6 +10171,92 @@ export namespace MultiTrainingTimeEstimateResponse {
10079
10171
  }
10080
10172
  }
10081
10173
 
10174
+ export class ListCloudProvidersRequest extends jspb.Message {
10175
+ serializeBinary(): Uint8Array;
10176
+ toObject(includeInstance?: boolean): ListCloudProvidersRequest.AsObject;
10177
+ static toObject(includeInstance: boolean, msg: ListCloudProvidersRequest): ListCloudProvidersRequest.AsObject;
10178
+ static serializeBinaryToWriter(message: ListCloudProvidersRequest, writer: jspb.BinaryWriter): void;
10179
+ static deserializeBinary(bytes: Uint8Array): ListCloudProvidersRequest;
10180
+ static deserializeBinaryFromReader(message: ListCloudProvidersRequest, reader: jspb.BinaryReader): ListCloudProvidersRequest;
10181
+ }
10182
+
10183
+ export namespace ListCloudProvidersRequest {
10184
+ export type AsObject = {
10185
+ }
10186
+ }
10187
+
10188
+ export class MultiCloudProviderResponse extends jspb.Message {
10189
+ getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
10190
+ setStatus(value?: proto_clarifai_api_status_status_pb.Status): MultiCloudProviderResponse;
10191
+ hasStatus(): boolean;
10192
+ clearStatus(): MultiCloudProviderResponse;
10193
+
10194
+ getCloudProvidersList(): Array<proto_clarifai_api_resources_pb.CloudProvider>;
10195
+ setCloudProvidersList(value: Array<proto_clarifai_api_resources_pb.CloudProvider>): MultiCloudProviderResponse;
10196
+ clearCloudProvidersList(): MultiCloudProviderResponse;
10197
+ addCloudProviders(value?: proto_clarifai_api_resources_pb.CloudProvider, index?: number): proto_clarifai_api_resources_pb.CloudProvider;
10198
+
10199
+ serializeBinary(): Uint8Array;
10200
+ toObject(includeInstance?: boolean): MultiCloudProviderResponse.AsObject;
10201
+ static toObject(includeInstance: boolean, msg: MultiCloudProviderResponse): MultiCloudProviderResponse.AsObject;
10202
+ static serializeBinaryToWriter(message: MultiCloudProviderResponse, writer: jspb.BinaryWriter): void;
10203
+ static deserializeBinary(bytes: Uint8Array): MultiCloudProviderResponse;
10204
+ static deserializeBinaryFromReader(message: MultiCloudProviderResponse, reader: jspb.BinaryReader): MultiCloudProviderResponse;
10205
+ }
10206
+
10207
+ export namespace MultiCloudProviderResponse {
10208
+ export type AsObject = {
10209
+ status?: proto_clarifai_api_status_status_pb.Status.AsObject,
10210
+ cloudProvidersList: Array<proto_clarifai_api_resources_pb.CloudProvider.AsObject>,
10211
+ }
10212
+ }
10213
+
10214
+ export class ListCloudRegionsRequest extends jspb.Message {
10215
+ getCloudProvider(): proto_clarifai_api_resources_pb.CloudProvider | undefined;
10216
+ setCloudProvider(value?: proto_clarifai_api_resources_pb.CloudProvider): ListCloudRegionsRequest;
10217
+ hasCloudProvider(): boolean;
10218
+ clearCloudProvider(): ListCloudRegionsRequest;
10219
+
10220
+ serializeBinary(): Uint8Array;
10221
+ toObject(includeInstance?: boolean): ListCloudRegionsRequest.AsObject;
10222
+ static toObject(includeInstance: boolean, msg: ListCloudRegionsRequest): ListCloudRegionsRequest.AsObject;
10223
+ static serializeBinaryToWriter(message: ListCloudRegionsRequest, writer: jspb.BinaryWriter): void;
10224
+ static deserializeBinary(bytes: Uint8Array): ListCloudRegionsRequest;
10225
+ static deserializeBinaryFromReader(message: ListCloudRegionsRequest, reader: jspb.BinaryReader): ListCloudRegionsRequest;
10226
+ }
10227
+
10228
+ export namespace ListCloudRegionsRequest {
10229
+ export type AsObject = {
10230
+ cloudProvider?: proto_clarifai_api_resources_pb.CloudProvider.AsObject,
10231
+ }
10232
+ }
10233
+
10234
+ export class MultiCloudRegionResponse extends jspb.Message {
10235
+ getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
10236
+ setStatus(value?: proto_clarifai_api_status_status_pb.Status): MultiCloudRegionResponse;
10237
+ hasStatus(): boolean;
10238
+ clearStatus(): MultiCloudRegionResponse;
10239
+
10240
+ getRegionsList(): Array<string>;
10241
+ setRegionsList(value: Array<string>): MultiCloudRegionResponse;
10242
+ clearRegionsList(): MultiCloudRegionResponse;
10243
+ addRegions(value: string, index?: number): MultiCloudRegionResponse;
10244
+
10245
+ serializeBinary(): Uint8Array;
10246
+ toObject(includeInstance?: boolean): MultiCloudRegionResponse.AsObject;
10247
+ static toObject(includeInstance: boolean, msg: MultiCloudRegionResponse): MultiCloudRegionResponse.AsObject;
10248
+ static serializeBinaryToWriter(message: MultiCloudRegionResponse, writer: jspb.BinaryWriter): void;
10249
+ static deserializeBinary(bytes: Uint8Array): MultiCloudRegionResponse;
10250
+ static deserializeBinaryFromReader(message: MultiCloudRegionResponse, reader: jspb.BinaryReader): MultiCloudRegionResponse;
10251
+ }
10252
+
10253
+ export namespace MultiCloudRegionResponse {
10254
+ export type AsObject = {
10255
+ status?: proto_clarifai_api_status_status_pb.Status.AsObject,
10256
+ regionsList: Array<string>,
10257
+ }
10258
+ }
10259
+
10082
10260
  export class ListInstanceTypesRequest extends jspb.Message {
10083
10261
  getCloudProvider(): proto_clarifai_api_resources_pb.CloudProvider | undefined;
10084
10262
  setCloudProvider(value?: proto_clarifai_api_resources_pb.CloudProvider): ListInstanceTypesRequest;