nucliadb-protos 6.5.1.post4520__py3-none-any.whl → 6.10.0.post5705__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.
Potentially problematic release.
This version of nucliadb-protos might be problematic. Click here for more details.
- build.py +1 -1
- nucliadb_protos/audit_pb2.py +18 -18
- nucliadb_protos/audit_pb2.pyi +14 -4
- nucliadb_protos/backups_pb2.py +4 -4
- nucliadb_protos/backups_pb2_grpc.py +2 -2
- nucliadb_protos/dataset_pb2.py +4 -4
- nucliadb_protos/dataset_pb2.pyi +3 -0
- nucliadb_protos/kb_usage_pb2.py +10 -10
- nucliadb_protos/kb_usage_pb2.pyi +2 -0
- nucliadb_protos/knowledgebox_pb2.py +80 -82
- nucliadb_protos/knowledgebox_pb2.pyi +8 -8
- nucliadb_protos/migrations_pb2.py +4 -4
- nucliadb_protos/resources_pb2.py +204 -194
- nucliadb_protos/resources_pb2.pyi +100 -15
- nucliadb_protos/standalone_pb2.py +4 -4
- nucliadb_protos/standalone_pb2_grpc.py +2 -2
- nucliadb_protos/train_pb2.py +4 -4
- nucliadb_protos/train_pb2.pyi +3 -7
- nucliadb_protos/train_pb2_grpc.py +2 -2
- nucliadb_protos/train_pb2_grpc.pyi +3 -7
- nucliadb_protos/utils_pb2.py +5 -7
- nucliadb_protos/utils_pb2.pyi +0 -15
- nucliadb_protos/writer_pb2.py +106 -132
- nucliadb_protos/writer_pb2.pyi +35 -258
- nucliadb_protos/writer_pb2_grpc.py +3 -175
- nucliadb_protos/writer_pb2_grpc.pyi +7 -72
- {nucliadb_protos-6.5.1.post4520.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/METADATA +5 -6
- nucliadb_protos-6.10.0.post5705.dist-info/RECORD +37 -0
- {nucliadb_protos-6.5.1.post4520.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/WHEEL +1 -1
- nucliadb_protos-6.5.1.post4520.dist-info/RECORD +0 -37
- {nucliadb_protos-6.5.1.post4520.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/entry_points.txt +0 -0
nucliadb_protos/writer_pb2.pyi
CHANGED
|
@@ -161,6 +161,9 @@ from nucliadb_protos.resources_pb2 import (
|
|
|
161
161
|
Representation as Representation,
|
|
162
162
|
RowsPreview as RowsPreview,
|
|
163
163
|
Sentence as Sentence,
|
|
164
|
+
SplitMetadata as SplitMetadata,
|
|
165
|
+
SplitsMetadata as SplitsMetadata,
|
|
166
|
+
SyncMetadata as SyncMetadata,
|
|
164
167
|
TEXT as TEXT,
|
|
165
168
|
UserFieldMetadata as UserFieldMetadata,
|
|
166
169
|
UserMetadata as UserMetadata,
|
|
@@ -298,22 +301,39 @@ class Error(google.protobuf.message.Message):
|
|
|
298
301
|
EXTRACT: Error._ErrorCode.ValueType # 1
|
|
299
302
|
PROCESS: Error._ErrorCode.ValueType # 2
|
|
300
303
|
DATAAUGMENTATION: Error._ErrorCode.ValueType # 3
|
|
304
|
+
INDEX: Error._ErrorCode.ValueType # 4
|
|
301
305
|
|
|
302
306
|
class ErrorCode(_ErrorCode, metaclass=_ErrorCodeEnumTypeWrapper): ...
|
|
303
307
|
GENERIC: Error.ErrorCode.ValueType # 0
|
|
304
308
|
EXTRACT: Error.ErrorCode.ValueType # 1
|
|
305
309
|
PROCESS: Error.ErrorCode.ValueType # 2
|
|
306
310
|
DATAAUGMENTATION: Error.ErrorCode.ValueType # 3
|
|
311
|
+
INDEX: Error.ErrorCode.ValueType # 4
|
|
312
|
+
|
|
313
|
+
class _Severity:
|
|
314
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
|
315
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
316
|
+
|
|
317
|
+
class _SeverityEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[Error._Severity.ValueType], builtins.type):
|
|
318
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
319
|
+
ERROR: Error._Severity.ValueType # 0
|
|
320
|
+
WARNING: Error._Severity.ValueType # 1
|
|
321
|
+
|
|
322
|
+
class Severity(_Severity, metaclass=_SeverityEnumTypeWrapper): ...
|
|
323
|
+
ERROR: Error.Severity.ValueType # 0
|
|
324
|
+
WARNING: Error.Severity.ValueType # 1
|
|
307
325
|
|
|
308
326
|
FIELD_FIELD_NUMBER: builtins.int
|
|
309
327
|
FIELD_TYPE_FIELD_NUMBER: builtins.int
|
|
310
328
|
ERROR_FIELD_NUMBER: builtins.int
|
|
311
329
|
CODE_FIELD_NUMBER: builtins.int
|
|
312
330
|
GENERATED_BY_FIELD_NUMBER: builtins.int
|
|
331
|
+
SEVERITY_FIELD_NUMBER: builtins.int
|
|
313
332
|
field: builtins.str
|
|
314
333
|
field_type: nucliadb_protos.resources_pb2.FieldType.ValueType
|
|
315
334
|
error: builtins.str
|
|
316
335
|
code: global___Error.ErrorCode.ValueType
|
|
336
|
+
severity: global___Error.Severity.ValueType
|
|
317
337
|
@property
|
|
318
338
|
def generated_by(self) -> global___Generator: ...
|
|
319
339
|
def __init__(
|
|
@@ -324,9 +344,10 @@ class Error(google.protobuf.message.Message):
|
|
|
324
344
|
error: builtins.str = ...,
|
|
325
345
|
code: global___Error.ErrorCode.ValueType = ...,
|
|
326
346
|
generated_by: global___Generator | None = ...,
|
|
347
|
+
severity: global___Error.Severity.ValueType = ...,
|
|
327
348
|
) -> None: ...
|
|
328
349
|
def HasField(self, field_name: typing.Literal["generated_by", b"generated_by"]) -> builtins.bool: ...
|
|
329
|
-
def ClearField(self, field_name: typing.Literal["code", b"code", "error", b"error", "field", b"field", "field_type", b"field_type", "generated_by", b"generated_by"]) -> None: ...
|
|
350
|
+
def ClearField(self, field_name: typing.Literal["code", b"code", "error", b"error", "field", b"field", "field_type", b"field_type", "generated_by", b"generated_by", "severity", b"severity"]) -> None: ...
|
|
330
351
|
|
|
331
352
|
global___Error = Error
|
|
332
353
|
|
|
@@ -341,17 +362,19 @@ class BrokerMessage(google.protobuf.message.Message):
|
|
|
341
362
|
class _MessageTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[BrokerMessage._MessageType.ValueType], builtins.type):
|
|
342
363
|
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
343
364
|
AUTOCOMMIT: BrokerMessage._MessageType.ValueType # 0
|
|
365
|
+
DELETE: BrokerMessage._MessageType.ValueType # 4
|
|
344
366
|
MULTI: BrokerMessage._MessageType.ValueType # 1
|
|
367
|
+
"""Deprecated, multi-commit transactions have never worked. Not implemented."""
|
|
345
368
|
COMMIT: BrokerMessage._MessageType.ValueType # 2
|
|
346
369
|
ROLLBACK: BrokerMessage._MessageType.ValueType # 3
|
|
347
|
-
DELETE: BrokerMessage._MessageType.ValueType # 4
|
|
348
370
|
|
|
349
371
|
class MessageType(_MessageType, metaclass=_MessageTypeEnumTypeWrapper): ...
|
|
350
372
|
AUTOCOMMIT: BrokerMessage.MessageType.ValueType # 0
|
|
373
|
+
DELETE: BrokerMessage.MessageType.ValueType # 4
|
|
351
374
|
MULTI: BrokerMessage.MessageType.ValueType # 1
|
|
375
|
+
"""Deprecated, multi-commit transactions have never worked. Not implemented."""
|
|
352
376
|
COMMIT: BrokerMessage.MessageType.ValueType # 2
|
|
353
377
|
ROLLBACK: BrokerMessage.MessageType.ValueType # 3
|
|
354
|
-
DELETE: BrokerMessage.MessageType.ValueType # 4
|
|
355
378
|
|
|
356
379
|
class _MessageSource:
|
|
357
380
|
ValueType = typing.NewType("ValueType", builtins.int)
|
|
@@ -670,198 +693,6 @@ class WriterStatusRequest(google.protobuf.message.Message):
|
|
|
670
693
|
|
|
671
694
|
global___WriterStatusRequest = WriterStatusRequest
|
|
672
695
|
|
|
673
|
-
@typing.final
|
|
674
|
-
class NewEntitiesGroupRequest(google.protobuf.message.Message):
|
|
675
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
676
|
-
|
|
677
|
-
KB_FIELD_NUMBER: builtins.int
|
|
678
|
-
GROUP_FIELD_NUMBER: builtins.int
|
|
679
|
-
ENTITIES_FIELD_NUMBER: builtins.int
|
|
680
|
-
group: builtins.str
|
|
681
|
-
@property
|
|
682
|
-
def kb(self) -> nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID: ...
|
|
683
|
-
@property
|
|
684
|
-
def entities(self) -> nucliadb_protos.knowledgebox_pb2.EntitiesGroup: ...
|
|
685
|
-
def __init__(
|
|
686
|
-
self,
|
|
687
|
-
*,
|
|
688
|
-
kb: nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID | None = ...,
|
|
689
|
-
group: builtins.str = ...,
|
|
690
|
-
entities: nucliadb_protos.knowledgebox_pb2.EntitiesGroup | None = ...,
|
|
691
|
-
) -> None: ...
|
|
692
|
-
def HasField(self, field_name: typing.Literal["entities", b"entities", "kb", b"kb"]) -> builtins.bool: ...
|
|
693
|
-
def ClearField(self, field_name: typing.Literal["entities", b"entities", "group", b"group", "kb", b"kb"]) -> None: ...
|
|
694
|
-
|
|
695
|
-
global___NewEntitiesGroupRequest = NewEntitiesGroupRequest
|
|
696
|
-
|
|
697
|
-
@typing.final
|
|
698
|
-
class NewEntitiesGroupResponse(google.protobuf.message.Message):
|
|
699
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
700
|
-
|
|
701
|
-
class _Status:
|
|
702
|
-
ValueType = typing.NewType("ValueType", builtins.int)
|
|
703
|
-
V: typing_extensions.TypeAlias = ValueType
|
|
704
|
-
|
|
705
|
-
class _StatusEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[NewEntitiesGroupResponse._Status.ValueType], builtins.type):
|
|
706
|
-
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
707
|
-
OK: NewEntitiesGroupResponse._Status.ValueType # 0
|
|
708
|
-
ERROR: NewEntitiesGroupResponse._Status.ValueType # 1
|
|
709
|
-
KB_NOT_FOUND: NewEntitiesGroupResponse._Status.ValueType # 2
|
|
710
|
-
ALREADY_EXISTS: NewEntitiesGroupResponse._Status.ValueType # 3
|
|
711
|
-
|
|
712
|
-
class Status(_Status, metaclass=_StatusEnumTypeWrapper): ...
|
|
713
|
-
OK: NewEntitiesGroupResponse.Status.ValueType # 0
|
|
714
|
-
ERROR: NewEntitiesGroupResponse.Status.ValueType # 1
|
|
715
|
-
KB_NOT_FOUND: NewEntitiesGroupResponse.Status.ValueType # 2
|
|
716
|
-
ALREADY_EXISTS: NewEntitiesGroupResponse.Status.ValueType # 3
|
|
717
|
-
|
|
718
|
-
STATUS_FIELD_NUMBER: builtins.int
|
|
719
|
-
status: global___NewEntitiesGroupResponse.Status.ValueType
|
|
720
|
-
def __init__(
|
|
721
|
-
self,
|
|
722
|
-
*,
|
|
723
|
-
status: global___NewEntitiesGroupResponse.Status.ValueType = ...,
|
|
724
|
-
) -> None: ...
|
|
725
|
-
def ClearField(self, field_name: typing.Literal["status", b"status"]) -> None: ...
|
|
726
|
-
|
|
727
|
-
global___NewEntitiesGroupResponse = NewEntitiesGroupResponse
|
|
728
|
-
|
|
729
|
-
@typing.final
|
|
730
|
-
class SetEntitiesRequest(google.protobuf.message.Message):
|
|
731
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
732
|
-
|
|
733
|
-
KB_FIELD_NUMBER: builtins.int
|
|
734
|
-
GROUP_FIELD_NUMBER: builtins.int
|
|
735
|
-
ENTITIES_FIELD_NUMBER: builtins.int
|
|
736
|
-
group: builtins.str
|
|
737
|
-
@property
|
|
738
|
-
def kb(self) -> nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID: ...
|
|
739
|
-
@property
|
|
740
|
-
def entities(self) -> nucliadb_protos.knowledgebox_pb2.EntitiesGroup: ...
|
|
741
|
-
def __init__(
|
|
742
|
-
self,
|
|
743
|
-
*,
|
|
744
|
-
kb: nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID | None = ...,
|
|
745
|
-
group: builtins.str = ...,
|
|
746
|
-
entities: nucliadb_protos.knowledgebox_pb2.EntitiesGroup | None = ...,
|
|
747
|
-
) -> None: ...
|
|
748
|
-
def HasField(self, field_name: typing.Literal["entities", b"entities", "kb", b"kb"]) -> builtins.bool: ...
|
|
749
|
-
def ClearField(self, field_name: typing.Literal["entities", b"entities", "group", b"group", "kb", b"kb"]) -> None: ...
|
|
750
|
-
|
|
751
|
-
global___SetEntitiesRequest = SetEntitiesRequest
|
|
752
|
-
|
|
753
|
-
@typing.final
|
|
754
|
-
class UpdateEntitiesGroupRequest(google.protobuf.message.Message):
|
|
755
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
756
|
-
|
|
757
|
-
@typing.final
|
|
758
|
-
class AddEntry(google.protobuf.message.Message):
|
|
759
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
760
|
-
|
|
761
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
762
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
763
|
-
key: builtins.str
|
|
764
|
-
@property
|
|
765
|
-
def value(self) -> nucliadb_protos.knowledgebox_pb2.Entity: ...
|
|
766
|
-
def __init__(
|
|
767
|
-
self,
|
|
768
|
-
*,
|
|
769
|
-
key: builtins.str = ...,
|
|
770
|
-
value: nucliadb_protos.knowledgebox_pb2.Entity | None = ...,
|
|
771
|
-
) -> None: ...
|
|
772
|
-
def HasField(self, field_name: typing.Literal["value", b"value"]) -> builtins.bool: ...
|
|
773
|
-
def ClearField(self, field_name: typing.Literal["key", b"key", "value", b"value"]) -> None: ...
|
|
774
|
-
|
|
775
|
-
@typing.final
|
|
776
|
-
class UpdateEntry(google.protobuf.message.Message):
|
|
777
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
778
|
-
|
|
779
|
-
KEY_FIELD_NUMBER: builtins.int
|
|
780
|
-
VALUE_FIELD_NUMBER: builtins.int
|
|
781
|
-
key: builtins.str
|
|
782
|
-
@property
|
|
783
|
-
def value(self) -> nucliadb_protos.knowledgebox_pb2.Entity: ...
|
|
784
|
-
def __init__(
|
|
785
|
-
self,
|
|
786
|
-
*,
|
|
787
|
-
key: builtins.str = ...,
|
|
788
|
-
value: nucliadb_protos.knowledgebox_pb2.Entity | None = ...,
|
|
789
|
-
) -> None: ...
|
|
790
|
-
def HasField(self, field_name: typing.Literal["value", b"value"]) -> builtins.bool: ...
|
|
791
|
-
def ClearField(self, field_name: typing.Literal["key", b"key", "value", b"value"]) -> None: ...
|
|
792
|
-
|
|
793
|
-
KB_FIELD_NUMBER: builtins.int
|
|
794
|
-
GROUP_FIELD_NUMBER: builtins.int
|
|
795
|
-
ADD_FIELD_NUMBER: builtins.int
|
|
796
|
-
UPDATE_FIELD_NUMBER: builtins.int
|
|
797
|
-
DELETE_FIELD_NUMBER: builtins.int
|
|
798
|
-
TITLE_FIELD_NUMBER: builtins.int
|
|
799
|
-
COLOR_FIELD_NUMBER: builtins.int
|
|
800
|
-
group: builtins.str
|
|
801
|
-
title: builtins.str
|
|
802
|
-
color: builtins.str
|
|
803
|
-
@property
|
|
804
|
-
def kb(self) -> nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID: ...
|
|
805
|
-
@property
|
|
806
|
-
def add(self) -> google.protobuf.internal.containers.MessageMap[builtins.str, nucliadb_protos.knowledgebox_pb2.Entity]:
|
|
807
|
-
"""entity_id: Entity"""
|
|
808
|
-
|
|
809
|
-
@property
|
|
810
|
-
def update(self) -> google.protobuf.internal.containers.MessageMap[builtins.str, nucliadb_protos.knowledgebox_pb2.Entity]:
|
|
811
|
-
"""entity_id: Entity"""
|
|
812
|
-
|
|
813
|
-
@property
|
|
814
|
-
def delete(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
815
|
-
"""entity_id"""
|
|
816
|
-
|
|
817
|
-
def __init__(
|
|
818
|
-
self,
|
|
819
|
-
*,
|
|
820
|
-
kb: nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID | None = ...,
|
|
821
|
-
group: builtins.str = ...,
|
|
822
|
-
add: collections.abc.Mapping[builtins.str, nucliadb_protos.knowledgebox_pb2.Entity] | None = ...,
|
|
823
|
-
update: collections.abc.Mapping[builtins.str, nucliadb_protos.knowledgebox_pb2.Entity] | None = ...,
|
|
824
|
-
delete: collections.abc.Iterable[builtins.str] | None = ...,
|
|
825
|
-
title: builtins.str = ...,
|
|
826
|
-
color: builtins.str = ...,
|
|
827
|
-
) -> None: ...
|
|
828
|
-
def HasField(self, field_name: typing.Literal["kb", b"kb"]) -> builtins.bool: ...
|
|
829
|
-
def ClearField(self, field_name: typing.Literal["add", b"add", "color", b"color", "delete", b"delete", "group", b"group", "kb", b"kb", "title", b"title", "update", b"update"]) -> None: ...
|
|
830
|
-
|
|
831
|
-
global___UpdateEntitiesGroupRequest = UpdateEntitiesGroupRequest
|
|
832
|
-
|
|
833
|
-
@typing.final
|
|
834
|
-
class UpdateEntitiesGroupResponse(google.protobuf.message.Message):
|
|
835
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
836
|
-
|
|
837
|
-
class _Status:
|
|
838
|
-
ValueType = typing.NewType("ValueType", builtins.int)
|
|
839
|
-
V: typing_extensions.TypeAlias = ValueType
|
|
840
|
-
|
|
841
|
-
class _StatusEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[UpdateEntitiesGroupResponse._Status.ValueType], builtins.type):
|
|
842
|
-
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
843
|
-
OK: UpdateEntitiesGroupResponse._Status.ValueType # 0
|
|
844
|
-
ERROR: UpdateEntitiesGroupResponse._Status.ValueType # 1
|
|
845
|
-
KB_NOT_FOUND: UpdateEntitiesGroupResponse._Status.ValueType # 2
|
|
846
|
-
ENTITIES_GROUP_NOT_FOUND: UpdateEntitiesGroupResponse._Status.ValueType # 3
|
|
847
|
-
|
|
848
|
-
class Status(_Status, metaclass=_StatusEnumTypeWrapper): ...
|
|
849
|
-
OK: UpdateEntitiesGroupResponse.Status.ValueType # 0
|
|
850
|
-
ERROR: UpdateEntitiesGroupResponse.Status.ValueType # 1
|
|
851
|
-
KB_NOT_FOUND: UpdateEntitiesGroupResponse.Status.ValueType # 2
|
|
852
|
-
ENTITIES_GROUP_NOT_FOUND: UpdateEntitiesGroupResponse.Status.ValueType # 3
|
|
853
|
-
|
|
854
|
-
STATUS_FIELD_NUMBER: builtins.int
|
|
855
|
-
status: global___UpdateEntitiesGroupResponse.Status.ValueType
|
|
856
|
-
def __init__(
|
|
857
|
-
self,
|
|
858
|
-
*,
|
|
859
|
-
status: global___UpdateEntitiesGroupResponse.Status.ValueType = ...,
|
|
860
|
-
) -> None: ...
|
|
861
|
-
def ClearField(self, field_name: typing.Literal["status", b"status"]) -> None: ...
|
|
862
|
-
|
|
863
|
-
global___UpdateEntitiesGroupResponse = UpdateEntitiesGroupResponse
|
|
864
|
-
|
|
865
696
|
@typing.final
|
|
866
697
|
class ListEntitiesGroupsRequest(google.protobuf.message.Message):
|
|
867
698
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -1005,64 +836,6 @@ class GetEntitiesResponse(google.protobuf.message.Message):
|
|
|
1005
836
|
|
|
1006
837
|
global___GetEntitiesResponse = GetEntitiesResponse
|
|
1007
838
|
|
|
1008
|
-
@typing.final
|
|
1009
|
-
class DelEntitiesRequest(google.protobuf.message.Message):
|
|
1010
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1011
|
-
|
|
1012
|
-
KB_FIELD_NUMBER: builtins.int
|
|
1013
|
-
GROUP_FIELD_NUMBER: builtins.int
|
|
1014
|
-
group: builtins.str
|
|
1015
|
-
@property
|
|
1016
|
-
def kb(self) -> nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID: ...
|
|
1017
|
-
def __init__(
|
|
1018
|
-
self,
|
|
1019
|
-
*,
|
|
1020
|
-
kb: nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID | None = ...,
|
|
1021
|
-
group: builtins.str = ...,
|
|
1022
|
-
) -> None: ...
|
|
1023
|
-
def HasField(self, field_name: typing.Literal["kb", b"kb"]) -> builtins.bool: ...
|
|
1024
|
-
def ClearField(self, field_name: typing.Literal["group", b"group", "kb", b"kb"]) -> None: ...
|
|
1025
|
-
|
|
1026
|
-
global___DelEntitiesRequest = DelEntitiesRequest
|
|
1027
|
-
|
|
1028
|
-
@typing.final
|
|
1029
|
-
class MergeEntitiesRequest(google.protobuf.message.Message):
|
|
1030
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1031
|
-
|
|
1032
|
-
@typing.final
|
|
1033
|
-
class EntityID(google.protobuf.message.Message):
|
|
1034
|
-
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1035
|
-
|
|
1036
|
-
GROUP_FIELD_NUMBER: builtins.int
|
|
1037
|
-
ENTITY_FIELD_NUMBER: builtins.int
|
|
1038
|
-
group: builtins.str
|
|
1039
|
-
entity: builtins.str
|
|
1040
|
-
def __init__(
|
|
1041
|
-
self,
|
|
1042
|
-
*,
|
|
1043
|
-
group: builtins.str = ...,
|
|
1044
|
-
entity: builtins.str = ...,
|
|
1045
|
-
) -> None: ...
|
|
1046
|
-
def ClearField(self, field_name: typing.Literal["entity", b"entity", "group", b"group"]) -> None: ...
|
|
1047
|
-
|
|
1048
|
-
KB_FIELD_NUMBER: builtins.int
|
|
1049
|
-
FROM_FIELD_NUMBER: builtins.int
|
|
1050
|
-
TO_FIELD_NUMBER: builtins.int
|
|
1051
|
-
@property
|
|
1052
|
-
def kb(self) -> nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID: ...
|
|
1053
|
-
@property
|
|
1054
|
-
def to(self) -> global___MergeEntitiesRequest.EntityID: ...
|
|
1055
|
-
def __init__(
|
|
1056
|
-
self,
|
|
1057
|
-
*,
|
|
1058
|
-
kb: nucliadb_protos.knowledgebox_pb2.KnowledgeBoxID | None = ...,
|
|
1059
|
-
to: global___MergeEntitiesRequest.EntityID | None = ...,
|
|
1060
|
-
) -> None: ...
|
|
1061
|
-
def HasField(self, field_name: typing.Literal["from", b"from", "kb", b"kb", "to", b"to"]) -> builtins.bool: ...
|
|
1062
|
-
def ClearField(self, field_name: typing.Literal["from", b"from", "kb", b"kb", "to", b"to"]) -> None: ...
|
|
1063
|
-
|
|
1064
|
-
global___MergeEntitiesRequest = MergeEntitiesRequest
|
|
1065
|
-
|
|
1066
839
|
@typing.final
|
|
1067
840
|
class GetLabelsResponse(google.protobuf.message.Message):
|
|
1068
841
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -1397,7 +1170,6 @@ class Shards(google.protobuf.message.Message):
|
|
|
1397
1170
|
ACTUAL_FIELD_NUMBER: builtins.int
|
|
1398
1171
|
SIMILARITY_FIELD_NUMBER: builtins.int
|
|
1399
1172
|
MODEL_FIELD_NUMBER: builtins.int
|
|
1400
|
-
RELEASE_CHANNEL_FIELD_NUMBER: builtins.int
|
|
1401
1173
|
EXTRA_FIELD_NUMBER: builtins.int
|
|
1402
1174
|
kbid: builtins.str
|
|
1403
1175
|
actual: builtins.int
|
|
@@ -1406,7 +1178,6 @@ class Shards(google.protobuf.message.Message):
|
|
|
1406
1178
|
"""
|
|
1407
1179
|
similarity: nucliadb_protos.utils_pb2.VectorSimilarity.ValueType
|
|
1408
1180
|
"""DEPRECATED in favor of `model` to include more data"""
|
|
1409
|
-
release_channel: nucliadb_protos.utils_pb2.ReleaseChannel.ValueType
|
|
1410
1181
|
@property
|
|
1411
1182
|
def shards(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ShardObject]: ...
|
|
1412
1183
|
@property
|
|
@@ -1423,11 +1194,10 @@ class Shards(google.protobuf.message.Message):
|
|
|
1423
1194
|
actual: builtins.int = ...,
|
|
1424
1195
|
similarity: nucliadb_protos.utils_pb2.VectorSimilarity.ValueType = ...,
|
|
1425
1196
|
model: nucliadb_protos.knowledgebox_pb2.SemanticModelMetadata | None = ...,
|
|
1426
|
-
release_channel: nucliadb_protos.utils_pb2.ReleaseChannel.ValueType = ...,
|
|
1427
1197
|
extra: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
|
|
1428
1198
|
) -> None: ...
|
|
1429
1199
|
def HasField(self, field_name: typing.Literal["model", b"model"]) -> builtins.bool: ...
|
|
1430
|
-
def ClearField(self, field_name: typing.Literal["actual", b"actual", "extra", b"extra", "kbid", b"kbid", "model", b"model", "
|
|
1200
|
+
def ClearField(self, field_name: typing.Literal["actual", b"actual", "extra", b"extra", "kbid", b"kbid", "model", b"model", "shards", b"shards", "similarity", b"similarity"]) -> None: ...
|
|
1431
1201
|
|
|
1432
1202
|
global___Shards = Shards
|
|
1433
1203
|
|
|
@@ -1512,12 +1282,18 @@ class NewKnowledgeBoxV2Request(google.protobuf.message.Message):
|
|
|
1512
1282
|
EXTERNAL_INDEX_PROVIDER_FIELD_NUMBER: builtins.int
|
|
1513
1283
|
HIDDEN_RESOURCES_ENABLED_FIELD_NUMBER: builtins.int
|
|
1514
1284
|
HIDDEN_RESOURCES_HIDE_ON_CREATION_FIELD_NUMBER: builtins.int
|
|
1285
|
+
PREWARM_ENABLED_FIELD_NUMBER: builtins.int
|
|
1515
1286
|
kbid: builtins.str
|
|
1516
1287
|
slug: builtins.str
|
|
1517
1288
|
title: builtins.str
|
|
1518
1289
|
description: builtins.str
|
|
1519
1290
|
hidden_resources_enabled: builtins.bool
|
|
1520
1291
|
hidden_resources_hide_on_creation: builtins.bool
|
|
1292
|
+
prewarm_enabled: builtins.bool
|
|
1293
|
+
"""whether to enable prewarm of data for faster search or not. Activating
|
|
1294
|
+
this flag allow faster searches (with less cold start) but it is
|
|
1295
|
+
expensive on the infrastructure
|
|
1296
|
+
"""
|
|
1521
1297
|
@property
|
|
1522
1298
|
def vectorsets(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___NewKnowledgeBoxV2Request.VectorSet]: ...
|
|
1523
1299
|
@property
|
|
@@ -1533,9 +1309,10 @@ class NewKnowledgeBoxV2Request(google.protobuf.message.Message):
|
|
|
1533
1309
|
external_index_provider: nucliadb_protos.knowledgebox_pb2.CreateExternalIndexProviderMetadata | None = ...,
|
|
1534
1310
|
hidden_resources_enabled: builtins.bool = ...,
|
|
1535
1311
|
hidden_resources_hide_on_creation: builtins.bool = ...,
|
|
1312
|
+
prewarm_enabled: builtins.bool = ...,
|
|
1536
1313
|
) -> None: ...
|
|
1537
1314
|
def HasField(self, field_name: typing.Literal["external_index_provider", b"external_index_provider"]) -> builtins.bool: ...
|
|
1538
|
-
def ClearField(self, field_name: typing.Literal["description", b"description", "external_index_provider", b"external_index_provider", "hidden_resources_enabled", b"hidden_resources_enabled", "hidden_resources_hide_on_creation", b"hidden_resources_hide_on_creation", "kbid", b"kbid", "slug", b"slug", "title", b"title", "vectorsets", b"vectorsets"]) -> None: ...
|
|
1315
|
+
def ClearField(self, field_name: typing.Literal["description", b"description", "external_index_provider", b"external_index_provider", "hidden_resources_enabled", b"hidden_resources_enabled", "hidden_resources_hide_on_creation", b"hidden_resources_hide_on_creation", "kbid", b"kbid", "prewarm_enabled", b"prewarm_enabled", "slug", b"slug", "title", b"title", "vectorsets", b"vectorsets"]) -> None: ...
|
|
1539
1316
|
|
|
1540
1317
|
global___NewKnowledgeBoxV2Request = NewKnowledgeBoxV2Request
|
|
1541
1318
|
|
|
@@ -7,7 +7,7 @@ from nucliadb_protos import backups_pb2 as nucliadb__protos_dot_backups__pb2
|
|
|
7
7
|
from nucliadb_protos import knowledgebox_pb2 as nucliadb__protos_dot_knowledgebox__pb2
|
|
8
8
|
from nucliadb_protos import writer_pb2 as nucliadb__protos_dot_writer__pb2
|
|
9
9
|
|
|
10
|
-
GRPC_GENERATED_VERSION = '1.
|
|
10
|
+
GRPC_GENERATED_VERSION = '1.76.0'
|
|
11
11
|
GRPC_VERSION = grpc.__version__
|
|
12
12
|
_version_not_supported = False
|
|
13
13
|
|
|
@@ -20,7 +20,7 @@ except ImportError:
|
|
|
20
20
|
if _version_not_supported:
|
|
21
21
|
raise RuntimeError(
|
|
22
22
|
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
23
|
-
+
|
|
23
|
+
+ ' but the generated code in nucliadb_protos/writer_pb2_grpc.py depends on'
|
|
24
24
|
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
25
25
|
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
26
26
|
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
@@ -56,11 +56,6 @@ class WriterStub(object):
|
|
|
56
56
|
request_serializer=nucliadb__protos_dot_writer__pb2.BrokerMessage.SerializeToString,
|
|
57
57
|
response_deserializer=nucliadb__protos_dot_writer__pb2.OpStatusWriter.FromString,
|
|
58
58
|
_registered_method=True)
|
|
59
|
-
self.NewEntitiesGroup = channel.unary_unary(
|
|
60
|
-
'/fdbwriter.Writer/NewEntitiesGroup',
|
|
61
|
-
request_serializer=nucliadb__protos_dot_writer__pb2.NewEntitiesGroupRequest.SerializeToString,
|
|
62
|
-
response_deserializer=nucliadb__protos_dot_writer__pb2.NewEntitiesGroupResponse.FromString,
|
|
63
|
-
_registered_method=True)
|
|
64
59
|
self.GetEntities = channel.unary_unary(
|
|
65
60
|
'/fdbwriter.Writer/GetEntities',
|
|
66
61
|
request_serializer=nucliadb__protos_dot_writer__pb2.GetEntitiesRequest.SerializeToString,
|
|
@@ -76,21 +71,6 @@ class WriterStub(object):
|
|
|
76
71
|
request_serializer=nucliadb__protos_dot_writer__pb2.ListEntitiesGroupsRequest.SerializeToString,
|
|
77
72
|
response_deserializer=nucliadb__protos_dot_writer__pb2.ListEntitiesGroupsResponse.FromString,
|
|
78
73
|
_registered_method=True)
|
|
79
|
-
self.SetEntities = channel.unary_unary(
|
|
80
|
-
'/fdbwriter.Writer/SetEntities',
|
|
81
|
-
request_serializer=nucliadb__protos_dot_writer__pb2.SetEntitiesRequest.SerializeToString,
|
|
82
|
-
response_deserializer=nucliadb__protos_dot_writer__pb2.OpStatusWriter.FromString,
|
|
83
|
-
_registered_method=True)
|
|
84
|
-
self.UpdateEntitiesGroup = channel.unary_unary(
|
|
85
|
-
'/fdbwriter.Writer/UpdateEntitiesGroup',
|
|
86
|
-
request_serializer=nucliadb__protos_dot_writer__pb2.UpdateEntitiesGroupRequest.SerializeToString,
|
|
87
|
-
response_deserializer=nucliadb__protos_dot_writer__pb2.UpdateEntitiesGroupResponse.FromString,
|
|
88
|
-
_registered_method=True)
|
|
89
|
-
self.DelEntities = channel.unary_unary(
|
|
90
|
-
'/fdbwriter.Writer/DelEntities',
|
|
91
|
-
request_serializer=nucliadb__protos_dot_writer__pb2.DelEntitiesRequest.SerializeToString,
|
|
92
|
-
response_deserializer=nucliadb__protos_dot_writer__pb2.OpStatusWriter.FromString,
|
|
93
|
-
_registered_method=True)
|
|
94
74
|
self.Status = channel.unary_unary(
|
|
95
75
|
'/fdbwriter.Writer/Status',
|
|
96
76
|
request_serializer=nucliadb__protos_dot_writer__pb2.WriterStatusRequest.SerializeToString,
|
|
@@ -150,19 +130,13 @@ class WriterServicer(object):
|
|
|
150
130
|
context.set_details('Method not implemented!')
|
|
151
131
|
raise NotImplementedError('Method not implemented!')
|
|
152
132
|
|
|
153
|
-
def
|
|
133
|
+
def GetEntities(self, request, context):
|
|
154
134
|
"""Entities
|
|
155
135
|
"""
|
|
156
136
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
157
137
|
context.set_details('Method not implemented!')
|
|
158
138
|
raise NotImplementedError('Method not implemented!')
|
|
159
139
|
|
|
160
|
-
def GetEntities(self, request, context):
|
|
161
|
-
"""Missing associated documentation comment in .proto file."""
|
|
162
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
163
|
-
context.set_details('Method not implemented!')
|
|
164
|
-
raise NotImplementedError('Method not implemented!')
|
|
165
|
-
|
|
166
140
|
def GetEntitiesGroup(self, request, context):
|
|
167
141
|
"""Missing associated documentation comment in .proto file."""
|
|
168
142
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
@@ -175,24 +149,6 @@ class WriterServicer(object):
|
|
|
175
149
|
context.set_details('Method not implemented!')
|
|
176
150
|
raise NotImplementedError('Method not implemented!')
|
|
177
151
|
|
|
178
|
-
def SetEntities(self, request, context):
|
|
179
|
-
"""Missing associated documentation comment in .proto file."""
|
|
180
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
181
|
-
context.set_details('Method not implemented!')
|
|
182
|
-
raise NotImplementedError('Method not implemented!')
|
|
183
|
-
|
|
184
|
-
def UpdateEntitiesGroup(self, request, context):
|
|
185
|
-
"""Missing associated documentation comment in .proto file."""
|
|
186
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
187
|
-
context.set_details('Method not implemented!')
|
|
188
|
-
raise NotImplementedError('Method not implemented!')
|
|
189
|
-
|
|
190
|
-
def DelEntities(self, request, context):
|
|
191
|
-
"""Missing associated documentation comment in .proto file."""
|
|
192
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
193
|
-
context.set_details('Method not implemented!')
|
|
194
|
-
raise NotImplementedError('Method not implemented!')
|
|
195
|
-
|
|
196
152
|
def Status(self, request, context):
|
|
197
153
|
"""Missing associated documentation comment in .proto file."""
|
|
198
154
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
@@ -252,11 +208,6 @@ def add_WriterServicer_to_server(servicer, server):
|
|
|
252
208
|
request_deserializer=nucliadb__protos_dot_writer__pb2.BrokerMessage.FromString,
|
|
253
209
|
response_serializer=nucliadb__protos_dot_writer__pb2.OpStatusWriter.SerializeToString,
|
|
254
210
|
),
|
|
255
|
-
'NewEntitiesGroup': grpc.unary_unary_rpc_method_handler(
|
|
256
|
-
servicer.NewEntitiesGroup,
|
|
257
|
-
request_deserializer=nucliadb__protos_dot_writer__pb2.NewEntitiesGroupRequest.FromString,
|
|
258
|
-
response_serializer=nucliadb__protos_dot_writer__pb2.NewEntitiesGroupResponse.SerializeToString,
|
|
259
|
-
),
|
|
260
211
|
'GetEntities': grpc.unary_unary_rpc_method_handler(
|
|
261
212
|
servicer.GetEntities,
|
|
262
213
|
request_deserializer=nucliadb__protos_dot_writer__pb2.GetEntitiesRequest.FromString,
|
|
@@ -272,21 +223,6 @@ def add_WriterServicer_to_server(servicer, server):
|
|
|
272
223
|
request_deserializer=nucliadb__protos_dot_writer__pb2.ListEntitiesGroupsRequest.FromString,
|
|
273
224
|
response_serializer=nucliadb__protos_dot_writer__pb2.ListEntitiesGroupsResponse.SerializeToString,
|
|
274
225
|
),
|
|
275
|
-
'SetEntities': grpc.unary_unary_rpc_method_handler(
|
|
276
|
-
servicer.SetEntities,
|
|
277
|
-
request_deserializer=nucliadb__protos_dot_writer__pb2.SetEntitiesRequest.FromString,
|
|
278
|
-
response_serializer=nucliadb__protos_dot_writer__pb2.OpStatusWriter.SerializeToString,
|
|
279
|
-
),
|
|
280
|
-
'UpdateEntitiesGroup': grpc.unary_unary_rpc_method_handler(
|
|
281
|
-
servicer.UpdateEntitiesGroup,
|
|
282
|
-
request_deserializer=nucliadb__protos_dot_writer__pb2.UpdateEntitiesGroupRequest.FromString,
|
|
283
|
-
response_serializer=nucliadb__protos_dot_writer__pb2.UpdateEntitiesGroupResponse.SerializeToString,
|
|
284
|
-
),
|
|
285
|
-
'DelEntities': grpc.unary_unary_rpc_method_handler(
|
|
286
|
-
servicer.DelEntities,
|
|
287
|
-
request_deserializer=nucliadb__protos_dot_writer__pb2.DelEntitiesRequest.FromString,
|
|
288
|
-
response_serializer=nucliadb__protos_dot_writer__pb2.OpStatusWriter.SerializeToString,
|
|
289
|
-
),
|
|
290
226
|
'Status': grpc.unary_unary_rpc_method_handler(
|
|
291
227
|
servicer.Status,
|
|
292
228
|
request_deserializer=nucliadb__protos_dot_writer__pb2.WriterStatusRequest.FromString,
|
|
@@ -436,33 +372,6 @@ class Writer(object):
|
|
|
436
372
|
metadata,
|
|
437
373
|
_registered_method=True)
|
|
438
374
|
|
|
439
|
-
@staticmethod
|
|
440
|
-
def NewEntitiesGroup(request,
|
|
441
|
-
target,
|
|
442
|
-
options=(),
|
|
443
|
-
channel_credentials=None,
|
|
444
|
-
call_credentials=None,
|
|
445
|
-
insecure=False,
|
|
446
|
-
compression=None,
|
|
447
|
-
wait_for_ready=None,
|
|
448
|
-
timeout=None,
|
|
449
|
-
metadata=None):
|
|
450
|
-
return grpc.experimental.unary_unary(
|
|
451
|
-
request,
|
|
452
|
-
target,
|
|
453
|
-
'/fdbwriter.Writer/NewEntitiesGroup',
|
|
454
|
-
nucliadb__protos_dot_writer__pb2.NewEntitiesGroupRequest.SerializeToString,
|
|
455
|
-
nucliadb__protos_dot_writer__pb2.NewEntitiesGroupResponse.FromString,
|
|
456
|
-
options,
|
|
457
|
-
channel_credentials,
|
|
458
|
-
insecure,
|
|
459
|
-
call_credentials,
|
|
460
|
-
compression,
|
|
461
|
-
wait_for_ready,
|
|
462
|
-
timeout,
|
|
463
|
-
metadata,
|
|
464
|
-
_registered_method=True)
|
|
465
|
-
|
|
466
375
|
@staticmethod
|
|
467
376
|
def GetEntities(request,
|
|
468
377
|
target,
|
|
@@ -544,87 +453,6 @@ class Writer(object):
|
|
|
544
453
|
metadata,
|
|
545
454
|
_registered_method=True)
|
|
546
455
|
|
|
547
|
-
@staticmethod
|
|
548
|
-
def SetEntities(request,
|
|
549
|
-
target,
|
|
550
|
-
options=(),
|
|
551
|
-
channel_credentials=None,
|
|
552
|
-
call_credentials=None,
|
|
553
|
-
insecure=False,
|
|
554
|
-
compression=None,
|
|
555
|
-
wait_for_ready=None,
|
|
556
|
-
timeout=None,
|
|
557
|
-
metadata=None):
|
|
558
|
-
return grpc.experimental.unary_unary(
|
|
559
|
-
request,
|
|
560
|
-
target,
|
|
561
|
-
'/fdbwriter.Writer/SetEntities',
|
|
562
|
-
nucliadb__protos_dot_writer__pb2.SetEntitiesRequest.SerializeToString,
|
|
563
|
-
nucliadb__protos_dot_writer__pb2.OpStatusWriter.FromString,
|
|
564
|
-
options,
|
|
565
|
-
channel_credentials,
|
|
566
|
-
insecure,
|
|
567
|
-
call_credentials,
|
|
568
|
-
compression,
|
|
569
|
-
wait_for_ready,
|
|
570
|
-
timeout,
|
|
571
|
-
metadata,
|
|
572
|
-
_registered_method=True)
|
|
573
|
-
|
|
574
|
-
@staticmethod
|
|
575
|
-
def UpdateEntitiesGroup(request,
|
|
576
|
-
target,
|
|
577
|
-
options=(),
|
|
578
|
-
channel_credentials=None,
|
|
579
|
-
call_credentials=None,
|
|
580
|
-
insecure=False,
|
|
581
|
-
compression=None,
|
|
582
|
-
wait_for_ready=None,
|
|
583
|
-
timeout=None,
|
|
584
|
-
metadata=None):
|
|
585
|
-
return grpc.experimental.unary_unary(
|
|
586
|
-
request,
|
|
587
|
-
target,
|
|
588
|
-
'/fdbwriter.Writer/UpdateEntitiesGroup',
|
|
589
|
-
nucliadb__protos_dot_writer__pb2.UpdateEntitiesGroupRequest.SerializeToString,
|
|
590
|
-
nucliadb__protos_dot_writer__pb2.UpdateEntitiesGroupResponse.FromString,
|
|
591
|
-
options,
|
|
592
|
-
channel_credentials,
|
|
593
|
-
insecure,
|
|
594
|
-
call_credentials,
|
|
595
|
-
compression,
|
|
596
|
-
wait_for_ready,
|
|
597
|
-
timeout,
|
|
598
|
-
metadata,
|
|
599
|
-
_registered_method=True)
|
|
600
|
-
|
|
601
|
-
@staticmethod
|
|
602
|
-
def DelEntities(request,
|
|
603
|
-
target,
|
|
604
|
-
options=(),
|
|
605
|
-
channel_credentials=None,
|
|
606
|
-
call_credentials=None,
|
|
607
|
-
insecure=False,
|
|
608
|
-
compression=None,
|
|
609
|
-
wait_for_ready=None,
|
|
610
|
-
timeout=None,
|
|
611
|
-
metadata=None):
|
|
612
|
-
return grpc.experimental.unary_unary(
|
|
613
|
-
request,
|
|
614
|
-
target,
|
|
615
|
-
'/fdbwriter.Writer/DelEntities',
|
|
616
|
-
nucliadb__protos_dot_writer__pb2.DelEntitiesRequest.SerializeToString,
|
|
617
|
-
nucliadb__protos_dot_writer__pb2.OpStatusWriter.FromString,
|
|
618
|
-
options,
|
|
619
|
-
channel_credentials,
|
|
620
|
-
insecure,
|
|
621
|
-
call_credentials,
|
|
622
|
-
compression,
|
|
623
|
-
wait_for_ready,
|
|
624
|
-
timeout,
|
|
625
|
-
metadata,
|
|
626
|
-
_registered_method=True)
|
|
627
|
-
|
|
628
456
|
@staticmethod
|
|
629
457
|
def Status(request,
|
|
630
458
|
target,
|