clarifai-grpc 11.9.1__py3-none-any.whl → 11.10.7__py3-none-any.whl
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.
- clarifai_grpc/__init__.py +1 -1
- clarifai_grpc/grpc/api/resources_pb2.py +580 -580
- clarifai_grpc/grpc/api/resources_pb2.pyi +224 -47
- clarifai_grpc/grpc/api/service_pb2.py +164 -160
- clarifai_grpc/grpc/api/service_pb2.pyi +46 -0
- clarifai_grpc/grpc/api/service_pb2_grpc.py +33 -0
- clarifai_grpc/grpc/api/status/status_code_pb2.pyi +6 -2
- clarifai_grpc/grpc/auth/scope/scope_pb2.py +8 -2
- clarifai_grpc/grpc/auth/scope/scope_pb2.pyi +6 -0
- {clarifai_grpc-11.9.1.dist-info → clarifai_grpc-11.10.7.dist-info}/METADATA +1 -1
- {clarifai_grpc-11.9.1.dist-info → clarifai_grpc-11.10.7.dist-info}/RECORD +14 -14
- {clarifai_grpc-11.9.1.dist-info → clarifai_grpc-11.10.7.dist-info}/WHEEL +0 -0
- {clarifai_grpc-11.9.1.dist-info → clarifai_grpc-11.10.7.dist-info}/licenses/LICENSE +0 -0
- {clarifai_grpc-11.9.1.dist-info → clarifai_grpc-11.10.7.dist-info}/top_level.txt +0 -0
|
@@ -15405,6 +15405,52 @@ class PostComputeClustersRequest(google.protobuf.message.Message):
|
|
|
15405
15405
|
|
|
15406
15406
|
global___PostComputeClustersRequest = PostComputeClustersRequest
|
|
15407
15407
|
|
|
15408
|
+
@typing_extensions.final
|
|
15409
|
+
class PatchComputeClustersRequest(google.protobuf.message.Message):
|
|
15410
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
15411
|
+
|
|
15412
|
+
USER_APP_ID_FIELD_NUMBER: builtins.int
|
|
15413
|
+
COMPUTE_CLUSTERS_FIELD_NUMBER: builtins.int
|
|
15414
|
+
ACTION_FIELD_NUMBER: builtins.int
|
|
15415
|
+
@property
|
|
15416
|
+
def user_app_id(self) -> proto.clarifai.api.resources_pb2.UserAppIDSet:
|
|
15417
|
+
"""Only the user_id is used from this."""
|
|
15418
|
+
@property
|
|
15419
|
+
def compute_clusters(
|
|
15420
|
+
self,
|
|
15421
|
+
) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
|
|
15422
|
+
proto.clarifai.api.resources_pb2.ComputeCluster
|
|
15423
|
+
]:
|
|
15424
|
+
"""This allows you to patch one or more compute_clusters"""
|
|
15425
|
+
action: builtins.str
|
|
15426
|
+
"""The action to perform on the patched objects
|
|
15427
|
+
For now 'overwrite' is supported
|
|
15428
|
+
"""
|
|
15429
|
+
def __init__(
|
|
15430
|
+
self,
|
|
15431
|
+
*,
|
|
15432
|
+
user_app_id: proto.clarifai.api.resources_pb2.UserAppIDSet | None = ...,
|
|
15433
|
+
compute_clusters: collections.abc.Iterable[proto.clarifai.api.resources_pb2.ComputeCluster]
|
|
15434
|
+
| None = ...,
|
|
15435
|
+
action: builtins.str = ...,
|
|
15436
|
+
) -> None: ...
|
|
15437
|
+
def HasField(
|
|
15438
|
+
self, field_name: typing_extensions.Literal["user_app_id", b"user_app_id"]
|
|
15439
|
+
) -> builtins.bool: ...
|
|
15440
|
+
def ClearField(
|
|
15441
|
+
self,
|
|
15442
|
+
field_name: typing_extensions.Literal[
|
|
15443
|
+
"action",
|
|
15444
|
+
b"action",
|
|
15445
|
+
"compute_clusters",
|
|
15446
|
+
b"compute_clusters",
|
|
15447
|
+
"user_app_id",
|
|
15448
|
+
b"user_app_id",
|
|
15449
|
+
],
|
|
15450
|
+
) -> None: ...
|
|
15451
|
+
|
|
15452
|
+
global___PatchComputeClustersRequest = PatchComputeClustersRequest
|
|
15453
|
+
|
|
15408
15454
|
@typing_extensions.final
|
|
15409
15455
|
class DeleteComputeClustersRequest(google.protobuf.message.Message):
|
|
15410
15456
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -1204,6 +1204,11 @@ class V2Stub(object):
|
|
|
1204
1204
|
request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.DeleteComputeClustersRequest.SerializeToString,
|
|
1205
1205
|
response_deserializer=wrap_response_deserializer(proto_dot_clarifai_dot_api_dot_status_dot_status__pb2.BaseResponse),
|
|
1206
1206
|
)
|
|
1207
|
+
self.PatchComputeClusters = channel.unary_unary(
|
|
1208
|
+
'/clarifai.api.V2/PatchComputeClusters',
|
|
1209
|
+
request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.PatchComputeClustersRequest.SerializeToString,
|
|
1210
|
+
response_deserializer=wrap_response_deserializer(proto_dot_clarifai_dot_api_dot_service__pb2.MultiComputeClusterResponse),
|
|
1211
|
+
)
|
|
1207
1212
|
self.GetNodepool = channel.unary_unary(
|
|
1208
1213
|
'/clarifai.api.V2/GetNodepool',
|
|
1209
1214
|
request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.GetNodepoolRequest.SerializeToString,
|
|
@@ -3242,6 +3247,12 @@ class V2Servicer(object):
|
|
|
3242
3247
|
context.set_details('Method not implemented!')
|
|
3243
3248
|
raise NotImplementedError('Method not implemented!')
|
|
3244
3249
|
|
|
3250
|
+
def PatchComputeClusters(self, request, context):
|
|
3251
|
+
"""Missing associated documentation comment in .proto file."""
|
|
3252
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
3253
|
+
context.set_details('Method not implemented!')
|
|
3254
|
+
raise NotImplementedError('Method not implemented!')
|
|
3255
|
+
|
|
3245
3256
|
def GetNodepool(self, request, context):
|
|
3246
3257
|
"""Nodepools CRUD
|
|
3247
3258
|
"""
|
|
@@ -4708,6 +4719,11 @@ def add_V2Servicer_to_server(servicer, server):
|
|
|
4708
4719
|
request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.DeleteComputeClustersRequest.FromString,
|
|
4709
4720
|
response_serializer=proto_dot_clarifai_dot_api_dot_status_dot_status__pb2.BaseResponse.SerializeToString,
|
|
4710
4721
|
),
|
|
4722
|
+
'PatchComputeClusters': grpc.unary_unary_rpc_method_handler(
|
|
4723
|
+
servicer.PatchComputeClusters,
|
|
4724
|
+
request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.PatchComputeClustersRequest.FromString,
|
|
4725
|
+
response_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.MultiComputeClusterResponse.SerializeToString,
|
|
4726
|
+
),
|
|
4711
4727
|
'GetNodepool': grpc.unary_unary_rpc_method_handler(
|
|
4712
4728
|
servicer.GetNodepool,
|
|
4713
4729
|
request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.GetNodepoolRequest.FromString,
|
|
@@ -8949,6 +8965,23 @@ class V2(object):
|
|
|
8949
8965
|
options, channel_credentials,
|
|
8950
8966
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
8951
8967
|
|
|
8968
|
+
@staticmethod
|
|
8969
|
+
def PatchComputeClusters(request,
|
|
8970
|
+
target,
|
|
8971
|
+
options=(),
|
|
8972
|
+
channel_credentials=None,
|
|
8973
|
+
call_credentials=None,
|
|
8974
|
+
insecure=False,
|
|
8975
|
+
compression=None,
|
|
8976
|
+
wait_for_ready=None,
|
|
8977
|
+
timeout=None,
|
|
8978
|
+
metadata=None):
|
|
8979
|
+
return grpc.experimental.unary_unary(request, target, '/clarifai.api.V2/PatchComputeClusters',
|
|
8980
|
+
proto_dot_clarifai_dot_api_dot_service__pb2.PatchComputeClustersRequest.SerializeToString,
|
|
8981
|
+
proto_dot_clarifai_dot_api_dot_service__pb2.MultiComputeClusterResponse.FromString,
|
|
8982
|
+
options, channel_credentials,
|
|
8983
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
8984
|
+
|
|
8952
8985
|
@staticmethod
|
|
8953
8986
|
def GetNodepool(request,
|
|
8954
8987
|
target,
|
|
@@ -509,7 +509,9 @@ class _StatusCodeEnumTypeWrapper(
|
|
|
509
509
|
LABEL_ORDER_SUCCESS: _StatusCode.ValueType # 55003
|
|
510
510
|
LABEL_ORDER_CANCELED: _StatusCode.ValueType # 55004
|
|
511
511
|
LICENSE_ACTIVE: _StatusCode.ValueType # 60000
|
|
512
|
-
"""License Related Status Code 600xx
|
|
512
|
+
"""License Related Status Code 600xx
|
|
513
|
+
DEPRECATED: License feature is fully deprecated now.
|
|
514
|
+
"""
|
|
513
515
|
LICENSE_DOES_NOT_EXIST: _StatusCode.ValueType # 60001
|
|
514
516
|
LICENSE_NEED_UPDATE: _StatusCode.ValueType # 60002
|
|
515
517
|
LICENSE_EXPIRED: _StatusCode.ValueType # 60003
|
|
@@ -1101,7 +1103,9 @@ LABEL_ORDER_IN_PROGRESS: StatusCode.ValueType # 55002
|
|
|
1101
1103
|
LABEL_ORDER_SUCCESS: StatusCode.ValueType # 55003
|
|
1102
1104
|
LABEL_ORDER_CANCELED: StatusCode.ValueType # 55004
|
|
1103
1105
|
LICENSE_ACTIVE: StatusCode.ValueType # 60000
|
|
1104
|
-
"""License Related Status Code 600xx
|
|
1106
|
+
"""License Related Status Code 600xx
|
|
1107
|
+
DEPRECATED: License feature is fully deprecated now.
|
|
1108
|
+
"""
|
|
1105
1109
|
LICENSE_DOES_NOT_EXIST: StatusCode.ValueType # 60001
|
|
1106
1110
|
LICENSE_NEED_UPDATE: StatusCode.ValueType # 60002
|
|
1107
1111
|
LICENSE_EXPIRED: StatusCode.ValueType # 60003
|
|
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
|
|
|
14
14
|
from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%proto/clarifai/auth/scope/scope.proto\x12\x13\x63larifai.auth.scope\x1a google/protobuf/descriptor.proto\"F\n\tScopeList\x12&\n\x06scopes\x18\x01 \x03(\x0e\x32\x16.clarifai.auth.scope.S\x12\x11\n\tendpoints\x18\x02 \x03(\t*\
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%proto/clarifai/auth/scope/scope.proto\x12\x13\x63larifai.auth.scope\x1a google/protobuf/descriptor.proto\"F\n\tScopeList\x12&\n\x06scopes\x18\x01 \x03(\x0e\x32\x16.clarifai.auth.scope.S\x12\x11\n\tendpoints\x18\x02 \x03(\t*\xbd\x1d\n\x01S\x12\t\n\x05undef\x10\x00\x12\r\n\x03\x41ll\x10\x01\x1a\x04\xf0\x9b\'\x01\x12\x11\n\x07Predict\x10\x02\x1a\x04\xf0\x9b\'\x01\x12\x18\n\nInputs_Add\x10\x04\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x05\x12\x14\n\nInputs_Get\x10\x05\x1a\x04\xf0\x9b\'\x01\x12 \n\x0cInputs_Patch\x10\x07\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\x04\xf8\x9b\'\x05\x12\x1f\n\rInputs_Delete\x10\x08\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'\x04\xf8\x9b\'\x05\x12\x1d\n\rOutputs_Patch\x10\t\x1a\n\x08\x01\xf8\x9b\'\x05\xf8\x9b\'\x02\x12\x1a\n\x0c\x43oncepts_Add\x10\n\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0b\x12\x16\n\x0c\x43oncepts_Get\x10\x0b\x1a\x04\xf0\x9b\'\x01\x12\"\n\x0e\x43oncepts_Patch\x10\x0c\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\n\xf8\x9b\'\x0b\x12\x1d\n\x0f\x43oncepts_Delete\x10\r\x1a\x08\xf8\x9b\'\n\xf8\x9b\'\x0b\x12\x18\n\nModels_Add\x10\x0e\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0f\x12\x14\n\nModels_Get\x10\x0f\x1a\x04\xf0\x9b\'\x01\x12$\n\x0cModels_Patch\x10\x10\x1a\x12\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\x0e\xf8\x9b\'\x0f\xf8\x9b\'\x1a\x12\x1f\n\rModels_Delete\x10\x11\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'\x0e\xf8\x9b\'\x0f\x12\x1a\n\x0cModels_Train\x10\x1a\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0f\x12\x15\n\x0bModels_Sync\x10\x1b\x1a\x04\xf8\x9b\'\x0f\x12\x1b\n\x10ModelExports_Get\x10\x8e\x01\x1a\x04\xf0\x9b\'\x01\x12 \n\x10ModelExports_Add\x10\x8f\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x8e\x01\x12\x1a\n\x0bModels_Pull\x10\x96\x01\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0f\x12\x1b\n\rWorkflows_Add\x10\x12\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x13\x12\x17\n\rWorkflows_Get\x10\x13\x1a\x04\xf0\x9b\'\x01\x12#\n\x0fWorkflows_Patch\x10\x14\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\x12\xf8\x9b\'\x13\x12\"\n\x10Workflows_Delete\x10\x15\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'\x12\xf8\x9b\'\x13\x12\x1d\n\x13WorkflowMetrics_Get\x10`\x1a\x04\xf0\x9b\'\x01\x12!\n\x13WorkflowMetrics_Add\x10\x61\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'`\x12(\n\x16WorkflowMetrics_Delete\x10\x62\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'a\xf8\x9b\'`\x12\"\n\x16TSNEVisualizations_Add\x10\x18\x1a\x06\x08\x01\xf8\x9b\'\x19\x12\x1e\n\x16TSNEVisualizations_Get\x10\x19\x1a\x02\x08\x01\x12\x1d\n\x0f\x41nnotations_Add\x10%\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'&\x12\x19\n\x0f\x41nnotations_Get\x10&\x1a\x04\xf0\x9b\'\x01\x12%\n\x11\x41nnotations_Patch\x10\'\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'%\xf8\x9b\'&\x12$\n\x12\x41nnotations_Delete\x10(\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'%\xf8\x9b\'&\x12\x1c\n\x0e\x43ollectors_Add\x10)\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'*\x12\x18\n\x0e\x43ollectors_Get\x10*\x1a\x04\xf0\x9b\'\x01\x12#\n\x11\x43ollectors_Delete\x10+\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\')\xf8\x9b\'*\x12\x16\n\x08\x41pps_Add\x10,\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'-\x12\x12\n\x08\x41pps_Get\x10-\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0b\x41pps_Delete\x10.\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\',\xf8\x9b\'-\x12\x16\n\x08Keys_Add\x10/\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'0\x12\x12\n\x08Keys_Get\x10\x30\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0bKeys_Delete\x10\x31\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'/\xf8\x9b\'0\x12\x1f\n\x11\x43ollaborators_Add\x10\x33\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'2\x12\x1b\n\x11\x43ollaborators_Get\x10\x32\x1a\x04\xf0\x9b\'\x01\x12&\n\x14\x43ollaborators_Delete\x10\x34\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'3\xf8\x9b\'2\x12\x19\n\x0bMetrics_Add\x10\x36\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'5\x12\x15\n\x0bMetrics_Get\x10\x35\x1a\x04\xf0\x9b\'\x01\x12 \n\x0eMetrics_Delete\x10?\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'6\xf8\x9b\'5\x12\x17\n\tTasks_Add\x10\x37\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'8\x12\x13\n\tTasks_Get\x10\x38\x1a\x04\xf0\x9b\'\x01\x12\x1e\n\x0cTasks_Delete\x10\x46\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'7\xf8\x9b\'8\x12\"\n\x14PasswordPolicies_Add\x10\x39\x1a\x08\xf0\x9b\'\x01\xf8\x9b\':\x12\x1e\n\x14PasswordPolicies_Get\x10:\x1a\x04\xf0\x9b\'\x01\x12)\n\x17PasswordPolicies_Delete\x10;\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'9\xf8\x9b\':\x12\x19\n\x0fLabelOrders_Get\x10\x43\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0fLabelOrders_Add\x10\x44\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'C\x12$\n\x12LabelOrders_Delete\x10\x45\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'D\xf8\x9b\'C\x12.\n FindDuplicateAnnotationsJobs_Add\x10\x66\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'g\x12*\n FindDuplicateAnnotationsJobs_Get\x10g\x1a\x04\xf0\x9b\'\x01\x12\x35\n#FindDuplicateAnnotationsJobs_Delete\x10h\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'f\xf8\x9b\'g\x12\x16\n\x0c\x44\x61tasets_Get\x10i\x1a\x04\xf0\x9b\'\x01\x12\x1a\n\x0c\x44\x61tasets_Add\x10j\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'i\x12!\n\x0f\x44\x61tasets_Delete\x10k\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'i\xf8\x9b\'j\x12\x19\n\x0bModules_Add\x10l\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'m\x12\x15\n\x0bModules_Get\x10m\x1a\x04\xf0\x9b\'\x01\x12 \n\x0eModules_Delete\x10n\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'l\xf8\x9b\'m\x12-\n\x1bInstalledModuleVersions_Add\x10o\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'p\xf8\x9b\'m\x12)\n\x1bInstalledModuleVersions_Get\x10p\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'m\x12\x34\n\x1eInstalledModuleVersions_Delete\x10q\x1a\x10\xf0\x9b\'\x01\xf8\x9b\'o\xf8\x9b\'p\xf8\x9b\'m\x12\x10\n\x06Search\x10\x03\x1a\x04\xf0\x9b\'\x01\x12\x19\n\x0fSavedSearch_Get\x10r\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0fSavedSearch_Add\x10s\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'r\x12$\n\x12SavedSearch_Delete\x10t\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'r\xf8\x9b\'s\x12&\n\x1cModelVersionPublications_Add\x10u\x1a\x04\xf0\x9b\'\x01\x12)\n\x1fModelVersionPublications_Delete\x10v\x1a\x04\xf0\x9b\'\x01\x12\"\n\x18WorkflowPublications_Add\x10w\x1a\x04\xf0\x9b\'\x01\x12%\n\x1bWorkflowPublications_Delete\x10x\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x11\x42ulkOperation_Add\x10y\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'z\x12\x1b\n\x11\x42ulkOperation_Get\x10z\x1a\x04\xf0\x9b\'\x01\x12&\n\x14\x42ulkOperation_Delete\x10{\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'y\xf8\x9b\'z\x12\x17\n\x13HistoricalUsage_Get\x10|\x12\x16\n\x0bUploads_Get\x10\x80\x01\x1a\x04\xf0\x9b\'\x01\x12\x1b\n\x0bUploads_Add\x10\x81\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x80\x01\x12#\n\x0eUploads_Delete\x10\x82\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x80\x01\xf8\x9b\'\x81\x01\x12\x16\n\x0bRunners_Get\x10\x83\x01\x1a\x04\xf0\x9b\'\x01\x12\x1b\n\x0bRunners_Add\x10\x84\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x83\x01\x12#\n\x0eRunners_Delete\x10\x85\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x83\x01\xf8\x9b\'\x84\x01\x12\x1a\n\x0fRunnerItems_Get\x10\x86\x01\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x0fRunnerItems_Add\x10\x87\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x86\x01\x12\x18\n\rNodepools_Get\x10\x88\x01\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\rNodepools_Add\x10\x89\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x88\x01\x12%\n\x10Nodepools_Delete\x10\x8a\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x88\x01\xf8\x9b\'\x89\x01\x12\x1e\n\x13\x43omputeClusters_Get\x10\x8b\x01\x1a\x04\xf0\x9b\'\x01\x12#\n\x13\x43omputeClusters_Add\x10\x8c\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x8b\x01\x12+\n\x16\x43omputeClusters_Delete\x10\x8d\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x8b\x01\xf8\x9b\'\x8c\x01\x12\x1a\n\x0f\x44\x65ployments_Get\x10\x90\x01\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x0f\x44\x65ployments_Add\x10\x91\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x90\x01\x12\'\n\x12\x44\x65ployments_Delete\x10\x92\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x90\x01\xf8\x9b\'\x91\x01\x12\x1c\n\x11InstanceTypes_Get\x10\x94\x01\x1a\x04\xf0\x9b\'\x01\x12\x18\n\rAuditLogs_Get\x10\x95\x01\x1a\x04\xf0\x9b\'\x01\x12\x19\n\x0eLogEntries_Get\x10\x97\x01\x1a\x04\xf0\x9b\'\x01\x12)\n\x1eWorkflowVersionEvaluations_Get\x10\x98\x01\x1a\x04\xf0\x9b\'\x01\x12.\n\x1eWorkflowVersionEvaluations_Add\x10\x99\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x98\x01\x12\x18\n\rPipelines_Get\x10\x9a\x01\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\rPipelines_Add\x10\x9b\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x9a\x01\x12%\n\x10Pipelines_Delete\x10\x9c\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x9a\x01\xf8\x9b\'\x9b\x01\x12\x1c\n\x11PipelineSteps_Get\x10\x9d\x01\x1a\x04\xf0\x9b\'\x01\x12!\n\x11PipelineSteps_Add\x10\x9e\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x9d\x01\x12\"\n\x12PipelineSteps_Pull\x10\x9f\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x9d\x01\x12\x16\n\x0bSecrets_Get\x10\xa0\x01\x1a\x04\xf0\x9b\'\x01\x12\x1b\n\x0bSecrets_Add\x10\xa1\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\xa0\x01\x12#\n\x0eSecrets_Delete\x10\xa2\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\xa0\x01\xf8\x9b\'\xa1\x01\x12\x1a\n\x0fUserMetrics_Get\x10\xa3\x01\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x14\x41nnotationTracks_Get\x10\xa6\x01\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x14\x41nnotationTracks_Add\x10\xa7\x01\x1a\x04\xf0\x9b\'\x01\x12\"\n\x17\x41nnotationTracks_Delete\x10\xa8\x01\x1a\x04\xf0\x9b\'\x01\"\x04\x08\x1e\x10\x1e\"\x04\x08\x1f\x10\x1f\"\x04\x08 \x10 \"\x04\x08!\x10!\"\x04\x08\"\x10\"\"\x04\x08}\x10}\"\x04\x08~\x10~:<\n\x0f\x63larfai_exposed\x12!.google.protobuf.EnumValueOptions\x18\xbe\xf3\x04 \x01(\x08:^\n\x19\x63larifai_depending_scopes\x12!.google.protobuf.EnumValueOptions\x18\xbf\xf3\x04 \x03(\x0e\x32\x16.clarifai.auth.scope.SBg\n\x1c\x63om.clarifai.grpc.auth.scopeP\x01Z>github.com/Clarifai/clarifai-go-grpc/proto/clarifai/auth/scope\xa2\x02\x04\x43\x41IPb\x06proto3')
|
|
18
18
|
|
|
19
19
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
20
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'proto.clarifai.auth.scope.scope_pb2', globals())
|
|
@@ -248,8 +248,14 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
248
248
|
_S.values_by_name["Secrets_Delete"]._serialized_options = b'\360\233\'\001\370\233\'\240\001\370\233\'\241\001'
|
|
249
249
|
_S.values_by_name["UserMetrics_Get"]._options = None
|
|
250
250
|
_S.values_by_name["UserMetrics_Get"]._serialized_options = b'\360\233\'\001'
|
|
251
|
+
_S.values_by_name["AnnotationTracks_Get"]._options = None
|
|
252
|
+
_S.values_by_name["AnnotationTracks_Get"]._serialized_options = b'\360\233\'\001'
|
|
253
|
+
_S.values_by_name["AnnotationTracks_Add"]._options = None
|
|
254
|
+
_S.values_by_name["AnnotationTracks_Add"]._serialized_options = b'\360\233\'\001'
|
|
255
|
+
_S.values_by_name["AnnotationTracks_Delete"]._options = None
|
|
256
|
+
_S.values_by_name["AnnotationTracks_Delete"]._serialized_options = b'\360\233\'\001'
|
|
251
257
|
_S._serialized_start=169
|
|
252
|
-
_S._serialized_end=
|
|
258
|
+
_S._serialized_end=3942
|
|
253
259
|
_SCOPELIST._serialized_start=96
|
|
254
260
|
_SCOPELIST._serialized_end=166
|
|
255
261
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -248,6 +248,9 @@ class _SEnumTypeWrapper(
|
|
|
248
248
|
Secrets_Add: _S.ValueType # 161
|
|
249
249
|
Secrets_Delete: _S.ValueType # 162
|
|
250
250
|
UserMetrics_Get: _S.ValueType # 163
|
|
251
|
+
AnnotationTracks_Get: _S.ValueType # 166
|
|
252
|
+
AnnotationTracks_Add: _S.ValueType # 167
|
|
253
|
+
AnnotationTracks_Delete: _S.ValueType # 168
|
|
251
254
|
|
|
252
255
|
class S(_S, metaclass=_SEnumTypeWrapper):
|
|
253
256
|
"""Next index: 41
|
|
@@ -497,6 +500,9 @@ Secrets_Get: S.ValueType # 160
|
|
|
497
500
|
Secrets_Add: S.ValueType # 161
|
|
498
501
|
Secrets_Delete: S.ValueType # 162
|
|
499
502
|
UserMetrics_Get: S.ValueType # 163
|
|
503
|
+
AnnotationTracks_Get: S.ValueType # 166
|
|
504
|
+
AnnotationTracks_Add: S.ValueType # 167
|
|
505
|
+
AnnotationTracks_Delete: S.ValueType # 168
|
|
500
506
|
global___S = S
|
|
501
507
|
|
|
502
508
|
@typing_extensions.final
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
clarifai_grpc/__init__.py,sha256=
|
|
1
|
+
clarifai_grpc/__init__.py,sha256=itXxT2JaP2z6MRR6WKm-VieE3UKUJkCM6_a9XP6YZYU,1441
|
|
2
2
|
clarifai_grpc/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
clarifai_grpc/channel/clarifai_channel.py,sha256=fGqFlagWzKhRny-RAxbKlXT9_k9HohPs9yCKmkkQZ5c,5770
|
|
4
4
|
clarifai_grpc/channel/errors.py,sha256=VUoLZLLcIfI2nOGlz1dzbOKQJhGodOO98pSSjlsRD6s,183
|
|
@@ -10,15 +10,15 @@ clarifai_grpc/channel/custom_converters/custom_dict_to_message.py,sha256=aAOjcIG
|
|
|
10
10
|
clarifai_grpc/channel/custom_converters/custom_message_to_dict.py,sha256=w-GeM4wYO5WcmjDjykw2wbXVpfy-A0_mkO9-3bPW4FE,3699
|
|
11
11
|
clarifai_grpc/grpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
clarifai_grpc/grpc/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
clarifai_grpc/grpc/api/resources_pb2.py,sha256=
|
|
14
|
-
clarifai_grpc/grpc/api/resources_pb2.pyi,sha256=
|
|
13
|
+
clarifai_grpc/grpc/api/resources_pb2.py,sha256=QNFY61JSFQifC9OqD-4MxCs8WhLlcwYZJEQcWt6wtHE,158628
|
|
14
|
+
clarifai_grpc/grpc/api/resources_pb2.pyi,sha256=aFL9hEfDZu1pE3N5jDv8hjourBpT9POS5HYApY6Hi2Y,655979
|
|
15
15
|
clarifai_grpc/grpc/api/resources_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
16
|
-
clarifai_grpc/grpc/api/service_pb2.py,sha256=
|
|
17
|
-
clarifai_grpc/grpc/api/service_pb2.pyi,sha256=
|
|
18
|
-
clarifai_grpc/grpc/api/service_pb2_grpc.py,sha256=
|
|
16
|
+
clarifai_grpc/grpc/api/service_pb2.py,sha256=Hh7-fd9_gCQNy59NLI1dNtSaDbfbuOdHo71-Z6OXFxk,348340
|
|
17
|
+
clarifai_grpc/grpc/api/service_pb2.pyi,sha256=0CyEcJzpJ63TWjvMRTocLXEZfOUhJPeBAL0cGr2Dv-Q,643799
|
|
18
|
+
clarifai_grpc/grpc/api/service_pb2_grpc.py,sha256=HHsaS9HkwevisJUoWTdaJzmlS9YfL_nZzFMdK4pcbDE,521648
|
|
19
19
|
clarifai_grpc/grpc/api/status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
clarifai_grpc/grpc/api/status/status_code_pb2.py,sha256=kZDMaRt8egpCvMFiYI3qgQw-N4J7OTX14WIC57LJ3Wo,26113
|
|
21
|
-
clarifai_grpc/grpc/api/status/status_code_pb2.pyi,sha256=
|
|
21
|
+
clarifai_grpc/grpc/api/status/status_code_pb2.pyi,sha256=xnbK_yfLkGatzd4wg358-x7ghvD-WvLZDQ8bTbnism0,65530
|
|
22
22
|
clarifai_grpc/grpc/api/status/status_code_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
23
23
|
clarifai_grpc/grpc/api/status/status_pb2.py,sha256=dfwA6ovKn4fmkin32wMeU3zt5m0l6Yoi_638vaHO13k,3027
|
|
24
24
|
clarifai_grpc/grpc/api/status/status_pb2.pyi,sha256=A0jP_QC-kXOuDuGOOf9WKtoI4d-2rmx1HlMFj8expnM,5730
|
|
@@ -35,8 +35,8 @@ clarifai_grpc/grpc/api/utils/test_proto_pb2.pyi,sha256=AJAufd_C14CjPTF9ANkLR44vf
|
|
|
35
35
|
clarifai_grpc/grpc/api/utils/test_proto_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
36
36
|
clarifai_grpc/grpc/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
37
|
clarifai_grpc/grpc/auth/scope/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
clarifai_grpc/grpc/auth/scope/scope_pb2.py,sha256=
|
|
39
|
-
clarifai_grpc/grpc/auth/scope/scope_pb2.pyi,sha256=
|
|
38
|
+
clarifai_grpc/grpc/auth/scope/scope_pb2.py,sha256=w0zWKaIRouOoXFt0IXIwvqFKWwGdrWvfrgnqRlotYQg,27494
|
|
39
|
+
clarifai_grpc/grpc/auth/scope/scope_pb2.pyi,sha256=LeNZMnqami7NHG9EVLcpOyBPuBJnY1__XSE_0qqabjA,21082
|
|
40
40
|
clarifai_grpc/grpc/auth/scope/scope_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
41
41
|
clarifai_grpc/grpc/auth/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
42
|
clarifai_grpc/grpc/auth/types/types_pb2.py,sha256=009fUNv2HGn-RikE5Bljy7N6RC_Y28vAypyRE2D08zg,1460
|
|
@@ -46,8 +46,8 @@ clarifai_grpc/grpc/auth/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
46
46
|
clarifai_grpc/grpc/auth/util/extension_pb2.py,sha256=Fnx7qS6aB9HsjxzALVRrGZm_1RAvUnWN-ZG3P6_AurA,2612
|
|
47
47
|
clarifai_grpc/grpc/auth/util/extension_pb2.pyi,sha256=k4sOr3PHePx3u7zP2ZghKMLc_xF2O4E-vKYsQO1ZdSw,3288
|
|
48
48
|
clarifai_grpc/grpc/auth/util/extension_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
49
|
-
clarifai_grpc-11.
|
|
50
|
-
clarifai_grpc-11.
|
|
51
|
-
clarifai_grpc-11.
|
|
52
|
-
clarifai_grpc-11.
|
|
53
|
-
clarifai_grpc-11.
|
|
49
|
+
clarifai_grpc-11.10.7.dist-info/licenses/LICENSE,sha256=GuQZ4iPZUwh44duTbVr7ZzYp_SaJDLR9MvzU7YqlZXM,555
|
|
50
|
+
clarifai_grpc-11.10.7.dist-info/METADATA,sha256=_jRnRLrZoWvgAz1jx0lW0DRsKSlJ5e8mJBUi8__EAZo,4428
|
|
51
|
+
clarifai_grpc-11.10.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
52
|
+
clarifai_grpc-11.10.7.dist-info/top_level.txt,sha256=azOUiixWkDpdb3gn_YNgz8sbAfhNvZuC3_9qI7hNQac,14
|
|
53
|
+
clarifai_grpc-11.10.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|