|
| 1 | +""" |
| 2 | +@generated by mypy-protobuf. Do not edit manually! |
| 3 | +isort:skip_file |
| 4 | +""" |
| 5 | +import builtins |
| 6 | +import google.protobuf.descriptor |
| 7 | +import google.protobuf.message |
| 8 | +import sys |
| 9 | + |
| 10 | +if sys.version_info >= (3, 8): |
| 11 | + import typing as typing_extensions |
| 12 | +else: |
| 13 | + import typing_extensions |
| 14 | + |
| 15 | +DESCRIPTOR: google.protobuf.descriptor.FileDescriptor |
| 16 | + |
| 17 | +@typing_extensions.final |
| 18 | +class WifiMultiApGetResponse(google.protobuf.message.Message): |
| 19 | + """Details about MultiAP as returned by the 'WifiMultiApGet' endpoint.""" |
| 20 | + |
| 21 | + DESCRIPTOR: google.protobuf.descriptor.Descriptor |
| 22 | + |
| 23 | + ENABLED_FIELD_NUMBER: builtins.int |
| 24 | + CONTROLLER_ID_FIELD_NUMBER: builtins.int |
| 25 | + CONTROLLER_IP_FIELD_NUMBER: builtins.int |
| 26 | + enabled: builtins.bool |
| 27 | + """Describes if the MultiAP functionality is enabled in the device.""" |
| 28 | + controller_id: builtins.str |
| 29 | + """The id of the mesh controller, in form of its MAC address, |
| 30 | + if a mesh controller is known to the device. |
| 31 | + If the device is not aware of a mesh controller, e.g. because |
| 32 | + none has been elected yet, it is left empty. |
| 33 | +
|
| 34 | + The MAC address is represented as a string of 12 hexadecimal |
| 35 | + digits (digits 0-9, letters A-F or a-f) displayed as six pairs of |
| 36 | + digits separated by colons. |
| 37 | + """ |
| 38 | + controller_ip: builtins.str |
| 39 | + """The IP address of the known mesh controller, if the implementation |
| 40 | + provides it. |
| 41 | + If the device is not aware of a mesh controller or doesn't |
| 42 | + know its IP, it is left empty. |
| 43 | +
|
| 44 | + The IP can be an IPv4 in dot-separated decimal format, or an IPv6 |
| 45 | + in colon-separated hexadecimal format. In case multiple IPs are |
| 46 | + known, the value can be a comma-separated string of either formats. |
| 47 | + Also, an IP can optionally be prefixed with an identifier separated |
| 48 | + from the IP with a semicolon. |
| 49 | + """ |
| 50 | + def __init__( |
| 51 | + self, |
| 52 | + *, |
| 53 | + enabled: builtins.bool = ..., |
| 54 | + controller_id: builtins.str = ..., |
| 55 | + controller_ip: builtins.str = ..., |
| 56 | + ) -> None: ... |
| 57 | + def ClearField(self, field_name: typing_extensions.Literal["controller_id", b"controller_id", "controller_ip", b"controller_ip", "enabled", b"enabled"]) -> None: ... |
| 58 | + |
| 59 | +global___WifiMultiApGetResponse = WifiMultiApGetResponse |
0 commit comments