clarifai-grpc 12.0.0__py3-none-any.whl → 12.0.2__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 +642 -639
- clarifai_grpc/grpc/api/resources_pb2.pyi +102 -2
- clarifai_grpc/grpc/api/service_pb2.py +94 -86
- clarifai_grpc/grpc/api/service_pb2.pyi +107 -0
- clarifai_grpc/grpc/api/service_pb2_grpc.py +33 -0
- clarifai_grpc/grpc/auth/scope/scope_pb2.py +4 -2
- clarifai_grpc/grpc/auth/scope/scope_pb2.pyi +4 -0
- {clarifai_grpc-12.0.0.dist-info → clarifai_grpc-12.0.2.dist-info}/METADATA +1 -1
- {clarifai_grpc-12.0.0.dist-info → clarifai_grpc-12.0.2.dist-info}/RECORD +13 -13
- {clarifai_grpc-12.0.0.dist-info → clarifai_grpc-12.0.2.dist-info}/WHEEL +0 -0
- {clarifai_grpc-12.0.0.dist-info → clarifai_grpc-12.0.2.dist-info}/licenses/LICENSE +0 -0
- {clarifai_grpc-12.0.0.dist-info → clarifai_grpc-12.0.2.dist-info}/top_level.txt +0 -0
|
@@ -17421,6 +17421,113 @@ class MultiPipelineVersionRunResponse(google.protobuf.message.Message):
|
|
|
17421
17421
|
|
|
17422
17422
|
global___MultiPipelineVersionRunResponse = MultiPipelineVersionRunResponse
|
|
17423
17423
|
|
|
17424
|
+
@typing_extensions.final
|
|
17425
|
+
class ListPipelineVersionRunStatusLogsRequest(google.protobuf.message.Message):
|
|
17426
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
17427
|
+
|
|
17428
|
+
USER_APP_ID_FIELD_NUMBER: builtins.int
|
|
17429
|
+
PIPELINE_ID_FIELD_NUMBER: builtins.int
|
|
17430
|
+
PIPELINE_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
17431
|
+
PIPELINE_VERSION_RUN_ID_FIELD_NUMBER: builtins.int
|
|
17432
|
+
STATUS_CODES_FIELD_NUMBER: builtins.int
|
|
17433
|
+
PAGE_FIELD_NUMBER: builtins.int
|
|
17434
|
+
PER_PAGE_FIELD_NUMBER: builtins.int
|
|
17435
|
+
@property
|
|
17436
|
+
def user_app_id(self) -> proto.clarifai.api.resources_pb2.UserAppIDSet:
|
|
17437
|
+
"""User App ID"""
|
|
17438
|
+
pipeline_id: builtins.str
|
|
17439
|
+
"""Pipeline ID"""
|
|
17440
|
+
pipeline_version_id: builtins.str
|
|
17441
|
+
"""Pipeline Version ID"""
|
|
17442
|
+
pipeline_version_run_id: builtins.str
|
|
17443
|
+
"""Pipeline Version Run ID"""
|
|
17444
|
+
@property
|
|
17445
|
+
def status_codes(
|
|
17446
|
+
self,
|
|
17447
|
+
) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[
|
|
17448
|
+
proto.clarifai.api.status.status_code_pb2.StatusCode.ValueType
|
|
17449
|
+
]:
|
|
17450
|
+
"""Status codes to filter by (optional)"""
|
|
17451
|
+
page: builtins.int
|
|
17452
|
+
"""Pagination"""
|
|
17453
|
+
per_page: builtins.int
|
|
17454
|
+
def __init__(
|
|
17455
|
+
self,
|
|
17456
|
+
*,
|
|
17457
|
+
user_app_id: proto.clarifai.api.resources_pb2.UserAppIDSet | None = ...,
|
|
17458
|
+
pipeline_id: builtins.str = ...,
|
|
17459
|
+
pipeline_version_id: builtins.str = ...,
|
|
17460
|
+
pipeline_version_run_id: builtins.str = ...,
|
|
17461
|
+
status_codes: collections.abc.Iterable[
|
|
17462
|
+
proto.clarifai.api.status.status_code_pb2.StatusCode.ValueType
|
|
17463
|
+
]
|
|
17464
|
+
| None = ...,
|
|
17465
|
+
page: builtins.int = ...,
|
|
17466
|
+
per_page: builtins.int = ...,
|
|
17467
|
+
) -> None: ...
|
|
17468
|
+
def HasField(
|
|
17469
|
+
self, field_name: typing_extensions.Literal["user_app_id", b"user_app_id"]
|
|
17470
|
+
) -> builtins.bool: ...
|
|
17471
|
+
def ClearField(
|
|
17472
|
+
self,
|
|
17473
|
+
field_name: typing_extensions.Literal[
|
|
17474
|
+
"page",
|
|
17475
|
+
b"page",
|
|
17476
|
+
"per_page",
|
|
17477
|
+
b"per_page",
|
|
17478
|
+
"pipeline_id",
|
|
17479
|
+
b"pipeline_id",
|
|
17480
|
+
"pipeline_version_id",
|
|
17481
|
+
b"pipeline_version_id",
|
|
17482
|
+
"pipeline_version_run_id",
|
|
17483
|
+
b"pipeline_version_run_id",
|
|
17484
|
+
"status_codes",
|
|
17485
|
+
b"status_codes",
|
|
17486
|
+
"user_app_id",
|
|
17487
|
+
b"user_app_id",
|
|
17488
|
+
],
|
|
17489
|
+
) -> None: ...
|
|
17490
|
+
|
|
17491
|
+
global___ListPipelineVersionRunStatusLogsRequest = ListPipelineVersionRunStatusLogsRequest
|
|
17492
|
+
|
|
17493
|
+
@typing_extensions.final
|
|
17494
|
+
class MultiPipelineVersionRunStatusLogResponse(google.protobuf.message.Message):
|
|
17495
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
17496
|
+
|
|
17497
|
+
STATUS_FIELD_NUMBER: builtins.int
|
|
17498
|
+
PIPELINE_VERSION_RUN_STATUS_LOGS_FIELD_NUMBER: builtins.int
|
|
17499
|
+
@property
|
|
17500
|
+
def status(self) -> proto.clarifai.api.status.status_pb2.Status: ...
|
|
17501
|
+
@property
|
|
17502
|
+
def pipeline_version_run_status_logs(
|
|
17503
|
+
self,
|
|
17504
|
+
) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
|
|
17505
|
+
proto.clarifai.api.resources_pb2.PipelineVersionRunStatusLog
|
|
17506
|
+
]: ...
|
|
17507
|
+
def __init__(
|
|
17508
|
+
self,
|
|
17509
|
+
*,
|
|
17510
|
+
status: proto.clarifai.api.status.status_pb2.Status | None = ...,
|
|
17511
|
+
pipeline_version_run_status_logs: collections.abc.Iterable[
|
|
17512
|
+
proto.clarifai.api.resources_pb2.PipelineVersionRunStatusLog
|
|
17513
|
+
]
|
|
17514
|
+
| None = ...,
|
|
17515
|
+
) -> None: ...
|
|
17516
|
+
def HasField(
|
|
17517
|
+
self, field_name: typing_extensions.Literal["status", b"status"]
|
|
17518
|
+
) -> builtins.bool: ...
|
|
17519
|
+
def ClearField(
|
|
17520
|
+
self,
|
|
17521
|
+
field_name: typing_extensions.Literal[
|
|
17522
|
+
"pipeline_version_run_status_logs",
|
|
17523
|
+
b"pipeline_version_run_status_logs",
|
|
17524
|
+
"status",
|
|
17525
|
+
b"status",
|
|
17526
|
+
],
|
|
17527
|
+
) -> None: ...
|
|
17528
|
+
|
|
17529
|
+
global___MultiPipelineVersionRunStatusLogResponse = MultiPipelineVersionRunStatusLogResponse
|
|
17530
|
+
|
|
17424
17531
|
@typing_extensions.final
|
|
17425
17532
|
class PostPipelineStepsRequest(google.protobuf.message.Message):
|
|
17426
17533
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -1364,6 +1364,11 @@ class V2Stub(object):
|
|
|
1364
1364
|
request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.PatchPipelineVersionRunsRequest.SerializeToString,
|
|
1365
1365
|
response_deserializer=wrap_response_deserializer(proto_dot_clarifai_dot_api_dot_service__pb2.MultiPipelineVersionRunResponse),
|
|
1366
1366
|
)
|
|
1367
|
+
self.ListPipelineVersionRunStatusLogs = channel.unary_unary(
|
|
1368
|
+
'/clarifai.api.V2/ListPipelineVersionRunStatusLogs',
|
|
1369
|
+
request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.ListPipelineVersionRunStatusLogsRequest.SerializeToString,
|
|
1370
|
+
response_deserializer=wrap_response_deserializer(proto_dot_clarifai_dot_api_dot_service__pb2.MultiPipelineVersionRunStatusLogResponse),
|
|
1371
|
+
)
|
|
1367
1372
|
self.PostPipelineSteps = channel.unary_unary(
|
|
1368
1373
|
'/clarifai.api.V2/PostPipelineSteps',
|
|
1369
1374
|
request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.PostPipelineStepsRequest.SerializeToString,
|
|
@@ -3477,6 +3482,12 @@ class V2Servicer(object):
|
|
|
3477
3482
|
context.set_details('Method not implemented!')
|
|
3478
3483
|
raise NotImplementedError('Method not implemented!')
|
|
3479
3484
|
|
|
3485
|
+
def ListPipelineVersionRunStatusLogs(self, request, context):
|
|
3486
|
+
"""Missing associated documentation comment in .proto file."""
|
|
3487
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
3488
|
+
context.set_details('Method not implemented!')
|
|
3489
|
+
raise NotImplementedError('Method not implemented!')
|
|
3490
|
+
|
|
3480
3491
|
def PostPipelineSteps(self, request, context):
|
|
3481
3492
|
"""Missing associated documentation comment in .proto file."""
|
|
3482
3493
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
@@ -4958,6 +4969,11 @@ def add_V2Servicer_to_server(servicer, server):
|
|
|
4958
4969
|
request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.PatchPipelineVersionRunsRequest.FromString,
|
|
4959
4970
|
response_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.MultiPipelineVersionRunResponse.SerializeToString,
|
|
4960
4971
|
),
|
|
4972
|
+
'ListPipelineVersionRunStatusLogs': grpc.unary_unary_rpc_method_handler(
|
|
4973
|
+
servicer.ListPipelineVersionRunStatusLogs,
|
|
4974
|
+
request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.ListPipelineVersionRunStatusLogsRequest.FromString,
|
|
4975
|
+
response_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.MultiPipelineVersionRunStatusLogResponse.SerializeToString,
|
|
4976
|
+
),
|
|
4961
4977
|
'PostPipelineSteps': grpc.unary_unary_rpc_method_handler(
|
|
4962
4978
|
servicer.PostPipelineSteps,
|
|
4963
4979
|
request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.PostPipelineStepsRequest.FromString,
|
|
@@ -9623,6 +9639,23 @@ class V2(object):
|
|
|
9623
9639
|
options, channel_credentials,
|
|
9624
9640
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
9625
9641
|
|
|
9642
|
+
@staticmethod
|
|
9643
|
+
def ListPipelineVersionRunStatusLogs(request,
|
|
9644
|
+
target,
|
|
9645
|
+
options=(),
|
|
9646
|
+
channel_credentials=None,
|
|
9647
|
+
call_credentials=None,
|
|
9648
|
+
insecure=False,
|
|
9649
|
+
compression=None,
|
|
9650
|
+
wait_for_ready=None,
|
|
9651
|
+
timeout=None,
|
|
9652
|
+
metadata=None):
|
|
9653
|
+
return grpc.experimental.unary_unary(request, target, '/clarifai.api.V2/ListPipelineVersionRunStatusLogs',
|
|
9654
|
+
proto_dot_clarifai_dot_api_dot_service__pb2.ListPipelineVersionRunStatusLogsRequest.SerializeToString,
|
|
9655
|
+
proto_dot_clarifai_dot_api_dot_service__pb2.MultiPipelineVersionRunStatusLogResponse.FromString,
|
|
9656
|
+
options, channel_credentials,
|
|
9657
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
9658
|
+
|
|
9626
9659
|
@staticmethod
|
|
9627
9660
|
def PostPipelineSteps(request,
|
|
9628
9661
|
target,
|
|
@@ -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*\xf5\x1e\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\x12)\n\x14PipelineSteps_Delete\x10\xa9\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x9d\x01\xf8\x9b\'\x9e\x01\x12\x18\n\rArtifacts_Get\x10\xaa\x01\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\rArtifacts_Add\x10\xab\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\xaa\x01\x12%\n\x10\x41rtifacts_Delete\x10\xac\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\xaa\x01\xf8\x9b\'\xab\x01\x12+\n PipelineVersionRunStatusLogs_Get\x10\xad\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())
|
|
@@ -262,8 +262,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
262
262
|
_S.values_by_name["Artifacts_Add"]._serialized_options = b'\360\233\'\001\370\233\'\252\001'
|
|
263
263
|
_S.values_by_name["Artifacts_Delete"]._options = None
|
|
264
264
|
_S.values_by_name["Artifacts_Delete"]._serialized_options = b'\360\233\'\001\370\233\'\252\001\370\233\'\253\001'
|
|
265
|
+
_S.values_by_name["PipelineVersionRunStatusLogs_Get"]._options = None
|
|
266
|
+
_S.values_by_name["PipelineVersionRunStatusLogs_Get"]._serialized_options = b'\360\233\'\001'
|
|
265
267
|
_S._serialized_start=169
|
|
266
|
-
_S._serialized_end=
|
|
268
|
+
_S._serialized_end=4126
|
|
267
269
|
_SCOPELIST._serialized_start=96
|
|
268
270
|
_SCOPELIST._serialized_end=166
|
|
269
271
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -258,6 +258,8 @@ class _SEnumTypeWrapper(
|
|
|
258
258
|
Artifacts_Get: _S.ValueType # 170
|
|
259
259
|
Artifacts_Add: _S.ValueType # 171
|
|
260
260
|
Artifacts_Delete: _S.ValueType # 172
|
|
261
|
+
PipelineVersionRunStatusLogs_Get: _S.ValueType # 173
|
|
262
|
+
"""Pipeline version run status logs (audit trail)"""
|
|
261
263
|
|
|
262
264
|
class S(_S, metaclass=_SEnumTypeWrapper):
|
|
263
265
|
"""Next index: 41
|
|
@@ -517,6 +519,8 @@ PipelineSteps_Delete: S.ValueType # 169
|
|
|
517
519
|
Artifacts_Get: S.ValueType # 170
|
|
518
520
|
Artifacts_Add: S.ValueType # 171
|
|
519
521
|
Artifacts_Delete: S.ValueType # 172
|
|
522
|
+
PipelineVersionRunStatusLogs_Get: S.ValueType # 173
|
|
523
|
+
"""Pipeline version run status logs (audit trail)"""
|
|
520
524
|
global___S = S
|
|
521
525
|
|
|
522
526
|
@typing_extensions.final
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
clarifai_grpc/__init__.py,sha256
|
|
1
|
+
clarifai_grpc/__init__.py,sha256=S0Ssw4uuH1znlk_sxsM4sg6oBNttFIXUbpCpqR2JMa8,1440
|
|
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,12 +10,12 @@ 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=EkkbVU-sV9ijtafskIJcfbikw-PZtaR4B6uZCZHTnyM,159875
|
|
14
|
+
clarifai_grpc/grpc/api/resources_pb2.pyi,sha256=ukNoqjmddrIYieU133y8u4VIYZgTcuMi-uaoLtUoNDk,663912
|
|
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=x96bM5_xOEHtVj3YEmKb6ty9FaYVw90mWr4lxnuerJw,359516
|
|
17
|
+
clarifai_grpc/grpc/api/service_pb2.pyi,sha256=T4739fEAqId00liXQdyY23bG77d_kK0i9n92JSpCFlA,667156
|
|
18
|
+
clarifai_grpc/grpc/api/service_pb2_grpc.py,sha256=HKZpBJloJo209XZmGQ40kGExNo_VDrrD5D7lAzoT9GA,536723
|
|
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=zL6OaFXBhqkWslZft7SqthxViymmCmw1mI52JNZ9yro,26838
|
|
21
21
|
clarifai_grpc/grpc/api/status/status_code_pb2.pyi,sha256=qasJuMVwl1d82XZCbEMlirinJm7N0Mwp_zyQrYlxOlA,67623
|
|
@@ -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=S21QRZmirv1M2dYHA2meVO7j6FBvWMjjKCcL_gY_KWY,28701
|
|
39
|
+
clarifai_grpc/grpc/auth/scope/scope_pb2.pyi,sha256=EgeLAwO4GpVFhSyRhxdFkY4AF-wx02n3WAGsf15jbDE,21685
|
|
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-12.0.
|
|
50
|
-
clarifai_grpc-12.0.
|
|
51
|
-
clarifai_grpc-12.0.
|
|
52
|
-
clarifai_grpc-12.0.
|
|
53
|
-
clarifai_grpc-12.0.
|
|
49
|
+
clarifai_grpc-12.0.2.dist-info/licenses/LICENSE,sha256=GuQZ4iPZUwh44duTbVr7ZzYp_SaJDLR9MvzU7YqlZXM,555
|
|
50
|
+
clarifai_grpc-12.0.2.dist-info/METADATA,sha256=dnjL3XRuSxu16NAIxbqRu1qF6km4MOYWMIiAR2yJAUk,4427
|
|
51
|
+
clarifai_grpc-12.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
52
|
+
clarifai_grpc-12.0.2.dist-info/top_level.txt,sha256=azOUiixWkDpdb3gn_YNgz8sbAfhNvZuC3_9qI7hNQac,14
|
|
53
|
+
clarifai_grpc-12.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|