Skip to content

Commit d37f41f

Browse files
committed
15.45.0
1 parent 5ee8b14 commit d37f41f

File tree

7 files changed

+9
-23
lines changed

7 files changed

+9
-23
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
setup(
2424
name='strongdm',
2525
packages=['strongdm'],
26-
version='15.44.0',
26+
version='15.45.0',
2727
license='apache-2.0',
2828
description='strongDM SDK for the Python programming language.',
2929
long_description=long_description,
@@ -32,7 +32,7 @@
3232
author_email='sdk-feedback@strongdm.com',
3333
url='https://github.com/strongdm/strongdm-sdk-python',
3434
download_url=
35-
'https://github.com/strongdm/strongdm-sdk-python/archive/v15.44.0.tar.gz',
35+
'https://github.com/strongdm/strongdm-sdk-python/archive/v15.45.0.tar.gz',
3636
keywords=[
3737
'strongDM', 'sdm', 'api', 'automation', 'security', 'audit',
3838
'database', 'server', 'ssh', 'rdp'

strongdm.egg-info/PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Metadata-Version: 2.1
22
Name: strongdm
3-
Version: 15.44.0
3+
Version: 15.45.0
44
Summary: strongDM SDK for the Python programming language.
55
Home-page: https://github.com/strongdm/strongdm-sdk-python
66
Author: strongDM Team
77
Author-email: sdk-feedback@strongdm.com
88
License: apache-2.0
9-
Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v15.44.0.tar.gz
9+
Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v15.45.0.tar.gz
1010
Keywords: strongDM,sdm,api,automation,security,audit,database,server,ssh,rdp
1111
Platform: UNKNOWN
1212
Classifier: Development Status :: 4 - Beta

strongdm/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
DEFAULT_RETRY_FACTOR = 1.6
4141
DEFAULT_RETRY_JITTER = 0.2
4242
API_VERSION = '2025-04-14'
43-
USER_AGENT = 'strongdm-sdk-python/15.44.0'
43+
USER_AGENT = 'strongdm-sdk-python/15.45.0'
4444

4545
method_regexp = re.compile(r'\W+')
4646

strongdm/managed_secrets_pb2.py

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

strongdm/models.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20506,41 +20506,30 @@ class ManagedSecretRetrieveRequest:
2050620506
'''
2050720507
__slots__ = [
2050820508
'id',
20509-
'public_key',
2051020509
]
2051120510

2051220511
def __init__(
2051320512
self,
2051420513
id=None,
20515-
public_key=None,
2051620514
):
2051720515
self.id = id if id is not None else ''
2051820516
'''
2051920517
The unique identifier of the Managed Secret to retrieve.
2052020518
'''
20521-
self.public_key = public_key if public_key is not None else b''
20522-
'''
20523-
Public key to encrypt a sensitive value with
20524-
'''
2052520519

2052620520
def __repr__(self):
2052720521
return '<sdm.ManagedSecretRetrieveRequest ' + \
2052820522
'id: ' + repr(self.id) + ' ' +\
20529-
'public_key: ' + repr(self.public_key) + ' ' +\
2053020523
'>'
2053120524

2053220525
def to_dict(self):
2053320526
return {
2053420527
'id': self.id,
20535-
'public_key': self.public_key,
2053620528
}
2053720529

2053820530
@classmethod
2053920531
def from_dict(cls, d):
20540-
return cls(
20541-
id=d.get('id'),
20542-
public_key=d.get('public_key'),
20543-
)
20532+
return cls(id=d.get('id'), )
2054420533

2054520534

2054620535
class ManagedSecretRetrieveResponse:

strongdm/plumbing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10245,7 +10245,6 @@ def convert_managed_secret_retrieve_request_to_porcelain(plumbing):
1024510245
return None
1024610246
porcelain = models.ManagedSecretRetrieveRequest()
1024710247
porcelain.id = (plumbing.id)
10248-
porcelain.public_key = (plumbing.public_key)
1024910248
return porcelain
1025010249

1025110250

@@ -10254,7 +10253,6 @@ def convert_managed_secret_retrieve_request_to_plumbing(porcelain):
1025410253
if porcelain is None:
1025510254
return plumbing
1025610255
plumbing.id = (porcelain.id)
10257-
plumbing.public_key = (porcelain.public_key)
1025810256
return plumbing
1025910257

1026010258

strongdm/svc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4255,15 +4255,14 @@ def get(self, id, timeout=None):
42554255
plumbing_response.rate_limit)
42564256
return resp
42574257

4258-
def retrieve(self, id, public_key, timeout=None):
4258+
def retrieve(self, id, timeout=None):
42594259
'''
42604260
Retrieve returns Managed Secret with sensitive data
42614261
'''
42624262
deadline = None if timeout is None else time.time() + timeout
42634263
req = ManagedSecretRetrieveRequest()
42644264

42654265
req.id = (id)
4266-
req.public_key = (public_key)
42674266
tries = 0
42684267
plumbing_response = None
42694268
while True:

0 commit comments

Comments
 (0)