frogml 1.2.41__py3-none-any.whl → 1.2.49__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.
Files changed (38) hide show
  1. frogml/__init__.py +1 -1
  2. frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2.py +52 -0
  3. frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2.pyi +208 -0
  4. frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2_grpc.py +237 -0
  5. frogml/_proto/qwak/administration/v1/environments/environment_pb2.py +29 -0
  6. frogml/_proto/qwak/administration/v1/environments/environment_pb2.pyi +35 -0
  7. frogml/_proto/qwak/administration/v1/environments/environment_pb2_grpc.py +4 -0
  8. frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.py +33 -0
  9. frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.pyi +59 -0
  10. frogml/_proto/qwak/administration/v1/environments/environment_service_pb2_grpc.py +67 -0
  11. frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2.py +33 -0
  12. frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2.pyi +76 -0
  13. frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2_grpc.py +4 -0
  14. frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py +28 -15
  15. frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi +89 -0
  16. frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py +102 -0
  17. frogml/_proto/qwak/execution/v1/jobs/job_pb2.py +12 -10
  18. frogml/_proto/qwak/execution/v1/jobs/job_pb2.pyi +40 -3
  19. frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2.py +17 -15
  20. frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2.pyi +37 -3
  21. frogml/_proto/qwak/feature_store/features/feature_set_types_pb2.py +68 -66
  22. frogml/_proto/qwak/feature_store/features/feature_set_types_pb2.pyi +22 -2
  23. frogml/_proto/qwak/feature_store/serving/metadata_pb2.py +8 -8
  24. frogml/_proto/qwak/feature_store/serving/metadata_pb2.pyi +27 -3
  25. frogml/core/clients/administration/cluster_v2/__init__.py +1 -0
  26. frogml/core/clients/administration/cluster_v2/client.py +122 -0
  27. frogml/core/clients/administration/environment/client.py +28 -0
  28. frogml/core/clients/administration/environment_v1/__init__.py +1 -0
  29. frogml/core/clients/administration/environment_v1/client.py +53 -0
  30. frogml/core/inner/di_configuration/dependency_wiring.py +18 -16
  31. {frogml-1.2.41.dist-info → frogml-1.2.49.dist-info}/METADATA +1 -1
  32. {frogml-1.2.41.dist-info → frogml-1.2.49.dist-info}/RECORD +38 -19
  33. frogml_services_mock/mocks/cluster_v2_service.py +146 -0
  34. frogml_services_mock/mocks/environment_v0_service.py +175 -0
  35. frogml_services_mock/mocks/environment_v1_service.py +37 -0
  36. frogml_services_mock/mocks/frogml_mocks.py +6 -0
  37. frogml_services_mock/services_mock.py +33 -0
  38. {frogml-1.2.41.dist-info → frogml-1.2.49.dist-info}/WHEEL +0 -0
@@ -22,6 +22,8 @@ class StreamingAggregationFeaturesetMetadata(google.protobuf.message.Message):
22
22
  STREAMING_AGGREGATION_FEATURESET_FIELD_NUMBER: builtins.int
23
23
  ENTITY_FIELD_NUMBER: builtins.int
24
24
  AVRO_SCHEMA_JSON_FIELD_NUMBER: builtins.int
25
+ FEATURESET_REPOSITORY_NAME_FIELD_NUMBER: builtins.int
26
+ PROJECT_KEY_FIELD_NUMBER: builtins.int
25
27
  environment_id: builtins.str
26
28
  """Multi environment support"""
27
29
  featureset_name: builtins.str
@@ -30,6 +32,10 @@ class StreamingAggregationFeaturesetMetadata(google.protobuf.message.Message):
30
32
  """Featureset id"""
31
33
  avro_schema_json: builtins.str
32
34
  """The avro schema in json format that represents the AggregationSpec"""
35
+ featureset_repository_name: builtins.str
36
+ """Repository name of the FeatureSet"""
37
+ project_key: builtins.str
38
+ """Project key of the FeatureSet"""
33
39
  @property
34
40
  def streaming_aggregation_featureset(self) -> frogml._proto.qwak.feature_store.features.feature_set_types_pb2.StreamingAggregationFeatureSet:
35
41
  """Streaming aggregation featureset"""
@@ -47,9 +53,11 @@ class StreamingAggregationFeaturesetMetadata(google.protobuf.message.Message):
47
53
  streaming_aggregation_featureset: frogml._proto.qwak.feature_store.features.feature_set_types_pb2.StreamingAggregationFeatureSet | None = ...,
48
54
  entity: frogml._proto.qwak.feature_store.entities.entity_pb2.EntityDefinition | None = ...,
49
55
  avro_schema_json: builtins.str = ...,
56
+ featureset_repository_name: builtins.str = ...,
57
+ project_key: builtins.str = ...,
50
58
  ) -> None: ...
51
59
  def HasField(self, field_name: typing.Literal["entity", b"entity", "streaming_aggregation_featureset", b"streaming_aggregation_featureset"]) -> builtins.bool: ...
52
- def ClearField(self, field_name: typing.Literal["avro_schema_json", b"avro_schema_json", "entity", b"entity", "environment_id", b"environment_id", "featureset_id", b"featureset_id", "featureset_name", b"featureset_name", "streaming_aggregation_featureset", b"streaming_aggregation_featureset"]) -> None: ...
60
+ def ClearField(self, field_name: typing.Literal["avro_schema_json", b"avro_schema_json", "entity", b"entity", "environment_id", b"environment_id", "featureset_id", b"featureset_id", "featureset_name", b"featureset_name", "featureset_repository_name", b"featureset_repository_name", "project_key", b"project_key", "streaming_aggregation_featureset", b"streaming_aggregation_featureset"]) -> None: ...
53
61
 
54
62
  global___StreamingAggregationFeaturesetMetadata = StreamingAggregationFeaturesetMetadata
55
63
 
@@ -63,6 +71,8 @@ class BatchFeaturesetV1Metadata(google.protobuf.message.Message):
63
71
  QWAK_PROTOCOL_VERSION_FIELD_NUMBER: builtins.int
64
72
  BATCH_FEATURESET_V1_FIELD_NUMBER: builtins.int
65
73
  ENTITY_FIELD_NUMBER: builtins.int
74
+ FEATURESET_REPOSITORY_NAME_FIELD_NUMBER: builtins.int
75
+ PROJECT_KEY_FIELD_NUMBER: builtins.int
66
76
  environment_id: builtins.str
67
77
  """Multi environment support"""
68
78
  featureset_name: builtins.str
@@ -71,6 +81,10 @@ class BatchFeaturesetV1Metadata(google.protobuf.message.Message):
71
81
  """Featureset id"""
72
82
  qwak_protocol_version: builtins.int
73
83
  """qwak protocol version"""
84
+ featureset_repository_name: builtins.str
85
+ """Repository name of the FeatureSet"""
86
+ project_key: builtins.str
87
+ """Project key of the FeatureSet"""
74
88
  @property
75
89
  def batch_featureset_v1(self) -> frogml._proto.qwak.feature_store.features.feature_set_types_pb2.BatchFeatureSetV1:
76
90
  """batch v1 featureset"""
@@ -88,9 +102,11 @@ class BatchFeaturesetV1Metadata(google.protobuf.message.Message):
88
102
  qwak_protocol_version: builtins.int = ...,
89
103
  batch_featureset_v1: frogml._proto.qwak.feature_store.features.feature_set_types_pb2.BatchFeatureSetV1 | None = ...,
90
104
  entity: frogml._proto.qwak.feature_store.entities.entity_pb2.EntityDefinition | None = ...,
105
+ featureset_repository_name: builtins.str = ...,
106
+ project_key: builtins.str = ...,
91
107
  ) -> None: ...
92
108
  def HasField(self, field_name: typing.Literal["batch_featureset_v1", b"batch_featureset_v1", "entity", b"entity"]) -> builtins.bool: ...
93
- def ClearField(self, field_name: typing.Literal["batch_featureset_v1", b"batch_featureset_v1", "entity", b"entity", "environment_id", b"environment_id", "featureset_id", b"featureset_id", "featureset_name", b"featureset_name", "qwak_protocol_version", b"qwak_protocol_version"]) -> None: ...
109
+ def ClearField(self, field_name: typing.Literal["batch_featureset_v1", b"batch_featureset_v1", "entity", b"entity", "environment_id", b"environment_id", "featureset_id", b"featureset_id", "featureset_name", b"featureset_name", "featureset_repository_name", b"featureset_repository_name", "project_key", b"project_key", "qwak_protocol_version", b"qwak_protocol_version"]) -> None: ...
94
110
 
95
111
  global___BatchFeaturesetV1Metadata = BatchFeaturesetV1Metadata
96
112
 
@@ -104,6 +120,8 @@ class StreamingFeaturesetV1Metadata(google.protobuf.message.Message):
104
120
  QWAK_PROTOCOL_VERSION_FIELD_NUMBER: builtins.int
105
121
  STREAMING_FEATURESET_V1_FIELD_NUMBER: builtins.int
106
122
  ENTITY_FIELD_NUMBER: builtins.int
123
+ FEATURESET_REPOSITORY_NAME_FIELD_NUMBER: builtins.int
124
+ PROJECT_KEY_FIELD_NUMBER: builtins.int
107
125
  environment_id: builtins.str
108
126
  """Multi environment support"""
109
127
  featureset_name: builtins.str
@@ -112,6 +130,10 @@ class StreamingFeaturesetV1Metadata(google.protobuf.message.Message):
112
130
  """Featureset id"""
113
131
  qwak_protocol_version: builtins.int
114
132
  """qwak protocol version"""
133
+ featureset_repository_name: builtins.str
134
+ """Repository name of the FeatureSet"""
135
+ project_key: builtins.str
136
+ """Project key of the FeatureSet"""
115
137
  @property
116
138
  def streaming_featureset_v1(self) -> frogml._proto.qwak.feature_store.features.feature_set_types_pb2.StreamingFeatureSetV1:
117
139
  """Streaming v1 featureset"""
@@ -129,9 +151,11 @@ class StreamingFeaturesetV1Metadata(google.protobuf.message.Message):
129
151
  qwak_protocol_version: builtins.int = ...,
130
152
  streaming_featureset_v1: frogml._proto.qwak.feature_store.features.feature_set_types_pb2.StreamingFeatureSetV1 | None = ...,
131
153
  entity: frogml._proto.qwak.feature_store.entities.entity_pb2.EntityDefinition | None = ...,
154
+ featureset_repository_name: builtins.str = ...,
155
+ project_key: builtins.str = ...,
132
156
  ) -> None: ...
133
157
  def HasField(self, field_name: typing.Literal["entity", b"entity", "streaming_featureset_v1", b"streaming_featureset_v1"]) -> builtins.bool: ...
134
- def ClearField(self, field_name: typing.Literal["entity", b"entity", "environment_id", b"environment_id", "featureset_id", b"featureset_id", "featureset_name", b"featureset_name", "qwak_protocol_version", b"qwak_protocol_version", "streaming_featureset_v1", b"streaming_featureset_v1"]) -> None: ...
158
+ def ClearField(self, field_name: typing.Literal["entity", b"entity", "environment_id", b"environment_id", "featureset_id", b"featureset_id", "featureset_name", b"featureset_name", "featureset_repository_name", b"featureset_repository_name", "project_key", b"project_key", "qwak_protocol_version", b"qwak_protocol_version", "streaming_featureset_v1", b"streaming_featureset_v1"]) -> None: ...
135
159
 
136
160
  global___StreamingFeaturesetV1Metadata = StreamingFeaturesetV1Metadata
137
161
 
@@ -0,0 +1 @@
1
+ from .client import ClusterV2Client
@@ -0,0 +1,122 @@
1
+ """Cluster V2 API client.
2
+
3
+ Provides wrapper methods for the Cluster V2 gRPC service with proper error handling.
4
+ """
5
+
6
+ from frogml._proto.qwak.administration.cluster.v2.cluster_pb2 import (
7
+ ClusterSpec,
8
+ )
9
+ from frogml._proto.qwak.administration.cluster.v2.cluster_service_pb2 import (
10
+ CreateClusterCreationRequestRequest,
11
+ CreateClusterCreationRequestResponse,
12
+ DeleteClusterRequest,
13
+ DeleteClusterResponse,
14
+ GetClusterRequest,
15
+ GetClusterResponse,
16
+ GetClusterStateRequest,
17
+ GetClusterStateResponse,
18
+ ListClustersRequest,
19
+ ListClustersResponse,
20
+ UpdateClusterConfigurationRequest,
21
+ UpdateClusterConfigurationResponse,
22
+ )
23
+ from frogml._proto.qwak.administration.cluster.v2.cluster_service_pb2_grpc import (
24
+ ClusterServiceStub,
25
+ )
26
+ from dependency_injector.wiring import Provide
27
+ from frogml.core.inner.di_configuration import FrogmlContainer
28
+ from frogml.core.inner.tool.grpc.grpc_try_wrapping import grpc_try_catch_wrapper
29
+
30
+
31
+ class ClusterV2Client:
32
+ """Client for interacting with the Cluster V2 API.
33
+
34
+ This client wraps the gRPC stub and provides methods with proper error handling
35
+ using the grpc_try_catch_wrapper decorator.
36
+ """
37
+
38
+ def __init__(self, grpc_channel=Provide[FrogmlContainer.core_grpc_channel]):
39
+ self.__cluster_service = ClusterServiceStub(grpc_channel)
40
+
41
+ @grpc_try_catch_wrapper("Failed to create cluster")
42
+ def create_cluster(
43
+ self, cluster_spec: ClusterSpec
44
+ ) -> CreateClusterCreationRequestResponse:
45
+ """Create a new cluster.
46
+
47
+ Args:
48
+ cluster_spec: The cluster specification.
49
+
50
+ Returns:
51
+ CreateClusterCreationRequestResponse with the request_id.
52
+ """
53
+ request = CreateClusterCreationRequestRequest(cluster_spec=cluster_spec)
54
+ return self.__cluster_service.CreateClusterCreationRequest(request)
55
+
56
+ @grpc_try_catch_wrapper("Failed to get cluster state for request {request_id}")
57
+ def get_cluster_state(self, request_id: str) -> GetClusterStateResponse:
58
+ """Get cluster state by request ID.
59
+
60
+ Args:
61
+ request_id: The request ID from create_cluster.
62
+
63
+ Returns:
64
+ GetClusterStateResponse with the cluster state.
65
+ """
66
+ request = GetClusterStateRequest(request_id=request_id)
67
+ return self.__cluster_service.GetClusterState(request)
68
+
69
+ @grpc_try_catch_wrapper("Failed to get cluster {cluster_id}")
70
+ def get_cluster(self, cluster_id: str) -> GetClusterResponse:
71
+ """Get cluster by ID.
72
+
73
+ Args:
74
+ cluster_id: The cluster ID.
75
+
76
+ Returns:
77
+ GetClusterResponse with the cluster state.
78
+ """
79
+ request = GetClusterRequest(cluster_id=cluster_id)
80
+ return self.__cluster_service.GetCluster(request)
81
+
82
+ @grpc_try_catch_wrapper("Failed to list clusters")
83
+ def list_clusters(self) -> ListClustersResponse:
84
+ """List all clusters.
85
+
86
+ Returns:
87
+ ListClustersResponse with list of clusters.
88
+ """
89
+ request = ListClustersRequest()
90
+ return self.__cluster_service.ListClusters(request)
91
+
92
+ @grpc_try_catch_wrapper("Failed to update cluster {cluster_id}")
93
+ def update_cluster(
94
+ self, cluster_id: str, cluster_spec: ClusterSpec
95
+ ) -> UpdateClusterConfigurationResponse:
96
+ """Update cluster configuration.
97
+
98
+ Args:
99
+ cluster_id: The cluster ID to update.
100
+ cluster_spec: The updated cluster specification.
101
+
102
+ Returns:
103
+ UpdateClusterConfigurationResponse with the request_id.
104
+ """
105
+ request = UpdateClusterConfigurationRequest(
106
+ cluster_id=cluster_id,
107
+ cluster_spec=cluster_spec,
108
+ )
109
+ return self.__cluster_service.UpdateClusterConfiguration(request)
110
+
111
+ @grpc_try_catch_wrapper("Failed to delete cluster {cluster_id}")
112
+ def delete_cluster(self, cluster_id: str) -> DeleteClusterResponse:
113
+ """Delete cluster by ID.
114
+
115
+ Args:
116
+ cluster_id: The cluster ID to delete.
117
+
118
+ Returns:
119
+ DeleteClusterResponse with the request_id.
120
+ """
121
+ request = DeleteClusterRequest(cluster_id=cluster_id)
122
+ return self.__cluster_service.DeleteCluster(request)
@@ -4,17 +4,23 @@ from dependency_injector.wiring import Provide
4
4
  from frogml._proto.qwak.administration.v0.environments.environment_pb2 import (
5
5
  QwakEnvironmentStatus,
6
6
  )
7
+ from frogml._proto.qwak.administration.v0.environments.configuration_pb2 import (
8
+ QwakEnvironmentConfiguration,
9
+ )
7
10
  from frogml._proto.qwak.administration.v0.environments.environment_service_pb2 import (
8
11
  GetEnvironmentApplicationUserCredentialsRequest,
9
12
  GetEnvironmentApplicationUserCredentialsResponse,
10
13
  ListEnvironmentsRequest,
11
14
  ListEnvironmentsResponse,
15
+ UpdateEnvironmentConfigurationRequest,
16
+ UpdateEnvironmentConfigurationResponse,
12
17
  )
13
18
  from frogml._proto.qwak.administration.v0.environments.environment_service_pb2_grpc import (
14
19
  EnvironmentServiceStub,
15
20
  )
16
21
  from frogml.core.exceptions import FrogmlException
17
22
  from frogml.core.inner.di_configuration import FrogmlContainer
23
+ from frogml.core.inner.tool.grpc.grpc_try_wrapping import grpc_try_catch_wrapper
18
24
 
19
25
 
20
26
  class EnvironmentClient:
@@ -75,3 +81,25 @@ class EnvironmentClient:
75
81
  raise FrogmlException(
76
82
  f"Failed to get application user, error is {e.details()}"
77
83
  )
84
+
85
+ @grpc_try_catch_wrapper(
86
+ "Failed to update environment configuration for {environment_id}"
87
+ )
88
+ def update_environment_configuration(
89
+ self, environment_id: str, configuration: QwakEnvironmentConfiguration
90
+ ) -> UpdateEnvironmentConfigurationResponse:
91
+ """
92
+ Update environment configuration.
93
+
94
+ Args:
95
+ environment_id: The environment ID to update.
96
+ configuration: The new environment configuration.
97
+
98
+ Returns:
99
+ UpdateEnvironmentConfigurationResponse
100
+ """
101
+ request = UpdateEnvironmentConfigurationRequest(
102
+ environment_id=environment_id,
103
+ configuration=configuration,
104
+ )
105
+ return self._environment_service.UpdateEnvironmentConfiguration(request)
@@ -0,0 +1 @@
1
+ from .client import EnvironmentV1Client
@@ -0,0 +1,53 @@
1
+ """Environment V1 API client.
2
+
3
+ Provides wrapper methods for the Environment V1 gRPC service with proper error handling.
4
+ """
5
+
6
+ from frogml._proto.qwak.administration.v1.environments.environment_pb2 import (
7
+ EnvironmentRuntimeConfigSpec,
8
+ )
9
+ from frogml._proto.qwak.administration.v1.environments.environment_service_pb2 import (
10
+ CreateEnvironmentRequest,
11
+ CreateEnvironmentResponse,
12
+ )
13
+ from frogml._proto.qwak.administration.v1.environments.environment_service_pb2_grpc import (
14
+ EnvironmentServiceStub,
15
+ )
16
+ from dependency_injector.wiring import Provide
17
+ from frogml.core.inner.di_configuration import FrogmlContainer
18
+ from frogml.core.inner.tool.grpc.grpc_try_wrapping import grpc_try_catch_wrapper
19
+
20
+
21
+ class EnvironmentV1Client:
22
+ """Client for interacting with the Environment V1 API.
23
+
24
+ This client wraps the gRPC stub and provides methods with proper error handling
25
+ using the grpc_try_catch_wrapper decorator.
26
+ """
27
+
28
+ def __init__(self, grpc_channel=Provide[FrogmlContainer.core_grpc_channel]):
29
+ self.__environment_service = EnvironmentServiceStub(grpc_channel)
30
+
31
+ @grpc_try_catch_wrapper("Failed to create environment {environment_name}")
32
+ def create_environment(
33
+ self,
34
+ environment_name: str,
35
+ cluster_id: str,
36
+ spec: EnvironmentRuntimeConfigSpec,
37
+ ) -> CreateEnvironmentResponse:
38
+ """Create a new environment.
39
+
40
+ Args:
41
+ environment_name: The name of the environment.
42
+ cluster_id: The cluster ID the environment belongs to.
43
+ spec: The environment runtime configuration specification.
44
+
45
+ Returns:
46
+ CreateEnvironmentResponse with the created environment.
47
+ """
48
+ request = CreateEnvironmentRequest(
49
+ environment_name=environment_name,
50
+ cluster_id=cluster_id,
51
+ spec=spec,
52
+ )
53
+ return self.__environment_service.CreateEnvironment(request)
@@ -27,29 +27,30 @@ def wire_dependencies() -> FrogmlContainer:
27
27
  )
28
28
 
29
29
  from frogml.core.clients import (
30
- kube_deployment_captain,
31
- model_version_manager,
30
+ administration,
31
+ alert_management,
32
+ alerts_registry,
32
33
  analytics,
33
- system_secret,
34
+ audience,
35
+ automation_management,
34
36
  autoscaling,
35
- build_orchestrator,
36
37
  batch_job_management,
37
- instance_template,
38
- feature_store,
38
+ build_orchestrator,
39
+ data_versioning,
39
40
  deployment,
40
- user_application_instance,
41
- jfrog_gateway,
42
- alert_management,
41
+ feature_store,
42
+ file_versioning,
43
+ instance_template,
43
44
  integration_management,
44
- model_management,
45
- audience,
46
- data_versioning,
45
+ jfrog_gateway,
46
+ kube_deployment_captain,
47
47
  logging_client,
48
- automation_management,
49
- file_versioning,
50
- alerts_registry,
51
- administration,
48
+ model_deployment_manager,
52
49
  model_group_management,
50
+ model_management,
51
+ model_version_manager,
52
+ system_secret,
53
+ user_application_instance,
53
54
  )
54
55
 
55
56
  container.wire(
@@ -77,6 +78,7 @@ def wire_dependencies() -> FrogmlContainer:
77
78
  model_version_manager,
78
79
  jfrog_gateway,
79
80
  model_group_management,
81
+ model_deployment_manager,
80
82
  ]
81
83
  )
82
84
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: frogml
3
- Version: 1.2.41
3
+ Version: 1.2.49
4
4
  Summary: frogml contains the necessary objects and communication tools for using the JFrog ml Platform
5
5
  License: Apache-2.0
6
6
  Keywords: mlops,ml,deployment,serving,model
@@ -1,4 +1,4 @@
1
- frogml/__init__.py,sha256=Iha2EFEpm8UEhQZulMOPWPSHZKElxWm4XT9dGhtHKck,741
1
+ frogml/__init__.py,sha256=eZ5gQywwWQqzXQBfuejYMYeXA__BQG9au0QkUTfaf8g,741
2
2
  frogml/_proto/com/jfrog/ml/model/deployment/v1/auto_scaling_pb2.py,sha256=-SD6RYgn5DFBLlwTpH9YkV8aW_zYymBI68Y-12Fn0I0,4193
3
3
  frogml/_proto/com/jfrog/ml/model/deployment/v1/auto_scaling_pb2.pyi,sha256=s0rdjIYw_dOfmuentpri79ls5dC3NqoUq__-XeavaXE,9688
4
4
  frogml/_proto/com/jfrog/ml/model/deployment/v1/auto_scaling_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
@@ -83,6 +83,9 @@ frogml/_proto/qwak/administration/authenticated_user/v1/details_pb2_grpc.py,sha2
83
83
  frogml/_proto/qwak/administration/cluster/v2/cluster_pb2.py,sha256=mn2N1ewXavzKj6fYOW7mtW3skdJHsIyDk0PoHGjV7xA,7710
84
84
  frogml/_proto/qwak/administration/cluster/v2/cluster_pb2.pyi,sha256=4dP_rJkV6nnxGkeJghFeq04mSaenDhKjrLsbk-ww6gA,17336
85
85
  frogml/_proto/qwak/administration/cluster/v2/cluster_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
86
+ frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2.py,sha256=LO7i_xO2JCj3O5Jk1GonvuH47tmYqkcOxuANRNbGHh0,5388
87
+ frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2.pyi,sha256=7Vn_OEVzdqDS2zcRez-IdsbftalVAkTI6IZZKxq3Pls,7344
88
+ frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2_grpc.py,sha256=UDuRQ_AIKghmnp8z--FqG5mLlH26aVLBLQqj4jMSM74,12944
86
89
  frogml/_proto/qwak/administration/runtime_configuration/v0/container_registry_config_pb2.py,sha256=Qrxc5jKlR90Yi0sU7poq8NRUf4sZf0_TUTUab71XPis,2853
87
90
  frogml/_proto/qwak/administration/runtime_configuration/v0/container_registry_config_pb2.pyi,sha256=a_K7CSexEa3ewJUCsuX4ym0DUy4Qti0WGVC7TBN7NxE,2534
88
91
  frogml/_proto/qwak/administration/runtime_configuration/v0/container_registry_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
@@ -164,15 +167,24 @@ frogml/_proto/qwak/administration/v0/environments/personalization_pb2_grpc.py,sh
164
167
  frogml/_proto/qwak/administration/v0/users/user_pb2.py,sha256=VCv_1ojHeRH26hQmhzL9lomfDw1JRLseI75Le4Eo-6s,4795
165
168
  frogml/_proto/qwak/administration/v0/users/user_pb2.pyi,sha256=eUHlh367Qz0nQSvgxkkiOt3Qiy_1Rtm34_eaxUC2WKo,10514
166
169
  frogml/_proto/qwak/administration/v0/users/user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
170
+ frogml/_proto/qwak/administration/v1/environments/environment_pb2.py,sha256=CvQOXO8keOc2EJAW2rbP9976pF_dsyupnYyxe0pRkyo,2478
171
+ frogml/_proto/qwak/administration/v1/environments/environment_pb2.pyi,sha256=0sxjj4w8G_AzSsEa7isLjaQPcssJKaxzHxBq5gknCSE,2015
172
+ frogml/_proto/qwak/administration/v1/environments/environment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
173
+ frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.py,sha256=eEKQjLsLzh8q0aJBOiO8bc7sANQRjdjF_fFifpmKtig,2867
174
+ frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.pyi,sha256=k8bq8klAQyw2Luy-2XKSq6V5b2b0pDaXQlLQAGffGsE,2320
175
+ frogml/_proto/qwak/administration/v1/environments/environment_service_pb2_grpc.py,sha256=TuyAgZpEVHoR7QNjZhUtI6bWBmwxPO5nyVyizem1L-s,3163
176
+ frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2.py,sha256=Owd4zpaBIh3BytZy3-2ioU8vioULkXzmVV6BD9FoCuo,2543
177
+ frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2.pyi,sha256=ONAvrjhRLkbRAfY-dulJb2S2w0Enm4vq2z7DZRmbq3U,2736
178
+ frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
167
179
  frogml/_proto/qwak/admiral/secret/v0/secret_pb2.py,sha256=U8KCZxLbs_wlrHyUr9ZMqsBz4_47yiqsrnuOMqh6Gj0,5180
168
180
  frogml/_proto/qwak/admiral/secret/v0/secret_pb2.pyi,sha256=3bLfqt8Ciki7n0jP_NiNcgtNWliBfrqG_HzsGSQMC3Q,10250
169
181
  frogml/_proto/qwak/admiral/secret/v0/secret_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
170
182
  frogml/_proto/qwak/admiral/secret/v0/secret_service_pb2.py,sha256=V5_l2ipfgimZ-V3BawNz_h2u31e7LiF6f9XBnHZznXk,3425
171
183
  frogml/_proto/qwak/admiral/secret/v0/secret_service_pb2.pyi,sha256=LHBpsDVvWBFG-K5_ZQR_698sKKce7qwQqEd40yJwkaA,3343
172
184
  frogml/_proto/qwak/admiral/secret/v0/secret_service_pb2_grpc.py,sha256=95auDdnyLijxuVsxlU213MXYF595jjWvz1L5i-HVd1Y,6873
173
- frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py,sha256=upoqMkZwa-9yNTwfNxc8DhyqSqLh8yJ30Fa-0uTfJRI,3422
174
- frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi,sha256=lvlahGJyM8LKj3hwEz4rqoAc3dh54iwlrjBBQVjPDX8,3810
175
- frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py,sha256=dGG6SxGjs4V-M6aKR9G5YPPcds-PNImvqdmY7l1Lp8k,6918
185
+ frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py,sha256=oXHMyMj9bWjGbMIRnEx5v0pvlArb3HYQwvxDzy5QXnQ,5594
186
+ frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi,sha256=-fyHIVVv5Aa7pbv1EEmzYpYsnwDKFlnEfF5XFQI8VI4,7653
187
+ frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py,sha256=Jl8KPDxhIcl3JwTuBi1Q-i9TCVaKI4FR4tCtIi9S19Y,13074
176
188
  frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.py,sha256=nPksL4ROLEgchP1YtL-BSAcmBvb3NcEdsNBxVInxDNI,8028
177
189
  frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.pyi,sha256=TVQAGe8Sil6DyMFJbWOioYhdqRYHp26WouKjMbCgDnk,20646
178
190
  frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
@@ -329,14 +341,14 @@ frogml/_proto/qwak/execution/v1/execution_service_pb2_grpc.py,sha256=mU-NtS1-zJZ
329
341
  frogml/_proto/qwak/execution/v1/internal/deployment/platform_details_pb2.py,sha256=ivjAepuIj4oZA7cliHQVN8uXIS24tWe-NlUsH7w-Nt4,1442
330
342
  frogml/_proto/qwak/execution/v1/internal/deployment/platform_details_pb2.pyi,sha256=Y2JJ2jIsyNA25gXERfkcIC0Lxj6X0UVRNQsjSFPxhOU,670
331
343
  frogml/_proto/qwak/execution/v1/internal/deployment/platform_details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
332
- frogml/_proto/qwak/execution/v1/jobs/job_pb2.py,sha256=X5eg6ckwWpaIdTZQ6dn_tlMc4MUH5gc3Ri0bfbxOFv0,5284
333
- frogml/_proto/qwak/execution/v1/jobs/job_pb2.pyi,sha256=g7a5wpI-E1CCLusnyy5pHuK0y2hXRjCvQnsar3vwwXw,14883
344
+ frogml/_proto/qwak/execution/v1/jobs/job_pb2.py,sha256=8SP8odPdM2aDlAB-0T7WN_LdVEFmfI8mZHgmZjMBsqk,5910
345
+ frogml/_proto/qwak/execution/v1/jobs/job_pb2.pyi,sha256=HyAEnWP_8ua5R3hATfdivKF3Z1UTZJ4waB2sPTALtRs,17387
334
346
  frogml/_proto/qwak/execution/v1/jobs/job_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
335
347
  frogml/_proto/qwak/execution/v1/jobs/job_service_pb2.py,sha256=Nde4IurdiP9G-mFU6mjGhFNNtKwe9_pFHHUFfzy-s7U,10518
336
348
  frogml/_proto/qwak/execution/v1/jobs/job_service_pb2.pyi,sha256=HqnUYs0eUO9L4cBavZyPm61WijeyNUEj6Nl72jYO_sk,20494
337
349
  frogml/_proto/qwak/execution/v1/jobs/job_service_pb2_grpc.py,sha256=95HZekdR1Hfy2zFDvrTz12oNErvkmSzT1A960v9Uato,23233
338
- frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2.py,sha256=_3HGN3MV8hfxYBwTaN7O7I4eQb-20wS98wFl_oSMFVg,5419
339
- frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2.pyi,sha256=koA-MbzDFCt1rVEdeDm0N_SAqC7TUUcfeGMseZDlGdw,13549
350
+ frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2.py,sha256=PASb8cw_36u1FH7rKmOtG1qMwRKJCVPd_qgdch92Yiw,6074
351
+ frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2.pyi,sha256=18TGsUgwpqmz2yUFuMRF17eK21fLcF9D71J-DibUI3E,16038
340
352
  frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
341
353
  frogml/_proto/qwak/execution/v1/state/execution_state_pb2.py,sha256=kT7HTbhsjZJbpNAvogHFg9EMcBg3GHxwA1PVInx8Tyc,1887
342
354
  frogml/_proto/qwak/execution/v1/state/execution_state_pb2.pyi,sha256=eqajbFrytOs1CZWoq3SygyR6fTgadqRgma4XUSkvnlQ,1862
@@ -389,8 +401,8 @@ frogml/_proto/qwak/feature_store/features/feature_set_state_pb2_grpc.py,sha256=1
389
401
  frogml/_proto/qwak/feature_store/features/feature_set_state_service_pb2.py,sha256=lHM92S2Qeq08xQlWMaCskhdLZi8XGSUqgMvxMdsGKh0,5121
390
402
  frogml/_proto/qwak/feature_store/features/feature_set_state_service_pb2.pyi,sha256=JAr2xc6181qr8JRaDPmKOi66rBDk_dFkZy7yqwq52kU,6859
391
403
  frogml/_proto/qwak/feature_store/features/feature_set_state_service_pb2_grpc.py,sha256=yT0knmt0gPMDE4JIEvnhapwKRmw4bzadhas0mAPy07o,11649
392
- frogml/_proto/qwak/feature_store/features/feature_set_types_pb2.py,sha256=X4A3ezGpXqHyKWKSOKhERvDEDfeFw-zIBgW80w1ryvE,16995
393
- frogml/_proto/qwak/feature_store/features/feature_set_types_pb2.pyi,sha256=UvTla-dtPFKw9iRhHRorvJcvaL2c-FKbRDRMkOvGyXs,43957
404
+ frogml/_proto/qwak/feature_store/features/feature_set_types_pb2.py,sha256=h11I2xlIwLikJ25ta5_J92KOuaDes1KD35ZWys6eRZg,17311
405
+ frogml/_proto/qwak/feature_store/features/feature_set_types_pb2.pyi,sha256=YOghlCY89LnxQ12Ehw3idkGfWj-78ewE234d19gw4OA,44904
394
406
  frogml/_proto/qwak/feature_store/features/feature_set_types_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
395
407
  frogml/_proto/qwak/feature_store/features/monitoring_pb2.py,sha256=lMI-mHRVOeGK-ExRTEsyM5TCwqE8XIs-PTqZRnpLvKs,1913
396
408
  frogml/_proto/qwak/feature_store/features/monitoring_pb2.pyi,sha256=srBL-5vdEYd1JkBxrZIWpCzgc6aqTxkE9cNhvNGffqE,2303
@@ -422,8 +434,8 @@ frogml/_proto/qwak/feature_store/repository/common/platform_pb2_grpc.py,sha256=1
422
434
  frogml/_proto/qwak/feature_store/serving/management_pb2.py,sha256=v9xZY5P0zX-E1PByAamrz-zjSoOUdN_hdsfaAMEuNbc,3013
423
435
  frogml/_proto/qwak/feature_store/serving/management_pb2.pyi,sha256=RUuAs3GV26qwJ5UlDvwynLDvBhbBz5sLI2R4oRP6IWE,2691
424
436
  frogml/_proto/qwak/feature_store/serving/management_pb2_grpc.py,sha256=j2E_8N7iLm49YrzdWYmaHgoIxzX7RE2FkeVPVcDfbiI,5438
425
- frogml/_proto/qwak/feature_store/serving/metadata_pb2.py,sha256=9wyVUZTFS1RuG2meuBX6sOrx-ErodGxdx_C9Y-s-BQY,3635
426
- frogml/_proto/qwak/feature_store/serving/metadata_pb2.pyi,sha256=s0bhYtNN0dgVYtikv_XU2qew0vPhZW8LcrbohC9LOVM,7630
437
+ frogml/_proto/qwak/feature_store/serving/metadata_pb2.py,sha256=izPUl8ffud-i5IvEsYYKyAdu7RpKd0vU17MKxfb9sBI,3947
438
+ frogml/_proto/qwak/feature_store/serving/metadata_pb2.pyi,sha256=WfTOK5bnJT3doMDmTyMyW_5vlnq2FVpz-GPjqveef3Y,8977
427
439
  frogml/_proto/qwak/feature_store/serving/metadata_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
428
440
  frogml/_proto/qwak/feature_store/serving/serving_pb2.py,sha256=Sc-3Pr9W0HVZSyL0ohFLCOKGz-jiko93jK0fwCv90Pg,9289
429
441
  frogml/_proto/qwak/feature_store/serving/serving_pb2.pyi,sha256=sQwqq8wMIGj13L--GYaFh4wKAv2BioiZlfeHBjF_3Ec,20267
@@ -665,11 +677,15 @@ frogml/core/clients/administration/authenticated_user/__init__.py,sha256=47DEQpj
665
677
  frogml/core/clients/administration/authenticated_user/client.py,sha256=ouN4YxbZs4uYDI8O0DaJZxfUoXgqESrJCDRTlfuNk5s,1486
666
678
  frogml/core/clients/administration/authentication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
667
679
  frogml/core/clients/administration/authentication/client.py,sha256=BzfCb5laJ3Vci5t3owrcpuVvF4o9bsiKtOFfYWM1Nno,1200
680
+ frogml/core/clients/administration/cluster_v2/__init__.py,sha256=qsxlbOhYg9p5U-0RStC1CIJ86lEZ5UNIWuFPnL-8wGw,36
681
+ frogml/core/clients/administration/cluster_v2/client.py,sha256=m4CTSYjxxSeed118VxCanDQivMLXg5o1jxyDmSeMHUM,4217
668
682
  frogml/core/clients/administration/eco_system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
669
683
  frogml/core/clients/administration/eco_system/client.py,sha256=b2MYJVlbU4ehhwBWWkCwwl24xVw4K-_t7xMuGSMQ2uo,5379
670
684
  frogml/core/clients/administration/eco_system/eco_system_utils.py,sha256=iSyCJv7z65DI2c3qsREzBM_S8ZUGOG4ISjhrfL_t4_Y,521
671
685
  frogml/core/clients/administration/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
672
- frogml/core/clients/administration/environment/client.py,sha256=KHUsKFb2gKqpHFTU74vVSLGAPgHufbDS-hB4tbFvyE8,2739
686
+ frogml/core/clients/administration/environment/client.py,sha256=YlfaKvoMXGAvcYj480PtXlAqc8GG6qSGv3KvPqtYh0o,3807
687
+ frogml/core/clients/administration/environment_v1/__init__.py,sha256=15_J34QBVU9X0d9_A6stiwYc6oLwkvuCCviROwROPXo,40
688
+ frogml/core/clients/administration/environment_v1/client.py,sha256=pEvE7dKv_QhYgOi-Aggc6oWAJq-80-Qw_Hsddn60upA,1924
673
689
  frogml/core/clients/administration/self_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
674
690
  frogml/core/clients/administration/self_service/client.py,sha256=znZgDkUzSLgtKx1yrUNU72_BiFtPbpCratD73B316bU,2648
675
691
  frogml/core/clients/alert_management/__init__.py,sha256=zAfCPJTj6oAMoj3vciLjRy8ULTTHCmmrdISuDCHASvk,43
@@ -860,7 +876,7 @@ frogml/core/inner/di_configuration/__init__.py,sha256=GQKLaDPpBQ78h0gbwxaW3JkKbN
860
876
  frogml/core/inner/di_configuration/account.py,sha256=YbQBmZ-roybEZJ1fmGk9TLQ5CEjLWcP9NuxS6WSSrbI,3016
861
877
  frogml/core/inner/di_configuration/config.yml,sha256=GUvaZMWIDIR_d7hFcPVG_kHdCwpERKH1AFDakG3vqI4,242
862
878
  frogml/core/inner/di_configuration/containers.py,sha256=8rEMnLSFvlfjEnfvbm9hOizCGWXX9F8S9QEYF5sX48E,1495
863
- frogml/core/inner/di_configuration/dependency_wiring.py,sha256=bbVfjcDYEiAqKfIf2l60XthmDjYBe8YIwutz8DZcglg,2714
879
+ frogml/core/inner/di_configuration/dependency_wiring.py,sha256=sbgR4wJo08UDO9MQR6ub2lIq8HRzb9QBucvGVRRYQ4Y,2786
864
880
  frogml/core/inner/instance_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
865
881
  frogml/core/inner/instance_template/verify_template_id.py,sha256=SSVReUkx9t0FkXaSh0MKXOKdjd_55wE3NjAPOt6DGIM,1952
866
882
  frogml/core/inner/model_loggers_utils.py,sha256=mGBZQ1CbiEePaoftFEH_yfLlsxP8fcPcu83Cb8Ut8cM,2465
@@ -1143,9 +1159,12 @@ frogml_services_mock/mocks/batch_job_manager_service.py,sha256=CYkNs1SkuTji0QHdv
1143
1159
  frogml_services_mock/mocks/build_orchestrator_build_api.py,sha256=_9ZmgkAH_yp0yWZlqnMPT9rlj9ctfsMIlIJxG_a2Jc4,5002
1144
1160
  frogml_services_mock/mocks/build_orchestrator_build_settings_api.py,sha256=c5_X7Q4EYP5krrLFdWbnml7_asdgLKB_6_VkwEOR8_A,1218
1145
1161
  frogml_services_mock/mocks/build_orchestrator_service_api.py,sha256=7mZzOahph29ZLGh_qQaE2QqF4Bs5YwTaFj8QJxd4TkA,5345
1162
+ frogml_services_mock/mocks/cluster_v2_service.py,sha256=r4A2A4UUIEpyGrBEI9JSMQc1bzpzqBU_Vu22MIKP2do,5690
1146
1163
  frogml_services_mock/mocks/data_versioning_service.py,sha256=8DzV5oxH7DXZAu_ZBiPEwW9m1AwbOlYOO1PFPjkq_Dk,2470
1147
1164
  frogml_services_mock/mocks/deployment_management_service.py,sha256=wofBAw-2NKToTiFYxHqjR3QDrvplpV8NWNZMiIX6U_Q,20583
1148
1165
  frogml_services_mock/mocks/ecosystem_service_api.py,sha256=saJYdT43nGVNyozWeDVc6HIXAsNvCdU5J1i-NNrnOr4,2089
1166
+ frogml_services_mock/mocks/environment_v0_service.py,sha256=xKKxKiD4_sqRfyNEpEdqZz-LQ7sJKop80JtvGTReI7s,7522
1167
+ frogml_services_mock/mocks/environment_v1_service.py,sha256=_5WPuVTchhopXrZyHSnh_TAprtTgTjt3Jkpprl0cHsk,1404
1149
1168
  frogml_services_mock/mocks/execution_management_service.py,sha256=pRX_DWzayMhwbw7zQVRx2blVpiubqVWpZng2Xn8ZgI0,1205
1150
1169
  frogml_services_mock/mocks/feature_store_data_sources_manager_api.py,sha256=YNd-0abshQH6bfrIEr1z0awIde_SYabfuZHV83LmcJ4,5249
1151
1170
  frogml_services_mock/mocks/feature_store_entities_manager_api.py,sha256=fF3hhJvbd7PDPyghvqtiJudISOR1GasP6MDs5X44Tic,3355
@@ -1155,7 +1174,7 @@ frogml_services_mock/mocks/features_operator_v3_service.py,sha256=v6XdUpiI5T5mog
1155
1174
  frogml_services_mock/mocks/features_set_state_service_api.py,sha256=YaF3X12gCFDKFYFUAH3ZsK2jjbxU1aYYyExwe-F1Zdg,2293
1156
1175
  frogml_services_mock/mocks/feedback_service.py,sha256=yHItKZnlrN75F7D2rIGVrffipRaBCyMIvxK5ZmMVckE,1142
1157
1176
  frogml_services_mock/mocks/file_versioning_service.py,sha256=PF_XyipSF5I8SfCNDYv298p3lMCizgDTZORlSuo4RYQ,2609
1158
- frogml_services_mock/mocks/frogml_mocks.py,sha256=16-x7m3pHl9C51SbuVYwDWmBWv4vzEAwEjfykQaSlfM,6336
1177
+ frogml_services_mock/mocks/frogml_mocks.py,sha256=eyJ76XwrRaSrBasdjyLGnlXWAmBXR1lJDJUqMBGLU90,6755
1159
1178
  frogml_services_mock/mocks/fs_offline_serving_service.py,sha256=rzxL_G8t3PIM-IFuchqkHuUUzlOZfiP5A5IMSeSQynA,2096
1160
1179
  frogml_services_mock/mocks/instance_template_management_service.py,sha256=AZ-QCzrx4d4g5E4XIPqFNhOJPBwb4S90mfVzsn6oNe4,4766
1161
1180
  frogml_services_mock/mocks/integration_management_service.py,sha256=cw45A8EadycTyq3Okx1sgcuWZ-Lz2iPMRin6f4e_0Ws,2775
@@ -1177,9 +1196,9 @@ frogml_services_mock/mocks/system_secret_service.py,sha256=ceOR1nfQOGW4ZBcry4Q_l
1177
1196
  frogml_services_mock/mocks/user_application_instance_service_api.py,sha256=Es3s9MnutY0Qsd_FOq_ctKvT-3wHn7-fxah1fvr5Jv4,4100
1178
1197
  frogml_services_mock/mocks/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1179
1198
  frogml_services_mock/mocks/utils/exception_handlers.py,sha256=k_8mez3cwjNjKE9yGQRJUuK95qNQyk_slotIF08IIEE,308
1180
- frogml_services_mock/services_mock.py,sha256=hciz4Q2NvjT84DE08sgxfVVDELfD4hitqgoDrZugcjg,19961
1199
+ frogml_services_mock/services_mock.py,sha256=cVydasU1hXNbvz6K_M57GIZJ285i0s2fcMATzH2HH6I,21378
1181
1200
  frogml_services_mock/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1182
1201
  frogml_services_mock/utils/service_utils.py,sha256=ZlB0CnB1J6oBn6_m7fQO2U8tKoboHdUa6ljjkRMYNXU,265
1183
- frogml-1.2.41.dist-info/METADATA,sha256=-RAwoyHVI5VO_IY9sSKBZXVs9EJzKAd6qIHhXxKdZIc,5599
1184
- frogml-1.2.41.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
1185
- frogml-1.2.41.dist-info/RECORD,,
1202
+ frogml-1.2.49.dist-info/METADATA,sha256=Vrz7iBjaoL4ZDO3wLz5oRpCF3rq71JerwzhIXPL1k-w,5599
1203
+ frogml-1.2.49.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
1204
+ frogml-1.2.49.dist-info/RECORD,,