Config¶
Leafs
Enum Classes
-
class
System.GrpcServer.
Config
¶ Bases:
Entity
Class Hierarchy:
System
GrpcServer
Config
This class represents configuration data.
Configuration data for the system gRPC server
-
enable
¶ Enables the gRPC server. The gRPC server is enabled by default
type: bool
default value: true
-
port
¶ TCP port on which the gRPC server should listen
type: int
range: 0..65535
-
transport_security
¶ Enables gRPC transport security (e.g., TLS or SSL)
type: bool
-
certificate_id
¶ The certificate ID to be used for authentication
type: str
-
listen_addresses
¶ The IP addresses that the gRPC server should listen on. This may be an IPv4 or an IPv6 address
type: union of the below types:
type: list of str
pattern: ^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$type: list of str
pattern: ^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:))$type: list of
ListenAddresses
-