Public Member Functions | |
def | __init__ (self, name, full_name, index, methods, options=None, serialized_options=None, file=None, serialized_start=None, serialized_end=None) |
def | __init__ (self, name, full_name, index, methods, options=None, serialized_options=None, file=None, serialized_start=None, serialized_end=None, create_key=None) |
def | __new__ (cls, name, full_name, index, methods, options=None, serialized_options=None, file=None, serialized_start=None, serialized_end=None) |
def | __new__ (cls, name=None, full_name=None, index=None, methods=None, options=None, serialized_options=None, file=None, serialized_start=None, serialized_end=None, create_key=None) |
def | CopyToProto (self, proto) |
def | CopyToProto (self, proto) |
def | FindMethodByName (self, name) |
def | FindMethodByName (self, name) |
![]() | |
def | __init__ (self, options, serialized_options, options_class_name) |
def | __init__ (self, options, serialized_options, options_class_name) |
def | GetOptions (self) |
def | GetOptions (self) |
![]() | |
def | __instancecheck__ (cls, obj) |
def | __instancecheck__ (cls, obj) |
Public Attributes | |
index | |
methods | |
methods_by_name | |
![]() | |
containing_type | |
file | |
full_name | |
name | |
![]() | |
has_options | |
Static Private Attributes | |
_C_DESCRIPTOR_CLASS = _message.ServiceDescriptor | |
Descriptor for a service. name: (str) Name of the service. full_name: (str) Full name of the service, including package name. index: (int) 0-indexed index giving the order that this services definition appears withing the .proto file. methods: (list of MethodDescriptor) List of methods provided by this service. methods_by_name: (dict str -> MethodDescriptor) Same MethodDescriptor objects as in |methods_by_name|, but indexed by "name" attribute in each MethodDescriptor. options: (descriptor_pb2.ServiceOptions) Service options message or None to use default service options. file: (FileDescriptor) Reference to file info.
Descriptor for a service. Attributes: name (str): Name of the service. full_name (str): Full name of the service, including package name. index (int): 0-indexed index giving the order that this services definition appears within the .proto file. methods (list[MethodDescriptor]): List of methods provided by this service. methods_by_name (dict(str, MethodDescriptor)): Same :class:`MethodDescriptor` objects as in :attr:`methods_by_name`, but indexed by "name" attribute in each :class:`MethodDescriptor`. options (descriptor_pb2.ServiceOptions): Service options message or None to use default service options. file (FileDescriptor): Reference to file info.
Definition at line 749 of file bloaty/third_party/protobuf/python/google/protobuf/descriptor.py.
def google.protobuf.descriptor.ServiceDescriptor.__init__ | ( | self, | |
options, | |||
options_class_name, | |||
name, | |||
full_name, | |||
file = None , |
|||
containing_type = None , |
|||
serialized_start = None , |
|||
serialized_end = None , |
|||
serialized_options = None |
|||
) |
Constructor. Args: options: Protocol message options or None to use default message options. options_class_name: (str) The class name of the above options. name: (str) Name of this protocol message type. full_name: (str) Fully-qualified name of this protocol message type, which will include protocol "package" name and the name of any enclosing types. file: (FileDescriptor) Reference to file info. containing_type: if provided, this is a nested descriptor, with this descriptor as parent, otherwise None. serialized_start: The start index (inclusive) in block in the file.serialized_pb that describes this descriptor. serialized_end: The end index (exclusive) in block in the file.serialized_pb that describes this descriptor. serialized_options: Protocol message serilized options or None.
Reimplemented from google.protobuf.descriptor._NestedDescriptorBase.
Definition at line 776 of file bloaty/third_party/protobuf/python/google/protobuf/descriptor.py.
def google.protobuf.descriptor.ServiceDescriptor.__init__ | ( | self, | |
name, | |||
full_name, | |||
index, | |||
methods, | |||
options = None , |
|||
serialized_options = None , |
|||
file = None , |
|||
serialized_start = None , |
|||
serialized_end = None , |
|||
create_key = None |
|||
) |
Definition at line 830 of file protobuf/python/google/protobuf/descriptor.py.
def google.protobuf.descriptor.ServiceDescriptor.__new__ | ( | cls, | |
name, | |||
full_name, | |||
index, | |||
methods, | |||
options = None , |
|||
serialized_options = None , |
|||
file = None , |
|||
serialized_start = None , |
|||
serialized_end = None |
|||
) |
Definition at line 770 of file bloaty/third_party/protobuf/python/google/protobuf/descriptor.py.
def google.protobuf.descriptor.ServiceDescriptor.__new__ | ( | cls, | |
name = None , |
|||
full_name = None , |
|||
index = None , |
|||
methods = None , |
|||
options = None , |
|||
serialized_options = None , |
|||
file = None , |
|||
serialized_start = None , |
|||
serialized_end = None , |
|||
create_key = None |
|||
) |
Definition at line 815 of file protobuf/python/google/protobuf/descriptor.py.
def google.protobuf.descriptor.ServiceDescriptor.CopyToProto | ( | self, | |
proto | |||
) |
Copies this to a descriptor_pb2.ServiceDescriptorProto. Args: proto: An empty descriptor_pb2.ServiceDescriptorProto.
Reimplemented from google.protobuf.descriptor._NestedDescriptorBase.
Definition at line 794 of file bloaty/third_party/protobuf/python/google/protobuf/descriptor.py.
def google.protobuf.descriptor.ServiceDescriptor.CopyToProto | ( | self, | |
proto | |||
) |
Copies this to a descriptor_pb2.ServiceDescriptorProto. Args: proto (descriptor_pb2.ServiceDescriptorProto): An empty descriptor proto.
Reimplemented from google.protobuf.descriptor._NestedDescriptorBase.
Definition at line 858 of file protobuf/python/google/protobuf/descriptor.py.
def google.protobuf.descriptor.ServiceDescriptor.FindMethodByName | ( | self, | |
name | |||
) |
Searches for the specified method, and returns its descriptor.
Definition at line 790 of file bloaty/third_party/protobuf/python/google/protobuf/descriptor.py.
def google.protobuf.descriptor.ServiceDescriptor.FindMethodByName | ( | self, | |
name | |||
) |
Searches for the specified method, and returns its descriptor. Args: name (str): Name of the method. Returns: MethodDescriptor or None: the descriptor for the requested method, if found.
Definition at line 847 of file protobuf/python/google/protobuf/descriptor.py.
|
staticprivate |
Definition at line 768 of file bloaty/third_party/protobuf/python/google/protobuf/descriptor.py.
google.protobuf.descriptor.ServiceDescriptor.index |
Definition at line 781 of file bloaty/third_party/protobuf/python/google/protobuf/descriptor.py.
google.protobuf.descriptor.ServiceDescriptor.methods |
Definition at line 782 of file bloaty/third_party/protobuf/python/google/protobuf/descriptor.py.
google.protobuf.descriptor.ServiceDescriptor.methods_by_name |
Definition at line 783 of file bloaty/third_party/protobuf/python/google/protobuf/descriptor.py.