flwr 1.13.1__py3-none-any.whl → 1.15.0__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.
- flwr/cli/app.py +5 -0
- flwr/cli/auth_plugin/__init__.py +31 -0
- flwr/cli/auth_plugin/oidc_cli_plugin.py +150 -0
- flwr/cli/build.py +1 -0
- flwr/cli/cli_user_auth_interceptor.py +90 -0
- flwr/cli/config_utils.py +43 -149
- flwr/cli/constant.py +27 -0
- flwr/cli/example.py +1 -0
- flwr/cli/install.py +2 -1
- flwr/cli/log.py +34 -37
- flwr/cli/login/__init__.py +22 -0
- flwr/cli/login/login.py +116 -0
- flwr/cli/ls.py +214 -106
- flwr/cli/new/__init__.py +1 -0
- flwr/cli/new/new.py +2 -1
- flwr/cli/new/templates/app/.gitignore.tpl +3 -0
- flwr/cli/new/templates/app/README.md.tpl +3 -2
- flwr/cli/new/templates/app/pyproject.baseline.toml.tpl +4 -4
- flwr/cli/new/templates/app/pyproject.flowertune.toml.tpl +4 -4
- flwr/cli/new/templates/app/pyproject.huggingface.toml.tpl +4 -4
- flwr/cli/new/templates/app/pyproject.jax.toml.tpl +2 -2
- flwr/cli/new/templates/app/pyproject.mlx.toml.tpl +3 -4
- flwr/cli/new/templates/app/pyproject.numpy.toml.tpl +2 -2
- flwr/cli/new/templates/app/pyproject.pytorch.toml.tpl +4 -4
- flwr/cli/new/templates/app/pyproject.sklearn.toml.tpl +3 -3
- flwr/cli/new/templates/app/pyproject.tensorflow.toml.tpl +2 -2
- flwr/cli/run/__init__.py +1 -0
- flwr/cli/run/run.py +103 -43
- flwr/cli/stop.py +139 -0
- flwr/cli/utils.py +186 -8
- flwr/client/app.py +49 -50
- flwr/client/client.py +1 -32
- flwr/client/clientapp/app.py +23 -26
- flwr/client/clientapp/utils.py +2 -1
- flwr/client/grpc_adapter_client/connection.py +1 -1
- flwr/client/grpc_client/connection.py +2 -13
- flwr/client/grpc_rere_client/client_interceptor.py +19 -119
- flwr/client/grpc_rere_client/connection.py +59 -43
- flwr/client/grpc_rere_client/grpc_adapter.py +12 -12
- flwr/client/message_handler/message_handler.py +1 -2
- flwr/client/message_handler/task_handler.py +0 -17
- flwr/client/mod/comms_mods.py +1 -0
- flwr/client/mod/localdp_mod.py +1 -1
- flwr/client/nodestate/__init__.py +1 -0
- flwr/client/nodestate/nodestate.py +1 -0
- flwr/client/nodestate/nodestate_factory.py +1 -0
- flwr/client/numpy_client.py +0 -44
- flwr/client/rest_client/connection.py +37 -29
- flwr/client/supernode/app.py +20 -74
- flwr/common/address.py +1 -0
- flwr/common/args.py +26 -47
- flwr/common/auth_plugin/__init__.py +24 -0
- flwr/common/auth_plugin/auth_plugin.py +122 -0
- flwr/common/config.py +169 -17
- flwr/common/constant.py +38 -9
- flwr/common/differential_privacy.py +2 -1
- flwr/common/exit/__init__.py +24 -0
- flwr/common/exit/exit.py +99 -0
- flwr/common/exit/exit_code.py +93 -0
- flwr/common/exit_handlers.py +24 -10
- flwr/common/grpc.py +167 -4
- flwr/common/logger.py +66 -7
- flwr/common/message.py +1 -0
- flwr/common/object_ref.py +57 -54
- flwr/common/pyproject.py +1 -0
- flwr/common/record/__init__.py +1 -0
- flwr/common/record/parametersrecord.py +1 -0
- flwr/common/record/recordset.py +1 -1
- flwr/common/retry_invoker.py +77 -0
- flwr/common/secure_aggregation/crypto/symmetric_encryption.py +45 -0
- flwr/common/secure_aggregation/secaggplus_utils.py +2 -2
- flwr/common/serde.py +6 -4
- flwr/common/telemetry.py +15 -4
- flwr/common/typing.py +32 -0
- flwr/common/version.py +1 -0
- flwr/proto/clientappio_pb2.py +1 -1
- flwr/proto/error_pb2.py +1 -1
- flwr/proto/exec_pb2.py +27 -15
- flwr/proto/exec_pb2.pyi +80 -2
- flwr/proto/exec_pb2_grpc.py +102 -0
- flwr/proto/exec_pb2_grpc.pyi +39 -0
- flwr/proto/fab_pb2.py +5 -5
- flwr/proto/fab_pb2.pyi +4 -1
- flwr/proto/fleet_pb2.py +31 -31
- flwr/proto/fleet_pb2.pyi +23 -23
- flwr/proto/fleet_pb2_grpc.py +30 -30
- flwr/proto/fleet_pb2_grpc.pyi +20 -20
- flwr/proto/grpcadapter_pb2.py +1 -1
- flwr/proto/log_pb2.py +1 -1
- flwr/proto/message_pb2.py +1 -1
- flwr/proto/node_pb2.py +3 -3
- flwr/proto/node_pb2.pyi +1 -4
- flwr/proto/recordset_pb2.py +1 -1
- flwr/proto/run_pb2.py +1 -1
- flwr/proto/serverappio_pb2.py +24 -25
- flwr/proto/serverappio_pb2.pyi +32 -32
- flwr/proto/serverappio_pb2_grpc.py +62 -28
- flwr/proto/serverappio_pb2_grpc.pyi +29 -16
- flwr/proto/simulationio_pb2.py +3 -3
- flwr/proto/simulationio_pb2_grpc.py +34 -0
- flwr/proto/simulationio_pb2_grpc.pyi +13 -0
- flwr/proto/task_pb2.py +1 -1
- flwr/proto/transport_pb2.py +1 -1
- flwr/server/app.py +152 -112
- flwr/server/compat/app_utils.py +7 -2
- flwr/server/compat/driver_client_proxy.py +1 -2
- flwr/server/driver/grpc_driver.py +38 -85
- flwr/server/driver/inmemory_driver.py +7 -2
- flwr/server/run_serverapp.py +8 -9
- flwr/server/serverapp/app.py +37 -13
- flwr/server/strategy/dpfedavg_fixed.py +1 -0
- flwr/server/superlink/driver/serverappio_grpc.py +2 -1
- flwr/server/superlink/driver/serverappio_servicer.py +148 -63
- flwr/server/superlink/ffs/disk_ffs.py +1 -0
- flwr/server/superlink/fleet/grpc_adapter/grpc_adapter_servicer.py +20 -87
- flwr/server/superlink/fleet/grpc_bidi/flower_service_servicer.py +1 -0
- flwr/server/superlink/fleet/grpc_bidi/grpc_server.py +2 -165
- flwr/server/superlink/fleet/grpc_rere/fleet_servicer.py +56 -35
- flwr/server/superlink/fleet/grpc_rere/server_interceptor.py +99 -169
- flwr/server/superlink/fleet/message_handler/message_handler.py +69 -29
- flwr/server/superlink/fleet/rest_rere/rest_api.py +20 -19
- flwr/server/superlink/fleet/vce/__init__.py +1 -0
- flwr/server/superlink/fleet/vce/backend/__init__.py +1 -0
- flwr/server/superlink/fleet/vce/backend/raybackend.py +1 -0
- flwr/server/superlink/fleet/vce/vce_api.py +2 -2
- flwr/server/superlink/linkstate/in_memory_linkstate.py +60 -99
- flwr/server/superlink/linkstate/linkstate.py +30 -36
- flwr/server/superlink/linkstate/sqlite_linkstate.py +105 -188
- flwr/server/superlink/linkstate/utils.py +18 -8
- flwr/server/superlink/simulation/simulationio_grpc.py +1 -1
- flwr/server/superlink/simulation/simulationio_servicer.py +33 -0
- flwr/server/superlink/utils.py +65 -0
- flwr/server/utils/validator.py +9 -34
- flwr/simulation/app.py +20 -10
- flwr/simulation/legacy_app.py +4 -2
- flwr/simulation/ray_transport/ray_actor.py +1 -0
- flwr/simulation/ray_transport/utils.py +1 -0
- flwr/simulation/run_simulation.py +36 -22
- flwr/simulation/simulationio_connection.py +5 -1
- flwr/superexec/app.py +1 -0
- flwr/superexec/deployment.py +1 -0
- flwr/superexec/exec_grpc.py +20 -2
- flwr/superexec/exec_servicer.py +97 -2
- flwr/superexec/exec_user_auth_interceptor.py +101 -0
- flwr/superexec/executor.py +1 -0
- {flwr-1.13.1.dist-info → flwr-1.15.0.dist-info}/METADATA +14 -13
- {flwr-1.13.1.dist-info → flwr-1.15.0.dist-info}/RECORD +150 -144
- flwr/proto/common_pb2.py +0 -36
- flwr/proto/common_pb2.pyi +0 -121
- flwr/proto/common_pb2_grpc.py +0 -4
- flwr/proto/common_pb2_grpc.pyi +0 -4
- flwr/proto/control_pb2.py +0 -27
- flwr/proto/control_pb2.pyi +0 -7
- flwr/proto/control_pb2_grpc.py +0 -135
- flwr/proto/control_pb2_grpc.pyi +0 -53
- {flwr-1.13.1.dist-info → flwr-1.15.0.dist-info}/LICENSE +0 -0
- {flwr-1.13.1.dist-info → flwr-1.15.0.dist-info}/WHEEL +0 -0
- {flwr-1.13.1.dist-info → flwr-1.15.0.dist-info}/entry_points.txt +0 -0
flwr/proto/fleet_pb2.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: flwr/proto/fleet.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
5
|
"""Generated protocol buffer code."""
|
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
@@ -13,44 +13,44 @@ _sym_db = _symbol_database.Default()
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
from flwr.proto import node_pb2 as flwr_dot_proto_dot_node__pb2
|
|
16
|
-
from flwr.proto import task_pb2 as flwr_dot_proto_dot_task__pb2
|
|
17
16
|
from flwr.proto import run_pb2 as flwr_dot_proto_dot_run__pb2
|
|
18
17
|
from flwr.proto import fab_pb2 as flwr_dot_proto_dot_fab__pb2
|
|
18
|
+
from flwr.proto import message_pb2 as flwr_dot_proto_dot_message__pb2
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16\x66lwr/proto/fleet.proto\x12\nflwr.proto\x1a\x15\x66lwr/proto/node.proto\x1a\
|
|
21
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16\x66lwr/proto/fleet.proto\x12\nflwr.proto\x1a\x15\x66lwr/proto/node.proto\x1a\x14\x66lwr/proto/run.proto\x1a\x14\x66lwr/proto/fab.proto\x1a\x18\x66lwr/proto/message.proto\"*\n\x11\x43reateNodeRequest\x12\x15\n\rping_interval\x18\x01 \x01(\x01\"4\n\x12\x43reateNodeResponse\x12\x1e\n\x04node\x18\x01 \x01(\x0b\x32\x10.flwr.proto.Node\"3\n\x11\x44\x65leteNodeRequest\x12\x1e\n\x04node\x18\x01 \x01(\x0b\x32\x10.flwr.proto.Node\"\x14\n\x12\x44\x65leteNodeResponse\"D\n\x0bPingRequest\x12\x1e\n\x04node\x18\x01 \x01(\x0b\x32\x10.flwr.proto.Node\x12\x15\n\rping_interval\x18\x02 \x01(\x01\"\x1f\n\x0cPingResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\"J\n\x13PullMessagesRequest\x12\x1e\n\x04node\x18\x01 \x01(\x0b\x32\x10.flwr.proto.Node\x12\x13\n\x0bmessage_ids\x18\x02 \x03(\t\"l\n\x14PullMessagesResponse\x12(\n\treconnect\x18\x01 \x01(\x0b\x32\x15.flwr.proto.Reconnect\x12*\n\rmessages_list\x18\x02 \x03(\x0b\x32\x13.flwr.proto.Message\"a\n\x13PushMessagesRequest\x12\x1e\n\x04node\x18\x01 \x01(\x0b\x32\x10.flwr.proto.Node\x12*\n\rmessages_list\x18\x02 \x03(\x0b\x32\x13.flwr.proto.Message\"\xb0\x01\n\x14PushMessagesResponse\x12(\n\treconnect\x18\x01 \x01(\x0b\x32\x15.flwr.proto.Reconnect\x12>\n\x07results\x18\x02 \x03(\x0b\x32-.flwr.proto.PushMessagesResponse.ResultsEntry\x1a.\n\x0cResultsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\r:\x02\x38\x01\"\x1e\n\tReconnect\x12\x11\n\treconnect\x18\x01 \x01(\x04\x32\x92\x04\n\x05\x46leet\x12M\n\nCreateNode\x12\x1d.flwr.proto.CreateNodeRequest\x1a\x1e.flwr.proto.CreateNodeResponse\"\x00\x12M\n\nDeleteNode\x12\x1d.flwr.proto.DeleteNodeRequest\x1a\x1e.flwr.proto.DeleteNodeResponse\"\x00\x12;\n\x04Ping\x12\x17.flwr.proto.PingRequest\x1a\x18.flwr.proto.PingResponse\"\x00\x12S\n\x0cPullMessages\x12\x1f.flwr.proto.PullMessagesRequest\x1a .flwr.proto.PullMessagesResponse\"\x00\x12S\n\x0cPushMessages\x12\x1f.flwr.proto.PushMessagesRequest\x1a .flwr.proto.PushMessagesResponse\"\x00\x12\x41\n\x06GetRun\x12\x19.flwr.proto.GetRunRequest\x1a\x1a.flwr.proto.GetRunResponse\"\x00\x12\x41\n\x06GetFab\x12\x19.flwr.proto.GetFabRequest\x1a\x1a.flwr.proto.GetFabResponse\"\x00\x62\x06proto3')
|
|
22
22
|
|
|
23
23
|
_globals = globals()
|
|
24
24
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
25
25
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'flwr.proto.fleet_pb2', _globals)
|
|
26
26
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
27
27
|
DESCRIPTOR._options = None
|
|
28
|
-
_globals['
|
|
29
|
-
_globals['
|
|
30
|
-
_globals['_CREATENODEREQUEST']._serialized_start=
|
|
31
|
-
_globals['_CREATENODEREQUEST']._serialized_end=
|
|
32
|
-
_globals['_CREATENODERESPONSE']._serialized_start=
|
|
33
|
-
_globals['_CREATENODERESPONSE']._serialized_end=
|
|
34
|
-
_globals['_DELETENODEREQUEST']._serialized_start=
|
|
35
|
-
_globals['_DELETENODEREQUEST']._serialized_end=
|
|
36
|
-
_globals['_DELETENODERESPONSE']._serialized_start=
|
|
37
|
-
_globals['_DELETENODERESPONSE']._serialized_end=
|
|
38
|
-
_globals['_PINGREQUEST']._serialized_start=
|
|
39
|
-
_globals['_PINGREQUEST']._serialized_end=
|
|
40
|
-
_globals['_PINGRESPONSE']._serialized_start=
|
|
41
|
-
_globals['_PINGRESPONSE']._serialized_end=
|
|
42
|
-
_globals['
|
|
43
|
-
_globals['
|
|
44
|
-
_globals['
|
|
45
|
-
_globals['
|
|
46
|
-
_globals['
|
|
47
|
-
_globals['
|
|
48
|
-
_globals['
|
|
49
|
-
_globals['
|
|
50
|
-
_globals['
|
|
51
|
-
_globals['
|
|
52
|
-
_globals['_RECONNECT']._serialized_start=
|
|
53
|
-
_globals['_RECONNECT']._serialized_end=
|
|
54
|
-
_globals['_FLEET']._serialized_start=
|
|
55
|
-
_globals['_FLEET']._serialized_end=
|
|
28
|
+
_globals['_PUSHMESSAGESRESPONSE_RESULTSENTRY']._options = None
|
|
29
|
+
_globals['_PUSHMESSAGESRESPONSE_RESULTSENTRY']._serialized_options = b'8\001'
|
|
30
|
+
_globals['_CREATENODEREQUEST']._serialized_start=131
|
|
31
|
+
_globals['_CREATENODEREQUEST']._serialized_end=173
|
|
32
|
+
_globals['_CREATENODERESPONSE']._serialized_start=175
|
|
33
|
+
_globals['_CREATENODERESPONSE']._serialized_end=227
|
|
34
|
+
_globals['_DELETENODEREQUEST']._serialized_start=229
|
|
35
|
+
_globals['_DELETENODEREQUEST']._serialized_end=280
|
|
36
|
+
_globals['_DELETENODERESPONSE']._serialized_start=282
|
|
37
|
+
_globals['_DELETENODERESPONSE']._serialized_end=302
|
|
38
|
+
_globals['_PINGREQUEST']._serialized_start=304
|
|
39
|
+
_globals['_PINGREQUEST']._serialized_end=372
|
|
40
|
+
_globals['_PINGRESPONSE']._serialized_start=374
|
|
41
|
+
_globals['_PINGRESPONSE']._serialized_end=405
|
|
42
|
+
_globals['_PULLMESSAGESREQUEST']._serialized_start=407
|
|
43
|
+
_globals['_PULLMESSAGESREQUEST']._serialized_end=481
|
|
44
|
+
_globals['_PULLMESSAGESRESPONSE']._serialized_start=483
|
|
45
|
+
_globals['_PULLMESSAGESRESPONSE']._serialized_end=591
|
|
46
|
+
_globals['_PUSHMESSAGESREQUEST']._serialized_start=593
|
|
47
|
+
_globals['_PUSHMESSAGESREQUEST']._serialized_end=690
|
|
48
|
+
_globals['_PUSHMESSAGESRESPONSE']._serialized_start=693
|
|
49
|
+
_globals['_PUSHMESSAGESRESPONSE']._serialized_end=869
|
|
50
|
+
_globals['_PUSHMESSAGESRESPONSE_RESULTSENTRY']._serialized_start=823
|
|
51
|
+
_globals['_PUSHMESSAGESRESPONSE_RESULTSENTRY']._serialized_end=869
|
|
52
|
+
_globals['_RECONNECT']._serialized_start=871
|
|
53
|
+
_globals['_RECONNECT']._serialized_end=901
|
|
54
|
+
_globals['_FLEET']._serialized_start=904
|
|
55
|
+
_globals['_FLEET']._serialized_end=1434
|
|
56
56
|
# @@protoc_insertion_point(module_scope)
|
flwr/proto/fleet_pb2.pyi
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
isort:skip_file
|
|
4
4
|
"""
|
|
5
5
|
import builtins
|
|
6
|
+
import flwr.proto.message_pb2
|
|
6
7
|
import flwr.proto.node_pb2
|
|
7
|
-
import flwr.proto.task_pb2
|
|
8
8
|
import google.protobuf.descriptor
|
|
9
9
|
import google.protobuf.internal.containers
|
|
10
10
|
import google.protobuf.message
|
|
@@ -86,60 +86,60 @@ class PingResponse(google.protobuf.message.Message):
|
|
|
86
86
|
def ClearField(self, field_name: typing_extensions.Literal["success",b"success"]) -> None: ...
|
|
87
87
|
global___PingResponse = PingResponse
|
|
88
88
|
|
|
89
|
-
class
|
|
90
|
-
"""
|
|
89
|
+
class PullMessagesRequest(google.protobuf.message.Message):
|
|
90
|
+
"""PullMessages messages"""
|
|
91
91
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
92
92
|
NODE_FIELD_NUMBER: builtins.int
|
|
93
|
-
|
|
93
|
+
MESSAGE_IDS_FIELD_NUMBER: builtins.int
|
|
94
94
|
@property
|
|
95
95
|
def node(self) -> flwr.proto.node_pb2.Node: ...
|
|
96
96
|
@property
|
|
97
|
-
def
|
|
97
|
+
def message_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[typing.Text]: ...
|
|
98
98
|
def __init__(self,
|
|
99
99
|
*,
|
|
100
100
|
node: typing.Optional[flwr.proto.node_pb2.Node] = ...,
|
|
101
|
-
|
|
101
|
+
message_ids: typing.Optional[typing.Iterable[typing.Text]] = ...,
|
|
102
102
|
) -> None: ...
|
|
103
103
|
def HasField(self, field_name: typing_extensions.Literal["node",b"node"]) -> builtins.bool: ...
|
|
104
|
-
def ClearField(self, field_name: typing_extensions.Literal["
|
|
105
|
-
|
|
104
|
+
def ClearField(self, field_name: typing_extensions.Literal["message_ids",b"message_ids","node",b"node"]) -> None: ...
|
|
105
|
+
global___PullMessagesRequest = PullMessagesRequest
|
|
106
106
|
|
|
107
|
-
class
|
|
107
|
+
class PullMessagesResponse(google.protobuf.message.Message):
|
|
108
108
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
109
109
|
RECONNECT_FIELD_NUMBER: builtins.int
|
|
110
|
-
|
|
110
|
+
MESSAGES_LIST_FIELD_NUMBER: builtins.int
|
|
111
111
|
@property
|
|
112
112
|
def reconnect(self) -> global___Reconnect: ...
|
|
113
113
|
@property
|
|
114
|
-
def
|
|
114
|
+
def messages_list(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[flwr.proto.message_pb2.Message]: ...
|
|
115
115
|
def __init__(self,
|
|
116
116
|
*,
|
|
117
117
|
reconnect: typing.Optional[global___Reconnect] = ...,
|
|
118
|
-
|
|
118
|
+
messages_list: typing.Optional[typing.Iterable[flwr.proto.message_pb2.Message]] = ...,
|
|
119
119
|
) -> None: ...
|
|
120
120
|
def HasField(self, field_name: typing_extensions.Literal["reconnect",b"reconnect"]) -> builtins.bool: ...
|
|
121
|
-
def ClearField(self, field_name: typing_extensions.Literal["
|
|
122
|
-
|
|
121
|
+
def ClearField(self, field_name: typing_extensions.Literal["messages_list",b"messages_list","reconnect",b"reconnect"]) -> None: ...
|
|
122
|
+
global___PullMessagesResponse = PullMessagesResponse
|
|
123
123
|
|
|
124
|
-
class
|
|
125
|
-
"""
|
|
124
|
+
class PushMessagesRequest(google.protobuf.message.Message):
|
|
125
|
+
"""PushMessages messages"""
|
|
126
126
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
127
127
|
NODE_FIELD_NUMBER: builtins.int
|
|
128
|
-
|
|
128
|
+
MESSAGES_LIST_FIELD_NUMBER: builtins.int
|
|
129
129
|
@property
|
|
130
130
|
def node(self) -> flwr.proto.node_pb2.Node: ...
|
|
131
131
|
@property
|
|
132
|
-
def
|
|
132
|
+
def messages_list(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[flwr.proto.message_pb2.Message]: ...
|
|
133
133
|
def __init__(self,
|
|
134
134
|
*,
|
|
135
135
|
node: typing.Optional[flwr.proto.node_pb2.Node] = ...,
|
|
136
|
-
|
|
136
|
+
messages_list: typing.Optional[typing.Iterable[flwr.proto.message_pb2.Message]] = ...,
|
|
137
137
|
) -> None: ...
|
|
138
138
|
def HasField(self, field_name: typing_extensions.Literal["node",b"node"]) -> builtins.bool: ...
|
|
139
|
-
def ClearField(self, field_name: typing_extensions.Literal["
|
|
140
|
-
|
|
139
|
+
def ClearField(self, field_name: typing_extensions.Literal["messages_list",b"messages_list","node",b"node"]) -> None: ...
|
|
140
|
+
global___PushMessagesRequest = PushMessagesRequest
|
|
141
141
|
|
|
142
|
-
class
|
|
142
|
+
class PushMessagesResponse(google.protobuf.message.Message):
|
|
143
143
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
144
144
|
class ResultsEntry(google.protobuf.message.Message):
|
|
145
145
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -167,7 +167,7 @@ class PushTaskResResponse(google.protobuf.message.Message):
|
|
|
167
167
|
) -> None: ...
|
|
168
168
|
def HasField(self, field_name: typing_extensions.Literal["reconnect",b"reconnect"]) -> builtins.bool: ...
|
|
169
169
|
def ClearField(self, field_name: typing_extensions.Literal["reconnect",b"reconnect","results",b"results"]) -> None: ...
|
|
170
|
-
|
|
170
|
+
global___PushMessagesResponse = PushMessagesResponse
|
|
171
171
|
|
|
172
172
|
class Reconnect(google.protobuf.message.Message):
|
|
173
173
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
flwr/proto/fleet_pb2_grpc.py
CHANGED
|
@@ -31,15 +31,15 @@ class FleetStub(object):
|
|
|
31
31
|
request_serializer=flwr_dot_proto_dot_fleet__pb2.PingRequest.SerializeToString,
|
|
32
32
|
response_deserializer=flwr_dot_proto_dot_fleet__pb2.PingResponse.FromString,
|
|
33
33
|
)
|
|
34
|
-
self.
|
|
35
|
-
'/flwr.proto.Fleet/
|
|
36
|
-
request_serializer=flwr_dot_proto_dot_fleet__pb2.
|
|
37
|
-
response_deserializer=flwr_dot_proto_dot_fleet__pb2.
|
|
34
|
+
self.PullMessages = channel.unary_unary(
|
|
35
|
+
'/flwr.proto.Fleet/PullMessages',
|
|
36
|
+
request_serializer=flwr_dot_proto_dot_fleet__pb2.PullMessagesRequest.SerializeToString,
|
|
37
|
+
response_deserializer=flwr_dot_proto_dot_fleet__pb2.PullMessagesResponse.FromString,
|
|
38
38
|
)
|
|
39
|
-
self.
|
|
40
|
-
'/flwr.proto.Fleet/
|
|
41
|
-
request_serializer=flwr_dot_proto_dot_fleet__pb2.
|
|
42
|
-
response_deserializer=flwr_dot_proto_dot_fleet__pb2.
|
|
39
|
+
self.PushMessages = channel.unary_unary(
|
|
40
|
+
'/flwr.proto.Fleet/PushMessages',
|
|
41
|
+
request_serializer=flwr_dot_proto_dot_fleet__pb2.PushMessagesRequest.SerializeToString,
|
|
42
|
+
response_deserializer=flwr_dot_proto_dot_fleet__pb2.PushMessagesResponse.FromString,
|
|
43
43
|
)
|
|
44
44
|
self.GetRun = channel.unary_unary(
|
|
45
45
|
'/flwr.proto.Fleet/GetRun',
|
|
@@ -74,19 +74,19 @@ class FleetServicer(object):
|
|
|
74
74
|
context.set_details('Method not implemented!')
|
|
75
75
|
raise NotImplementedError('Method not implemented!')
|
|
76
76
|
|
|
77
|
-
def
|
|
78
|
-
"""Retrieve one or more
|
|
77
|
+
def PullMessages(self, request, context):
|
|
78
|
+
"""Retrieve one or more messages, if possible
|
|
79
79
|
|
|
80
|
-
HTTP API path: /api/v1/fleet/pull-
|
|
80
|
+
HTTP API path: /api/v1/fleet/pull-messages
|
|
81
81
|
"""
|
|
82
82
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
83
83
|
context.set_details('Method not implemented!')
|
|
84
84
|
raise NotImplementedError('Method not implemented!')
|
|
85
85
|
|
|
86
|
-
def
|
|
87
|
-
"""Complete one or more
|
|
86
|
+
def PushMessages(self, request, context):
|
|
87
|
+
"""Complete one or more messages, if possible
|
|
88
88
|
|
|
89
|
-
HTTP API path: /api/v1/fleet/push-
|
|
89
|
+
HTTP API path: /api/v1/fleet/push-messages
|
|
90
90
|
"""
|
|
91
91
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
92
92
|
context.set_details('Method not implemented!')
|
|
@@ -123,15 +123,15 @@ def add_FleetServicer_to_server(servicer, server):
|
|
|
123
123
|
request_deserializer=flwr_dot_proto_dot_fleet__pb2.PingRequest.FromString,
|
|
124
124
|
response_serializer=flwr_dot_proto_dot_fleet__pb2.PingResponse.SerializeToString,
|
|
125
125
|
),
|
|
126
|
-
'
|
|
127
|
-
servicer.
|
|
128
|
-
request_deserializer=flwr_dot_proto_dot_fleet__pb2.
|
|
129
|
-
response_serializer=flwr_dot_proto_dot_fleet__pb2.
|
|
126
|
+
'PullMessages': grpc.unary_unary_rpc_method_handler(
|
|
127
|
+
servicer.PullMessages,
|
|
128
|
+
request_deserializer=flwr_dot_proto_dot_fleet__pb2.PullMessagesRequest.FromString,
|
|
129
|
+
response_serializer=flwr_dot_proto_dot_fleet__pb2.PullMessagesResponse.SerializeToString,
|
|
130
130
|
),
|
|
131
|
-
'
|
|
132
|
-
servicer.
|
|
133
|
-
request_deserializer=flwr_dot_proto_dot_fleet__pb2.
|
|
134
|
-
response_serializer=flwr_dot_proto_dot_fleet__pb2.
|
|
131
|
+
'PushMessages': grpc.unary_unary_rpc_method_handler(
|
|
132
|
+
servicer.PushMessages,
|
|
133
|
+
request_deserializer=flwr_dot_proto_dot_fleet__pb2.PushMessagesRequest.FromString,
|
|
134
|
+
response_serializer=flwr_dot_proto_dot_fleet__pb2.PushMessagesResponse.SerializeToString,
|
|
135
135
|
),
|
|
136
136
|
'GetRun': grpc.unary_unary_rpc_method_handler(
|
|
137
137
|
servicer.GetRun,
|
|
@@ -205,7 +205,7 @@ class Fleet(object):
|
|
|
205
205
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
206
206
|
|
|
207
207
|
@staticmethod
|
|
208
|
-
def
|
|
208
|
+
def PullMessages(request,
|
|
209
209
|
target,
|
|
210
210
|
options=(),
|
|
211
211
|
channel_credentials=None,
|
|
@@ -215,14 +215,14 @@ class Fleet(object):
|
|
|
215
215
|
wait_for_ready=None,
|
|
216
216
|
timeout=None,
|
|
217
217
|
metadata=None):
|
|
218
|
-
return grpc.experimental.unary_unary(request, target, '/flwr.proto.Fleet/
|
|
219
|
-
flwr_dot_proto_dot_fleet__pb2.
|
|
220
|
-
flwr_dot_proto_dot_fleet__pb2.
|
|
218
|
+
return grpc.experimental.unary_unary(request, target, '/flwr.proto.Fleet/PullMessages',
|
|
219
|
+
flwr_dot_proto_dot_fleet__pb2.PullMessagesRequest.SerializeToString,
|
|
220
|
+
flwr_dot_proto_dot_fleet__pb2.PullMessagesResponse.FromString,
|
|
221
221
|
options, channel_credentials,
|
|
222
222
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
223
223
|
|
|
224
224
|
@staticmethod
|
|
225
|
-
def
|
|
225
|
+
def PushMessages(request,
|
|
226
226
|
target,
|
|
227
227
|
options=(),
|
|
228
228
|
channel_credentials=None,
|
|
@@ -232,9 +232,9 @@ class Fleet(object):
|
|
|
232
232
|
wait_for_ready=None,
|
|
233
233
|
timeout=None,
|
|
234
234
|
metadata=None):
|
|
235
|
-
return grpc.experimental.unary_unary(request, target, '/flwr.proto.Fleet/
|
|
236
|
-
flwr_dot_proto_dot_fleet__pb2.
|
|
237
|
-
flwr_dot_proto_dot_fleet__pb2.
|
|
235
|
+
return grpc.experimental.unary_unary(request, target, '/flwr.proto.Fleet/PushMessages',
|
|
236
|
+
flwr_dot_proto_dot_fleet__pb2.PushMessagesRequest.SerializeToString,
|
|
237
|
+
flwr_dot_proto_dot_fleet__pb2.PushMessagesResponse.FromString,
|
|
238
238
|
options, channel_credentials,
|
|
239
239
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
240
240
|
|
flwr/proto/fleet_pb2_grpc.pyi
CHANGED
|
@@ -22,20 +22,20 @@ class FleetStub:
|
|
|
22
22
|
flwr.proto.fleet_pb2.PingRequest,
|
|
23
23
|
flwr.proto.fleet_pb2.PingResponse]
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
flwr.proto.fleet_pb2.
|
|
27
|
-
flwr.proto.fleet_pb2.
|
|
28
|
-
"""Retrieve one or more
|
|
25
|
+
PullMessages: grpc.UnaryUnaryMultiCallable[
|
|
26
|
+
flwr.proto.fleet_pb2.PullMessagesRequest,
|
|
27
|
+
flwr.proto.fleet_pb2.PullMessagesResponse]
|
|
28
|
+
"""Retrieve one or more messages, if possible
|
|
29
29
|
|
|
30
|
-
HTTP API path: /api/v1/fleet/pull-
|
|
30
|
+
HTTP API path: /api/v1/fleet/pull-messages
|
|
31
31
|
"""
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
flwr.proto.fleet_pb2.
|
|
35
|
-
flwr.proto.fleet_pb2.
|
|
36
|
-
"""Complete one or more
|
|
33
|
+
PushMessages: grpc.UnaryUnaryMultiCallable[
|
|
34
|
+
flwr.proto.fleet_pb2.PushMessagesRequest,
|
|
35
|
+
flwr.proto.fleet_pb2.PushMessagesResponse]
|
|
36
|
+
"""Complete one or more messages, if possible
|
|
37
37
|
|
|
38
|
-
HTTP API path: /api/v1/fleet/push-
|
|
38
|
+
HTTP API path: /api/v1/fleet/push-messages
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
41
|
GetRun: grpc.UnaryUnaryMultiCallable[
|
|
@@ -68,24 +68,24 @@ class FleetServicer(metaclass=abc.ABCMeta):
|
|
|
68
68
|
) -> flwr.proto.fleet_pb2.PingResponse: ...
|
|
69
69
|
|
|
70
70
|
@abc.abstractmethod
|
|
71
|
-
def
|
|
72
|
-
request: flwr.proto.fleet_pb2.
|
|
71
|
+
def PullMessages(self,
|
|
72
|
+
request: flwr.proto.fleet_pb2.PullMessagesRequest,
|
|
73
73
|
context: grpc.ServicerContext,
|
|
74
|
-
) -> flwr.proto.fleet_pb2.
|
|
75
|
-
"""Retrieve one or more
|
|
74
|
+
) -> flwr.proto.fleet_pb2.PullMessagesResponse:
|
|
75
|
+
"""Retrieve one or more messages, if possible
|
|
76
76
|
|
|
77
|
-
HTTP API path: /api/v1/fleet/pull-
|
|
77
|
+
HTTP API path: /api/v1/fleet/pull-messages
|
|
78
78
|
"""
|
|
79
79
|
pass
|
|
80
80
|
|
|
81
81
|
@abc.abstractmethod
|
|
82
|
-
def
|
|
83
|
-
request: flwr.proto.fleet_pb2.
|
|
82
|
+
def PushMessages(self,
|
|
83
|
+
request: flwr.proto.fleet_pb2.PushMessagesRequest,
|
|
84
84
|
context: grpc.ServicerContext,
|
|
85
|
-
) -> flwr.proto.fleet_pb2.
|
|
86
|
-
"""Complete one or more
|
|
85
|
+
) -> flwr.proto.fleet_pb2.PushMessagesResponse:
|
|
86
|
+
"""Complete one or more messages, if possible
|
|
87
87
|
|
|
88
|
-
HTTP API path: /api/v1/fleet/push-
|
|
88
|
+
HTTP API path: /api/v1/fleet/push-messages
|
|
89
89
|
"""
|
|
90
90
|
pass
|
|
91
91
|
|
flwr/proto/grpcadapter_pb2.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: flwr/proto/grpcadapter.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
5
|
"""Generated protocol buffer code."""
|
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
flwr/proto/log_pb2.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: flwr/proto/log.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
5
|
"""Generated protocol buffer code."""
|
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
flwr/proto/message_pb2.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: flwr/proto/message.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
5
|
"""Generated protocol buffer code."""
|
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
flwr/proto/node_pb2.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: flwr/proto/node.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
5
|
"""Generated protocol buffer code."""
|
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15\x66lwr/proto/node.proto\x12\nflwr.proto\"
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15\x66lwr/proto/node.proto\x12\nflwr.proto\"\x17\n\x04Node\x12\x0f\n\x07node_id\x18\x01 \x01(\x04\x62\x06proto3')
|
|
18
18
|
|
|
19
19
|
_globals = globals()
|
|
20
20
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -22,5 +22,5 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'flwr.proto.node_pb2', _glob
|
|
|
22
22
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
23
23
|
DESCRIPTOR._options = None
|
|
24
24
|
_globals['_NODE']._serialized_start=37
|
|
25
|
-
_globals['_NODE']._serialized_end=
|
|
25
|
+
_globals['_NODE']._serialized_end=60
|
|
26
26
|
# @@protoc_insertion_point(module_scope)
|
flwr/proto/node_pb2.pyi
CHANGED
|
@@ -12,13 +12,10 @@ DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
|
|
12
12
|
class Node(google.protobuf.message.Message):
|
|
13
13
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
14
14
|
NODE_ID_FIELD_NUMBER: builtins.int
|
|
15
|
-
ANONYMOUS_FIELD_NUMBER: builtins.int
|
|
16
15
|
node_id: builtins.int
|
|
17
|
-
anonymous: builtins.bool
|
|
18
16
|
def __init__(self,
|
|
19
17
|
*,
|
|
20
18
|
node_id: builtins.int = ...,
|
|
21
|
-
anonymous: builtins.bool = ...,
|
|
22
19
|
) -> None: ...
|
|
23
|
-
def ClearField(self, field_name: typing_extensions.Literal["
|
|
20
|
+
def ClearField(self, field_name: typing_extensions.Literal["node_id",b"node_id"]) -> None: ...
|
|
24
21
|
global___Node = Node
|
flwr/proto/recordset_pb2.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: flwr/proto/recordset.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
5
|
"""Generated protocol buffer code."""
|
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
flwr/proto/run_pb2.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: flwr/proto/run.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
5
|
"""Generated protocol buffer code."""
|
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
flwr/proto/serverappio_pb2.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: flwr/proto/serverappio.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.
|
|
4
|
+
# Protobuf Python Version: 4.25.1
|
|
5
5
|
"""Generated protocol buffer code."""
|
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
@@ -15,38 +15,37 @@ _sym_db = _symbol_database.Default()
|
|
|
15
15
|
from flwr.proto import log_pb2 as flwr_dot_proto_dot_log__pb2
|
|
16
16
|
from flwr.proto import node_pb2 as flwr_dot_proto_dot_node__pb2
|
|
17
17
|
from flwr.proto import message_pb2 as flwr_dot_proto_dot_message__pb2
|
|
18
|
-
from flwr.proto import task_pb2 as flwr_dot_proto_dot_task__pb2
|
|
19
18
|
from flwr.proto import run_pb2 as flwr_dot_proto_dot_run__pb2
|
|
20
19
|
from flwr.proto import fab_pb2 as flwr_dot_proto_dot_fab__pb2
|
|
21
20
|
|
|
22
21
|
|
|
23
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lwr/proto/serverappio.proto\x12\nflwr.proto\x1a\x14\x66lwr/proto/log.proto\x1a\x15\x66lwr/proto/node.proto\x1a\x18\x66lwr/proto/message.proto\x1a\
|
|
22
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lwr/proto/serverappio.proto\x12\nflwr.proto\x1a\x14\x66lwr/proto/log.proto\x1a\x15\x66lwr/proto/node.proto\x1a\x18\x66lwr/proto/message.proto\x1a\x14\x66lwr/proto/run.proto\x1a\x14\x66lwr/proto/fab.proto\"!\n\x0fGetNodesRequest\x12\x0e\n\x06run_id\x18\x01 \x01(\x04\"3\n\x10GetNodesResponse\x12\x1f\n\x05nodes\x18\x01 \x03(\x0b\x32\x10.flwr.proto.Node\"T\n\x16PushInsMessagesRequest\x12*\n\rmessages_list\x18\x01 \x03(\x0b\x32\x13.flwr.proto.Message\x12\x0e\n\x06run_id\x18\x02 \x01(\x04\".\n\x17PushInsMessagesResponse\x12\x13\n\x0bmessage_ids\x18\x01 \x03(\t\"=\n\x16PullResMessagesRequest\x12\x13\n\x0bmessage_ids\x18\x01 \x03(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\x04\"E\n\x17PullResMessagesResponse\x12*\n\rmessages_list\x18\x01 \x03(\x0b\x32\x13.flwr.proto.Message\"\x1c\n\x1aPullServerAppInputsRequest\"\x7f\n\x1bPullServerAppInputsResponse\x12$\n\x07\x63ontext\x18\x01 \x01(\x0b\x32\x13.flwr.proto.Context\x12\x1c\n\x03run\x18\x02 \x01(\x0b\x32\x0f.flwr.proto.Run\x12\x1c\n\x03\x66\x61\x62\x18\x03 \x01(\x0b\x32\x0f.flwr.proto.Fab\"S\n\x1bPushServerAppOutputsRequest\x12\x0e\n\x06run_id\x18\x01 \x01(\x04\x12$\n\x07\x63ontext\x18\x02 \x01(\x0b\x32\x13.flwr.proto.Context\"\x1e\n\x1cPushServerAppOutputsResponse2\xb1\x07\n\x0bServerAppIo\x12J\n\tCreateRun\x12\x1c.flwr.proto.CreateRunRequest\x1a\x1d.flwr.proto.CreateRunResponse\"\x00\x12G\n\x08GetNodes\x12\x1b.flwr.proto.GetNodesRequest\x1a\x1c.flwr.proto.GetNodesResponse\"\x00\x12Y\n\x0cPushMessages\x12\".flwr.proto.PushInsMessagesRequest\x1a#.flwr.proto.PushInsMessagesResponse\"\x00\x12Y\n\x0cPullMessages\x12\".flwr.proto.PullResMessagesRequest\x1a#.flwr.proto.PullResMessagesResponse\"\x00\x12\x41\n\x06GetRun\x12\x19.flwr.proto.GetRunRequest\x1a\x1a.flwr.proto.GetRunResponse\"\x00\x12\x41\n\x06GetFab\x12\x19.flwr.proto.GetFabRequest\x1a\x1a.flwr.proto.GetFabResponse\"\x00\x12h\n\x13PullServerAppInputs\x12&.flwr.proto.PullServerAppInputsRequest\x1a\'.flwr.proto.PullServerAppInputsResponse\"\x00\x12k\n\x14PushServerAppOutputs\x12\'.flwr.proto.PushServerAppOutputsRequest\x1a(.flwr.proto.PushServerAppOutputsResponse\"\x00\x12\\\n\x0fUpdateRunStatus\x12\".flwr.proto.UpdateRunStatusRequest\x1a#.flwr.proto.UpdateRunStatusResponse\"\x00\x12S\n\x0cGetRunStatus\x12\x1f.flwr.proto.GetRunStatusRequest\x1a .flwr.proto.GetRunStatusResponse\"\x00\x12G\n\x08PushLogs\x12\x1b.flwr.proto.PushLogsRequest\x1a\x1c.flwr.proto.PushLogsResponse\"\x00\x62\x06proto3')
|
|
24
23
|
|
|
25
24
|
_globals = globals()
|
|
26
25
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
27
26
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'flwr.proto.serverappio_pb2', _globals)
|
|
28
27
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
29
28
|
DESCRIPTOR._options = None
|
|
30
|
-
_globals['_GETNODESREQUEST']._serialized_start=
|
|
31
|
-
_globals['_GETNODESREQUEST']._serialized_end=
|
|
32
|
-
_globals['_GETNODESRESPONSE']._serialized_start=
|
|
33
|
-
_globals['_GETNODESRESPONSE']._serialized_end=
|
|
34
|
-
_globals['
|
|
35
|
-
_globals['
|
|
36
|
-
_globals['
|
|
37
|
-
_globals['
|
|
38
|
-
_globals['
|
|
39
|
-
_globals['
|
|
40
|
-
_globals['
|
|
41
|
-
_globals['
|
|
42
|
-
_globals['_PULLSERVERAPPINPUTSREQUEST']._serialized_start=
|
|
43
|
-
_globals['_PULLSERVERAPPINPUTSREQUEST']._serialized_end=
|
|
44
|
-
_globals['_PULLSERVERAPPINPUTSRESPONSE']._serialized_start=
|
|
45
|
-
_globals['_PULLSERVERAPPINPUTSRESPONSE']._serialized_end=
|
|
46
|
-
_globals['_PUSHSERVERAPPOUTPUTSREQUEST']._serialized_start=
|
|
47
|
-
_globals['_PUSHSERVERAPPOUTPUTSREQUEST']._serialized_end=
|
|
48
|
-
_globals['_PUSHSERVERAPPOUTPUTSRESPONSE']._serialized_start=
|
|
49
|
-
_globals['_PUSHSERVERAPPOUTPUTSRESPONSE']._serialized_end=
|
|
50
|
-
_globals['_SERVERAPPIO']._serialized_start=
|
|
51
|
-
_globals['_SERVERAPPIO']._serialized_end=
|
|
29
|
+
_globals['_GETNODESREQUEST']._serialized_start=159
|
|
30
|
+
_globals['_GETNODESREQUEST']._serialized_end=192
|
|
31
|
+
_globals['_GETNODESRESPONSE']._serialized_start=194
|
|
32
|
+
_globals['_GETNODESRESPONSE']._serialized_end=245
|
|
33
|
+
_globals['_PUSHINSMESSAGESREQUEST']._serialized_start=247
|
|
34
|
+
_globals['_PUSHINSMESSAGESREQUEST']._serialized_end=331
|
|
35
|
+
_globals['_PUSHINSMESSAGESRESPONSE']._serialized_start=333
|
|
36
|
+
_globals['_PUSHINSMESSAGESRESPONSE']._serialized_end=379
|
|
37
|
+
_globals['_PULLRESMESSAGESREQUEST']._serialized_start=381
|
|
38
|
+
_globals['_PULLRESMESSAGESREQUEST']._serialized_end=442
|
|
39
|
+
_globals['_PULLRESMESSAGESRESPONSE']._serialized_start=444
|
|
40
|
+
_globals['_PULLRESMESSAGESRESPONSE']._serialized_end=513
|
|
41
|
+
_globals['_PULLSERVERAPPINPUTSREQUEST']._serialized_start=515
|
|
42
|
+
_globals['_PULLSERVERAPPINPUTSREQUEST']._serialized_end=543
|
|
43
|
+
_globals['_PULLSERVERAPPINPUTSRESPONSE']._serialized_start=545
|
|
44
|
+
_globals['_PULLSERVERAPPINPUTSRESPONSE']._serialized_end=672
|
|
45
|
+
_globals['_PUSHSERVERAPPOUTPUTSREQUEST']._serialized_start=674
|
|
46
|
+
_globals['_PUSHSERVERAPPOUTPUTSREQUEST']._serialized_end=757
|
|
47
|
+
_globals['_PUSHSERVERAPPOUTPUTSRESPONSE']._serialized_start=759
|
|
48
|
+
_globals['_PUSHSERVERAPPOUTPUTSRESPONSE']._serialized_end=789
|
|
49
|
+
_globals['_SERVERAPPIO']._serialized_start=792
|
|
50
|
+
_globals['_SERVERAPPIO']._serialized_end=1737
|
|
52
51
|
# @@protoc_insertion_point(module_scope)
|