Skip to content

Commit 6e6ab1a

Browse files
committed
15.7.0
1 parent fe1296d commit 6e6ab1a

File tree

5 files changed

+231
-224
lines changed

5 files changed

+231
-224
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.6.0',
26+
version='15.7.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.6.0.tar.gz',
35+
'https://github.com/strongdm/strongdm-sdk-python/archive/v15.7.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.6.0
3+
Version: 15.7.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.6.0.tar.gz
9+
Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v15.7.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.6.0'
37+
USER_AGENT = 'strongdm-sdk-python/15.7.0'
3838

3939

4040
class Client:

strongdm/constants.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -547,3 +547,11 @@ class ApproverReference:
547547
NONE = ""
548548
MANAGER_OF_REQUESTER = "manager-of-requester"
549549
MANAGER_OF_MANAGER_OF_REQUESTER = "manager-of-manager-of-requester"
550+
551+
552+
# ResourceIPAllocationMode defines how to allocate IP addresses on resource create and update.
553+
class ResourceIPAllocationMode:
554+
UNSET = ""
555+
DEFAULT = "default"
556+
LOOPBACK = "loopback"
557+
VNM = "vnm"

0 commit comments

Comments
 (0)