clarifai-web-grpc 11.5.2 → 11.6.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 +1638 -3
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +910 -70
- package/dist/cjs/proto/clarifai/api/service_pb.js +6855 -739
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +5 -1
- package/dist/esm/proto/clarifai/api/resources_pb.js +1638 -3
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +910 -70
- package/dist/esm/proto/clarifai/api/service_pb.js +6855 -739
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +5 -1
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +252 -0
- package/proto/clarifai/api/resources_pb.js +2076 -3
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +240 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +1315 -95
- package/proto/clarifai/api/service_pb.d.ts +890 -8
- package/proto/clarifai/api/service_pb.js +8719 -1155
- package/proto/clarifai/api/status/status_code_pb.d.ts +1 -0
- package/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/proto/clarifai/auth/scope/scope_pb.d.ts +4 -0
- package/proto/clarifai/auth/scope/scope_pb.js +5 -1
|
@@ -12900,6 +12900,67 @@ proto.clarifai.api.V2PromiseClient.prototype.postInputsUploads =
|
|
|
12900
12900
|
};
|
|
12901
12901
|
|
|
12902
12902
|
|
|
12903
|
+
/**
|
|
12904
|
+
* @const
|
|
12905
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
12906
|
+
* !proto.clarifai.api.ListPipelineVersionRunsRequest,
|
|
12907
|
+
* !proto.clarifai.api.MultiPipelineVersionRunResponse>}
|
|
12908
|
+
*/
|
|
12909
|
+
const methodDescriptor_V2_ListPipelineVersionRuns = new grpc.web.MethodDescriptor(
|
|
12910
|
+
'/clarifai.api.V2/ListPipelineVersionRuns',
|
|
12911
|
+
grpc.web.MethodType.UNARY,
|
|
12912
|
+
proto.clarifai.api.ListPipelineVersionRunsRequest,
|
|
12913
|
+
proto.clarifai.api.MultiPipelineVersionRunResponse,
|
|
12914
|
+
/**
|
|
12915
|
+
* @param {!proto.clarifai.api.ListPipelineVersionRunsRequest} request
|
|
12916
|
+
* @return {!Uint8Array}
|
|
12917
|
+
*/
|
|
12918
|
+
function(request) {
|
|
12919
|
+
return request.serializeBinary();
|
|
12920
|
+
},
|
|
12921
|
+
proto.clarifai.api.MultiPipelineVersionRunResponse.deserializeBinary
|
|
12922
|
+
);
|
|
12923
|
+
|
|
12924
|
+
|
|
12925
|
+
/**
|
|
12926
|
+
* @param {!proto.clarifai.api.ListPipelineVersionRunsRequest} request The
|
|
12927
|
+
* request proto
|
|
12928
|
+
* @param {?Object<string, string>} metadata User defined
|
|
12929
|
+
* call metadata
|
|
12930
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineVersionRunResponse)}
|
|
12931
|
+
* callback The callback function(error, response)
|
|
12932
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineVersionRunResponse>|undefined}
|
|
12933
|
+
* The XHR Node Readable Stream
|
|
12934
|
+
*/
|
|
12935
|
+
proto.clarifai.api.V2Client.prototype.listPipelineVersionRuns =
|
|
12936
|
+
function(request, metadata, callback) {
|
|
12937
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
12938
|
+
'/clarifai.api.V2/ListPipelineVersionRuns',
|
|
12939
|
+
request,
|
|
12940
|
+
metadata || {},
|
|
12941
|
+
methodDescriptor_V2_ListPipelineVersionRuns,
|
|
12942
|
+
callback);
|
|
12943
|
+
};
|
|
12944
|
+
|
|
12945
|
+
|
|
12946
|
+
/**
|
|
12947
|
+
* @param {!proto.clarifai.api.ListPipelineVersionRunsRequest} request The
|
|
12948
|
+
* request proto
|
|
12949
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
12950
|
+
* call metadata
|
|
12951
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineVersionRunResponse>}
|
|
12952
|
+
* Promise that resolves to the response
|
|
12953
|
+
*/
|
|
12954
|
+
proto.clarifai.api.V2PromiseClient.prototype.listPipelineVersionRuns =
|
|
12955
|
+
function(request, metadata) {
|
|
12956
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
12957
|
+
'/clarifai.api.V2/ListPipelineVersionRuns',
|
|
12958
|
+
request,
|
|
12959
|
+
metadata || {},
|
|
12960
|
+
methodDescriptor_V2_ListPipelineVersionRuns);
|
|
12961
|
+
};
|
|
12962
|
+
|
|
12963
|
+
|
|
12903
12964
|
/**
|
|
12904
12965
|
* @const
|
|
12905
12966
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -15033,305 +15094,1464 @@ proto.clarifai.api.V2PromiseClient.prototype.patchWorkflowVersionEvaluations =
|
|
|
15033
15094
|
/**
|
|
15034
15095
|
* @const
|
|
15035
15096
|
* @type {!grpc.web.MethodDescriptor<
|
|
15036
|
-
* !proto.clarifai.api.
|
|
15037
|
-
* !proto.clarifai.api.
|
|
15097
|
+
* !proto.clarifai.api.ListWorkflowVersionEvaluationDataRequest,
|
|
15098
|
+
* !proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse>}
|
|
15038
15099
|
*/
|
|
15039
|
-
const
|
|
15040
|
-
'/clarifai.api.V2/
|
|
15100
|
+
const methodDescriptor_V2_ListWorkflowVersionEvaluationData = new grpc.web.MethodDescriptor(
|
|
15101
|
+
'/clarifai.api.V2/ListWorkflowVersionEvaluationData',
|
|
15041
15102
|
grpc.web.MethodType.UNARY,
|
|
15042
|
-
proto.clarifai.api.
|
|
15043
|
-
proto.clarifai.api.
|
|
15103
|
+
proto.clarifai.api.ListWorkflowVersionEvaluationDataRequest,
|
|
15104
|
+
proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse,
|
|
15044
15105
|
/**
|
|
15045
|
-
* @param {!proto.clarifai.api.
|
|
15106
|
+
* @param {!proto.clarifai.api.ListWorkflowVersionEvaluationDataRequest} request
|
|
15046
15107
|
* @return {!Uint8Array}
|
|
15047
15108
|
*/
|
|
15048
15109
|
function(request) {
|
|
15049
15110
|
return request.serializeBinary();
|
|
15050
15111
|
},
|
|
15051
|
-
proto.clarifai.api.
|
|
15112
|
+
proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse.deserializeBinary
|
|
15052
15113
|
);
|
|
15053
15114
|
|
|
15054
15115
|
|
|
15055
15116
|
/**
|
|
15056
|
-
* @param {!proto.clarifai.api.
|
|
15117
|
+
* @param {!proto.clarifai.api.ListWorkflowVersionEvaluationDataRequest} request The
|
|
15057
15118
|
* request proto
|
|
15058
15119
|
* @param {?Object<string, string>} metadata User defined
|
|
15059
15120
|
* call metadata
|
|
15060
|
-
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.
|
|
15121
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse)}
|
|
15061
15122
|
* callback The callback function(error, response)
|
|
15062
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.
|
|
15123
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse>|undefined}
|
|
15063
15124
|
* The XHR Node Readable Stream
|
|
15064
15125
|
*/
|
|
15065
|
-
proto.clarifai.api.V2Client.prototype.
|
|
15126
|
+
proto.clarifai.api.V2Client.prototype.listWorkflowVersionEvaluationData =
|
|
15066
15127
|
function(request, metadata, callback) {
|
|
15067
15128
|
return this.client_.rpcCall(this.hostname_ +
|
|
15068
|
-
'/clarifai.api.V2/
|
|
15129
|
+
'/clarifai.api.V2/ListWorkflowVersionEvaluationData',
|
|
15069
15130
|
request,
|
|
15070
15131
|
metadata || {},
|
|
15071
|
-
|
|
15132
|
+
methodDescriptor_V2_ListWorkflowVersionEvaluationData,
|
|
15072
15133
|
callback);
|
|
15073
15134
|
};
|
|
15074
15135
|
|
|
15075
15136
|
|
|
15076
15137
|
/**
|
|
15077
|
-
* @param {!proto.clarifai.api.
|
|
15138
|
+
* @param {!proto.clarifai.api.ListWorkflowVersionEvaluationDataRequest} request The
|
|
15078
15139
|
* request proto
|
|
15079
15140
|
* @param {?Object<string, string>=} metadata User defined
|
|
15080
15141
|
* call metadata
|
|
15081
|
-
* @return {!Promise<!proto.clarifai.api.
|
|
15142
|
+
* @return {!Promise<!proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse>}
|
|
15082
15143
|
* Promise that resolves to the response
|
|
15083
15144
|
*/
|
|
15084
|
-
proto.clarifai.api.V2PromiseClient.prototype.
|
|
15145
|
+
proto.clarifai.api.V2PromiseClient.prototype.listWorkflowVersionEvaluationData =
|
|
15085
15146
|
function(request, metadata) {
|
|
15086
15147
|
return this.client_.unaryCall(this.hostname_ +
|
|
15087
|
-
'/clarifai.api.V2/
|
|
15148
|
+
'/clarifai.api.V2/ListWorkflowVersionEvaluationData',
|
|
15088
15149
|
request,
|
|
15089
15150
|
metadata || {},
|
|
15090
|
-
|
|
15151
|
+
methodDescriptor_V2_ListWorkflowVersionEvaluationData);
|
|
15091
15152
|
};
|
|
15092
15153
|
|
|
15093
15154
|
|
|
15094
15155
|
/**
|
|
15095
15156
|
* @const
|
|
15096
15157
|
* @type {!grpc.web.MethodDescriptor<
|
|
15097
|
-
* !proto.clarifai.api.
|
|
15098
|
-
* !proto.clarifai.api.
|
|
15158
|
+
* !proto.clarifai.api.PostWorkflowVersionEvaluationDataRequest,
|
|
15159
|
+
* !proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse>}
|
|
15099
15160
|
*/
|
|
15100
|
-
const
|
|
15101
|
-
'/clarifai.api.V2/
|
|
15161
|
+
const methodDescriptor_V2_PostWorkflowVersionEvaluationData = new grpc.web.MethodDescriptor(
|
|
15162
|
+
'/clarifai.api.V2/PostWorkflowVersionEvaluationData',
|
|
15102
15163
|
grpc.web.MethodType.UNARY,
|
|
15103
|
-
proto.clarifai.api.
|
|
15104
|
-
proto.clarifai.api.
|
|
15164
|
+
proto.clarifai.api.PostWorkflowVersionEvaluationDataRequest,
|
|
15165
|
+
proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse,
|
|
15105
15166
|
/**
|
|
15106
|
-
* @param {!proto.clarifai.api.
|
|
15167
|
+
* @param {!proto.clarifai.api.PostWorkflowVersionEvaluationDataRequest} request
|
|
15107
15168
|
* @return {!Uint8Array}
|
|
15108
15169
|
*/
|
|
15109
15170
|
function(request) {
|
|
15110
15171
|
return request.serializeBinary();
|
|
15111
15172
|
},
|
|
15112
|
-
proto.clarifai.api.
|
|
15173
|
+
proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse.deserializeBinary
|
|
15113
15174
|
);
|
|
15114
15175
|
|
|
15115
15176
|
|
|
15116
15177
|
/**
|
|
15117
|
-
* @param {!proto.clarifai.api.
|
|
15178
|
+
* @param {!proto.clarifai.api.PostWorkflowVersionEvaluationDataRequest} request The
|
|
15118
15179
|
* request proto
|
|
15119
15180
|
* @param {?Object<string, string>} metadata User defined
|
|
15120
15181
|
* call metadata
|
|
15121
|
-
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.
|
|
15182
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse)}
|
|
15122
15183
|
* callback The callback function(error, response)
|
|
15123
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.
|
|
15184
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse>|undefined}
|
|
15124
15185
|
* The XHR Node Readable Stream
|
|
15125
15186
|
*/
|
|
15126
|
-
proto.clarifai.api.V2Client.prototype.
|
|
15187
|
+
proto.clarifai.api.V2Client.prototype.postWorkflowVersionEvaluationData =
|
|
15127
15188
|
function(request, metadata, callback) {
|
|
15128
15189
|
return this.client_.rpcCall(this.hostname_ +
|
|
15129
|
-
'/clarifai.api.V2/
|
|
15190
|
+
'/clarifai.api.V2/PostWorkflowVersionEvaluationData',
|
|
15130
15191
|
request,
|
|
15131
15192
|
metadata || {},
|
|
15132
|
-
|
|
15193
|
+
methodDescriptor_V2_PostWorkflowVersionEvaluationData,
|
|
15133
15194
|
callback);
|
|
15134
15195
|
};
|
|
15135
15196
|
|
|
15136
15197
|
|
|
15137
15198
|
/**
|
|
15138
|
-
* @param {!proto.clarifai.api.
|
|
15199
|
+
* @param {!proto.clarifai.api.PostWorkflowVersionEvaluationDataRequest} request The
|
|
15139
15200
|
* request proto
|
|
15140
15201
|
* @param {?Object<string, string>=} metadata User defined
|
|
15141
15202
|
* call metadata
|
|
15142
|
-
* @return {!Promise<!proto.clarifai.api.
|
|
15203
|
+
* @return {!Promise<!proto.clarifai.api.MultiListWorkflowVersionEvaluationDataResponse>}
|
|
15143
15204
|
* Promise that resolves to the response
|
|
15144
15205
|
*/
|
|
15145
|
-
proto.clarifai.api.V2PromiseClient.prototype.
|
|
15206
|
+
proto.clarifai.api.V2PromiseClient.prototype.postWorkflowVersionEvaluationData =
|
|
15146
15207
|
function(request, metadata) {
|
|
15147
15208
|
return this.client_.unaryCall(this.hostname_ +
|
|
15148
|
-
'/clarifai.api.V2/
|
|
15209
|
+
'/clarifai.api.V2/PostWorkflowVersionEvaluationData',
|
|
15149
15210
|
request,
|
|
15150
15211
|
metadata || {},
|
|
15151
|
-
|
|
15212
|
+
methodDescriptor_V2_PostWorkflowVersionEvaluationData);
|
|
15152
15213
|
};
|
|
15153
15214
|
|
|
15154
15215
|
|
|
15155
15216
|
/**
|
|
15156
15217
|
* @const
|
|
15157
15218
|
* @type {!grpc.web.MethodDescriptor<
|
|
15158
|
-
* !proto.clarifai.api.
|
|
15159
|
-
* !proto.clarifai.api.
|
|
15219
|
+
* !proto.clarifai.api.PostPipelinesRequest,
|
|
15220
|
+
* !proto.clarifai.api.MultiPipelineResponse>}
|
|
15160
15221
|
*/
|
|
15161
|
-
const
|
|
15162
|
-
'/clarifai.api.V2/
|
|
15222
|
+
const methodDescriptor_V2_PostPipelines = new grpc.web.MethodDescriptor(
|
|
15223
|
+
'/clarifai.api.V2/PostPipelines',
|
|
15163
15224
|
grpc.web.MethodType.UNARY,
|
|
15164
|
-
proto.clarifai.api.
|
|
15165
|
-
proto.clarifai.api.
|
|
15225
|
+
proto.clarifai.api.PostPipelinesRequest,
|
|
15226
|
+
proto.clarifai.api.MultiPipelineResponse,
|
|
15166
15227
|
/**
|
|
15167
|
-
* @param {!proto.clarifai.api.
|
|
15228
|
+
* @param {!proto.clarifai.api.PostPipelinesRequest} request
|
|
15168
15229
|
* @return {!Uint8Array}
|
|
15169
15230
|
*/
|
|
15170
15231
|
function(request) {
|
|
15171
15232
|
return request.serializeBinary();
|
|
15172
15233
|
},
|
|
15173
|
-
proto.clarifai.api.
|
|
15234
|
+
proto.clarifai.api.MultiPipelineResponse.deserializeBinary
|
|
15174
15235
|
);
|
|
15175
15236
|
|
|
15176
15237
|
|
|
15177
15238
|
/**
|
|
15178
|
-
* @param {!proto.clarifai.api.
|
|
15239
|
+
* @param {!proto.clarifai.api.PostPipelinesRequest} request The
|
|
15179
15240
|
* request proto
|
|
15180
15241
|
* @param {?Object<string, string>} metadata User defined
|
|
15181
15242
|
* call metadata
|
|
15182
|
-
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.
|
|
15243
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineResponse)}
|
|
15183
15244
|
* callback The callback function(error, response)
|
|
15184
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.
|
|
15245
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineResponse>|undefined}
|
|
15185
15246
|
* The XHR Node Readable Stream
|
|
15186
15247
|
*/
|
|
15187
|
-
proto.clarifai.api.V2Client.prototype.
|
|
15248
|
+
proto.clarifai.api.V2Client.prototype.postPipelines =
|
|
15188
15249
|
function(request, metadata, callback) {
|
|
15189
15250
|
return this.client_.rpcCall(this.hostname_ +
|
|
15190
|
-
'/clarifai.api.V2/
|
|
15251
|
+
'/clarifai.api.V2/PostPipelines',
|
|
15191
15252
|
request,
|
|
15192
15253
|
metadata || {},
|
|
15193
|
-
|
|
15254
|
+
methodDescriptor_V2_PostPipelines,
|
|
15194
15255
|
callback);
|
|
15195
15256
|
};
|
|
15196
15257
|
|
|
15197
15258
|
|
|
15198
15259
|
/**
|
|
15199
|
-
* @param {!proto.clarifai.api.
|
|
15260
|
+
* @param {!proto.clarifai.api.PostPipelinesRequest} request The
|
|
15200
15261
|
* request proto
|
|
15201
15262
|
* @param {?Object<string, string>=} metadata User defined
|
|
15202
15263
|
* call metadata
|
|
15203
|
-
* @return {!Promise<!proto.clarifai.api.
|
|
15264
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineResponse>}
|
|
15204
15265
|
* Promise that resolves to the response
|
|
15205
15266
|
*/
|
|
15206
|
-
proto.clarifai.api.V2PromiseClient.prototype.
|
|
15267
|
+
proto.clarifai.api.V2PromiseClient.prototype.postPipelines =
|
|
15207
15268
|
function(request, metadata) {
|
|
15208
15269
|
return this.client_.unaryCall(this.hostname_ +
|
|
15209
|
-
'/clarifai.api.V2/
|
|
15270
|
+
'/clarifai.api.V2/PostPipelines',
|
|
15210
15271
|
request,
|
|
15211
15272
|
metadata || {},
|
|
15212
|
-
|
|
15273
|
+
methodDescriptor_V2_PostPipelines);
|
|
15213
15274
|
};
|
|
15214
15275
|
|
|
15215
15276
|
|
|
15216
15277
|
/**
|
|
15217
15278
|
* @const
|
|
15218
15279
|
* @type {!grpc.web.MethodDescriptor<
|
|
15219
|
-
* !proto.clarifai.api.
|
|
15220
|
-
* !proto.clarifai.api.
|
|
15280
|
+
* !proto.clarifai.api.GetPipelineRequest,
|
|
15281
|
+
* !proto.clarifai.api.SinglePipelineResponse>}
|
|
15221
15282
|
*/
|
|
15222
|
-
const
|
|
15223
|
-
'/clarifai.api.V2/
|
|
15283
|
+
const methodDescriptor_V2_GetPipeline = new grpc.web.MethodDescriptor(
|
|
15284
|
+
'/clarifai.api.V2/GetPipeline',
|
|
15224
15285
|
grpc.web.MethodType.UNARY,
|
|
15225
|
-
proto.clarifai.api.
|
|
15226
|
-
proto.clarifai.api.
|
|
15286
|
+
proto.clarifai.api.GetPipelineRequest,
|
|
15287
|
+
proto.clarifai.api.SinglePipelineResponse,
|
|
15227
15288
|
/**
|
|
15228
|
-
* @param {!proto.clarifai.api.
|
|
15289
|
+
* @param {!proto.clarifai.api.GetPipelineRequest} request
|
|
15229
15290
|
* @return {!Uint8Array}
|
|
15230
15291
|
*/
|
|
15231
15292
|
function(request) {
|
|
15232
15293
|
return request.serializeBinary();
|
|
15233
15294
|
},
|
|
15234
|
-
proto.clarifai.api.
|
|
15295
|
+
proto.clarifai.api.SinglePipelineResponse.deserializeBinary
|
|
15235
15296
|
);
|
|
15236
15297
|
|
|
15237
15298
|
|
|
15238
15299
|
/**
|
|
15239
|
-
* @param {!proto.clarifai.api.
|
|
15300
|
+
* @param {!proto.clarifai.api.GetPipelineRequest} request The
|
|
15240
15301
|
* request proto
|
|
15241
15302
|
* @param {?Object<string, string>} metadata User defined
|
|
15242
15303
|
* call metadata
|
|
15243
|
-
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.
|
|
15304
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.SinglePipelineResponse)}
|
|
15244
15305
|
* callback The callback function(error, response)
|
|
15245
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.
|
|
15306
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SinglePipelineResponse>|undefined}
|
|
15246
15307
|
* The XHR Node Readable Stream
|
|
15247
15308
|
*/
|
|
15248
|
-
proto.clarifai.api.V2Client.prototype.
|
|
15309
|
+
proto.clarifai.api.V2Client.prototype.getPipeline =
|
|
15249
15310
|
function(request, metadata, callback) {
|
|
15250
15311
|
return this.client_.rpcCall(this.hostname_ +
|
|
15251
|
-
'/clarifai.api.V2/
|
|
15312
|
+
'/clarifai.api.V2/GetPipeline',
|
|
15252
15313
|
request,
|
|
15253
15314
|
metadata || {},
|
|
15254
|
-
|
|
15315
|
+
methodDescriptor_V2_GetPipeline,
|
|
15255
15316
|
callback);
|
|
15256
15317
|
};
|
|
15257
15318
|
|
|
15258
15319
|
|
|
15259
15320
|
/**
|
|
15260
|
-
* @param {!proto.clarifai.api.
|
|
15321
|
+
* @param {!proto.clarifai.api.GetPipelineRequest} request The
|
|
15261
15322
|
* request proto
|
|
15262
15323
|
* @param {?Object<string, string>=} metadata User defined
|
|
15263
15324
|
* call metadata
|
|
15264
|
-
* @return {!Promise<!proto.clarifai.api.
|
|
15325
|
+
* @return {!Promise<!proto.clarifai.api.SinglePipelineResponse>}
|
|
15265
15326
|
* Promise that resolves to the response
|
|
15266
15327
|
*/
|
|
15267
|
-
proto.clarifai.api.V2PromiseClient.prototype.
|
|
15328
|
+
proto.clarifai.api.V2PromiseClient.prototype.getPipeline =
|
|
15268
15329
|
function(request, metadata) {
|
|
15269
15330
|
return this.client_.unaryCall(this.hostname_ +
|
|
15270
|
-
'/clarifai.api.V2/
|
|
15331
|
+
'/clarifai.api.V2/GetPipeline',
|
|
15271
15332
|
request,
|
|
15272
15333
|
metadata || {},
|
|
15273
|
-
|
|
15334
|
+
methodDescriptor_V2_GetPipeline);
|
|
15274
15335
|
};
|
|
15275
15336
|
|
|
15276
15337
|
|
|
15277
15338
|
/**
|
|
15278
15339
|
* @const
|
|
15279
15340
|
* @type {!grpc.web.MethodDescriptor<
|
|
15280
|
-
* !proto.clarifai.api.
|
|
15281
|
-
* !proto.clarifai.api.
|
|
15341
|
+
* !proto.clarifai.api.ListPipelinesRequest,
|
|
15342
|
+
* !proto.clarifai.api.MultiPipelineResponse>}
|
|
15282
15343
|
*/
|
|
15283
|
-
const
|
|
15284
|
-
'/clarifai.api.V2/
|
|
15344
|
+
const methodDescriptor_V2_ListPipelines = new grpc.web.MethodDescriptor(
|
|
15345
|
+
'/clarifai.api.V2/ListPipelines',
|
|
15285
15346
|
grpc.web.MethodType.UNARY,
|
|
15286
|
-
proto.clarifai.api.
|
|
15287
|
-
proto.clarifai.api.
|
|
15347
|
+
proto.clarifai.api.ListPipelinesRequest,
|
|
15348
|
+
proto.clarifai.api.MultiPipelineResponse,
|
|
15288
15349
|
/**
|
|
15289
|
-
* @param {!proto.clarifai.api.
|
|
15350
|
+
* @param {!proto.clarifai.api.ListPipelinesRequest} request
|
|
15290
15351
|
* @return {!Uint8Array}
|
|
15291
15352
|
*/
|
|
15292
15353
|
function(request) {
|
|
15293
15354
|
return request.serializeBinary();
|
|
15294
15355
|
},
|
|
15295
|
-
proto.clarifai.api.
|
|
15356
|
+
proto.clarifai.api.MultiPipelineResponse.deserializeBinary
|
|
15296
15357
|
);
|
|
15297
15358
|
|
|
15298
15359
|
|
|
15299
15360
|
/**
|
|
15300
|
-
* @param {!proto.clarifai.api.
|
|
15361
|
+
* @param {!proto.clarifai.api.ListPipelinesRequest} request The
|
|
15301
15362
|
* request proto
|
|
15302
15363
|
* @param {?Object<string, string>} metadata User defined
|
|
15303
15364
|
* call metadata
|
|
15304
|
-
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.
|
|
15365
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineResponse)}
|
|
15305
15366
|
* callback The callback function(error, response)
|
|
15306
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.
|
|
15367
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineResponse>|undefined}
|
|
15307
15368
|
* The XHR Node Readable Stream
|
|
15308
15369
|
*/
|
|
15309
|
-
proto.clarifai.api.V2Client.prototype.
|
|
15370
|
+
proto.clarifai.api.V2Client.prototype.listPipelines =
|
|
15310
15371
|
function(request, metadata, callback) {
|
|
15311
15372
|
return this.client_.rpcCall(this.hostname_ +
|
|
15312
|
-
'/clarifai.api.V2/
|
|
15373
|
+
'/clarifai.api.V2/ListPipelines',
|
|
15313
15374
|
request,
|
|
15314
15375
|
metadata || {},
|
|
15315
|
-
|
|
15376
|
+
methodDescriptor_V2_ListPipelines,
|
|
15316
15377
|
callback);
|
|
15317
15378
|
};
|
|
15318
15379
|
|
|
15319
15380
|
|
|
15320
15381
|
/**
|
|
15321
|
-
* @param {!proto.clarifai.api.
|
|
15382
|
+
* @param {!proto.clarifai.api.ListPipelinesRequest} request The
|
|
15322
15383
|
* request proto
|
|
15323
15384
|
* @param {?Object<string, string>=} metadata User defined
|
|
15324
15385
|
* call metadata
|
|
15325
|
-
* @return {!Promise<!proto.clarifai.api.
|
|
15386
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineResponse>}
|
|
15326
15387
|
* Promise that resolves to the response
|
|
15327
15388
|
*/
|
|
15328
|
-
proto.clarifai.api.V2PromiseClient.prototype.
|
|
15389
|
+
proto.clarifai.api.V2PromiseClient.prototype.listPipelines =
|
|
15329
15390
|
function(request, metadata) {
|
|
15330
15391
|
return this.client_.unaryCall(this.hostname_ +
|
|
15331
|
-
'/clarifai.api.V2/
|
|
15392
|
+
'/clarifai.api.V2/ListPipelines',
|
|
15332
15393
|
request,
|
|
15333
15394
|
metadata || {},
|
|
15334
|
-
|
|
15395
|
+
methodDescriptor_V2_ListPipelines);
|
|
15396
|
+
};
|
|
15397
|
+
|
|
15398
|
+
|
|
15399
|
+
/**
|
|
15400
|
+
* @const
|
|
15401
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15402
|
+
* !proto.clarifai.api.PatchPipelinesRequest,
|
|
15403
|
+
* !proto.clarifai.api.MultiPipelineResponse>}
|
|
15404
|
+
*/
|
|
15405
|
+
const methodDescriptor_V2_PatchPipelines = new grpc.web.MethodDescriptor(
|
|
15406
|
+
'/clarifai.api.V2/PatchPipelines',
|
|
15407
|
+
grpc.web.MethodType.UNARY,
|
|
15408
|
+
proto.clarifai.api.PatchPipelinesRequest,
|
|
15409
|
+
proto.clarifai.api.MultiPipelineResponse,
|
|
15410
|
+
/**
|
|
15411
|
+
* @param {!proto.clarifai.api.PatchPipelinesRequest} request
|
|
15412
|
+
* @return {!Uint8Array}
|
|
15413
|
+
*/
|
|
15414
|
+
function(request) {
|
|
15415
|
+
return request.serializeBinary();
|
|
15416
|
+
},
|
|
15417
|
+
proto.clarifai.api.MultiPipelineResponse.deserializeBinary
|
|
15418
|
+
);
|
|
15419
|
+
|
|
15420
|
+
|
|
15421
|
+
/**
|
|
15422
|
+
* @param {!proto.clarifai.api.PatchPipelinesRequest} request The
|
|
15423
|
+
* request proto
|
|
15424
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15425
|
+
* call metadata
|
|
15426
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineResponse)}
|
|
15427
|
+
* callback The callback function(error, response)
|
|
15428
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineResponse>|undefined}
|
|
15429
|
+
* The XHR Node Readable Stream
|
|
15430
|
+
*/
|
|
15431
|
+
proto.clarifai.api.V2Client.prototype.patchPipelines =
|
|
15432
|
+
function(request, metadata, callback) {
|
|
15433
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15434
|
+
'/clarifai.api.V2/PatchPipelines',
|
|
15435
|
+
request,
|
|
15436
|
+
metadata || {},
|
|
15437
|
+
methodDescriptor_V2_PatchPipelines,
|
|
15438
|
+
callback);
|
|
15439
|
+
};
|
|
15440
|
+
|
|
15441
|
+
|
|
15442
|
+
/**
|
|
15443
|
+
* @param {!proto.clarifai.api.PatchPipelinesRequest} request The
|
|
15444
|
+
* request proto
|
|
15445
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15446
|
+
* call metadata
|
|
15447
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineResponse>}
|
|
15448
|
+
* Promise that resolves to the response
|
|
15449
|
+
*/
|
|
15450
|
+
proto.clarifai.api.V2PromiseClient.prototype.patchPipelines =
|
|
15451
|
+
function(request, metadata) {
|
|
15452
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
15453
|
+
'/clarifai.api.V2/PatchPipelines',
|
|
15454
|
+
request,
|
|
15455
|
+
metadata || {},
|
|
15456
|
+
methodDescriptor_V2_PatchPipelines);
|
|
15457
|
+
};
|
|
15458
|
+
|
|
15459
|
+
|
|
15460
|
+
/**
|
|
15461
|
+
* @const
|
|
15462
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15463
|
+
* !proto.clarifai.api.DeletePipelinesRequest,
|
|
15464
|
+
* !proto.clarifai.api.MultiPipelineResponse>}
|
|
15465
|
+
*/
|
|
15466
|
+
const methodDescriptor_V2_DeletePipelines = new grpc.web.MethodDescriptor(
|
|
15467
|
+
'/clarifai.api.V2/DeletePipelines',
|
|
15468
|
+
grpc.web.MethodType.UNARY,
|
|
15469
|
+
proto.clarifai.api.DeletePipelinesRequest,
|
|
15470
|
+
proto.clarifai.api.MultiPipelineResponse,
|
|
15471
|
+
/**
|
|
15472
|
+
* @param {!proto.clarifai.api.DeletePipelinesRequest} request
|
|
15473
|
+
* @return {!Uint8Array}
|
|
15474
|
+
*/
|
|
15475
|
+
function(request) {
|
|
15476
|
+
return request.serializeBinary();
|
|
15477
|
+
},
|
|
15478
|
+
proto.clarifai.api.MultiPipelineResponse.deserializeBinary
|
|
15479
|
+
);
|
|
15480
|
+
|
|
15481
|
+
|
|
15482
|
+
/**
|
|
15483
|
+
* @param {!proto.clarifai.api.DeletePipelinesRequest} request The
|
|
15484
|
+
* request proto
|
|
15485
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15486
|
+
* call metadata
|
|
15487
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineResponse)}
|
|
15488
|
+
* callback The callback function(error, response)
|
|
15489
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineResponse>|undefined}
|
|
15490
|
+
* The XHR Node Readable Stream
|
|
15491
|
+
*/
|
|
15492
|
+
proto.clarifai.api.V2Client.prototype.deletePipelines =
|
|
15493
|
+
function(request, metadata, callback) {
|
|
15494
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15495
|
+
'/clarifai.api.V2/DeletePipelines',
|
|
15496
|
+
request,
|
|
15497
|
+
metadata || {},
|
|
15498
|
+
methodDescriptor_V2_DeletePipelines,
|
|
15499
|
+
callback);
|
|
15500
|
+
};
|
|
15501
|
+
|
|
15502
|
+
|
|
15503
|
+
/**
|
|
15504
|
+
* @param {!proto.clarifai.api.DeletePipelinesRequest} request The
|
|
15505
|
+
* request proto
|
|
15506
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15507
|
+
* call metadata
|
|
15508
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineResponse>}
|
|
15509
|
+
* Promise that resolves to the response
|
|
15510
|
+
*/
|
|
15511
|
+
proto.clarifai.api.V2PromiseClient.prototype.deletePipelines =
|
|
15512
|
+
function(request, metadata) {
|
|
15513
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
15514
|
+
'/clarifai.api.V2/DeletePipelines',
|
|
15515
|
+
request,
|
|
15516
|
+
metadata || {},
|
|
15517
|
+
methodDescriptor_V2_DeletePipelines);
|
|
15518
|
+
};
|
|
15519
|
+
|
|
15520
|
+
|
|
15521
|
+
/**
|
|
15522
|
+
* @const
|
|
15523
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15524
|
+
* !proto.clarifai.api.GetPipelineVersionRequest,
|
|
15525
|
+
* !proto.clarifai.api.SinglePipelineVersionResponse>}
|
|
15526
|
+
*/
|
|
15527
|
+
const methodDescriptor_V2_GetPipelineVersion = new grpc.web.MethodDescriptor(
|
|
15528
|
+
'/clarifai.api.V2/GetPipelineVersion',
|
|
15529
|
+
grpc.web.MethodType.UNARY,
|
|
15530
|
+
proto.clarifai.api.GetPipelineVersionRequest,
|
|
15531
|
+
proto.clarifai.api.SinglePipelineVersionResponse,
|
|
15532
|
+
/**
|
|
15533
|
+
* @param {!proto.clarifai.api.GetPipelineVersionRequest} request
|
|
15534
|
+
* @return {!Uint8Array}
|
|
15535
|
+
*/
|
|
15536
|
+
function(request) {
|
|
15537
|
+
return request.serializeBinary();
|
|
15538
|
+
},
|
|
15539
|
+
proto.clarifai.api.SinglePipelineVersionResponse.deserializeBinary
|
|
15540
|
+
);
|
|
15541
|
+
|
|
15542
|
+
|
|
15543
|
+
/**
|
|
15544
|
+
* @param {!proto.clarifai.api.GetPipelineVersionRequest} request The
|
|
15545
|
+
* request proto
|
|
15546
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15547
|
+
* call metadata
|
|
15548
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.SinglePipelineVersionResponse)}
|
|
15549
|
+
* callback The callback function(error, response)
|
|
15550
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SinglePipelineVersionResponse>|undefined}
|
|
15551
|
+
* The XHR Node Readable Stream
|
|
15552
|
+
*/
|
|
15553
|
+
proto.clarifai.api.V2Client.prototype.getPipelineVersion =
|
|
15554
|
+
function(request, metadata, callback) {
|
|
15555
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15556
|
+
'/clarifai.api.V2/GetPipelineVersion',
|
|
15557
|
+
request,
|
|
15558
|
+
metadata || {},
|
|
15559
|
+
methodDescriptor_V2_GetPipelineVersion,
|
|
15560
|
+
callback);
|
|
15561
|
+
};
|
|
15562
|
+
|
|
15563
|
+
|
|
15564
|
+
/**
|
|
15565
|
+
* @param {!proto.clarifai.api.GetPipelineVersionRequest} request The
|
|
15566
|
+
* request proto
|
|
15567
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15568
|
+
* call metadata
|
|
15569
|
+
* @return {!Promise<!proto.clarifai.api.SinglePipelineVersionResponse>}
|
|
15570
|
+
* Promise that resolves to the response
|
|
15571
|
+
*/
|
|
15572
|
+
proto.clarifai.api.V2PromiseClient.prototype.getPipelineVersion =
|
|
15573
|
+
function(request, metadata) {
|
|
15574
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
15575
|
+
'/clarifai.api.V2/GetPipelineVersion',
|
|
15576
|
+
request,
|
|
15577
|
+
metadata || {},
|
|
15578
|
+
methodDescriptor_V2_GetPipelineVersion);
|
|
15579
|
+
};
|
|
15580
|
+
|
|
15581
|
+
|
|
15582
|
+
/**
|
|
15583
|
+
* @const
|
|
15584
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15585
|
+
* !proto.clarifai.api.ListPipelineVersionsRequest,
|
|
15586
|
+
* !proto.clarifai.api.MultiPipelineVersionResponse>}
|
|
15587
|
+
*/
|
|
15588
|
+
const methodDescriptor_V2_ListPipelineVersions = new grpc.web.MethodDescriptor(
|
|
15589
|
+
'/clarifai.api.V2/ListPipelineVersions',
|
|
15590
|
+
grpc.web.MethodType.UNARY,
|
|
15591
|
+
proto.clarifai.api.ListPipelineVersionsRequest,
|
|
15592
|
+
proto.clarifai.api.MultiPipelineVersionResponse,
|
|
15593
|
+
/**
|
|
15594
|
+
* @param {!proto.clarifai.api.ListPipelineVersionsRequest} request
|
|
15595
|
+
* @return {!Uint8Array}
|
|
15596
|
+
*/
|
|
15597
|
+
function(request) {
|
|
15598
|
+
return request.serializeBinary();
|
|
15599
|
+
},
|
|
15600
|
+
proto.clarifai.api.MultiPipelineVersionResponse.deserializeBinary
|
|
15601
|
+
);
|
|
15602
|
+
|
|
15603
|
+
|
|
15604
|
+
/**
|
|
15605
|
+
* @param {!proto.clarifai.api.ListPipelineVersionsRequest} request The
|
|
15606
|
+
* request proto
|
|
15607
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15608
|
+
* call metadata
|
|
15609
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineVersionResponse)}
|
|
15610
|
+
* callback The callback function(error, response)
|
|
15611
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineVersionResponse>|undefined}
|
|
15612
|
+
* The XHR Node Readable Stream
|
|
15613
|
+
*/
|
|
15614
|
+
proto.clarifai.api.V2Client.prototype.listPipelineVersions =
|
|
15615
|
+
function(request, metadata, callback) {
|
|
15616
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15617
|
+
'/clarifai.api.V2/ListPipelineVersions',
|
|
15618
|
+
request,
|
|
15619
|
+
metadata || {},
|
|
15620
|
+
methodDescriptor_V2_ListPipelineVersions,
|
|
15621
|
+
callback);
|
|
15622
|
+
};
|
|
15623
|
+
|
|
15624
|
+
|
|
15625
|
+
/**
|
|
15626
|
+
* @param {!proto.clarifai.api.ListPipelineVersionsRequest} request The
|
|
15627
|
+
* request proto
|
|
15628
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15629
|
+
* call metadata
|
|
15630
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineVersionResponse>}
|
|
15631
|
+
* Promise that resolves to the response
|
|
15632
|
+
*/
|
|
15633
|
+
proto.clarifai.api.V2PromiseClient.prototype.listPipelineVersions =
|
|
15634
|
+
function(request, metadata) {
|
|
15635
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
15636
|
+
'/clarifai.api.V2/ListPipelineVersions',
|
|
15637
|
+
request,
|
|
15638
|
+
metadata || {},
|
|
15639
|
+
methodDescriptor_V2_ListPipelineVersions);
|
|
15640
|
+
};
|
|
15641
|
+
|
|
15642
|
+
|
|
15643
|
+
/**
|
|
15644
|
+
* @const
|
|
15645
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15646
|
+
* !proto.clarifai.api.PatchPipelineVersionsRequest,
|
|
15647
|
+
* !proto.clarifai.api.MultiPipelineVersionResponse>}
|
|
15648
|
+
*/
|
|
15649
|
+
const methodDescriptor_V2_PatchPipelineVersions = new grpc.web.MethodDescriptor(
|
|
15650
|
+
'/clarifai.api.V2/PatchPipelineVersions',
|
|
15651
|
+
grpc.web.MethodType.UNARY,
|
|
15652
|
+
proto.clarifai.api.PatchPipelineVersionsRequest,
|
|
15653
|
+
proto.clarifai.api.MultiPipelineVersionResponse,
|
|
15654
|
+
/**
|
|
15655
|
+
* @param {!proto.clarifai.api.PatchPipelineVersionsRequest} request
|
|
15656
|
+
* @return {!Uint8Array}
|
|
15657
|
+
*/
|
|
15658
|
+
function(request) {
|
|
15659
|
+
return request.serializeBinary();
|
|
15660
|
+
},
|
|
15661
|
+
proto.clarifai.api.MultiPipelineVersionResponse.deserializeBinary
|
|
15662
|
+
);
|
|
15663
|
+
|
|
15664
|
+
|
|
15665
|
+
/**
|
|
15666
|
+
* @param {!proto.clarifai.api.PatchPipelineVersionsRequest} request The
|
|
15667
|
+
* request proto
|
|
15668
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15669
|
+
* call metadata
|
|
15670
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineVersionResponse)}
|
|
15671
|
+
* callback The callback function(error, response)
|
|
15672
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineVersionResponse>|undefined}
|
|
15673
|
+
* The XHR Node Readable Stream
|
|
15674
|
+
*/
|
|
15675
|
+
proto.clarifai.api.V2Client.prototype.patchPipelineVersions =
|
|
15676
|
+
function(request, metadata, callback) {
|
|
15677
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15678
|
+
'/clarifai.api.V2/PatchPipelineVersions',
|
|
15679
|
+
request,
|
|
15680
|
+
metadata || {},
|
|
15681
|
+
methodDescriptor_V2_PatchPipelineVersions,
|
|
15682
|
+
callback);
|
|
15683
|
+
};
|
|
15684
|
+
|
|
15685
|
+
|
|
15686
|
+
/**
|
|
15687
|
+
* @param {!proto.clarifai.api.PatchPipelineVersionsRequest} request The
|
|
15688
|
+
* request proto
|
|
15689
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15690
|
+
* call metadata
|
|
15691
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineVersionResponse>}
|
|
15692
|
+
* Promise that resolves to the response
|
|
15693
|
+
*/
|
|
15694
|
+
proto.clarifai.api.V2PromiseClient.prototype.patchPipelineVersions =
|
|
15695
|
+
function(request, metadata) {
|
|
15696
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
15697
|
+
'/clarifai.api.V2/PatchPipelineVersions',
|
|
15698
|
+
request,
|
|
15699
|
+
metadata || {},
|
|
15700
|
+
methodDescriptor_V2_PatchPipelineVersions);
|
|
15701
|
+
};
|
|
15702
|
+
|
|
15703
|
+
|
|
15704
|
+
/**
|
|
15705
|
+
* @const
|
|
15706
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15707
|
+
* !proto.clarifai.api.DeletePipelineVersionsRequest,
|
|
15708
|
+
* !proto.clarifai.api.MultiPipelineVersionResponse>}
|
|
15709
|
+
*/
|
|
15710
|
+
const methodDescriptor_V2_DeletePipelineVersions = new grpc.web.MethodDescriptor(
|
|
15711
|
+
'/clarifai.api.V2/DeletePipelineVersions',
|
|
15712
|
+
grpc.web.MethodType.UNARY,
|
|
15713
|
+
proto.clarifai.api.DeletePipelineVersionsRequest,
|
|
15714
|
+
proto.clarifai.api.MultiPipelineVersionResponse,
|
|
15715
|
+
/**
|
|
15716
|
+
* @param {!proto.clarifai.api.DeletePipelineVersionsRequest} request
|
|
15717
|
+
* @return {!Uint8Array}
|
|
15718
|
+
*/
|
|
15719
|
+
function(request) {
|
|
15720
|
+
return request.serializeBinary();
|
|
15721
|
+
},
|
|
15722
|
+
proto.clarifai.api.MultiPipelineVersionResponse.deserializeBinary
|
|
15723
|
+
);
|
|
15724
|
+
|
|
15725
|
+
|
|
15726
|
+
/**
|
|
15727
|
+
* @param {!proto.clarifai.api.DeletePipelineVersionsRequest} request The
|
|
15728
|
+
* request proto
|
|
15729
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15730
|
+
* call metadata
|
|
15731
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineVersionResponse)}
|
|
15732
|
+
* callback The callback function(error, response)
|
|
15733
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineVersionResponse>|undefined}
|
|
15734
|
+
* The XHR Node Readable Stream
|
|
15735
|
+
*/
|
|
15736
|
+
proto.clarifai.api.V2Client.prototype.deletePipelineVersions =
|
|
15737
|
+
function(request, metadata, callback) {
|
|
15738
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15739
|
+
'/clarifai.api.V2/DeletePipelineVersions',
|
|
15740
|
+
request,
|
|
15741
|
+
metadata || {},
|
|
15742
|
+
methodDescriptor_V2_DeletePipelineVersions,
|
|
15743
|
+
callback);
|
|
15744
|
+
};
|
|
15745
|
+
|
|
15746
|
+
|
|
15747
|
+
/**
|
|
15748
|
+
* @param {!proto.clarifai.api.DeletePipelineVersionsRequest} request The
|
|
15749
|
+
* request proto
|
|
15750
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15751
|
+
* call metadata
|
|
15752
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineVersionResponse>}
|
|
15753
|
+
* Promise that resolves to the response
|
|
15754
|
+
*/
|
|
15755
|
+
proto.clarifai.api.V2PromiseClient.prototype.deletePipelineVersions =
|
|
15756
|
+
function(request, metadata) {
|
|
15757
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
15758
|
+
'/clarifai.api.V2/DeletePipelineVersions',
|
|
15759
|
+
request,
|
|
15760
|
+
metadata || {},
|
|
15761
|
+
methodDescriptor_V2_DeletePipelineVersions);
|
|
15762
|
+
};
|
|
15763
|
+
|
|
15764
|
+
|
|
15765
|
+
/**
|
|
15766
|
+
* @const
|
|
15767
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15768
|
+
* !proto.clarifai.api.GetPipelineVersionRunRequest,
|
|
15769
|
+
* !proto.clarifai.api.SinglePipelineVersionRunResponse>}
|
|
15770
|
+
*/
|
|
15771
|
+
const methodDescriptor_V2_GetPipelineVersionRun = new grpc.web.MethodDescriptor(
|
|
15772
|
+
'/clarifai.api.V2/GetPipelineVersionRun',
|
|
15773
|
+
grpc.web.MethodType.UNARY,
|
|
15774
|
+
proto.clarifai.api.GetPipelineVersionRunRequest,
|
|
15775
|
+
proto.clarifai.api.SinglePipelineVersionRunResponse,
|
|
15776
|
+
/**
|
|
15777
|
+
* @param {!proto.clarifai.api.GetPipelineVersionRunRequest} request
|
|
15778
|
+
* @return {!Uint8Array}
|
|
15779
|
+
*/
|
|
15780
|
+
function(request) {
|
|
15781
|
+
return request.serializeBinary();
|
|
15782
|
+
},
|
|
15783
|
+
proto.clarifai.api.SinglePipelineVersionRunResponse.deserializeBinary
|
|
15784
|
+
);
|
|
15785
|
+
|
|
15786
|
+
|
|
15787
|
+
/**
|
|
15788
|
+
* @param {!proto.clarifai.api.GetPipelineVersionRunRequest} request The
|
|
15789
|
+
* request proto
|
|
15790
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15791
|
+
* call metadata
|
|
15792
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.SinglePipelineVersionRunResponse)}
|
|
15793
|
+
* callback The callback function(error, response)
|
|
15794
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SinglePipelineVersionRunResponse>|undefined}
|
|
15795
|
+
* The XHR Node Readable Stream
|
|
15796
|
+
*/
|
|
15797
|
+
proto.clarifai.api.V2Client.prototype.getPipelineVersionRun =
|
|
15798
|
+
function(request, metadata, callback) {
|
|
15799
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15800
|
+
'/clarifai.api.V2/GetPipelineVersionRun',
|
|
15801
|
+
request,
|
|
15802
|
+
metadata || {},
|
|
15803
|
+
methodDescriptor_V2_GetPipelineVersionRun,
|
|
15804
|
+
callback);
|
|
15805
|
+
};
|
|
15806
|
+
|
|
15807
|
+
|
|
15808
|
+
/**
|
|
15809
|
+
* @param {!proto.clarifai.api.GetPipelineVersionRunRequest} request The
|
|
15810
|
+
* request proto
|
|
15811
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15812
|
+
* call metadata
|
|
15813
|
+
* @return {!Promise<!proto.clarifai.api.SinglePipelineVersionRunResponse>}
|
|
15814
|
+
* Promise that resolves to the response
|
|
15815
|
+
*/
|
|
15816
|
+
proto.clarifai.api.V2PromiseClient.prototype.getPipelineVersionRun =
|
|
15817
|
+
function(request, metadata) {
|
|
15818
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
15819
|
+
'/clarifai.api.V2/GetPipelineVersionRun',
|
|
15820
|
+
request,
|
|
15821
|
+
metadata || {},
|
|
15822
|
+
methodDescriptor_V2_GetPipelineVersionRun);
|
|
15823
|
+
};
|
|
15824
|
+
|
|
15825
|
+
|
|
15826
|
+
/**
|
|
15827
|
+
* @const
|
|
15828
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15829
|
+
* !proto.clarifai.api.PostPipelineVersionRunsRequest,
|
|
15830
|
+
* !proto.clarifai.api.MultiPipelineVersionRunResponse>}
|
|
15831
|
+
*/
|
|
15832
|
+
const methodDescriptor_V2_PostPipelineVersionRuns = new grpc.web.MethodDescriptor(
|
|
15833
|
+
'/clarifai.api.V2/PostPipelineVersionRuns',
|
|
15834
|
+
grpc.web.MethodType.UNARY,
|
|
15835
|
+
proto.clarifai.api.PostPipelineVersionRunsRequest,
|
|
15836
|
+
proto.clarifai.api.MultiPipelineVersionRunResponse,
|
|
15837
|
+
/**
|
|
15838
|
+
* @param {!proto.clarifai.api.PostPipelineVersionRunsRequest} request
|
|
15839
|
+
* @return {!Uint8Array}
|
|
15840
|
+
*/
|
|
15841
|
+
function(request) {
|
|
15842
|
+
return request.serializeBinary();
|
|
15843
|
+
},
|
|
15844
|
+
proto.clarifai.api.MultiPipelineVersionRunResponse.deserializeBinary
|
|
15845
|
+
);
|
|
15846
|
+
|
|
15847
|
+
|
|
15848
|
+
/**
|
|
15849
|
+
* @param {!proto.clarifai.api.PostPipelineVersionRunsRequest} request The
|
|
15850
|
+
* request proto
|
|
15851
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15852
|
+
* call metadata
|
|
15853
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineVersionRunResponse)}
|
|
15854
|
+
* callback The callback function(error, response)
|
|
15855
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineVersionRunResponse>|undefined}
|
|
15856
|
+
* The XHR Node Readable Stream
|
|
15857
|
+
*/
|
|
15858
|
+
proto.clarifai.api.V2Client.prototype.postPipelineVersionRuns =
|
|
15859
|
+
function(request, metadata, callback) {
|
|
15860
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15861
|
+
'/clarifai.api.V2/PostPipelineVersionRuns',
|
|
15862
|
+
request,
|
|
15863
|
+
metadata || {},
|
|
15864
|
+
methodDescriptor_V2_PostPipelineVersionRuns,
|
|
15865
|
+
callback);
|
|
15866
|
+
};
|
|
15867
|
+
|
|
15868
|
+
|
|
15869
|
+
/**
|
|
15870
|
+
* @param {!proto.clarifai.api.PostPipelineVersionRunsRequest} request The
|
|
15871
|
+
* request proto
|
|
15872
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15873
|
+
* call metadata
|
|
15874
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineVersionRunResponse>}
|
|
15875
|
+
* Promise that resolves to the response
|
|
15876
|
+
*/
|
|
15877
|
+
proto.clarifai.api.V2PromiseClient.prototype.postPipelineVersionRuns =
|
|
15878
|
+
function(request, metadata) {
|
|
15879
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
15880
|
+
'/clarifai.api.V2/PostPipelineVersionRuns',
|
|
15881
|
+
request,
|
|
15882
|
+
metadata || {},
|
|
15883
|
+
methodDescriptor_V2_PostPipelineVersionRuns);
|
|
15884
|
+
};
|
|
15885
|
+
|
|
15886
|
+
|
|
15887
|
+
/**
|
|
15888
|
+
* @const
|
|
15889
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15890
|
+
* !proto.clarifai.api.PatchPipelineVersionRunsRequest,
|
|
15891
|
+
* !proto.clarifai.api.MultiPipelineVersionRunResponse>}
|
|
15892
|
+
*/
|
|
15893
|
+
const methodDescriptor_V2_PatchPipelineVersionRuns = new grpc.web.MethodDescriptor(
|
|
15894
|
+
'/clarifai.api.V2/PatchPipelineVersionRuns',
|
|
15895
|
+
grpc.web.MethodType.UNARY,
|
|
15896
|
+
proto.clarifai.api.PatchPipelineVersionRunsRequest,
|
|
15897
|
+
proto.clarifai.api.MultiPipelineVersionRunResponse,
|
|
15898
|
+
/**
|
|
15899
|
+
* @param {!proto.clarifai.api.PatchPipelineVersionRunsRequest} request
|
|
15900
|
+
* @return {!Uint8Array}
|
|
15901
|
+
*/
|
|
15902
|
+
function(request) {
|
|
15903
|
+
return request.serializeBinary();
|
|
15904
|
+
},
|
|
15905
|
+
proto.clarifai.api.MultiPipelineVersionRunResponse.deserializeBinary
|
|
15906
|
+
);
|
|
15907
|
+
|
|
15908
|
+
|
|
15909
|
+
/**
|
|
15910
|
+
* @param {!proto.clarifai.api.PatchPipelineVersionRunsRequest} request The
|
|
15911
|
+
* request proto
|
|
15912
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15913
|
+
* call metadata
|
|
15914
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineVersionRunResponse)}
|
|
15915
|
+
* callback The callback function(error, response)
|
|
15916
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineVersionRunResponse>|undefined}
|
|
15917
|
+
* The XHR Node Readable Stream
|
|
15918
|
+
*/
|
|
15919
|
+
proto.clarifai.api.V2Client.prototype.patchPipelineVersionRuns =
|
|
15920
|
+
function(request, metadata, callback) {
|
|
15921
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15922
|
+
'/clarifai.api.V2/PatchPipelineVersionRuns',
|
|
15923
|
+
request,
|
|
15924
|
+
metadata || {},
|
|
15925
|
+
methodDescriptor_V2_PatchPipelineVersionRuns,
|
|
15926
|
+
callback);
|
|
15927
|
+
};
|
|
15928
|
+
|
|
15929
|
+
|
|
15930
|
+
/**
|
|
15931
|
+
* @param {!proto.clarifai.api.PatchPipelineVersionRunsRequest} request The
|
|
15932
|
+
* request proto
|
|
15933
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15934
|
+
* call metadata
|
|
15935
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineVersionRunResponse>}
|
|
15936
|
+
* Promise that resolves to the response
|
|
15937
|
+
*/
|
|
15938
|
+
proto.clarifai.api.V2PromiseClient.prototype.patchPipelineVersionRuns =
|
|
15939
|
+
function(request, metadata) {
|
|
15940
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
15941
|
+
'/clarifai.api.V2/PatchPipelineVersionRuns',
|
|
15942
|
+
request,
|
|
15943
|
+
metadata || {},
|
|
15944
|
+
methodDescriptor_V2_PatchPipelineVersionRuns);
|
|
15945
|
+
};
|
|
15946
|
+
|
|
15947
|
+
|
|
15948
|
+
/**
|
|
15949
|
+
* @const
|
|
15950
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
15951
|
+
* !proto.clarifai.api.PostPipelineStepsRequest,
|
|
15952
|
+
* !proto.clarifai.api.MultiPipelineStepResponse>}
|
|
15953
|
+
*/
|
|
15954
|
+
const methodDescriptor_V2_PostPipelineSteps = new grpc.web.MethodDescriptor(
|
|
15955
|
+
'/clarifai.api.V2/PostPipelineSteps',
|
|
15956
|
+
grpc.web.MethodType.UNARY,
|
|
15957
|
+
proto.clarifai.api.PostPipelineStepsRequest,
|
|
15958
|
+
proto.clarifai.api.MultiPipelineStepResponse,
|
|
15959
|
+
/**
|
|
15960
|
+
* @param {!proto.clarifai.api.PostPipelineStepsRequest} request
|
|
15961
|
+
* @return {!Uint8Array}
|
|
15962
|
+
*/
|
|
15963
|
+
function(request) {
|
|
15964
|
+
return request.serializeBinary();
|
|
15965
|
+
},
|
|
15966
|
+
proto.clarifai.api.MultiPipelineStepResponse.deserializeBinary
|
|
15967
|
+
);
|
|
15968
|
+
|
|
15969
|
+
|
|
15970
|
+
/**
|
|
15971
|
+
* @param {!proto.clarifai.api.PostPipelineStepsRequest} request The
|
|
15972
|
+
* request proto
|
|
15973
|
+
* @param {?Object<string, string>} metadata User defined
|
|
15974
|
+
* call metadata
|
|
15975
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineStepResponse)}
|
|
15976
|
+
* callback The callback function(error, response)
|
|
15977
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineStepResponse>|undefined}
|
|
15978
|
+
* The XHR Node Readable Stream
|
|
15979
|
+
*/
|
|
15980
|
+
proto.clarifai.api.V2Client.prototype.postPipelineSteps =
|
|
15981
|
+
function(request, metadata, callback) {
|
|
15982
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
15983
|
+
'/clarifai.api.V2/PostPipelineSteps',
|
|
15984
|
+
request,
|
|
15985
|
+
metadata || {},
|
|
15986
|
+
methodDescriptor_V2_PostPipelineSteps,
|
|
15987
|
+
callback);
|
|
15988
|
+
};
|
|
15989
|
+
|
|
15990
|
+
|
|
15991
|
+
/**
|
|
15992
|
+
* @param {!proto.clarifai.api.PostPipelineStepsRequest} request The
|
|
15993
|
+
* request proto
|
|
15994
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
15995
|
+
* call metadata
|
|
15996
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineStepResponse>}
|
|
15997
|
+
* Promise that resolves to the response
|
|
15998
|
+
*/
|
|
15999
|
+
proto.clarifai.api.V2PromiseClient.prototype.postPipelineSteps =
|
|
16000
|
+
function(request, metadata) {
|
|
16001
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16002
|
+
'/clarifai.api.V2/PostPipelineSteps',
|
|
16003
|
+
request,
|
|
16004
|
+
metadata || {},
|
|
16005
|
+
methodDescriptor_V2_PostPipelineSteps);
|
|
16006
|
+
};
|
|
16007
|
+
|
|
16008
|
+
|
|
16009
|
+
/**
|
|
16010
|
+
* @const
|
|
16011
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
16012
|
+
* !proto.clarifai.api.GetPipelineStepRequest,
|
|
16013
|
+
* !proto.clarifai.api.SinglePipelineStepResponse>}
|
|
16014
|
+
*/
|
|
16015
|
+
const methodDescriptor_V2_GetPipelineStep = new grpc.web.MethodDescriptor(
|
|
16016
|
+
'/clarifai.api.V2/GetPipelineStep',
|
|
16017
|
+
grpc.web.MethodType.UNARY,
|
|
16018
|
+
proto.clarifai.api.GetPipelineStepRequest,
|
|
16019
|
+
proto.clarifai.api.SinglePipelineStepResponse,
|
|
16020
|
+
/**
|
|
16021
|
+
* @param {!proto.clarifai.api.GetPipelineStepRequest} request
|
|
16022
|
+
* @return {!Uint8Array}
|
|
16023
|
+
*/
|
|
16024
|
+
function(request) {
|
|
16025
|
+
return request.serializeBinary();
|
|
16026
|
+
},
|
|
16027
|
+
proto.clarifai.api.SinglePipelineStepResponse.deserializeBinary
|
|
16028
|
+
);
|
|
16029
|
+
|
|
16030
|
+
|
|
16031
|
+
/**
|
|
16032
|
+
* @param {!proto.clarifai.api.GetPipelineStepRequest} request The
|
|
16033
|
+
* request proto
|
|
16034
|
+
* @param {?Object<string, string>} metadata User defined
|
|
16035
|
+
* call metadata
|
|
16036
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.SinglePipelineStepResponse)}
|
|
16037
|
+
* callback The callback function(error, response)
|
|
16038
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SinglePipelineStepResponse>|undefined}
|
|
16039
|
+
* The XHR Node Readable Stream
|
|
16040
|
+
*/
|
|
16041
|
+
proto.clarifai.api.V2Client.prototype.getPipelineStep =
|
|
16042
|
+
function(request, metadata, callback) {
|
|
16043
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
16044
|
+
'/clarifai.api.V2/GetPipelineStep',
|
|
16045
|
+
request,
|
|
16046
|
+
metadata || {},
|
|
16047
|
+
methodDescriptor_V2_GetPipelineStep,
|
|
16048
|
+
callback);
|
|
16049
|
+
};
|
|
16050
|
+
|
|
16051
|
+
|
|
16052
|
+
/**
|
|
16053
|
+
* @param {!proto.clarifai.api.GetPipelineStepRequest} request The
|
|
16054
|
+
* request proto
|
|
16055
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
16056
|
+
* call metadata
|
|
16057
|
+
* @return {!Promise<!proto.clarifai.api.SinglePipelineStepResponse>}
|
|
16058
|
+
* Promise that resolves to the response
|
|
16059
|
+
*/
|
|
16060
|
+
proto.clarifai.api.V2PromiseClient.prototype.getPipelineStep =
|
|
16061
|
+
function(request, metadata) {
|
|
16062
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16063
|
+
'/clarifai.api.V2/GetPipelineStep',
|
|
16064
|
+
request,
|
|
16065
|
+
metadata || {},
|
|
16066
|
+
methodDescriptor_V2_GetPipelineStep);
|
|
16067
|
+
};
|
|
16068
|
+
|
|
16069
|
+
|
|
16070
|
+
/**
|
|
16071
|
+
* @const
|
|
16072
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
16073
|
+
* !proto.clarifai.api.ListPipelineStepsRequest,
|
|
16074
|
+
* !proto.clarifai.api.MultiPipelineStepResponse>}
|
|
16075
|
+
*/
|
|
16076
|
+
const methodDescriptor_V2_ListPipelineSteps = new grpc.web.MethodDescriptor(
|
|
16077
|
+
'/clarifai.api.V2/ListPipelineSteps',
|
|
16078
|
+
grpc.web.MethodType.UNARY,
|
|
16079
|
+
proto.clarifai.api.ListPipelineStepsRequest,
|
|
16080
|
+
proto.clarifai.api.MultiPipelineStepResponse,
|
|
16081
|
+
/**
|
|
16082
|
+
* @param {!proto.clarifai.api.ListPipelineStepsRequest} request
|
|
16083
|
+
* @return {!Uint8Array}
|
|
16084
|
+
*/
|
|
16085
|
+
function(request) {
|
|
16086
|
+
return request.serializeBinary();
|
|
16087
|
+
},
|
|
16088
|
+
proto.clarifai.api.MultiPipelineStepResponse.deserializeBinary
|
|
16089
|
+
);
|
|
16090
|
+
|
|
16091
|
+
|
|
16092
|
+
/**
|
|
16093
|
+
* @param {!proto.clarifai.api.ListPipelineStepsRequest} request The
|
|
16094
|
+
* request proto
|
|
16095
|
+
* @param {?Object<string, string>} metadata User defined
|
|
16096
|
+
* call metadata
|
|
16097
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineStepResponse)}
|
|
16098
|
+
* callback The callback function(error, response)
|
|
16099
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineStepResponse>|undefined}
|
|
16100
|
+
* The XHR Node Readable Stream
|
|
16101
|
+
*/
|
|
16102
|
+
proto.clarifai.api.V2Client.prototype.listPipelineSteps =
|
|
16103
|
+
function(request, metadata, callback) {
|
|
16104
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
16105
|
+
'/clarifai.api.V2/ListPipelineSteps',
|
|
16106
|
+
request,
|
|
16107
|
+
metadata || {},
|
|
16108
|
+
methodDescriptor_V2_ListPipelineSteps,
|
|
16109
|
+
callback);
|
|
16110
|
+
};
|
|
16111
|
+
|
|
16112
|
+
|
|
16113
|
+
/**
|
|
16114
|
+
* @param {!proto.clarifai.api.ListPipelineStepsRequest} request The
|
|
16115
|
+
* request proto
|
|
16116
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
16117
|
+
* call metadata
|
|
16118
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineStepResponse>}
|
|
16119
|
+
* Promise that resolves to the response
|
|
16120
|
+
*/
|
|
16121
|
+
proto.clarifai.api.V2PromiseClient.prototype.listPipelineSteps =
|
|
16122
|
+
function(request, metadata) {
|
|
16123
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16124
|
+
'/clarifai.api.V2/ListPipelineSteps',
|
|
16125
|
+
request,
|
|
16126
|
+
metadata || {},
|
|
16127
|
+
methodDescriptor_V2_ListPipelineSteps);
|
|
16128
|
+
};
|
|
16129
|
+
|
|
16130
|
+
|
|
16131
|
+
/**
|
|
16132
|
+
* @const
|
|
16133
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
16134
|
+
* !proto.clarifai.api.ListPipelineStepVersionsRequest,
|
|
16135
|
+
* !proto.clarifai.api.MultiPipelineStepVersionResponse>}
|
|
16136
|
+
*/
|
|
16137
|
+
const methodDescriptor_V2_ListPipelineStepVersions = new grpc.web.MethodDescriptor(
|
|
16138
|
+
'/clarifai.api.V2/ListPipelineStepVersions',
|
|
16139
|
+
grpc.web.MethodType.UNARY,
|
|
16140
|
+
proto.clarifai.api.ListPipelineStepVersionsRequest,
|
|
16141
|
+
proto.clarifai.api.MultiPipelineStepVersionResponse,
|
|
16142
|
+
/**
|
|
16143
|
+
* @param {!proto.clarifai.api.ListPipelineStepVersionsRequest} request
|
|
16144
|
+
* @return {!Uint8Array}
|
|
16145
|
+
*/
|
|
16146
|
+
function(request) {
|
|
16147
|
+
return request.serializeBinary();
|
|
16148
|
+
},
|
|
16149
|
+
proto.clarifai.api.MultiPipelineStepVersionResponse.deserializeBinary
|
|
16150
|
+
);
|
|
16151
|
+
|
|
16152
|
+
|
|
16153
|
+
/**
|
|
16154
|
+
* @param {!proto.clarifai.api.ListPipelineStepVersionsRequest} request The
|
|
16155
|
+
* request proto
|
|
16156
|
+
* @param {?Object<string, string>} metadata User defined
|
|
16157
|
+
* call metadata
|
|
16158
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineStepVersionResponse)}
|
|
16159
|
+
* callback The callback function(error, response)
|
|
16160
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineStepVersionResponse>|undefined}
|
|
16161
|
+
* The XHR Node Readable Stream
|
|
16162
|
+
*/
|
|
16163
|
+
proto.clarifai.api.V2Client.prototype.listPipelineStepVersions =
|
|
16164
|
+
function(request, metadata, callback) {
|
|
16165
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
16166
|
+
'/clarifai.api.V2/ListPipelineStepVersions',
|
|
16167
|
+
request,
|
|
16168
|
+
metadata || {},
|
|
16169
|
+
methodDescriptor_V2_ListPipelineStepVersions,
|
|
16170
|
+
callback);
|
|
16171
|
+
};
|
|
16172
|
+
|
|
16173
|
+
|
|
16174
|
+
/**
|
|
16175
|
+
* @param {!proto.clarifai.api.ListPipelineStepVersionsRequest} request The
|
|
16176
|
+
* request proto
|
|
16177
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
16178
|
+
* call metadata
|
|
16179
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineStepVersionResponse>}
|
|
16180
|
+
* Promise that resolves to the response
|
|
16181
|
+
*/
|
|
16182
|
+
proto.clarifai.api.V2PromiseClient.prototype.listPipelineStepVersions =
|
|
16183
|
+
function(request, metadata) {
|
|
16184
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16185
|
+
'/clarifai.api.V2/ListPipelineStepVersions',
|
|
16186
|
+
request,
|
|
16187
|
+
metadata || {},
|
|
16188
|
+
methodDescriptor_V2_ListPipelineStepVersions);
|
|
16189
|
+
};
|
|
16190
|
+
|
|
16191
|
+
|
|
16192
|
+
/**
|
|
16193
|
+
* @const
|
|
16194
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
16195
|
+
* !proto.clarifai.api.GetPipelineStepVersionRequest,
|
|
16196
|
+
* !proto.clarifai.api.SinglePipelineStepVersionResponse>}
|
|
16197
|
+
*/
|
|
16198
|
+
const methodDescriptor_V2_GetPipelineStepVersion = new grpc.web.MethodDescriptor(
|
|
16199
|
+
'/clarifai.api.V2/GetPipelineStepVersion',
|
|
16200
|
+
grpc.web.MethodType.UNARY,
|
|
16201
|
+
proto.clarifai.api.GetPipelineStepVersionRequest,
|
|
16202
|
+
proto.clarifai.api.SinglePipelineStepVersionResponse,
|
|
16203
|
+
/**
|
|
16204
|
+
* @param {!proto.clarifai.api.GetPipelineStepVersionRequest} request
|
|
16205
|
+
* @return {!Uint8Array}
|
|
16206
|
+
*/
|
|
16207
|
+
function(request) {
|
|
16208
|
+
return request.serializeBinary();
|
|
16209
|
+
},
|
|
16210
|
+
proto.clarifai.api.SinglePipelineStepVersionResponse.deserializeBinary
|
|
16211
|
+
);
|
|
16212
|
+
|
|
16213
|
+
|
|
16214
|
+
/**
|
|
16215
|
+
* @param {!proto.clarifai.api.GetPipelineStepVersionRequest} request The
|
|
16216
|
+
* request proto
|
|
16217
|
+
* @param {?Object<string, string>} metadata User defined
|
|
16218
|
+
* call metadata
|
|
16219
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.SinglePipelineStepVersionResponse)}
|
|
16220
|
+
* callback The callback function(error, response)
|
|
16221
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SinglePipelineStepVersionResponse>|undefined}
|
|
16222
|
+
* The XHR Node Readable Stream
|
|
16223
|
+
*/
|
|
16224
|
+
proto.clarifai.api.V2Client.prototype.getPipelineStepVersion =
|
|
16225
|
+
function(request, metadata, callback) {
|
|
16226
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
16227
|
+
'/clarifai.api.V2/GetPipelineStepVersion',
|
|
16228
|
+
request,
|
|
16229
|
+
metadata || {},
|
|
16230
|
+
methodDescriptor_V2_GetPipelineStepVersion,
|
|
16231
|
+
callback);
|
|
16232
|
+
};
|
|
16233
|
+
|
|
16234
|
+
|
|
16235
|
+
/**
|
|
16236
|
+
* @param {!proto.clarifai.api.GetPipelineStepVersionRequest} request The
|
|
16237
|
+
* request proto
|
|
16238
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
16239
|
+
* call metadata
|
|
16240
|
+
* @return {!Promise<!proto.clarifai.api.SinglePipelineStepVersionResponse>}
|
|
16241
|
+
* Promise that resolves to the response
|
|
16242
|
+
*/
|
|
16243
|
+
proto.clarifai.api.V2PromiseClient.prototype.getPipelineStepVersion =
|
|
16244
|
+
function(request, metadata) {
|
|
16245
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16246
|
+
'/clarifai.api.V2/GetPipelineStepVersion',
|
|
16247
|
+
request,
|
|
16248
|
+
metadata || {},
|
|
16249
|
+
methodDescriptor_V2_GetPipelineStepVersion);
|
|
16250
|
+
};
|
|
16251
|
+
|
|
16252
|
+
|
|
16253
|
+
/**
|
|
16254
|
+
* @const
|
|
16255
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
16256
|
+
* !proto.clarifai.api.GetSecretRequest,
|
|
16257
|
+
* !proto.clarifai.api.SingleSecretResponse>}
|
|
16258
|
+
*/
|
|
16259
|
+
const methodDescriptor_V2_GetSecret = new grpc.web.MethodDescriptor(
|
|
16260
|
+
'/clarifai.api.V2/GetSecret',
|
|
16261
|
+
grpc.web.MethodType.UNARY,
|
|
16262
|
+
proto.clarifai.api.GetSecretRequest,
|
|
16263
|
+
proto.clarifai.api.SingleSecretResponse,
|
|
16264
|
+
/**
|
|
16265
|
+
* @param {!proto.clarifai.api.GetSecretRequest} request
|
|
16266
|
+
* @return {!Uint8Array}
|
|
16267
|
+
*/
|
|
16268
|
+
function(request) {
|
|
16269
|
+
return request.serializeBinary();
|
|
16270
|
+
},
|
|
16271
|
+
proto.clarifai.api.SingleSecretResponse.deserializeBinary
|
|
16272
|
+
);
|
|
16273
|
+
|
|
16274
|
+
|
|
16275
|
+
/**
|
|
16276
|
+
* @param {!proto.clarifai.api.GetSecretRequest} request The
|
|
16277
|
+
* request proto
|
|
16278
|
+
* @param {?Object<string, string>} metadata User defined
|
|
16279
|
+
* call metadata
|
|
16280
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.SingleSecretResponse)}
|
|
16281
|
+
* callback The callback function(error, response)
|
|
16282
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SingleSecretResponse>|undefined}
|
|
16283
|
+
* The XHR Node Readable Stream
|
|
16284
|
+
*/
|
|
16285
|
+
proto.clarifai.api.V2Client.prototype.getSecret =
|
|
16286
|
+
function(request, metadata, callback) {
|
|
16287
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
16288
|
+
'/clarifai.api.V2/GetSecret',
|
|
16289
|
+
request,
|
|
16290
|
+
metadata || {},
|
|
16291
|
+
methodDescriptor_V2_GetSecret,
|
|
16292
|
+
callback);
|
|
16293
|
+
};
|
|
16294
|
+
|
|
16295
|
+
|
|
16296
|
+
/**
|
|
16297
|
+
* @param {!proto.clarifai.api.GetSecretRequest} request The
|
|
16298
|
+
* request proto
|
|
16299
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
16300
|
+
* call metadata
|
|
16301
|
+
* @return {!Promise<!proto.clarifai.api.SingleSecretResponse>}
|
|
16302
|
+
* Promise that resolves to the response
|
|
16303
|
+
*/
|
|
16304
|
+
proto.clarifai.api.V2PromiseClient.prototype.getSecret =
|
|
16305
|
+
function(request, metadata) {
|
|
16306
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16307
|
+
'/clarifai.api.V2/GetSecret',
|
|
16308
|
+
request,
|
|
16309
|
+
metadata || {},
|
|
16310
|
+
methodDescriptor_V2_GetSecret);
|
|
16311
|
+
};
|
|
16312
|
+
|
|
16313
|
+
|
|
16314
|
+
/**
|
|
16315
|
+
* @const
|
|
16316
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
16317
|
+
* !proto.clarifai.api.ListSecretsRequest,
|
|
16318
|
+
* !proto.clarifai.api.MultiSecretResponse>}
|
|
16319
|
+
*/
|
|
16320
|
+
const methodDescriptor_V2_ListSecrets = new grpc.web.MethodDescriptor(
|
|
16321
|
+
'/clarifai.api.V2/ListSecrets',
|
|
16322
|
+
grpc.web.MethodType.UNARY,
|
|
16323
|
+
proto.clarifai.api.ListSecretsRequest,
|
|
16324
|
+
proto.clarifai.api.MultiSecretResponse,
|
|
16325
|
+
/**
|
|
16326
|
+
* @param {!proto.clarifai.api.ListSecretsRequest} request
|
|
16327
|
+
* @return {!Uint8Array}
|
|
16328
|
+
*/
|
|
16329
|
+
function(request) {
|
|
16330
|
+
return request.serializeBinary();
|
|
16331
|
+
},
|
|
16332
|
+
proto.clarifai.api.MultiSecretResponse.deserializeBinary
|
|
16333
|
+
);
|
|
16334
|
+
|
|
16335
|
+
|
|
16336
|
+
/**
|
|
16337
|
+
* @param {!proto.clarifai.api.ListSecretsRequest} request The
|
|
16338
|
+
* request proto
|
|
16339
|
+
* @param {?Object<string, string>} metadata User defined
|
|
16340
|
+
* call metadata
|
|
16341
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiSecretResponse)}
|
|
16342
|
+
* callback The callback function(error, response)
|
|
16343
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiSecretResponse>|undefined}
|
|
16344
|
+
* The XHR Node Readable Stream
|
|
16345
|
+
*/
|
|
16346
|
+
proto.clarifai.api.V2Client.prototype.listSecrets =
|
|
16347
|
+
function(request, metadata, callback) {
|
|
16348
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
16349
|
+
'/clarifai.api.V2/ListSecrets',
|
|
16350
|
+
request,
|
|
16351
|
+
metadata || {},
|
|
16352
|
+
methodDescriptor_V2_ListSecrets,
|
|
16353
|
+
callback);
|
|
16354
|
+
};
|
|
16355
|
+
|
|
16356
|
+
|
|
16357
|
+
/**
|
|
16358
|
+
* @param {!proto.clarifai.api.ListSecretsRequest} request The
|
|
16359
|
+
* request proto
|
|
16360
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
16361
|
+
* call metadata
|
|
16362
|
+
* @return {!Promise<!proto.clarifai.api.MultiSecretResponse>}
|
|
16363
|
+
* Promise that resolves to the response
|
|
16364
|
+
*/
|
|
16365
|
+
proto.clarifai.api.V2PromiseClient.prototype.listSecrets =
|
|
16366
|
+
function(request, metadata) {
|
|
16367
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16368
|
+
'/clarifai.api.V2/ListSecrets',
|
|
16369
|
+
request,
|
|
16370
|
+
metadata || {},
|
|
16371
|
+
methodDescriptor_V2_ListSecrets);
|
|
16372
|
+
};
|
|
16373
|
+
|
|
16374
|
+
|
|
16375
|
+
/**
|
|
16376
|
+
* @const
|
|
16377
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
16378
|
+
* !proto.clarifai.api.PostSecretsRequest,
|
|
16379
|
+
* !proto.clarifai.api.MultiSecretResponse>}
|
|
16380
|
+
*/
|
|
16381
|
+
const methodDescriptor_V2_PostSecrets = new grpc.web.MethodDescriptor(
|
|
16382
|
+
'/clarifai.api.V2/PostSecrets',
|
|
16383
|
+
grpc.web.MethodType.UNARY,
|
|
16384
|
+
proto.clarifai.api.PostSecretsRequest,
|
|
16385
|
+
proto.clarifai.api.MultiSecretResponse,
|
|
16386
|
+
/**
|
|
16387
|
+
* @param {!proto.clarifai.api.PostSecretsRequest} request
|
|
16388
|
+
* @return {!Uint8Array}
|
|
16389
|
+
*/
|
|
16390
|
+
function(request) {
|
|
16391
|
+
return request.serializeBinary();
|
|
16392
|
+
},
|
|
16393
|
+
proto.clarifai.api.MultiSecretResponse.deserializeBinary
|
|
16394
|
+
);
|
|
16395
|
+
|
|
16396
|
+
|
|
16397
|
+
/**
|
|
16398
|
+
* @param {!proto.clarifai.api.PostSecretsRequest} request The
|
|
16399
|
+
* request proto
|
|
16400
|
+
* @param {?Object<string, string>} metadata User defined
|
|
16401
|
+
* call metadata
|
|
16402
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiSecretResponse)}
|
|
16403
|
+
* callback The callback function(error, response)
|
|
16404
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiSecretResponse>|undefined}
|
|
16405
|
+
* The XHR Node Readable Stream
|
|
16406
|
+
*/
|
|
16407
|
+
proto.clarifai.api.V2Client.prototype.postSecrets =
|
|
16408
|
+
function(request, metadata, callback) {
|
|
16409
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
16410
|
+
'/clarifai.api.V2/PostSecrets',
|
|
16411
|
+
request,
|
|
16412
|
+
metadata || {},
|
|
16413
|
+
methodDescriptor_V2_PostSecrets,
|
|
16414
|
+
callback);
|
|
16415
|
+
};
|
|
16416
|
+
|
|
16417
|
+
|
|
16418
|
+
/**
|
|
16419
|
+
* @param {!proto.clarifai.api.PostSecretsRequest} request The
|
|
16420
|
+
* request proto
|
|
16421
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
16422
|
+
* call metadata
|
|
16423
|
+
* @return {!Promise<!proto.clarifai.api.MultiSecretResponse>}
|
|
16424
|
+
* Promise that resolves to the response
|
|
16425
|
+
*/
|
|
16426
|
+
proto.clarifai.api.V2PromiseClient.prototype.postSecrets =
|
|
16427
|
+
function(request, metadata) {
|
|
16428
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16429
|
+
'/clarifai.api.V2/PostSecrets',
|
|
16430
|
+
request,
|
|
16431
|
+
metadata || {},
|
|
16432
|
+
methodDescriptor_V2_PostSecrets);
|
|
16433
|
+
};
|
|
16434
|
+
|
|
16435
|
+
|
|
16436
|
+
/**
|
|
16437
|
+
* @const
|
|
16438
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
16439
|
+
* !proto.clarifai.api.PatchSecretsRequest,
|
|
16440
|
+
* !proto.clarifai.api.MultiSecretResponse>}
|
|
16441
|
+
*/
|
|
16442
|
+
const methodDescriptor_V2_PatchSecrets = new grpc.web.MethodDescriptor(
|
|
16443
|
+
'/clarifai.api.V2/PatchSecrets',
|
|
16444
|
+
grpc.web.MethodType.UNARY,
|
|
16445
|
+
proto.clarifai.api.PatchSecretsRequest,
|
|
16446
|
+
proto.clarifai.api.MultiSecretResponse,
|
|
16447
|
+
/**
|
|
16448
|
+
* @param {!proto.clarifai.api.PatchSecretsRequest} request
|
|
16449
|
+
* @return {!Uint8Array}
|
|
16450
|
+
*/
|
|
16451
|
+
function(request) {
|
|
16452
|
+
return request.serializeBinary();
|
|
16453
|
+
},
|
|
16454
|
+
proto.clarifai.api.MultiSecretResponse.deserializeBinary
|
|
16455
|
+
);
|
|
16456
|
+
|
|
16457
|
+
|
|
16458
|
+
/**
|
|
16459
|
+
* @param {!proto.clarifai.api.PatchSecretsRequest} request The
|
|
16460
|
+
* request proto
|
|
16461
|
+
* @param {?Object<string, string>} metadata User defined
|
|
16462
|
+
* call metadata
|
|
16463
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiSecretResponse)}
|
|
16464
|
+
* callback The callback function(error, response)
|
|
16465
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiSecretResponse>|undefined}
|
|
16466
|
+
* The XHR Node Readable Stream
|
|
16467
|
+
*/
|
|
16468
|
+
proto.clarifai.api.V2Client.prototype.patchSecrets =
|
|
16469
|
+
function(request, metadata, callback) {
|
|
16470
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
16471
|
+
'/clarifai.api.V2/PatchSecrets',
|
|
16472
|
+
request,
|
|
16473
|
+
metadata || {},
|
|
16474
|
+
methodDescriptor_V2_PatchSecrets,
|
|
16475
|
+
callback);
|
|
16476
|
+
};
|
|
16477
|
+
|
|
16478
|
+
|
|
16479
|
+
/**
|
|
16480
|
+
* @param {!proto.clarifai.api.PatchSecretsRequest} request The
|
|
16481
|
+
* request proto
|
|
16482
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
16483
|
+
* call metadata
|
|
16484
|
+
* @return {!Promise<!proto.clarifai.api.MultiSecretResponse>}
|
|
16485
|
+
* Promise that resolves to the response
|
|
16486
|
+
*/
|
|
16487
|
+
proto.clarifai.api.V2PromiseClient.prototype.patchSecrets =
|
|
16488
|
+
function(request, metadata) {
|
|
16489
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16490
|
+
'/clarifai.api.V2/PatchSecrets',
|
|
16491
|
+
request,
|
|
16492
|
+
metadata || {},
|
|
16493
|
+
methodDescriptor_V2_PatchSecrets);
|
|
16494
|
+
};
|
|
16495
|
+
|
|
16496
|
+
|
|
16497
|
+
/**
|
|
16498
|
+
* @const
|
|
16499
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
16500
|
+
* !proto.clarifai.api.DeleteSecretsRequest,
|
|
16501
|
+
* !proto.clarifai.api.MultiSecretResponse>}
|
|
16502
|
+
*/
|
|
16503
|
+
const methodDescriptor_V2_DeleteSecrets = new grpc.web.MethodDescriptor(
|
|
16504
|
+
'/clarifai.api.V2/DeleteSecrets',
|
|
16505
|
+
grpc.web.MethodType.UNARY,
|
|
16506
|
+
proto.clarifai.api.DeleteSecretsRequest,
|
|
16507
|
+
proto.clarifai.api.MultiSecretResponse,
|
|
16508
|
+
/**
|
|
16509
|
+
* @param {!proto.clarifai.api.DeleteSecretsRequest} request
|
|
16510
|
+
* @return {!Uint8Array}
|
|
16511
|
+
*/
|
|
16512
|
+
function(request) {
|
|
16513
|
+
return request.serializeBinary();
|
|
16514
|
+
},
|
|
16515
|
+
proto.clarifai.api.MultiSecretResponse.deserializeBinary
|
|
16516
|
+
);
|
|
16517
|
+
|
|
16518
|
+
|
|
16519
|
+
/**
|
|
16520
|
+
* @param {!proto.clarifai.api.DeleteSecretsRequest} request The
|
|
16521
|
+
* request proto
|
|
16522
|
+
* @param {?Object<string, string>} metadata User defined
|
|
16523
|
+
* call metadata
|
|
16524
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiSecretResponse)}
|
|
16525
|
+
* callback The callback function(error, response)
|
|
16526
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiSecretResponse>|undefined}
|
|
16527
|
+
* The XHR Node Readable Stream
|
|
16528
|
+
*/
|
|
16529
|
+
proto.clarifai.api.V2Client.prototype.deleteSecrets =
|
|
16530
|
+
function(request, metadata, callback) {
|
|
16531
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
16532
|
+
'/clarifai.api.V2/DeleteSecrets',
|
|
16533
|
+
request,
|
|
16534
|
+
metadata || {},
|
|
16535
|
+
methodDescriptor_V2_DeleteSecrets,
|
|
16536
|
+
callback);
|
|
16537
|
+
};
|
|
16538
|
+
|
|
16539
|
+
|
|
16540
|
+
/**
|
|
16541
|
+
* @param {!proto.clarifai.api.DeleteSecretsRequest} request The
|
|
16542
|
+
* request proto
|
|
16543
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
16544
|
+
* call metadata
|
|
16545
|
+
* @return {!Promise<!proto.clarifai.api.MultiSecretResponse>}
|
|
16546
|
+
* Promise that resolves to the response
|
|
16547
|
+
*/
|
|
16548
|
+
proto.clarifai.api.V2PromiseClient.prototype.deleteSecrets =
|
|
16549
|
+
function(request, metadata) {
|
|
16550
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
16551
|
+
'/clarifai.api.V2/DeleteSecrets',
|
|
16552
|
+
request,
|
|
16553
|
+
metadata || {},
|
|
16554
|
+
methodDescriptor_V2_DeleteSecrets);
|
|
15335
16555
|
};
|
|
15336
16556
|
|
|
15337
16557
|
|