diff --git a/services/auditlog/oas_commit b/services/auditlog/oas_commit index e3713dde3..6cbe0ce8d 100644 --- a/services/auditlog/oas_commit +++ b/services/auditlog/oas_commit @@ -1 +1 @@ -0e64886dd0847341800d7191ed193b75413be998 +4328b24be5d1c85147f3a30afd9a5199c10624d8 diff --git a/services/auditlog/src/stackit/auditlog/__init__.py b/services/auditlog/src/stackit/auditlog/__init__.py index 3770b8504..954a47b28 100644 --- a/services/auditlog/src/stackit/auditlog/__init__.py +++ b/services/auditlog/src/stackit/auditlog/__init__.py @@ -5,7 +5,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/api/default_api.py b/services/auditlog/src/stackit/auditlog/api/default_api.py index 03c43abdf..918026ba0 100644 --- a/services/auditlog/src/stackit/auditlog/api/default_api.py +++ b/services/auditlog/src/stackit/auditlog/api/default_api.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -11,6 +11,7 @@ Do not edit the class manually. """ # noqa: E501 +import warnings from datetime import datetime from typing import Any, Dict, List, Optional, Tuple, Union from uuid import UUID @@ -82,7 +83,7 @@ def list_folder_audit_log_entries( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListAuditLogEntriesResponse: - """Folder - Download audit log entries + """(Deprecated) Folder - Download audit log entries Returns all audit log entries of the folder for the specified period. \\ Period must not be longer than 24 hours within the last 90 days. @@ -117,6 +118,7 @@ def list_folder_audit_log_entries( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/folders/{folderId} is deprecated.", DeprecationWarning) _param = self._list_folder_audit_log_entries_serialize( folder_id=folder_id, @@ -186,7 +188,7 @@ def list_folder_audit_log_entries_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[ListAuditLogEntriesResponse]: - """Folder - Download audit log entries + """(Deprecated) Folder - Download audit log entries Returns all audit log entries of the folder for the specified period. \\ Period must not be longer than 24 hours within the last 90 days. @@ -221,6 +223,7 @@ def list_folder_audit_log_entries_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/folders/{folderId} is deprecated.", DeprecationWarning) _param = self._list_folder_audit_log_entries_serialize( folder_id=folder_id, @@ -290,7 +293,7 @@ def list_folder_audit_log_entries_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Folder - Download audit log entries + """(Deprecated) Folder - Download audit log entries Returns all audit log entries of the folder for the specified period. \\ Period must not be longer than 24 hours within the last 90 days. @@ -325,6 +328,7 @@ def list_folder_audit_log_entries_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/folders/{folderId} is deprecated.", DeprecationWarning) _param = self._list_folder_audit_log_entries_serialize( folder_id=folder_id, @@ -470,7 +474,7 @@ def list_organization_audit_log_entries( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListAuditLogEntriesResponse: - """Organization - Download audit log entries + """(Deprecated) Organization - Download audit log entries Returns all audit log entries of the organization for the specified period. \\ Period must not be longer than 24 hours within the last 90 days. @@ -505,6 +509,7 @@ def list_organization_audit_log_entries( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/organizations/{organizationId} is deprecated.", DeprecationWarning) _param = self._list_organization_audit_log_entries_serialize( organization_id=organization_id, @@ -576,7 +581,7 @@ def list_organization_audit_log_entries_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[ListAuditLogEntriesResponse]: - """Organization - Download audit log entries + """(Deprecated) Organization - Download audit log entries Returns all audit log entries of the organization for the specified period. \\ Period must not be longer than 24 hours within the last 90 days. @@ -611,6 +616,7 @@ def list_organization_audit_log_entries_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/organizations/{organizationId} is deprecated.", DeprecationWarning) _param = self._list_organization_audit_log_entries_serialize( organization_id=organization_id, @@ -682,7 +688,7 @@ def list_organization_audit_log_entries_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Organization - Download audit log entries + """(Deprecated) Organization - Download audit log entries Returns all audit log entries of the organization for the specified period. \\ Period must not be longer than 24 hours within the last 90 days. @@ -717,6 +723,7 @@ def list_organization_audit_log_entries_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/organizations/{organizationId} is deprecated.", DeprecationWarning) _param = self._list_organization_audit_log_entries_serialize( organization_id=organization_id, @@ -860,7 +867,7 @@ def list_project_audit_log_entries( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ListAuditLogEntriesResponse: - """Project - Download audit log entries + """(Deprecated) Project - Download audit log entries Returns all audit log entries of the project for the specified period. \\ Period must not be longer than 24 hours within the last 90 days. @@ -895,6 +902,7 @@ def list_project_audit_log_entries( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/projects/{projectId} is deprecated.", DeprecationWarning) _param = self._list_project_audit_log_entries_serialize( project_id=project_id, @@ -964,7 +972,7 @@ def list_project_audit_log_entries_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[ListAuditLogEntriesResponse]: - """Project - Download audit log entries + """(Deprecated) Project - Download audit log entries Returns all audit log entries of the project for the specified period. \\ Period must not be longer than 24 hours within the last 90 days. @@ -999,6 +1007,7 @@ def list_project_audit_log_entries_with_http_info( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/projects/{projectId} is deprecated.", DeprecationWarning) _param = self._list_project_audit_log_entries_serialize( project_id=project_id, @@ -1068,7 +1077,7 @@ def list_project_audit_log_entries_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Project - Download audit log entries + """(Deprecated) Project - Download audit log entries Returns all audit log entries of the project for the specified period. \\ Period must not be longer than 24 hours within the last 90 days. @@ -1103,6 +1112,7 @@ def list_project_audit_log_entries_without_preload_content( :type _host_index: int, optional :return: Returns the result object. """ # noqa: E501 + warnings.warn("GET /v2/projects/{projectId} is deprecated.", DeprecationWarning) _param = self._list_project_audit_log_entries_serialize( project_id=project_id, diff --git a/services/auditlog/src/stackit/auditlog/api_client.py b/services/auditlog/src/stackit/auditlog/api_client.py index 6ac56a65d..b860e6ba9 100644 --- a/services/auditlog/src/stackit/auditlog/api_client.py +++ b/services/auditlog/src/stackit/auditlog/api_client.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/configuration.py b/services/auditlog/src/stackit/auditlog/configuration.py index e4989e19d..cc52a6c6d 100644 --- a/services/auditlog/src/stackit/auditlog/configuration.py +++ b/services/auditlog/src/stackit/auditlog/configuration.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/exceptions.py b/services/auditlog/src/stackit/auditlog/exceptions.py index 00c6ebc4a..1c0fa0c20 100644 --- a/services/auditlog/src/stackit/auditlog/exceptions.py +++ b/services/auditlog/src/stackit/auditlog/exceptions.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) @@ -45,7 +45,7 @@ def __init__(self, msg, path_to_item=None, valid_classes=None, key_type=None) -> full_msg = msg if path_to_item: full_msg = "{0} at {1}".format(msg, render_path(path_to_item)) - super(ApiTypeError, self).__init__(full_msg) + super(ApiTypeError, self).__init__(full_msg, path_to_item, valid_classes, key_type) class ApiValueError(OpenApiException, ValueError): @@ -63,7 +63,7 @@ def __init__(self, msg, path_to_item=None) -> None: full_msg = msg if path_to_item: full_msg = "{0} at {1}".format(msg, render_path(path_to_item)) - super(ApiValueError, self).__init__(full_msg) + super(ApiValueError, self).__init__(full_msg, path_to_item) class ApiAttributeError(OpenApiException, AttributeError): @@ -82,7 +82,7 @@ def __init__(self, msg, path_to_item=None) -> None: full_msg = msg if path_to_item: full_msg = "{0} at {1}".format(msg, render_path(path_to_item)) - super(ApiAttributeError, self).__init__(full_msg) + super(ApiAttributeError, self).__init__(full_msg, path_to_item) class ApiKeyError(OpenApiException, KeyError): @@ -99,7 +99,7 @@ def __init__(self, msg, path_to_item=None) -> None: full_msg = msg if path_to_item: full_msg = "{0} at {1}".format(msg, render_path(path_to_item)) - super(ApiKeyError, self).__init__(full_msg) + super(ApiKeyError, self).__init__(full_msg, path_to_item) class ApiException(OpenApiException): diff --git a/services/auditlog/src/stackit/auditlog/models/__init__.py b/services/auditlog/src/stackit/auditlog/models/__init__.py index 8171a2611..84a8e4641 100644 --- a/services/auditlog/src/stackit/auditlog/models/__init__.py +++ b/services/auditlog/src/stackit/auditlog/models/__init__.py @@ -4,7 +4,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_context_response.py b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_context_response.py index 193b78d0b..b38a3b64e 100644 --- a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_context_response.py +++ b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_context_response.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_initiator_response.py b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_initiator_response.py index b025dae5d..1ab6a093f 100644 --- a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_initiator_response.py +++ b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_initiator_response.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_request_response.py b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_request_response.py index 5b8804b67..4c6af4b71 100644 --- a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_request_response.py +++ b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_request_response.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_response.py b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_response.py index 18867c818..3b725967e 100644 --- a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_response.py +++ b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_response.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_service_account_delegation_info_response.py b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_service_account_delegation_info_response.py index 0a95f98a3..83b57e916 100644 --- a/services/auditlog/src/stackit/auditlog/models/audit_log_entry_service_account_delegation_info_response.py +++ b/services/auditlog/src/stackit/auditlog/models/audit_log_entry_service_account_delegation_info_response.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/models/error_response.py b/services/auditlog/src/stackit/auditlog/models/error_response.py index 793284c45..6bf3ce7dc 100644 --- a/services/auditlog/src/stackit/auditlog/models/error_response.py +++ b/services/auditlog/src/stackit/auditlog/models/error_response.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/models/gateway_error_response.py b/services/auditlog/src/stackit/auditlog/models/gateway_error_response.py index 510cade62..36d8e24a7 100644 --- a/services/auditlog/src/stackit/auditlog/models/gateway_error_response.py +++ b/services/auditlog/src/stackit/auditlog/models/gateway_error_response.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/models/list_audit_log_entries_response.py b/services/auditlog/src/stackit/auditlog/models/list_audit_log_entries_response.py index 4ccbb88b1..e0cbd478f 100644 --- a/services/auditlog/src/stackit/auditlog/models/list_audit_log_entries_response.py +++ b/services/auditlog/src/stackit/auditlog/models/list_audit_log_entries_response.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/models/service_account_delegation_info_principal_response.py b/services/auditlog/src/stackit/auditlog/models/service_account_delegation_info_principal_response.py index 20f9f75dc..195f41524 100644 --- a/services/auditlog/src/stackit/auditlog/models/service_account_delegation_info_principal_response.py +++ b/services/auditlog/src/stackit/auditlog/models/service_account_delegation_info_principal_response.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech) diff --git a/services/auditlog/src/stackit/auditlog/rest.py b/services/auditlog/src/stackit/auditlog/rest.py index cb943d1ff..c300c137e 100644 --- a/services/auditlog/src/stackit/auditlog/rest.py +++ b/services/auditlog/src/stackit/auditlog/rest.py @@ -3,7 +3,7 @@ """ STACKIT Audit Log API - API Endpoints to retrieve recorded actions and resulting changes in the system. ### Documentation The user documentation with explanations how to use the api can be found [here](https://docs.stackit.cloud/stackit/en/retrieve-audit-log-per-api-request-134415907.html). ### Audit Logging Changes on organizations, folders and projects and respective cloud resources are logged and collected in the audit log. ### API Constraints The audit log API allows to download messages from the last 90 days. The maximum duration that can be queried at once is 24 hours. Requests are rate limited - the current maximum is 60 requests per minute. + **Deprecated:** The auditlog API is deprecated and will be removed shortly. Please use the [telemetry-router](https://docs.stackit.cloud/products/logging-and-monitoring/telemetry-router/) to retrieve audit log messages in the future. The version of the OpenAPI document: 2.0 Generated by OpenAPI Generator (https://openapi-generator.tech)