Skip to content

Commit 31c7f0b

Browse files
committed
"Release v5.0.4"
1 parent d1cccc7 commit 31c7f0b

1,143 files changed

Lines changed: 3350 additions & 1162 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ The purpose of this application is to provide access to Akeyless API.
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: 3.0
7-
- Package version: 5.0.3
6+
- API version: 2.0
7+
- Package version: 5.0.4
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99
For more information, please visit [http://akeyless.io](http://akeyless.io)
1010

@@ -1419,7 +1419,6 @@ Class | Method | HTTP request | Description
14191419
- [RefreshKey](docs/RefreshKey.md)
14201420
- [RefreshKeyOutput](docs/RefreshKeyOutput.md)
14211421
- [RegexpTokenizerInfo](docs/RegexpTokenizerInfo.md)
1422-
- [RemoteSecretInfo](docs/RemoteSecretInfo.md)
14231422
- [RenewCertificate](docs/RenewCertificate.md)
14241423
- [RenewCertificateOutput](docs/RenewCertificateOutput.md)
14251424
- [RequestAccess](docs/RequestAccess.md)
@@ -1725,6 +1724,7 @@ Class | Method | HTTP request | Description
17251724
- [UscGetSecretOutput](docs/UscGetSecretOutput.md)
17261725
- [UscList](docs/UscList.md)
17271726
- [UscListSecretsOutput](docs/UscListSecretsOutput.md)
1727+
- [UscSyncInfo](docs/UscSyncInfo.md)
17281728
- [UscUpdate](docs/UscUpdate.md)
17291729
- [UscUpdateSecretOutput](docs/UscUpdateSecretOutput.md)
17301730
- [ValidateToken](docs/ValidateToken.md)

akeyless/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
88
The purpose of this application is to provide access to Akeyless API. # noqa: E501
99
10-
The version of the OpenAPI document: 3.0
10+
The version of the OpenAPI document: 2.0
1111
Contact: support@akeyless.io
1212
Generated by: https://openapi-generator.tech
1313
"""
1414

1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "5.0.3"
18+
__version__ = "5.0.4"
1919

2020
# import apis into sdk package
2121
from akeyless.api.v2_api import V2Api
@@ -792,7 +792,6 @@
792792
from akeyless.models.refresh_key import RefreshKey
793793
from akeyless.models.refresh_key_output import RefreshKeyOutput
794794
from akeyless.models.regexp_tokenizer_info import RegexpTokenizerInfo
795-
from akeyless.models.remote_secret_info import RemoteSecretInfo
796795
from akeyless.models.renew_certificate import RenewCertificate
797796
from akeyless.models.renew_certificate_output import RenewCertificateOutput
798797
from akeyless.models.request_access import RequestAccess
@@ -1098,6 +1097,7 @@
10981097
from akeyless.models.usc_get_secret_output import UscGetSecretOutput
10991098
from akeyless.models.usc_list import UscList
11001099
from akeyless.models.usc_list_secrets_output import UscListSecretsOutput
1100+
from akeyless.models.usc_sync_info import UscSyncInfo
11011101
from akeyless.models.usc_update import UscUpdate
11021102
from akeyless.models.usc_update_secret_output import UscUpdateSecretOutput
11031103
from akeyless.models.validate_token import ValidateToken

akeyless/api/v2_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
The purpose of this application is to provide access to Akeyless API. # noqa: E501
77

8-
The version of the OpenAPI document: 3.0
8+
The version of the OpenAPI document: 2.0
99
Contact: support@akeyless.io
1010
Generated by: https://openapi-generator.tech
1111
"""

akeyless/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The purpose of this application is to provide access to Akeyless API. # noqa: E501
66
7-
The version of the OpenAPI document: 3.0
7+
The version of the OpenAPI document: 2.0
88
Contact: support@akeyless.io
99
Generated by: https://openapi-generator.tech
1010
"""
@@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7979
self.default_headers[header_name] = header_value
8080
self.cookie = cookie
8181
# Set default User-Agent.
82-
self.user_agent = 'OpenAPI-Generator/5.0.3/python'
82+
self.user_agent = 'OpenAPI-Generator/5.0.4/python'
8383
self.client_side_validation = configuration.client_side_validation
8484

8585
def __enter__(self):

akeyless/configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The purpose of this application is to provide access to Akeyless API. # noqa: E501
77
8-
The version of the OpenAPI document: 3.0
8+
The version of the OpenAPI document: 2.0
99
Contact: support@akeyless.io
1010
Generated by: https://openapi-generator.tech
1111
"""
@@ -325,8 +325,8 @@ def to_debug_report(self):
325325
return "Python SDK Debug Report:\n"\
326326
"OS: {env}\n"\
327327
"Python Version: {pyversion}\n"\
328-
"Version of the API: 3.0\n"\
329-
"SDK Package Version: 5.0.3".\
328+
"Version of the API: 2.0\n"\
329+
"SDK Package Version: 5.0.4".\
330330
format(env=sys.platform, pyversion=sys.version)
331331

332332
def get_host_settings(self):

akeyless/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The purpose of this application is to provide access to Akeyless API. # noqa: E501
77
8-
The version of the OpenAPI document: 3.0
8+
The version of the OpenAPI document: 2.0
99
Contact: support@akeyless.io
1010
Generated by: https://openapi-generator.tech
1111
"""

akeyless/models/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
The purpose of this application is to provide access to Akeyless API. # noqa: E501
88
9-
The version of the OpenAPI document: 3.0
9+
The version of the OpenAPI document: 2.0
1010
Contact: support@akeyless.io
1111
Generated by: https://openapi-generator.tech
1212
"""
@@ -778,7 +778,6 @@
778778
from akeyless.models.refresh_key import RefreshKey
779779
from akeyless.models.refresh_key_output import RefreshKeyOutput
780780
from akeyless.models.regexp_tokenizer_info import RegexpTokenizerInfo
781-
from akeyless.models.remote_secret_info import RemoteSecretInfo
782781
from akeyless.models.renew_certificate import RenewCertificate
783782
from akeyless.models.renew_certificate_output import RenewCertificateOutput
784783
from akeyless.models.request_access import RequestAccess
@@ -1084,6 +1083,7 @@
10841083
from akeyless.models.usc_get_secret_output import UscGetSecretOutput
10851084
from akeyless.models.usc_list import UscList
10861085
from akeyless.models.usc_list_secrets_output import UscListSecretsOutput
1086+
from akeyless.models.usc_sync_info import UscSyncInfo
10871087
from akeyless.models.usc_update import UscUpdate
10881088
from akeyless.models.usc_update_secret_output import UscUpdateSecretOutput
10891089
from akeyless.models.validate_token import ValidateToken

akeyless/models/access_or_group_permission_assignment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The purpose of this application is to provide access to Akeyless API. # noqa: E501
77
8-
The version of the OpenAPI document: 3.0
8+
The version of the OpenAPI document: 2.0
99
Contact: support@akeyless.io
1010
Generated by: https://openapi-generator.tech
1111
"""

akeyless/models/access_permission_assignment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The purpose of this application is to provide access to Akeyless API. # noqa: E501
77
8-
The version of the OpenAPI document: 3.0
8+
The version of the OpenAPI document: 2.0
99
Contact: support@akeyless.io
1010
Generated by: https://openapi-generator.tech
1111
"""

akeyless/models/account_general_settings.py

Lines changed: 54 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The purpose of this application is to provide access to Akeyless API. # noqa: E501
77
8-
The version of the OpenAPI document: 3.0
8+
The version of the OpenAPI document: 2.0
99
Contact: support@akeyless.io
1010
Generated by: https://openapi-generator.tech
1111
"""
@@ -43,6 +43,8 @@ class AccountGeneralSettings(object):
4343
'default_home_page': 'DefaultHomePage',
4444
'dynamic_secret_max_ttl': 'DynamicSecretMaxTtl',
4545
'enable_request_for_access': 'bool',
46+
'hide_personal_folder': 'bool',
47+
'hide_static_password': 'bool',
4648
'invalid_characters': 'str',
4749
'item_usage_event': 'UsageEventSetting',
4850
'lock_default_key': 'bool',
@@ -64,6 +66,8 @@ class AccountGeneralSettings(object):
6466
'default_home_page': 'default_home_page',
6567
'dynamic_secret_max_ttl': 'dynamic_secret_max_ttl',
6668
'enable_request_for_access': 'enable_request_for_access',
69+
'hide_personal_folder': 'hide_personal_folder',
70+
'hide_static_password': 'hide_static_password',
6771
'invalid_characters': 'invalid_characters',
6872
'item_usage_event': 'item_usage_event',
6973
'lock_default_key': 'lock_default_key',
@@ -75,7 +79,7 @@ class AccountGeneralSettings(object):
7579
'sharing_policy': 'sharing_policy'
7680
}
7781

78-
def __init__(self, account_default_key_item_id=None, account_default_key_name=None, allowed_clients_ips=None, allowed_gateways_ips=None, auth_usage_event=None, data_protection_section=None, default_home_page=None, dynamic_secret_max_ttl=None, enable_request_for_access=None, invalid_characters=None, item_usage_event=None, lock_default_key=None, password_expiration_info=None, password_policy=None, password_score=None, protect_items_by_default=None, rotation_secret_max_interval=None, sharing_policy=None, local_vars_configuration=None): # noqa: E501
82+
def __init__(self, account_default_key_item_id=None, account_default_key_name=None, allowed_clients_ips=None, allowed_gateways_ips=None, auth_usage_event=None, data_protection_section=None, default_home_page=None, dynamic_secret_max_ttl=None, enable_request_for_access=None, hide_personal_folder=None, hide_static_password=None, invalid_characters=None, item_usage_event=None, lock_default_key=None, password_expiration_info=None, password_policy=None, password_score=None, protect_items_by_default=None, rotation_secret_max_interval=None, sharing_policy=None, local_vars_configuration=None): # noqa: E501
7983
"""AccountGeneralSettings - a model defined in OpenAPI""" # noqa: E501
8084
if local_vars_configuration is None:
8185
local_vars_configuration = Configuration()
@@ -90,6 +94,8 @@ def __init__(self, account_default_key_item_id=None, account_default_key_name=No
9094
self._default_home_page = None
9195
self._dynamic_secret_max_ttl = None
9296
self._enable_request_for_access = None
97+
self._hide_personal_folder = None
98+
self._hide_static_password = None
9399
self._invalid_characters = None
94100
self._item_usage_event = None
95101
self._lock_default_key = None
@@ -119,6 +125,10 @@ def __init__(self, account_default_key_item_id=None, account_default_key_name=No
119125
self.dynamic_secret_max_ttl = dynamic_secret_max_ttl
120126
if enable_request_for_access is not None:
121127
self.enable_request_for_access = enable_request_for_access
128+
if hide_personal_folder is not None:
129+
self.hide_personal_folder = hide_personal_folder
130+
if hide_static_password is not None:
131+
self.hide_static_password = hide_static_password
122132
if invalid_characters is not None:
123133
self.invalid_characters = invalid_characters
124134
if item_usage_event is not None:
@@ -331,6 +341,48 @@ def enable_request_for_access(self, enable_request_for_access):
331341

332342
self._enable_request_for_access = enable_request_for_access
333343

344+
@property
345+
def hide_personal_folder(self):
346+
"""Gets the hide_personal_folder of this AccountGeneralSettings. # noqa: E501
347+
348+
349+
:return: The hide_personal_folder of this AccountGeneralSettings. # noqa: E501
350+
:rtype: bool
351+
"""
352+
return self._hide_personal_folder
353+
354+
@hide_personal_folder.setter
355+
def hide_personal_folder(self, hide_personal_folder):
356+
"""Sets the hide_personal_folder of this AccountGeneralSettings.
357+
358+
359+
:param hide_personal_folder: The hide_personal_folder of this AccountGeneralSettings. # noqa: E501
360+
:type: bool
361+
"""
362+
363+
self._hide_personal_folder = hide_personal_folder
364+
365+
@property
366+
def hide_static_password(self):
367+
"""Gets the hide_static_password of this AccountGeneralSettings. # noqa: E501
368+
369+
370+
:return: The hide_static_password of this AccountGeneralSettings. # noqa: E501
371+
:rtype: bool
372+
"""
373+
return self._hide_static_password
374+
375+
@hide_static_password.setter
376+
def hide_static_password(self, hide_static_password):
377+
"""Sets the hide_static_password of this AccountGeneralSettings.
378+
379+
380+
:param hide_static_password: The hide_static_password of this AccountGeneralSettings. # noqa: E501
381+
:type: bool
382+
"""
383+
384+
self._hide_static_password = hide_static_password
385+
334386
@property
335387
def invalid_characters(self):
336388
"""Gets the invalid_characters of this AccountGeneralSettings. # noqa: E501

0 commit comments

Comments
 (0)