qwak-core 0.4.283__py3-none-any.whl → 0.4.284__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.
- _qwak_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2.py +13 -3
- _qwak_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2.pyi +29 -0
- _qwak_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.py +4 -3
- _qwak_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.pyi +16 -0
- frogml_storage/__init__.py +1 -1
- qwak/__init__.py +1 -1
- {qwak_core-0.4.283.dist-info → qwak_core-0.4.284.dist-info}/METADATA +1 -1
- {qwak_core-0.4.283.dist-info → qwak_core-0.4.284.dist-info}/RECORD +9 -9
- {qwak_core-0.4.283.dist-info → qwak_core-0.4.284.dist-info}/WHEEL +0 -0
@@ -14,11 +14,12 @@ _sym_db = _symbol_database.Default()
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nMqwak/administration/runtime_configuration/v0/external/prometheus_config.proto\x12Gqwak.administration.runtime_configuration.v0.external.prometheus_config\"\
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nMqwak/administration/runtime_configuration/v0/external/prometheus_config.proto\x12Gqwak.administration.runtime_configuration.v0.external.prometheus_config\"\x97\x01\n\x17PrometheusConfiguration\x12n\n\x06promxy\x18\x01 \x01(\x0b\x32\\.qwak.administration.runtime_configuration.v0.external.prometheus_config.PromxyConfigurationH\x00\x42\x0c\n\nproxy_type\"\"\n\x13PromxyConfiguration\x12\x0b\n\x03url\x18\x01 \x01(\tB\xf9\x01\n@com.jfrog.ml.runtime_configuration.v0.external.prometheus_configP\x01Z\xb2\x01github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0_externalb\x06proto3')
|
18
18
|
|
19
19
|
|
20
20
|
|
21
21
|
_PROMETHEUSCONFIGURATION = DESCRIPTOR.message_types_by_name['PrometheusConfiguration']
|
22
|
+
_PROMXYCONFIGURATION = DESCRIPTOR.message_types_by_name['PromxyConfiguration']
|
22
23
|
PrometheusConfiguration = _reflection.GeneratedProtocolMessageType('PrometheusConfiguration', (_message.Message,), {
|
23
24
|
'DESCRIPTOR' : _PROMETHEUSCONFIGURATION,
|
24
25
|
'__module__' : 'qwak.administration.runtime_configuration.v0.external.prometheus_config_pb2'
|
@@ -26,10 +27,19 @@ PrometheusConfiguration = _reflection.GeneratedProtocolMessageType('PrometheusCo
|
|
26
27
|
})
|
27
28
|
_sym_db.RegisterMessage(PrometheusConfiguration)
|
28
29
|
|
30
|
+
PromxyConfiguration = _reflection.GeneratedProtocolMessageType('PromxyConfiguration', (_message.Message,), {
|
31
|
+
'DESCRIPTOR' : _PROMXYCONFIGURATION,
|
32
|
+
'__module__' : 'qwak.administration.runtime_configuration.v0.external.prometheus_config_pb2'
|
33
|
+
# @@protoc_insertion_point(class_scope:qwak.administration.runtime_configuration.v0.external.prometheus_config.PromxyConfiguration)
|
34
|
+
})
|
35
|
+
_sym_db.RegisterMessage(PromxyConfiguration)
|
36
|
+
|
29
37
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
30
38
|
|
31
39
|
DESCRIPTOR._options = None
|
32
40
|
DESCRIPTOR._serialized_options = b'\n@com.jfrog.ml.runtime_configuration.v0.external.prometheus_configP\001Z\262\001github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0_external'
|
33
|
-
_PROMETHEUSCONFIGURATION._serialized_start=
|
34
|
-
_PROMETHEUSCONFIGURATION._serialized_end=
|
41
|
+
_PROMETHEUSCONFIGURATION._serialized_start=155
|
42
|
+
_PROMETHEUSCONFIGURATION._serialized_end=306
|
43
|
+
_PROMXYCONFIGURATION._serialized_start=308
|
44
|
+
_PROMXYCONFIGURATION._serialized_end=342
|
35
45
|
# @@protoc_insertion_point(module_scope)
|
@@ -2,16 +2,45 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
"""
|
5
|
+
import builtins
|
5
6
|
import google.protobuf.descriptor
|
6
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
|
7
14
|
|
8
15
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
9
16
|
|
10
17
|
class PrometheusConfiguration(google.protobuf.message.Message):
|
11
18
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
12
19
|
|
20
|
+
PROMXY_FIELD_NUMBER: builtins.int
|
21
|
+
@property
|
22
|
+
def promxy(self) -> global___PromxyConfiguration: ...
|
13
23
|
def __init__(
|
14
24
|
self,
|
25
|
+
*,
|
26
|
+
promxy: global___PromxyConfiguration | None = ...,
|
15
27
|
) -> None: ...
|
28
|
+
def HasField(self, field_name: typing_extensions.Literal["promxy", b"promxy", "proxy_type", b"proxy_type"]) -> builtins.bool: ...
|
29
|
+
def ClearField(self, field_name: typing_extensions.Literal["promxy", b"promxy", "proxy_type", b"proxy_type"]) -> None: ...
|
30
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["proxy_type", b"proxy_type"]) -> typing_extensions.Literal["promxy"] | None: ...
|
16
31
|
|
17
32
|
global___PrometheusConfiguration = PrometheusConfiguration
|
33
|
+
|
34
|
+
class PromxyConfiguration(google.protobuf.message.Message):
|
35
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
36
|
+
|
37
|
+
URL_FIELD_NUMBER: builtins.int
|
38
|
+
url: builtins.str
|
39
|
+
def __init__(
|
40
|
+
self,
|
41
|
+
*,
|
42
|
+
url: builtins.str = ...,
|
43
|
+
) -> None: ...
|
44
|
+
def ClearField(self, field_name: typing_extensions.Literal["url", b"url"]) -> None: ...
|
45
|
+
|
46
|
+
global___PromxyConfiguration = PromxyConfiguration
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.py
CHANGED
@@ -12,9 +12,10 @@ from google.protobuf import symbol_database as _symbol_database
|
|
12
12
|
_sym_db = _symbol_database.Default()
|
13
13
|
|
14
14
|
|
15
|
+
from _qwak_proto.qwak.administration.runtime_configuration.v0.external import prometheus_config_pb2 as qwak_dot_administration_dot_runtime__configuration_dot_v0_dot_external_dot_prometheus__config__pb2
|
15
16
|
|
16
17
|
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nRqwak/administration/runtime_configuration/v0/external/victoriametrics_config.proto\x12Lqwak.administration.runtime_configuration.v0.external.victoriametrics_config\"\
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nRqwak/administration/runtime_configuration/v0/external/victoriametrics_config.proto\x12Lqwak.administration.runtime_configuration.v0.external.victoriametrics_config\x1aMqwak/administration/runtime_configuration/v0/external/prometheus_config.proto\"\x9c\x01\n\x1cVictoriaMetricsConfiguration\x12n\n\x06promxy\x18\x01 \x01(\x0b\x32\\.qwak.administration.runtime_configuration.v0.external.prometheus_config.PromxyConfigurationH\x00\x42\x0c\n\nproxy_typeB\xfe\x01\nEcom.jfrog.ml.runtime_configuration.v0.external.victoriametrics_configP\x01Z\xb2\x01github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0_externalb\x06proto3')
|
18
19
|
|
19
20
|
|
20
21
|
|
@@ -30,6 +31,6 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
30
31
|
|
31
32
|
DESCRIPTOR._options = None
|
32
33
|
DESCRIPTOR._serialized_options = b'\nEcom.jfrog.ml.runtime_configuration.v0.external.victoriametrics_configP\001Z\262\001github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0_external'
|
33
|
-
_VICTORIAMETRICSCONFIGURATION._serialized_start=
|
34
|
-
_VICTORIAMETRICSCONFIGURATION._serialized_end=
|
34
|
+
_VICTORIAMETRICSCONFIGURATION._serialized_start=244
|
35
|
+
_VICTORIAMETRICSCONFIGURATION._serialized_end=400
|
35
36
|
# @@protoc_insertion_point(module_scope)
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.pyi
CHANGED
@@ -2,16 +2,32 @@
|
|
2
2
|
@generated by mypy-protobuf. Do not edit manually!
|
3
3
|
isort:skip_file
|
4
4
|
"""
|
5
|
+
import builtins
|
5
6
|
import google.protobuf.descriptor
|
6
7
|
import google.protobuf.message
|
8
|
+
import qwak.administration.runtime_configuration.v0.external.prometheus_config_pb2
|
9
|
+
import sys
|
10
|
+
|
11
|
+
if sys.version_info >= (3, 8):
|
12
|
+
import typing as typing_extensions
|
13
|
+
else:
|
14
|
+
import typing_extensions
|
7
15
|
|
8
16
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
9
17
|
|
10
18
|
class VictoriaMetricsConfiguration(google.protobuf.message.Message):
|
11
19
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
12
20
|
|
21
|
+
PROMXY_FIELD_NUMBER: builtins.int
|
22
|
+
@property
|
23
|
+
def promxy(self) -> qwak.administration.runtime_configuration.v0.external.prometheus_config_pb2.PromxyConfiguration: ...
|
13
24
|
def __init__(
|
14
25
|
self,
|
26
|
+
*,
|
27
|
+
promxy: qwak.administration.runtime_configuration.v0.external.prometheus_config_pb2.PromxyConfiguration | None = ...,
|
15
28
|
) -> None: ...
|
29
|
+
def HasField(self, field_name: typing_extensions.Literal["promxy", b"promxy", "proxy_type", b"proxy_type"]) -> builtins.bool: ...
|
30
|
+
def ClearField(self, field_name: typing_extensions.Literal["promxy", b"promxy", "proxy_type", b"proxy_type"]) -> None: ...
|
31
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["proxy_type", b"proxy_type"]) -> typing_extensions.Literal["promxy"] | None: ...
|
16
32
|
|
17
33
|
global___VictoriaMetricsConfiguration = VictoriaMetricsConfiguration
|
frogml_storage/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.4.
|
1
|
+
__version__ = "0.4.284"
|
qwak/__init__.py
CHANGED
@@ -49,14 +49,14 @@ _qwak_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_
|
|
49
49
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2.py,sha256=0LSuq_Fvlx0CmHLd3niQ-ciQC_4_VeRMClMSkSVyApE,5174
|
50
50
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2.pyi,sha256=4X-h5GXZ62UjbvgA8hfS85IoE4pBaPppa_lzxxWn354,3454
|
51
51
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
52
|
-
_qwak_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2.py,sha256=
|
53
|
-
_qwak_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2.pyi,sha256=
|
52
|
+
_qwak_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2.py,sha256=QUHBlUGq2gj81JpkNTtmPRm8WayJJKGYe_BJnejVZLk,2972
|
53
|
+
_qwak_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2.pyi,sha256=JZezw1jbVfRvHBpbxavZt4Uz-l_LObe-cujUTlQL9oU,1558
|
54
54
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
55
55
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2.py,sha256=C1vqXvepfEQZjFoeidd6nniYWWNysA8ci8NX0XKibo0,2530
|
56
56
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2.pyi,sha256=1HUhgpwHPRhgezLcvkKyEF0Crwt35Ts8VFqlG0EPFs4,1501
|
57
57
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
58
|
-
_qwak_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.py,sha256=
|
59
|
-
_qwak_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.pyi,sha256=
|
58
|
+
_qwak_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.py,sha256=oxgz6TVvU5QNF3jZ8s91ooaX3WjLbRVs0J8qhHkRDQg,2684
|
59
|
+
_qwak_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.pyi,sha256=GpLOP0s8se0S7VU4p80PgGQxiZcywOGq_tAFmmge11E,1378
|
60
60
|
_qwak_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
61
61
|
_qwak_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2.py,sha256=6UI7P3Iu5K2ugD0kcCnWJmZHjF69wp7zCF2oxzf_jQ8,4203
|
62
62
|
_qwak_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2.pyi,sha256=Ie7T_fb2taQbzqFbYHz4AHjy1pExXZ5HDRJY-9CkoiI,2969
|
@@ -601,7 +601,7 @@ _qwak_proto/qwak/workspace/workspace_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXH
|
|
601
601
|
_qwak_proto/qwak/workspace/workspace_service_pb2.py,sha256=AB3C9S_AbOD7Nx1Ni4j1rW6PNtYTV1zjiqFQk-goQ74,21429
|
602
602
|
_qwak_proto/qwak/workspace/workspace_service_pb2.pyi,sha256=nKKCHwnovZhsy8TSVmdz-Vtl0nviOOoX56HD-41Xo08,13726
|
603
603
|
_qwak_proto/qwak/workspace/workspace_service_pb2_grpc.py,sha256=yKGuexxTBza99Ihe0DSTniV2ZSd_AG47inHenqfi890,27193
|
604
|
-
frogml_storage/__init__.py,sha256=
|
604
|
+
frogml_storage/__init__.py,sha256=uq_S1ow-Jg0UcCxXo5HjQSl_xiN0s8zMI74H78LIIuU,24
|
605
605
|
frogml_storage/artifactory/__init__.py,sha256=C02rcm7kqsZBVA6c6Gztxamj96hn8Aj6BuzYWFRmWbQ,71
|
606
606
|
frogml_storage/artifactory/_artifactory_api.py,sha256=z8YX90bCy82BWqMNUdpbbig1qF5CarkIOfP6V96uYYg,11188
|
607
607
|
frogml_storage/authentication/login/__init__.py,sha256=ch8UhQwh3o5ddyoJykQ0Bnog5-8qKHmeDpwqny8xMzM,46
|
@@ -639,7 +639,7 @@ frogml_storage/utils/_environment.py,sha256=NEnRxaFdRDi3UA33IVTSfQxqc9ZB6nV9YlHD
|
|
639
639
|
frogml_storage/utils/_input_checks_utility.py,sha256=ZUvkxhcTcbSKtpSo5ePWha3Ca5xohxIpiAlZlpcQ3xk,3221
|
640
640
|
frogml_storage/utils/_storage_utils.py,sha256=HB2g7uY5A3b33yIcAUM1OjHb5jWsnpESsiDrEviQwrI,366
|
641
641
|
frogml_storage/utils/_url_utils.py,sha256=NUEfz9Fp1iE8b676-A5wrMlSTsJVRKrUhcUItOFAJD8,821
|
642
|
-
qwak/__init__.py,sha256=
|
642
|
+
qwak/__init__.py,sha256=Uyt9qi7sbYlEjz206kdUxmVx5oQt4dEGk481Pa3RWRE,587
|
643
643
|
qwak/automations/__init__.py,sha256=qFZRvCxUUn8gcxkJR0v19ulHW2oJ0x6-Rif7HiheDP4,1522
|
644
644
|
qwak/automations/automation_executions.py,sha256=5MeH_epYYWb8NKXgAozwT_jPyyUDednBHG7izloi7RY,3228
|
645
645
|
qwak/automations/automations.py,sha256=3yx8e2v0uSKDnXbqyknasyEoQ5vxGni6K40Hbi1_zkk,12599
|
@@ -1113,6 +1113,6 @@ qwak_services_mock/mocks/workspace_manager_service_mock.py,sha256=O9ZSwln4T4kHVk
|
|
1113
1113
|
qwak_services_mock/services_mock.py,sha256=zXtHcX8a_acz7ynxuCBxxVpHpde7aAGjIn6Uw52LY1s,19593
|
1114
1114
|
qwak_services_mock/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1115
1115
|
qwak_services_mock/utils/service_utils.py,sha256=ZlB0CnB1J6oBn6_m7fQO2U8tKoboHdUa6ljjkRMYNXU,265
|
1116
|
-
qwak_core-0.4.
|
1117
|
-
qwak_core-0.4.
|
1118
|
-
qwak_core-0.4.
|
1116
|
+
qwak_core-0.4.284.dist-info/METADATA,sha256=5lDKXpZdTuM4J5b_qCubh1saS5t4_WqUqp320g9P2h8,15142
|
1117
|
+
qwak_core-0.4.284.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
1118
|
+
qwak_core-0.4.284.dist-info/RECORD,,
|
File without changes
|