Skip to content

Commit 6556d8f

Browse files
committed
14.9.0
1 parent 57c0a24 commit 6556d8f

File tree

6 files changed

+9
-22
lines changed

6 files changed

+9
-22
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='14.8.0',
26+
version='14.9.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/v14.8.0.tar.gz',
35+
'https://github.com/strongdm/strongdm-sdk-python/archive/v14.9.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: 14.8.0
3+
Version: 14.9.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/v14.8.0.tar.gz
9+
Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v14.9.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
@@ -33,7 +33,7 @@
3333
DEFAULT_BASE_RETRY_DELAY = 0.0030 # 30 ms
3434
DEFAULT_MAX_RETRY_DELAY = 300 # 300 seconds
3535
API_VERSION = '2025-04-14'
36-
USER_AGENT = 'strongdm-sdk-python/14.8.0'
36+
USER_AGENT = 'strongdm-sdk-python/14.9.0'
3737

3838

3939
class Client:

strongdm/drivers_pb2.py

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

strongdm/models.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29307,7 +29307,6 @@ class Trino:
2930729307
'''
2930829308
__slots__ = [
2930929309
'bind_interface',
29310-
'database',
2931129310
'egress_filter',
2931229311
'healthy',
2931329312
'hostname',
@@ -29326,7 +29325,6 @@ class Trino:
2932629325
def __init__(
2932729326
self,
2932829327
bind_interface=None,
29329-
database=None,
2933029328
egress_filter=None,
2933129329
healthy=None,
2933229330
hostname=None,
@@ -29345,10 +29343,6 @@ def __init__(
2934529343
'''
2934629344
The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2934729345
'''
29348-
self.database = database if database is not None else ''
29349-
'''
29350-
The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
29351-
'''
2935229346
self.egress_filter = egress_filter if egress_filter is not None else ''
2935329347
'''
2935429348
A filter applied to the routing logic to pin datasource to nodes.
@@ -29405,7 +29399,6 @@ def __init__(
2940529399
def __repr__(self):
2940629400
return '<sdm.Trino ' + \
2940729401
'bind_interface: ' + repr(self.bind_interface) + ' ' +\
29408-
'database: ' + repr(self.database) + ' ' +\
2940929402
'egress_filter: ' + repr(self.egress_filter) + ' ' +\
2941029403
'healthy: ' + repr(self.healthy) + ' ' +\
2941129404
'hostname: ' + repr(self.hostname) + ' ' +\
@@ -29424,7 +29417,6 @@ def __repr__(self):
2942429417
def to_dict(self):
2942529418
return {
2942629419
'bind_interface': self.bind_interface,
29427-
'database': self.database,
2942829420
'egress_filter': self.egress_filter,
2942929421
'healthy': self.healthy,
2943029422
'hostname': self.hostname,
@@ -29444,7 +29436,6 @@ def to_dict(self):
2944429436
def from_dict(cls, d):
2944529437
return cls(
2944629438
bind_interface=d.get('bind_interface'),
29447-
database=d.get('database'),
2944829439
egress_filter=d.get('egress_filter'),
2944929440
healthy=d.get('healthy'),
2945029441
hostname=d.get('hostname'),

strongdm/plumbing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14890,7 +14890,6 @@ def convert_trino_to_porcelain(plumbing):
1489014890
return None
1489114891
porcelain = models.Trino()
1489214892
porcelain.bind_interface = (plumbing.bind_interface)
14893-
porcelain.database = (plumbing.database)
1489414893
porcelain.egress_filter = (plumbing.egress_filter)
1489514894
porcelain.healthy = (plumbing.healthy)
1489614895
porcelain.hostname = (plumbing.hostname)
@@ -14912,7 +14911,6 @@ def convert_trino_to_plumbing(porcelain):
1491214911
if porcelain is None:
1491314912
return plumbing
1491414913
plumbing.bind_interface = (porcelain.bind_interface)
14915-
plumbing.database = (porcelain.database)
1491614914
plumbing.egress_filter = (porcelain.egress_filter)
1491714915
plumbing.healthy = (porcelain.healthy)
1491814916
plumbing.hostname = (porcelain.hostname)

0 commit comments

Comments
 (0)