Skip to content

Commit 0fa0728

Browse files
committed
15.46.0
1 parent d37f41f commit 0fa0728

File tree

6 files changed

+119
-93
lines changed

6 files changed

+119
-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.45.0',
26+
version='15.46.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.45.0.tar.gz',
35+
'https://github.com/strongdm/strongdm-sdk-python/archive/v15.46.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.45.0
3+
Version: 15.46.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.45.0.tar.gz
9+
Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v15.46.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.45.0'
43+
USER_AGENT = 'strongdm-sdk-python/15.46.0'
4444

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

strongdm/drivers_pb2.py

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

strongdm/models.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19257,6 +19257,8 @@ class MCP:
1925719257
'hostname',
1925819258
'id',
1925919259
'name',
19260+
'oauth_auth_endpoint',
19261+
'oauth_token_endpoint',
1926019262
'password',
1926119263
'port',
1926219264
'port_override',
@@ -19275,6 +19277,8 @@ def __init__(
1927519277
hostname=None,
1927619278
id=None,
1927719279
name=None,
19280+
oauth_auth_endpoint=None,
19281+
oauth_token_endpoint=None,
1927819282
password=None,
1927919283
port=None,
1928019284
port_override=None,
@@ -19308,6 +19312,14 @@ def __init__(
1930819312
'''
1930919313
Unique human-readable name of the Resource.
1931019314
'''
19315+
self.oauth_auth_endpoint = oauth_auth_endpoint if oauth_auth_endpoint is not None else ''
19316+
'''
19317+
The OAuth 2.0 authorization endpoint URL.
19318+
'''
19319+
self.oauth_token_endpoint = oauth_token_endpoint if oauth_token_endpoint is not None else ''
19320+
'''
19321+
The OAuth 2.0 token endpoint URL.
19322+
'''
1931119323
self.password = password if password is not None else ''
1931219324
'''
1931319325
OAuth App Client Secret
@@ -19349,6 +19361,8 @@ def __repr__(self):
1934919361
'hostname: ' + repr(self.hostname) + ' ' +\
1935019362
'id: ' + repr(self.id) + ' ' +\
1935119363
'name: ' + repr(self.name) + ' ' +\
19364+
'oauth_auth_endpoint: ' + repr(self.oauth_auth_endpoint) + ' ' +\
19365+
'oauth_token_endpoint: ' + repr(self.oauth_token_endpoint) + ' ' +\
1935219366
'password: ' + repr(self.password) + ' ' +\
1935319367
'port: ' + repr(self.port) + ' ' +\
1935419368
'port_override: ' + repr(self.port_override) + ' ' +\
@@ -19367,6 +19381,8 @@ def to_dict(self):
1936719381
'hostname': self.hostname,
1936819382
'id': self.id,
1936919383
'name': self.name,
19384+
'oauth_auth_endpoint': self.oauth_auth_endpoint,
19385+
'oauth_token_endpoint': self.oauth_token_endpoint,
1937019386
'password': self.password,
1937119387
'port': self.port,
1937219388
'port_override': self.port_override,
@@ -19386,6 +19402,8 @@ def from_dict(cls, d):
1938619402
hostname=d.get('hostname'),
1938719403
id=d.get('id'),
1938819404
name=d.get('name'),
19405+
oauth_auth_endpoint=d.get('oauth_auth_endpoint'),
19406+
oauth_token_endpoint=d.get('oauth_token_endpoint'),
1938919407
password=d.get('password'),
1939019408
port=d.get('port'),
1939119409
port_override=d.get('port_override'),

strongdm/plumbing.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9563,6 +9563,8 @@ def convert_mcp_to_porcelain(plumbing):
95639563
porcelain.hostname = (plumbing.hostname)
95649564
porcelain.id = (plumbing.id)
95659565
porcelain.name = (plumbing.name)
9566+
porcelain.oauth_auth_endpoint = (plumbing.oauth_auth_endpoint)
9567+
porcelain.oauth_token_endpoint = (plumbing.oauth_token_endpoint)
95669568
porcelain.password = (plumbing.password)
95679569
porcelain.port = (plumbing.port)
95689570
porcelain.port_override = (plumbing.port_override)
@@ -9584,6 +9586,8 @@ def convert_mcp_to_plumbing(porcelain):
95849586
plumbing.hostname = (porcelain.hostname)
95859587
plumbing.id = (porcelain.id)
95869588
plumbing.name = (porcelain.name)
9589+
plumbing.oauth_auth_endpoint = (porcelain.oauth_auth_endpoint)
9590+
plumbing.oauth_token_endpoint = (porcelain.oauth_token_endpoint)
95879591
plumbing.password = (porcelain.password)
95889592
plumbing.port = (porcelain.port)
95899593
plumbing.port_override = (porcelain.port_override)

0 commit comments

Comments
 (0)