Skip to content

Commit d1cccc7

Browse files
committed
"Release v5.0.3"
1 parent 24103b0 commit d1cccc7

1,106 files changed

Lines changed: 1461 additions & 1110 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 & 2 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: 2.0
7-
- Package version: 5.0.2
6+
- API version: 3.0
7+
- Package version: 5.0.3
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99
For more information, please visit [http://akeyless.io](http://akeyless.io)
1010

@@ -1391,6 +1391,7 @@ Class | Method | HTTP request | Description
13911391
- [NativeK8sTargetDetails](docs/NativeK8sTargetDetails.md)
13921392
- [NextAutoRotationEvent](docs/NextAutoRotationEvent.md)
13931393
- [NotiForwarder](docs/NotiForwarder.md)
1394+
- [NullString](docs/NullString.md)
13941395
- [OAuth2AccessRules](docs/OAuth2AccessRules.md)
13951396
- [OAuth2CustomClaim](docs/OAuth2CustomClaim.md)
13961397
- [OCIAccessRules](docs/OCIAccessRules.md)

akeyless/__init__.py

Lines changed: 3 additions & 2 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: 2.0
10+
The version of the OpenAPI document: 3.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.2"
18+
__version__ = "5.0.3"
1919

2020
# import apis into sdk package
2121
from akeyless.api.v2_api import V2Api
@@ -764,6 +764,7 @@
764764
from akeyless.models.native_k8s_target_details import NativeK8sTargetDetails
765765
from akeyless.models.next_auto_rotation_event import NextAutoRotationEvent
766766
from akeyless.models.noti_forwarder import NotiForwarder
767+
from akeyless.models.null_string import NullString
767768
from akeyless.models.o_auth2_access_rules import OAuth2AccessRules
768769
from akeyless.models.o_auth2_custom_claim import OAuth2CustomClaim
769770
from akeyless.models.oci_access_rules import OCIAccessRules

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: 2.0
8+
The version of the OpenAPI document: 3.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: 2.0
7+
The version of the OpenAPI document: 3.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.2/python'
82+
self.user_agent = 'OpenAPI-Generator/5.0.3/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: 2.0
8+
The version of the OpenAPI document: 3.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: 2.0\n"\
329-
"SDK Package Version: 5.0.2".\
328+
"Version of the API: 3.0\n"\
329+
"SDK Package Version: 5.0.3".\
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: 2.0
8+
The version of the OpenAPI document: 3.0
99
Contact: support@akeyless.io
1010
Generated by: https://openapi-generator.tech
1111
"""

akeyless/models/__init__.py

Lines changed: 2 additions & 1 deletion
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: 2.0
9+
The version of the OpenAPI document: 3.0
1010
Contact: support@akeyless.io
1111
Generated by: https://openapi-generator.tech
1212
"""
@@ -750,6 +750,7 @@
750750
from akeyless.models.native_k8s_target_details import NativeK8sTargetDetails
751751
from akeyless.models.next_auto_rotation_event import NextAutoRotationEvent
752752
from akeyless.models.noti_forwarder import NotiForwarder
753+
from akeyless.models.null_string import NullString
753754
from akeyless.models.o_auth2_access_rules import OAuth2AccessRules
754755
from akeyless.models.o_auth2_custom_claim import OAuth2CustomClaim
755756
from akeyless.models.oci_access_rules import OCIAccessRules

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: 2.0
8+
The version of the OpenAPI document: 3.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: 2.0
8+
The version of the OpenAPI document: 3.0
99
Contact: support@akeyless.io
1010
Generated by: https://openapi-generator.tech
1111
"""

akeyless/models/account_general_settings.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: 2.0
8+
The version of the OpenAPI document: 3.0
99
Contact: support@akeyless.io
1010
Generated by: https://openapi-generator.tech
1111
"""

0 commit comments

Comments
 (0)