Skip to content

Commit a4f0a48

Browse files
committed
15.37.0
1 parent f0bf835 commit a4f0a48

File tree

6 files changed

+106
-93
lines changed

6 files changed

+106
-93
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.36.0',
26+
version='15.37.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='[email protected]',
3333
url='https://github.com/strongdm/strongdm-sdk-python',
3434
download_url=
35-
'https://github.com/strongdm/strongdm-sdk-python/archive/v15.36.0.tar.gz',
35+
'https://github.com/strongdm/strongdm-sdk-python/archive/v15.37.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.36.0
3+
Version: 15.37.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: [email protected]
88
License: apache-2.0
9-
Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v15.36.0.tar.gz
9+
Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v15.37.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
@@ -34,7 +34,7 @@
3434
DEFAULT_RETRY_FACTOR = 1.6
3535
DEFAULT_RETRY_JITTER = 0.2
3636
API_VERSION = '2025-04-14'
37-
USER_AGENT = 'strongdm-sdk-python/15.36.0'
37+
USER_AGENT = 'strongdm-sdk-python/15.37.0'
3838

3939

4040
class Client:

strongdm/drivers_pb2.py

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

strongdm/models.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18537,6 +18537,7 @@ class MCP:
1853718537
'secret_store_id',
1853818538
'subdomain',
1853918539
'tags',
18540+
'username',
1854018541
]
1854118542

1854218543
def __init__(
@@ -18554,6 +18555,7 @@ def __init__(
1855418555
secret_store_id=None,
1855518556
subdomain=None,
1855618557
tags=None,
18558+
username=None,
1855718559
):
1855818560
self.bind_interface = bind_interface if bind_interface is not None else ''
1855918561
'''
@@ -18581,7 +18583,7 @@ def __init__(
1858118583
'''
1858218584
self.password = password if password is not None else ''
1858318585
'''
18584-
The password to authenticate with.
18586+
OAuth App Client Secret
1858518587
'''
1858618588
self.port = port if port is not None else 0
1858718589
'''
@@ -18607,6 +18609,10 @@ def __init__(
1860718609
'''
1860818610
Tags is a map of key, value pairs.
1860918611
'''
18612+
self.username = username if username is not None else ''
18613+
'''
18614+
OAuth App Client ID
18615+
'''
1861018616

1861118617
def __repr__(self):
1861218618
return '<sdm.MCP ' + \
@@ -18623,6 +18629,7 @@ def __repr__(self):
1862318629
'secret_store_id: ' + repr(self.secret_store_id) + ' ' +\
1862418630
'subdomain: ' + repr(self.subdomain) + ' ' +\
1862518631
'tags: ' + repr(self.tags) + ' ' +\
18632+
'username: ' + repr(self.username) + ' ' +\
1862618633
'>'
1862718634

1862818635
def to_dict(self):
@@ -18640,6 +18647,7 @@ def to_dict(self):
1864018647
'secret_store_id': self.secret_store_id,
1864118648
'subdomain': self.subdomain,
1864218649
'tags': self.tags,
18650+
'username': self.username,
1864318651
}
1864418652

1864518653
@classmethod
@@ -18658,6 +18666,7 @@ def from_dict(cls, d):
1865818666
secret_store_id=d.get('secret_store_id'),
1865918667
subdomain=d.get('subdomain'),
1866018668
tags=d.get('tags'),
18669+
username=d.get('username'),
1866118670
)
1866218671

1866318672

strongdm/plumbing.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9037,6 +9037,7 @@ def convert_mcp_to_porcelain(plumbing):
90379037
porcelain.secret_store_id = (plumbing.secret_store_id)
90389038
porcelain.subdomain = (plumbing.subdomain)
90399039
porcelain.tags = convert_tags_to_porcelain(plumbing.tags)
9040+
porcelain.username = (plumbing.username)
90409041
return porcelain
90419042

90429043

@@ -9057,6 +9058,7 @@ def convert_mcp_to_plumbing(porcelain):
90579058
plumbing.secret_store_id = (porcelain.secret_store_id)
90589059
plumbing.subdomain = (porcelain.subdomain)
90599060
plumbing.tags.CopyFrom(convert_tags_to_plumbing(porcelain.tags))
9061+
plumbing.username = (porcelain.username)
90609062
return plumbing
90619063

90629064

0 commit comments

Comments
 (0)