stackit-auditlog 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,81 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Audit Log API
7
+
8
+ 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.
9
+
10
+ The version of the OpenAPI document: 2.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "1.0.0"
18
+
19
+ # Define package exports
20
+ __all__ = [
21
+ "DefaultApi",
22
+ "ApiResponse",
23
+ "ApiClient",
24
+ "HostConfiguration",
25
+ "OpenApiException",
26
+ "ApiTypeError",
27
+ "ApiValueError",
28
+ "ApiKeyError",
29
+ "ApiAttributeError",
30
+ "ApiException",
31
+ "AuditLogEntryContextResponse",
32
+ "AuditLogEntryInitiatorResponse",
33
+ "AuditLogEntryRequestResponse",
34
+ "AuditLogEntryResponse",
35
+ "AuditLogEntryServiceAccountDelegationInfoResponse",
36
+ "ErrorResponse",
37
+ "GatewayErrorResponse",
38
+ "ListAuditLogEntriesResponse",
39
+ "ServiceAccountDelegationInfoPrincipalResponse",
40
+ ]
41
+
42
+ # import apis into sdk package
43
+ from stackit.auditlog.api.default_api import DefaultApi as DefaultApi
44
+ from stackit.auditlog.api_client import ApiClient as ApiClient
45
+
46
+ # import ApiClient
47
+ from stackit.auditlog.api_response import ApiResponse as ApiResponse
48
+ from stackit.auditlog.configuration import HostConfiguration as HostConfiguration
49
+ from stackit.auditlog.exceptions import ApiAttributeError as ApiAttributeError
50
+ from stackit.auditlog.exceptions import ApiException as ApiException
51
+ from stackit.auditlog.exceptions import ApiKeyError as ApiKeyError
52
+ from stackit.auditlog.exceptions import ApiTypeError as ApiTypeError
53
+ from stackit.auditlog.exceptions import ApiValueError as ApiValueError
54
+ from stackit.auditlog.exceptions import OpenApiException as OpenApiException
55
+
56
+ # import models into sdk package
57
+ from stackit.auditlog.models.audit_log_entry_context_response import (
58
+ AuditLogEntryContextResponse as AuditLogEntryContextResponse,
59
+ )
60
+ from stackit.auditlog.models.audit_log_entry_initiator_response import (
61
+ AuditLogEntryInitiatorResponse as AuditLogEntryInitiatorResponse,
62
+ )
63
+ from stackit.auditlog.models.audit_log_entry_request_response import (
64
+ AuditLogEntryRequestResponse as AuditLogEntryRequestResponse,
65
+ )
66
+ from stackit.auditlog.models.audit_log_entry_response import (
67
+ AuditLogEntryResponse as AuditLogEntryResponse,
68
+ )
69
+ from stackit.auditlog.models.audit_log_entry_service_account_delegation_info_response import (
70
+ AuditLogEntryServiceAccountDelegationInfoResponse as AuditLogEntryServiceAccountDelegationInfoResponse,
71
+ )
72
+ from stackit.auditlog.models.error_response import ErrorResponse as ErrorResponse
73
+ from stackit.auditlog.models.gateway_error_response import (
74
+ GatewayErrorResponse as GatewayErrorResponse,
75
+ )
76
+ from stackit.auditlog.models.list_audit_log_entries_response import (
77
+ ListAuditLogEntriesResponse as ListAuditLogEntriesResponse,
78
+ )
79
+ from stackit.auditlog.models.service_account_delegation_info_principal_response import (
80
+ ServiceAccountDelegationInfoPrincipalResponse as ServiceAccountDelegationInfoPrincipalResponse,
81
+ )
@@ -0,0 +1,4 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from stackit.auditlog.api.default_api import DefaultApi