frogml 1.2.45__py3-none-any.whl → 1.2.46__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 CHANGED
@@ -1,5 +1,5 @@
1
1
  __author__ = "jfrog"
2
- __version__ = "1.2.45"
2
+ __version__ = "1.2.46"
3
3
 
4
4
  from frogml.sdk.model.decorators.api import api_decorator as api
5
5
  from frogml.sdk.model_loggers.model_logger import load_model, log_model
@@ -0,0 +1,33 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: frogml._proto.qwak.admiral/secret/v0/account_secret.proto
4
+ # Protobuf Python Version: 4.25.1
5
+ """Generated protocol buffer code."""
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pool as _descriptor_pool
8
+ from google.protobuf import symbol_database as _symbol_database
9
+ from google.protobuf.internal import builder as _builder
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from frogml._proto.qwak.admiral.secret.v0 import secret_pb2 as qwak_dot_admiral_dot_secret_dot_v0_dot_secret__pb2
16
+ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
17
+
18
+
19
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n+qwak/admiral/secret/v0/account_secret.proto\x12\x16qwak.admiral.secret.v0\x1a#qwak/admiral/secret/v0/secret.proto\x1a\x1cgoogle/protobuf/struct.proto\"H\n\x1d\x41\x63\x63ountSystemSecretIdentifier\x12\x12\n\naccount_id\x18\x01 \x01(\t\x12\x13\n\x0bsecret_name\x18\x02 \x01(\t\"^\n\x1d\x41\x63\x63ountSystemSecretDefinition\x12=\n\x04spec\x18\x01 \x01(\x0b\x32/.qwak.admiral.secret.v0.AccountSystemSecretSpec\"\xb5\x01\n\x17\x41\x63\x63ountSystemSecretSpec\x12Q\n\x12\x61\x63\x63ount_identifier\x18\x01 \x01(\x0b\x32\x35.qwak.admiral.secret.v0.AccountSystemSecretIdentifier\x12G\n\x15\x61\x63\x63ount_system_secret\x18\x02 \x01(\x0b\x32(.qwak.admiral.secret.v0.SystemSecretSpecB\x8c\x01\n\x1d\x63om.qwak.ai.admiral.secret.v0P\x01Zigithub.com/qwak-ai/qwak-platform/services/core/go/admiral/admiral-api/pb/qwak/admiral/secret/v0;secret_v0b\x06proto3')
20
+
21
+ _globals = globals()
22
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
23
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'qwak.admiral.secret.v0.account_secret_pb2', _globals)
24
+ if _descriptor._USE_C_DESCRIPTORS == False:
25
+ _globals['DESCRIPTOR']._options = None
26
+ _globals['DESCRIPTOR']._serialized_options = b'\n\035com.qwak.ai.admiral.secret.v0P\001Zigithub.com/qwak-ai/qwak-platform/services/core/go/admiral/admiral-api/pb/qwak/admiral/secret/v0;secret_v0'
27
+ _globals['_ACCOUNTSYSTEMSECRETIDENTIFIER']._serialized_start=138
28
+ _globals['_ACCOUNTSYSTEMSECRETIDENTIFIER']._serialized_end=210
29
+ _globals['_ACCOUNTSYSTEMSECRETDEFINITION']._serialized_start=212
30
+ _globals['_ACCOUNTSYSTEMSECRETDEFINITION']._serialized_end=306
31
+ _globals['_ACCOUNTSYSTEMSECRETSPEC']._serialized_start=309
32
+ _globals['_ACCOUNTSYSTEMSECRETSPEC']._serialized_end=490
33
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,76 @@
1
+ """
2
+ @generated by mypy-protobuf. Do not edit manually!
3
+ isort:skip_file
4
+ """
5
+
6
+ import builtins
7
+ import google.protobuf.descriptor
8
+ import google.protobuf.message
9
+ import frogml._proto.qwak.admiral.secret.v0.secret_pb2
10
+ import typing
11
+
12
+ DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
13
+
14
+ @typing.final
15
+ class AccountSystemSecretIdentifier(google.protobuf.message.Message):
16
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
17
+
18
+ ACCOUNT_ID_FIELD_NUMBER: builtins.int
19
+ SECRET_NAME_FIELD_NUMBER: builtins.int
20
+ account_id: builtins.str
21
+ """account id"""
22
+ secret_name: builtins.str
23
+ """secret name"""
24
+ def __init__(
25
+ self,
26
+ *,
27
+ account_id: builtins.str = ...,
28
+ secret_name: builtins.str = ...,
29
+ ) -> None: ...
30
+ def ClearField(self, field_name: typing.Literal["account_id", b"account_id", "secret_name", b"secret_name"]) -> None: ...
31
+
32
+ global___AccountSystemSecretIdentifier = AccountSystemSecretIdentifier
33
+
34
+ @typing.final
35
+ class AccountSystemSecretDefinition(google.protobuf.message.Message):
36
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
37
+
38
+ SPEC_FIELD_NUMBER: builtins.int
39
+ @property
40
+ def spec(self) -> global___AccountSystemSecretSpec:
41
+ """Secret spec"""
42
+
43
+ def __init__(
44
+ self,
45
+ *,
46
+ spec: global___AccountSystemSecretSpec | None = ...,
47
+ ) -> None: ...
48
+ def HasField(self, field_name: typing.Literal["spec", b"spec"]) -> builtins.bool: ...
49
+ def ClearField(self, field_name: typing.Literal["spec", b"spec"]) -> None: ...
50
+
51
+ global___AccountSystemSecretDefinition = AccountSystemSecretDefinition
52
+
53
+ @typing.final
54
+ class AccountSystemSecretSpec(google.protobuf.message.Message):
55
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
56
+
57
+ ACCOUNT_IDENTIFIER_FIELD_NUMBER: builtins.int
58
+ ACCOUNT_SYSTEM_SECRET_FIELD_NUMBER: builtins.int
59
+ @property
60
+ def account_identifier(self) -> global___AccountSystemSecretIdentifier:
61
+ """Secret identifier"""
62
+
63
+ @property
64
+ def account_system_secret(self) -> frogml._proto.qwak.admiral.secret.v0.secret_pb2.SystemSecretSpec:
65
+ """Secret"""
66
+
67
+ def __init__(
68
+ self,
69
+ *,
70
+ account_identifier: global___AccountSystemSecretIdentifier | None = ...,
71
+ account_system_secret: frogml._proto.qwak.admiral.secret.v0.secret_pb2.SystemSecretSpec | None = ...,
72
+ ) -> None: ...
73
+ def HasField(self, field_name: typing.Literal["account_identifier", b"account_identifier", "account_system_secret", b"account_system_secret"]) -> builtins.bool: ...
74
+ def ClearField(self, field_name: typing.Literal["account_identifier", b"account_identifier", "account_system_secret", b"account_system_secret"]) -> None: ...
75
+
76
+ global___AccountSystemSecretSpec = AccountSystemSecretSpec
@@ -0,0 +1,4 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+
@@ -13,9 +13,10 @@ _sym_db = _symbol_database.Default()
13
13
 
14
14
 
15
15
  from frogml._proto.qwak.admiral.secret.v0 import secret_pb2 as qwak_dot_admiral_dot_secret_dot_v0_dot_secret__pb2
16
+ from frogml._proto.qwak.admiral.secret.v0 import account_secret_pb2 as qwak_dot_admiral_dot_secret_dot_v0_dot_account__secret__pb2
16
17
 
17
18
 
18
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2qwak/admiral/secret/v0/system_secret_service.proto\x12\x16qwak.admiral.secret.v0\x1a#qwak/admiral/secret/v0/secret.proto\"d\n\x16SetSystemSecretRequest\x12J\n\x07options\x18\x01 \x01(\x0b\x32\x39.qwak.admiral.secret.v0.SetSystemEnvironmentSecretOptions\"\x19\n\x17SetSystemSecretResponse\"d\n\x19\x44\x65leteSystemSecretRequest\x12G\n\nidentifier\x18\x01 \x01(\x0b\x32\x33.qwak.admiral.secret.v0.EnvironmentSecretIdentifier\"\x1c\n\x1a\x44\x65leteSystemSecretResponse\"a\n\x16GetSystemSecretRequest\x12G\n\nidentifier\x18\x01 \x01(\x0b\x32\x33.qwak.admiral.secret.v0.EnvironmentSecretIdentifier\"d\n\x17GetSystemSecretResponse\x12I\n\x11secret_definition\x18\x01 \x01(\x0b\x32..qwak.admiral.secret.v0.SystemSecretDefinition2\xfa\x02\n\x13SystemSecretService\x12r\n\x0fSetSystemSecret\x12..qwak.admiral.secret.v0.SetSystemSecretRequest\x1a/.qwak.admiral.secret.v0.SetSystemSecretResponse\x12{\n\x12\x44\x65leteSystemSecret\x12\x31.qwak.admiral.secret.v0.DeleteSystemSecretRequest\x1a\x32.qwak.admiral.secret.v0.DeleteSystemSecretResponse\x12r\n\x0fGetSystemSecret\x12..qwak.admiral.secret.v0.GetSystemSecretRequest\x1a/.qwak.admiral.secret.v0.GetSystemSecretResponseB\x8c\x01\n\x1d\x63om.qwak.ai.admiral.secret.v0P\x01Zigithub.com/qwak-ai/qwak-platform/services/core/go/admiral/admiral-api/pb/qwak/admiral/secret/v0;secret_v0b\x06proto3')
19
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2qwak/admiral/secret/v0/system_secret_service.proto\x12\x16qwak.admiral.secret.v0\x1a#qwak/admiral/secret/v0/secret.proto\x1a+qwak/admiral/secret/v0/account_secret.proto\"d\n\x16SetSystemSecretRequest\x12J\n\x07options\x18\x01 \x01(\x0b\x32\x39.qwak.admiral.secret.v0.SetSystemEnvironmentSecretOptions\"\x19\n\x17SetSystemSecretResponse\"d\n\x19\x44\x65leteSystemSecretRequest\x12G\n\nidentifier\x18\x01 \x01(\x0b\x32\x33.qwak.admiral.secret.v0.EnvironmentSecretIdentifier\"\x1c\n\x1a\x44\x65leteSystemSecretResponse\"a\n\x16GetSystemSecretRequest\x12G\n\nidentifier\x18\x01 \x01(\x0b\x32\x33.qwak.admiral.secret.v0.EnvironmentSecretIdentifier\"d\n\x17GetSystemSecretResponse\x12I\n\x11secret_definition\x18\x01 \x01(\x0b\x32..qwak.admiral.secret.v0.SystemSecretDefinition\"^\n\x1dSetAccountSystemSecretRequest\x12=\n\x04spec\x18\x01 \x01(\x0b\x32/.qwak.admiral.secret.v0.AccountSystemSecretSpec\" \n\x1eSetAccountSystemSecretResponse\"r\n\x1dGetAccountSystemSecretRequest\x12Q\n\x12\x61\x63\x63ount_identifier\x18\x01 \x01(\x0b\x32\x35.qwak.admiral.secret.v0.AccountSystemSecretIdentifier\"z\n\x1eGetAccountSystemSecretResponse\x12X\n\x19\x61\x63\x63ount_secret_definition\x18\x01 \x01(\x0b\x32\x35.qwak.admiral.secret.v0.AccountSystemSecretDefinition\"u\n DeleteAccountSystemSecretRequest\x12Q\n\x12\x61\x63\x63ount_identifier\x18\x01 \x01(\x0b\x32\x35.qwak.admiral.secret.v0.AccountSystemSecretIdentifier\"#\n!DeleteAccountSystemSecretResponse2\xa1\x06\n\x13SystemSecretService\x12r\n\x0fSetSystemSecret\x12..qwak.admiral.secret.v0.SetSystemSecretRequest\x1a/.qwak.admiral.secret.v0.SetSystemSecretResponse\x12{\n\x12\x44\x65leteSystemSecret\x12\x31.qwak.admiral.secret.v0.DeleteSystemSecretRequest\x1a\x32.qwak.admiral.secret.v0.DeleteSystemSecretResponse\x12r\n\x0fGetSystemSecret\x12..qwak.admiral.secret.v0.GetSystemSecretRequest\x1a/.qwak.admiral.secret.v0.GetSystemSecretResponse\x12\x87\x01\n\x16SetAccountSystemSecret\x12\x35.qwak.admiral.secret.v0.SetAccountSystemSecretRequest\x1a\x36.qwak.admiral.secret.v0.SetAccountSystemSecretResponse\x12\x87\x01\n\x16GetAccountSystemSecret\x12\x35.qwak.admiral.secret.v0.GetAccountSystemSecretRequest\x1a\x36.qwak.admiral.secret.v0.GetAccountSystemSecretResponse\x12\x90\x01\n\x19\x44\x65leteAccountSystemSecret\x12\x38.qwak.admiral.secret.v0.DeleteAccountSystemSecretRequest\x1a\x39.qwak.admiral.secret.v0.DeleteAccountSystemSecretResponseB\x8c\x01\n\x1d\x63om.qwak.ai.admiral.secret.v0P\x01Zigithub.com/qwak-ai/qwak-platform/services/core/go/admiral/admiral-api/pb/qwak/admiral/secret/v0;secret_v0b\x06proto3')
19
20
 
20
21
  _globals = globals()
21
22
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,18 +24,30 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'qwak.admiral.secret.v0.syst
23
24
  if _descriptor._USE_C_DESCRIPTORS == False:
24
25
  _globals['DESCRIPTOR']._options = None
25
26
  _globals['DESCRIPTOR']._serialized_options = b'\n\035com.qwak.ai.admiral.secret.v0P\001Zigithub.com/qwak-ai/qwak-platform/services/core/go/admiral/admiral-api/pb/qwak/admiral/secret/v0;secret_v0'
26
- _globals['_SETSYSTEMSECRETREQUEST']._serialized_start=115
27
- _globals['_SETSYSTEMSECRETREQUEST']._serialized_end=215
28
- _globals['_SETSYSTEMSECRETRESPONSE']._serialized_start=217
29
- _globals['_SETSYSTEMSECRETRESPONSE']._serialized_end=242
30
- _globals['_DELETESYSTEMSECRETREQUEST']._serialized_start=244
31
- _globals['_DELETESYSTEMSECRETREQUEST']._serialized_end=344
32
- _globals['_DELETESYSTEMSECRETRESPONSE']._serialized_start=346
33
- _globals['_DELETESYSTEMSECRETRESPONSE']._serialized_end=374
34
- _globals['_GETSYSTEMSECRETREQUEST']._serialized_start=376
35
- _globals['_GETSYSTEMSECRETREQUEST']._serialized_end=473
36
- _globals['_GETSYSTEMSECRETRESPONSE']._serialized_start=475
37
- _globals['_GETSYSTEMSECRETRESPONSE']._serialized_end=575
38
- _globals['_SYSTEMSECRETSERVICE']._serialized_start=578
39
- _globals['_SYSTEMSECRETSERVICE']._serialized_end=956
27
+ _globals['_SETSYSTEMSECRETREQUEST']._serialized_start=160
28
+ _globals['_SETSYSTEMSECRETREQUEST']._serialized_end=260
29
+ _globals['_SETSYSTEMSECRETRESPONSE']._serialized_start=262
30
+ _globals['_SETSYSTEMSECRETRESPONSE']._serialized_end=287
31
+ _globals['_DELETESYSTEMSECRETREQUEST']._serialized_start=289
32
+ _globals['_DELETESYSTEMSECRETREQUEST']._serialized_end=389
33
+ _globals['_DELETESYSTEMSECRETRESPONSE']._serialized_start=391
34
+ _globals['_DELETESYSTEMSECRETRESPONSE']._serialized_end=419
35
+ _globals['_GETSYSTEMSECRETREQUEST']._serialized_start=421
36
+ _globals['_GETSYSTEMSECRETREQUEST']._serialized_end=518
37
+ _globals['_GETSYSTEMSECRETRESPONSE']._serialized_start=520
38
+ _globals['_GETSYSTEMSECRETRESPONSE']._serialized_end=620
39
+ _globals['_SETACCOUNTSYSTEMSECRETREQUEST']._serialized_start=622
40
+ _globals['_SETACCOUNTSYSTEMSECRETREQUEST']._serialized_end=716
41
+ _globals['_SETACCOUNTSYSTEMSECRETRESPONSE']._serialized_start=718
42
+ _globals['_SETACCOUNTSYSTEMSECRETRESPONSE']._serialized_end=750
43
+ _globals['_GETACCOUNTSYSTEMSECRETREQUEST']._serialized_start=752
44
+ _globals['_GETACCOUNTSYSTEMSECRETREQUEST']._serialized_end=866
45
+ _globals['_GETACCOUNTSYSTEMSECRETRESPONSE']._serialized_start=868
46
+ _globals['_GETACCOUNTSYSTEMSECRETRESPONSE']._serialized_end=990
47
+ _globals['_DELETEACCOUNTSYSTEMSECRETREQUEST']._serialized_start=992
48
+ _globals['_DELETEACCOUNTSYSTEMSECRETREQUEST']._serialized_end=1109
49
+ _globals['_DELETEACCOUNTSYSTEMSECRETRESPONSE']._serialized_start=1111
50
+ _globals['_DELETEACCOUNTSYSTEMSECRETRESPONSE']._serialized_end=1146
51
+ _globals['_SYSTEMSECRETSERVICE']._serialized_start=1149
52
+ _globals['_SYSTEMSECRETSERVICE']._serialized_end=1950
40
53
  # @@protoc_insertion_point(module_scope)
@@ -6,6 +6,7 @@ isort:skip_file
6
6
  import builtins
7
7
  import google.protobuf.descriptor
8
8
  import google.protobuf.message
9
+ import frogml._proto.qwak.admiral.secret.v0.account_secret_pb2
9
10
  import frogml._proto.qwak.admiral.secret.v0.secret_pb2
10
11
  import typing
11
12
 
@@ -104,3 +105,91 @@ class GetSystemSecretResponse(google.protobuf.message.Message):
104
105
  def ClearField(self, field_name: typing.Literal["secret_definition", b"secret_definition"]) -> None: ...
105
106
 
106
107
  global___GetSystemSecretResponse = GetSystemSecretResponse
108
+
109
+ @typing.final
110
+ class SetAccountSystemSecretRequest(google.protobuf.message.Message):
111
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
112
+
113
+ SPEC_FIELD_NUMBER: builtins.int
114
+ @property
115
+ def spec(self) -> frogml._proto.qwak.admiral.secret.v0.account_secret_pb2.AccountSystemSecretSpec: ...
116
+ def __init__(
117
+ self,
118
+ *,
119
+ spec: frogml._proto.qwak.admiral.secret.v0.account_secret_pb2.AccountSystemSecretSpec | None = ...,
120
+ ) -> None: ...
121
+ def HasField(self, field_name: typing.Literal["spec", b"spec"]) -> builtins.bool: ...
122
+ def ClearField(self, field_name: typing.Literal["spec", b"spec"]) -> None: ...
123
+
124
+ global___SetAccountSystemSecretRequest = SetAccountSystemSecretRequest
125
+
126
+ @typing.final
127
+ class SetAccountSystemSecretResponse(google.protobuf.message.Message):
128
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
129
+
130
+ def __init__(
131
+ self,
132
+ ) -> None: ...
133
+
134
+ global___SetAccountSystemSecretResponse = SetAccountSystemSecretResponse
135
+
136
+ @typing.final
137
+ class GetAccountSystemSecretRequest(google.protobuf.message.Message):
138
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
139
+
140
+ ACCOUNT_IDENTIFIER_FIELD_NUMBER: builtins.int
141
+ @property
142
+ def account_identifier(self) -> frogml._proto.qwak.admiral.secret.v0.account_secret_pb2.AccountSystemSecretIdentifier: ...
143
+ def __init__(
144
+ self,
145
+ *,
146
+ account_identifier: frogml._proto.qwak.admiral.secret.v0.account_secret_pb2.AccountSystemSecretIdentifier | None = ...,
147
+ ) -> None: ...
148
+ def HasField(self, field_name: typing.Literal["account_identifier", b"account_identifier"]) -> builtins.bool: ...
149
+ def ClearField(self, field_name: typing.Literal["account_identifier", b"account_identifier"]) -> None: ...
150
+
151
+ global___GetAccountSystemSecretRequest = GetAccountSystemSecretRequest
152
+
153
+ @typing.final
154
+ class GetAccountSystemSecretResponse(google.protobuf.message.Message):
155
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
156
+
157
+ ACCOUNT_SECRET_DEFINITION_FIELD_NUMBER: builtins.int
158
+ @property
159
+ def account_secret_definition(self) -> frogml._proto.qwak.admiral.secret.v0.account_secret_pb2.AccountSystemSecretDefinition: ...
160
+ def __init__(
161
+ self,
162
+ *,
163
+ account_secret_definition: frogml._proto.qwak.admiral.secret.v0.account_secret_pb2.AccountSystemSecretDefinition | None = ...,
164
+ ) -> None: ...
165
+ def HasField(self, field_name: typing.Literal["account_secret_definition", b"account_secret_definition"]) -> builtins.bool: ...
166
+ def ClearField(self, field_name: typing.Literal["account_secret_definition", b"account_secret_definition"]) -> None: ...
167
+
168
+ global___GetAccountSystemSecretResponse = GetAccountSystemSecretResponse
169
+
170
+ @typing.final
171
+ class DeleteAccountSystemSecretRequest(google.protobuf.message.Message):
172
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
173
+
174
+ ACCOUNT_IDENTIFIER_FIELD_NUMBER: builtins.int
175
+ @property
176
+ def account_identifier(self) -> frogml._proto.qwak.admiral.secret.v0.account_secret_pb2.AccountSystemSecretIdentifier: ...
177
+ def __init__(
178
+ self,
179
+ *,
180
+ account_identifier: frogml._proto.qwak.admiral.secret.v0.account_secret_pb2.AccountSystemSecretIdentifier | None = ...,
181
+ ) -> None: ...
182
+ def HasField(self, field_name: typing.Literal["account_identifier", b"account_identifier"]) -> builtins.bool: ...
183
+ def ClearField(self, field_name: typing.Literal["account_identifier", b"account_identifier"]) -> None: ...
184
+
185
+ global___DeleteAccountSystemSecretRequest = DeleteAccountSystemSecretRequest
186
+
187
+ @typing.final
188
+ class DeleteAccountSystemSecretResponse(google.protobuf.message.Message):
189
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
190
+
191
+ def __init__(
192
+ self,
193
+ ) -> None: ...
194
+
195
+ global___DeleteAccountSystemSecretResponse = DeleteAccountSystemSecretResponse
@@ -29,6 +29,21 @@ class SystemSecretServiceStub(object):
29
29
  request_serializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetSystemSecretRequest.SerializeToString,
30
30
  response_deserializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetSystemSecretResponse.FromString,
31
31
  )
32
+ self.SetAccountSystemSecret = channel.unary_unary(
33
+ '/qwak.admiral.secret.v0.SystemSecretService/SetAccountSystemSecret',
34
+ request_serializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.SetAccountSystemSecretRequest.SerializeToString,
35
+ response_deserializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.SetAccountSystemSecretResponse.FromString,
36
+ )
37
+ self.GetAccountSystemSecret = channel.unary_unary(
38
+ '/qwak.admiral.secret.v0.SystemSecretService/GetAccountSystemSecret',
39
+ request_serializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetAccountSystemSecretRequest.SerializeToString,
40
+ response_deserializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetAccountSystemSecretResponse.FromString,
41
+ )
42
+ self.DeleteAccountSystemSecret = channel.unary_unary(
43
+ '/qwak.admiral.secret.v0.SystemSecretService/DeleteAccountSystemSecret',
44
+ request_serializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.DeleteAccountSystemSecretRequest.SerializeToString,
45
+ response_deserializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.DeleteAccountSystemSecretResponse.FromString,
46
+ )
32
47
 
33
48
 
34
49
  class SystemSecretServiceServicer(object):
@@ -55,6 +70,27 @@ class SystemSecretServiceServicer(object):
55
70
  context.set_details('Method not implemented!')
56
71
  raise NotImplementedError('Method not implemented!')
57
72
 
73
+ def SetAccountSystemSecret(self, request, context):
74
+ """Create or Update a value for an account system secret
75
+ """
76
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
77
+ context.set_details('Method not implemented!')
78
+ raise NotImplementedError('Method not implemented!')
79
+
80
+ def GetAccountSystemSecret(self, request, context):
81
+ """Get account system secret
82
+ """
83
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
84
+ context.set_details('Method not implemented!')
85
+ raise NotImplementedError('Method not implemented!')
86
+
87
+ def DeleteAccountSystemSecret(self, request, context):
88
+ """Delete account level secret
89
+ """
90
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
91
+ context.set_details('Method not implemented!')
92
+ raise NotImplementedError('Method not implemented!')
93
+
58
94
 
59
95
  def add_SystemSecretServiceServicer_to_server(servicer, server):
60
96
  rpc_method_handlers = {
@@ -73,6 +109,21 @@ def add_SystemSecretServiceServicer_to_server(servicer, server):
73
109
  request_deserializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetSystemSecretRequest.FromString,
74
110
  response_serializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetSystemSecretResponse.SerializeToString,
75
111
  ),
112
+ 'SetAccountSystemSecret': grpc.unary_unary_rpc_method_handler(
113
+ servicer.SetAccountSystemSecret,
114
+ request_deserializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.SetAccountSystemSecretRequest.FromString,
115
+ response_serializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.SetAccountSystemSecretResponse.SerializeToString,
116
+ ),
117
+ 'GetAccountSystemSecret': grpc.unary_unary_rpc_method_handler(
118
+ servicer.GetAccountSystemSecret,
119
+ request_deserializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetAccountSystemSecretRequest.FromString,
120
+ response_serializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetAccountSystemSecretResponse.SerializeToString,
121
+ ),
122
+ 'DeleteAccountSystemSecret': grpc.unary_unary_rpc_method_handler(
123
+ servicer.DeleteAccountSystemSecret,
124
+ request_deserializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.DeleteAccountSystemSecretRequest.FromString,
125
+ response_serializer=qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.DeleteAccountSystemSecretResponse.SerializeToString,
126
+ ),
76
127
  }
77
128
  generic_handler = grpc.method_handlers_generic_handler(
78
129
  'qwak.admiral.secret.v0.SystemSecretService', rpc_method_handlers)
@@ -133,3 +184,54 @@ class SystemSecretService(object):
133
184
  qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetSystemSecretResponse.FromString,
134
185
  options, channel_credentials,
135
186
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
187
+
188
+ @staticmethod
189
+ def SetAccountSystemSecret(request,
190
+ target,
191
+ options=(),
192
+ channel_credentials=None,
193
+ call_credentials=None,
194
+ insecure=False,
195
+ compression=None,
196
+ wait_for_ready=None,
197
+ timeout=None,
198
+ metadata=None):
199
+ return grpc.experimental.unary_unary(request, target, '/qwak.admiral.secret.v0.SystemSecretService/SetAccountSystemSecret',
200
+ qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.SetAccountSystemSecretRequest.SerializeToString,
201
+ qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.SetAccountSystemSecretResponse.FromString,
202
+ options, channel_credentials,
203
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
204
+
205
+ @staticmethod
206
+ def GetAccountSystemSecret(request,
207
+ target,
208
+ options=(),
209
+ channel_credentials=None,
210
+ call_credentials=None,
211
+ insecure=False,
212
+ compression=None,
213
+ wait_for_ready=None,
214
+ timeout=None,
215
+ metadata=None):
216
+ return grpc.experimental.unary_unary(request, target, '/qwak.admiral.secret.v0.SystemSecretService/GetAccountSystemSecret',
217
+ qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetAccountSystemSecretRequest.SerializeToString,
218
+ qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.GetAccountSystemSecretResponse.FromString,
219
+ options, channel_credentials,
220
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
221
+
222
+ @staticmethod
223
+ def DeleteAccountSystemSecret(request,
224
+ target,
225
+ options=(),
226
+ channel_credentials=None,
227
+ call_credentials=None,
228
+ insecure=False,
229
+ compression=None,
230
+ wait_for_ready=None,
231
+ timeout=None,
232
+ metadata=None):
233
+ return grpc.experimental.unary_unary(request, target, '/qwak.admiral.secret.v0.SystemSecretService/DeleteAccountSystemSecret',
234
+ qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.DeleteAccountSystemSecretRequest.SerializeToString,
235
+ qwak_dot_admiral_dot_secret_dot_v0_dot_system__secret__service__pb2.DeleteAccountSystemSecretResponse.FromString,
236
+ options, channel_credentials,
237
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: frogml
3
- Version: 1.2.45
3
+ Version: 1.2.46
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=bSSAfPjhuJk3f7elg4T4dpgJzzMGnneyMv7I0KFC9Dc,741
1
+ frogml/__init__.py,sha256=egYsizw_OfwJNXsoh-3gZm41vXcby7_MekcQqnUp104,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
@@ -173,15 +173,18 @@ frogml/_proto/qwak/administration/v1/environments/environment_pb2_grpc.py,sha256
173
173
  frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.py,sha256=eEKQjLsLzh8q0aJBOiO8bc7sANQRjdjF_fFifpmKtig,2867
174
174
  frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.pyi,sha256=k8bq8klAQyw2Luy-2XKSq6V5b2b0pDaXQlLQAGffGsE,2320
175
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
176
179
  frogml/_proto/qwak/admiral/secret/v0/secret_pb2.py,sha256=U8KCZxLbs_wlrHyUr9ZMqsBz4_47yiqsrnuOMqh6Gj0,5180
177
180
  frogml/_proto/qwak/admiral/secret/v0/secret_pb2.pyi,sha256=3bLfqt8Ciki7n0jP_NiNcgtNWliBfrqG_HzsGSQMC3Q,10250
178
181
  frogml/_proto/qwak/admiral/secret/v0/secret_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
179
182
  frogml/_proto/qwak/admiral/secret/v0/secret_service_pb2.py,sha256=V5_l2ipfgimZ-V3BawNz_h2u31e7LiF6f9XBnHZznXk,3425
180
183
  frogml/_proto/qwak/admiral/secret/v0/secret_service_pb2.pyi,sha256=LHBpsDVvWBFG-K5_ZQR_698sKKce7qwQqEd40yJwkaA,3343
181
184
  frogml/_proto/qwak/admiral/secret/v0/secret_service_pb2_grpc.py,sha256=95auDdnyLijxuVsxlU213MXYF595jjWvz1L5i-HVd1Y,6873
182
- frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py,sha256=upoqMkZwa-9yNTwfNxc8DhyqSqLh8yJ30Fa-0uTfJRI,3422
183
- frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi,sha256=lvlahGJyM8LKj3hwEz4rqoAc3dh54iwlrjBBQVjPDX8,3810
184
- 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
185
188
  frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.py,sha256=nPksL4ROLEgchP1YtL-BSAcmBvb3NcEdsNBxVInxDNI,8028
186
189
  frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.pyi,sha256=TVQAGe8Sil6DyMFJbWOioYhdqRYHp26WouKjMbCgDnk,20646
187
190
  frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
@@ -1196,6 +1199,6 @@ frogml_services_mock/mocks/utils/exception_handlers.py,sha256=k_8mez3cwjNjKE9yGQ
1196
1199
  frogml_services_mock/services_mock.py,sha256=cVydasU1hXNbvz6K_M57GIZJ285i0s2fcMATzH2HH6I,21378
1197
1200
  frogml_services_mock/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1198
1201
  frogml_services_mock/utils/service_utils.py,sha256=ZlB0CnB1J6oBn6_m7fQO2U8tKoboHdUa6ljjkRMYNXU,265
1199
- frogml-1.2.45.dist-info/METADATA,sha256=q8QMTDiaw1mhSGhNChf0ahF4rf4e0kftl_C9AusIB8A,5599
1200
- frogml-1.2.45.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
1201
- frogml-1.2.45.dist-info/RECORD,,
1202
+ frogml-1.2.46.dist-info/METADATA,sha256=qr3inGtz-h4PSq1-kyu2W2PgJvO_dPHa_eWyg_k1uBM,5599
1203
+ frogml-1.2.46.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
1204
+ frogml-1.2.46.dist-info/RECORD,,