Skip to content

Commit f0bf835

Browse files
committed
15.36.0
1 parent 16760ae commit f0bf835

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
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.35.0',
26+
version='15.36.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.35.0.tar.gz',
35+
'https://github.com/strongdm/strongdm-sdk-python/archive/v15.36.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.35.0
3+
Version: 15.36.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.35.0.tar.gz
9+
Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v15.36.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.35.0'
37+
USER_AGENT = 'strongdm-sdk-python/15.36.0'
3838

3939

4040
class Client:

strongdm/constants.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ class ActivityEntityType:
125125
PEERING_GROUP_PEER = "peering_group_peer"
126126
ORG_INTEGRATION = "org_integration"
127127
CREDENTIAL = "credential"
128+
USER_O_AUTH_TOKEN = "user_oauth_token"
128129
CERTIFICATE_AUTHORITY = "certificate_authority"
129130
POLICY = "policy"
130131
PROXY_CLUSTER_KEY = "proxy_cluster_key"
@@ -158,6 +159,8 @@ class ActivityVerb:
158159
ADMIN_TOKEN_CLONED = "admin token cloned"
159160
ADMIN_TOKEN_SUSPENDED = "admin token suspended"
160161
ADMIN_TOKEN_REINSTATED = "admin token reinstated"
162+
USER_O_AUTH_TOKEN_UPSERTED = "user oauth token for resource upserted"
163+
USER_O_AUTH_TOKEN_DELETED = "user oauth token for resource deleted"
161164
SSO_USER_LOGGED_INTO_THE_UI = "user logged into the Admin UI using SSO"
162165
SSO_USER_LOGGED_INTO_THE_CLIENT = "user logged into the local client using SSO"
163166
USER_LOGGED_OUT_FROM_THE_CLIENT = "user logged out from the local client"

0 commit comments

Comments
 (0)