frogml 1.2.41__py3-none-any.whl → 1.2.47__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.
- frogml/__init__.py +1 -1
- frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2.py +52 -0
- frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2.pyi +208 -0
- frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2_grpc.py +237 -0
- frogml/_proto/qwak/administration/v1/environments/environment_pb2.py +29 -0
- frogml/_proto/qwak/administration/v1/environments/environment_pb2.pyi +35 -0
- frogml/_proto/qwak/administration/v1/environments/environment_pb2_grpc.py +4 -0
- frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.py +33 -0
- frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.pyi +59 -0
- frogml/_proto/qwak/administration/v1/environments/environment_service_pb2_grpc.py +67 -0
- frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2.py +33 -0
- frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2.pyi +76 -0
- frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2_grpc.py +4 -0
- frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py +28 -15
- frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi +89 -0
- frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py +102 -0
- frogml/core/clients/administration/cluster_v2/__init__.py +1 -0
- frogml/core/clients/administration/cluster_v2/client.py +122 -0
- frogml/core/clients/administration/environment/client.py +28 -0
- frogml/core/clients/administration/environment_v1/__init__.py +1 -0
- frogml/core/clients/administration/environment_v1/client.py +53 -0
- frogml/core/inner/di_configuration/dependency_wiring.py +18 -16
- {frogml-1.2.41.dist-info → frogml-1.2.47.dist-info}/METADATA +1 -1
- {frogml-1.2.41.dist-info → frogml-1.2.47.dist-info}/RECORD +30 -11
- frogml_services_mock/mocks/cluster_v2_service.py +146 -0
- frogml_services_mock/mocks/environment_v0_service.py +175 -0
- frogml_services_mock/mocks/environment_v1_service.py +37 -0
- frogml_services_mock/mocks/frogml_mocks.py +6 -0
- frogml_services_mock/services_mock.py +33 -0
- {frogml-1.2.41.dist-info → frogml-1.2.47.dist-info}/WHEEL +0 -0
|
@@ -12,6 +12,15 @@ from frogml._proto.jfml.model_version.v1.model_version_manager_service_pb2_grpc
|
|
|
12
12
|
from frogml._proto.qwak.administration.v0.authentication.authentication_service_pb2_grpc import (
|
|
13
13
|
add_AuthenticationServiceServicer_to_server,
|
|
14
14
|
)
|
|
15
|
+
from frogml._proto.qwak.administration.cluster.v2.cluster_service_pb2_grpc import (
|
|
16
|
+
add_ClusterServiceServicer_to_server,
|
|
17
|
+
)
|
|
18
|
+
from frogml._proto.qwak.administration.v0.environments.environment_service_pb2_grpc import (
|
|
19
|
+
add_EnvironmentServiceServicer_to_server as add_EnvironmentV0ServiceServicer_to_server,
|
|
20
|
+
)
|
|
21
|
+
from frogml._proto.qwak.administration.v1.environments.environment_service_pb2_grpc import (
|
|
22
|
+
add_EnvironmentServiceServicer_to_server as add_EnvironmentV1ServiceServicer_to_server,
|
|
23
|
+
)
|
|
15
24
|
from frogml._proto.qwak.admiral.secret.v0.system_secret_service_pb2_grpc import (
|
|
16
25
|
add_SystemSecretServiceServicer_to_server,
|
|
17
26
|
)
|
|
@@ -144,11 +153,14 @@ from frogml_services_mock.mocks.build_orchestrator_build_settings_api import (
|
|
|
144
153
|
from frogml_services_mock.mocks.build_orchestrator_service_api import (
|
|
145
154
|
BuildOrchestratorServiceApiMock,
|
|
146
155
|
)
|
|
156
|
+
from frogml_services_mock.mocks.cluster_v2_service import ClusterV2ServiceMock
|
|
147
157
|
from frogml_services_mock.mocks.data_versioning_service import DataVersioningServiceMock
|
|
148
158
|
from frogml_services_mock.mocks.deployment_management_service import (
|
|
149
159
|
DeploymentManagementServiceMock,
|
|
150
160
|
)
|
|
151
161
|
from frogml_services_mock.mocks.ecosystem_service_api import EcoSystemServiceMock
|
|
162
|
+
from frogml_services_mock.mocks.environment_v0_service import EnvironmentV0ServiceMock
|
|
163
|
+
from frogml_services_mock.mocks.environment_v1_service import EnvironmentV1ServiceMock
|
|
152
164
|
from frogml_services_mock.mocks.execution_management_service import (
|
|
153
165
|
ExecutionManagementServiceMock,
|
|
154
166
|
)
|
|
@@ -262,7 +274,10 @@ def frogml_container():
|
|
|
262
274
|
)
|
|
263
275
|
from frogml.core.clients.administration import (
|
|
264
276
|
authentication,
|
|
277
|
+
cluster_v2,
|
|
265
278
|
eco_system,
|
|
279
|
+
environment,
|
|
280
|
+
environment_v1,
|
|
266
281
|
self_service,
|
|
267
282
|
)
|
|
268
283
|
from frogml.core.clients.integration_management import integration_manager_client
|
|
@@ -278,8 +293,11 @@ def frogml_container():
|
|
|
278
293
|
analytics,
|
|
279
294
|
batch_job_management,
|
|
280
295
|
build_orchestrator,
|
|
296
|
+
cluster_v2,
|
|
281
297
|
data_versioning,
|
|
282
298
|
deployment,
|
|
299
|
+
environment,
|
|
300
|
+
environment_v1,
|
|
283
301
|
instance_template,
|
|
284
302
|
feature_store,
|
|
285
303
|
file_versioning,
|
|
@@ -517,6 +535,21 @@ def attach_servicers(free_port, server):
|
|
|
517
535
|
ModelDeploymentManagerMock,
|
|
518
536
|
add_ModelDeploymentServiceServicer_to_server,
|
|
519
537
|
),
|
|
538
|
+
(
|
|
539
|
+
"cluster_v2_service_mock",
|
|
540
|
+
ClusterV2ServiceMock,
|
|
541
|
+
add_ClusterServiceServicer_to_server,
|
|
542
|
+
),
|
|
543
|
+
(
|
|
544
|
+
"environment_v0_service_mock",
|
|
545
|
+
EnvironmentV0ServiceMock,
|
|
546
|
+
add_EnvironmentV0ServiceServicer_to_server,
|
|
547
|
+
),
|
|
548
|
+
(
|
|
549
|
+
"environment_v1_service_mock",
|
|
550
|
+
EnvironmentV1ServiceMock,
|
|
551
|
+
add_EnvironmentV1ServiceServicer_to_server,
|
|
552
|
+
),
|
|
520
553
|
("port", free_port, None),
|
|
521
554
|
],
|
|
522
555
|
)
|
|
File without changes
|