clarifai-web-grpc 10.10.1 → 10.11.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 +694 -7
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +126 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +1229 -2
- package/dist/esm/proto/clarifai/api/resources_pb.js +694 -7
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +126 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +1229 -2
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +115 -0
- package/proto/clarifai/api/resources_pb.js +875 -7
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +36 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +183 -0
- package/proto/clarifai/api/service_pb.d.ts +178 -0
- package/proto/clarifai/api/service_pb.js +1515 -2
|
@@ -9138,6 +9138,90 @@ proto.clarifai.api.V2PromiseClient.prototype.postModelVersionsTrainingTimeEstima
|
|
|
9138
9138
|
return this.client_.unaryCall(this.hostname_ +
|
|
9139
9139
|
'/clarifai.api.V2/PostModelVersionsTrainingTimeEstimate', request, metadata || {}, methodDescriptor_V2_PostModelVersionsTrainingTimeEstimate);
|
|
9140
9140
|
};
|
|
9141
|
+
/**
|
|
9142
|
+
* @const
|
|
9143
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
9144
|
+
* !proto.clarifai.api.ListCloudProvidersRequest,
|
|
9145
|
+
* !proto.clarifai.api.MultiCloudProviderResponse>}
|
|
9146
|
+
*/
|
|
9147
|
+
const methodDescriptor_V2_ListCloudProviders = new grpc.web.MethodDescriptor('/clarifai.api.V2/ListCloudProviders', grpc.web.MethodType.UNARY, proto.clarifai.api.ListCloudProvidersRequest, proto.clarifai.api.MultiCloudProviderResponse,
|
|
9148
|
+
/**
|
|
9149
|
+
* @param {!proto.clarifai.api.ListCloudProvidersRequest} request
|
|
9150
|
+
* @return {!Uint8Array}
|
|
9151
|
+
*/
|
|
9152
|
+
function (request) {
|
|
9153
|
+
return request.serializeBinary();
|
|
9154
|
+
}, proto.clarifai.api.MultiCloudProviderResponse.deserializeBinary);
|
|
9155
|
+
/**
|
|
9156
|
+
* @param {!proto.clarifai.api.ListCloudProvidersRequest} request The
|
|
9157
|
+
* request proto
|
|
9158
|
+
* @param {?Object<string, string>} metadata User defined
|
|
9159
|
+
* call metadata
|
|
9160
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiCloudProviderResponse)}
|
|
9161
|
+
* callback The callback function(error, response)
|
|
9162
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiCloudProviderResponse>|undefined}
|
|
9163
|
+
* The XHR Node Readable Stream
|
|
9164
|
+
*/
|
|
9165
|
+
proto.clarifai.api.V2Client.prototype.listCloudProviders =
|
|
9166
|
+
function (request, metadata, callback) {
|
|
9167
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
9168
|
+
'/clarifai.api.V2/ListCloudProviders', request, metadata || {}, methodDescriptor_V2_ListCloudProviders, callback);
|
|
9169
|
+
};
|
|
9170
|
+
/**
|
|
9171
|
+
* @param {!proto.clarifai.api.ListCloudProvidersRequest} request The
|
|
9172
|
+
* request proto
|
|
9173
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
9174
|
+
* call metadata
|
|
9175
|
+
* @return {!Promise<!proto.clarifai.api.MultiCloudProviderResponse>}
|
|
9176
|
+
* Promise that resolves to the response
|
|
9177
|
+
*/
|
|
9178
|
+
proto.clarifai.api.V2PromiseClient.prototype.listCloudProviders =
|
|
9179
|
+
function (request, metadata) {
|
|
9180
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
9181
|
+
'/clarifai.api.V2/ListCloudProviders', request, metadata || {}, methodDescriptor_V2_ListCloudProviders);
|
|
9182
|
+
};
|
|
9183
|
+
/**
|
|
9184
|
+
* @const
|
|
9185
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
9186
|
+
* !proto.clarifai.api.ListCloudRegionsRequest,
|
|
9187
|
+
* !proto.clarifai.api.MultiCloudRegionResponse>}
|
|
9188
|
+
*/
|
|
9189
|
+
const methodDescriptor_V2_ListCloudRegions = new grpc.web.MethodDescriptor('/clarifai.api.V2/ListCloudRegions', grpc.web.MethodType.UNARY, proto.clarifai.api.ListCloudRegionsRequest, proto.clarifai.api.MultiCloudRegionResponse,
|
|
9190
|
+
/**
|
|
9191
|
+
* @param {!proto.clarifai.api.ListCloudRegionsRequest} request
|
|
9192
|
+
* @return {!Uint8Array}
|
|
9193
|
+
*/
|
|
9194
|
+
function (request) {
|
|
9195
|
+
return request.serializeBinary();
|
|
9196
|
+
}, proto.clarifai.api.MultiCloudRegionResponse.deserializeBinary);
|
|
9197
|
+
/**
|
|
9198
|
+
* @param {!proto.clarifai.api.ListCloudRegionsRequest} request The
|
|
9199
|
+
* request proto
|
|
9200
|
+
* @param {?Object<string, string>} metadata User defined
|
|
9201
|
+
* call metadata
|
|
9202
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiCloudRegionResponse)}
|
|
9203
|
+
* callback The callback function(error, response)
|
|
9204
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiCloudRegionResponse>|undefined}
|
|
9205
|
+
* The XHR Node Readable Stream
|
|
9206
|
+
*/
|
|
9207
|
+
proto.clarifai.api.V2Client.prototype.listCloudRegions =
|
|
9208
|
+
function (request, metadata, callback) {
|
|
9209
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
9210
|
+
'/clarifai.api.V2/ListCloudRegions', request, metadata || {}, methodDescriptor_V2_ListCloudRegions, callback);
|
|
9211
|
+
};
|
|
9212
|
+
/**
|
|
9213
|
+
* @param {!proto.clarifai.api.ListCloudRegionsRequest} request The
|
|
9214
|
+
* request proto
|
|
9215
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
9216
|
+
* call metadata
|
|
9217
|
+
* @return {!Promise<!proto.clarifai.api.MultiCloudRegionResponse>}
|
|
9218
|
+
* Promise that resolves to the response
|
|
9219
|
+
*/
|
|
9220
|
+
proto.clarifai.api.V2PromiseClient.prototype.listCloudRegions =
|
|
9221
|
+
function (request, metadata) {
|
|
9222
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
9223
|
+
'/clarifai.api.V2/ListCloudRegions', request, metadata || {}, methodDescriptor_V2_ListCloudRegions);
|
|
9224
|
+
};
|
|
9141
9225
|
/**
|
|
9142
9226
|
* @const
|
|
9143
9227
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -9852,4 +9936,46 @@ proto.clarifai.api.V2PromiseClient.prototype.listWorkflowEvaluationTemplates =
|
|
|
9852
9936
|
return this.client_.unaryCall(this.hostname_ +
|
|
9853
9937
|
'/clarifai.api.V2/ListWorkflowEvaluationTemplates', request, metadata || {}, methodDescriptor_V2_ListWorkflowEvaluationTemplates);
|
|
9854
9938
|
};
|
|
9939
|
+
/**
|
|
9940
|
+
* @const
|
|
9941
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
9942
|
+
* !proto.clarifai.api.ListLogEntriesRequest,
|
|
9943
|
+
* !proto.clarifai.api.MultiLogEntryResponse>}
|
|
9944
|
+
*/
|
|
9945
|
+
const methodDescriptor_V2_ListLogEntries = new grpc.web.MethodDescriptor('/clarifai.api.V2/ListLogEntries', grpc.web.MethodType.UNARY, proto.clarifai.api.ListLogEntriesRequest, proto.clarifai.api.MultiLogEntryResponse,
|
|
9946
|
+
/**
|
|
9947
|
+
* @param {!proto.clarifai.api.ListLogEntriesRequest} request
|
|
9948
|
+
* @return {!Uint8Array}
|
|
9949
|
+
*/
|
|
9950
|
+
function (request) {
|
|
9951
|
+
return request.serializeBinary();
|
|
9952
|
+
}, proto.clarifai.api.MultiLogEntryResponse.deserializeBinary);
|
|
9953
|
+
/**
|
|
9954
|
+
* @param {!proto.clarifai.api.ListLogEntriesRequest} request The
|
|
9955
|
+
* request proto
|
|
9956
|
+
* @param {?Object<string, string>} metadata User defined
|
|
9957
|
+
* call metadata
|
|
9958
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiLogEntryResponse)}
|
|
9959
|
+
* callback The callback function(error, response)
|
|
9960
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiLogEntryResponse>|undefined}
|
|
9961
|
+
* The XHR Node Readable Stream
|
|
9962
|
+
*/
|
|
9963
|
+
proto.clarifai.api.V2Client.prototype.listLogEntries =
|
|
9964
|
+
function (request, metadata, callback) {
|
|
9965
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
9966
|
+
'/clarifai.api.V2/ListLogEntries', request, metadata || {}, methodDescriptor_V2_ListLogEntries, callback);
|
|
9967
|
+
};
|
|
9968
|
+
/**
|
|
9969
|
+
* @param {!proto.clarifai.api.ListLogEntriesRequest} request The
|
|
9970
|
+
* request proto
|
|
9971
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
9972
|
+
* call metadata
|
|
9973
|
+
* @return {!Promise<!proto.clarifai.api.MultiLogEntryResponse>}
|
|
9974
|
+
* Promise that resolves to the response
|
|
9975
|
+
*/
|
|
9976
|
+
proto.clarifai.api.V2PromiseClient.prototype.listLogEntries =
|
|
9977
|
+
function (request, metadata) {
|
|
9978
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
9979
|
+
'/clarifai.api.V2/ListLogEntries', request, metadata || {}, methodDescriptor_V2_ListLogEntries);
|
|
9980
|
+
};
|
|
9855
9981
|
module.exports = proto.clarifai.api;
|