-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
67 lines (56 loc) · 2.7 KB
/
__init__.py
File metadata and controls
67 lines (56 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# coding: utf-8
# flake8: noqa
"""
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 1 request per second.
The version of the OpenAPI document: 2.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
__version__ = "1.0.0"
# Define package exports
__all__ = [
"DefaultApi",
"ApiResponse",
"ApiClient",
"HostConfiguration",
"OpenApiException",
"ApiTypeError",
"ApiValueError",
"ApiKeyError",
"ApiAttributeError",
"ApiException",
"AuditLogEntry",
"Context",
"DelegationPrincipal",
"Error",
"Initiator",
"InlineObject",
"Request",
"ServiceAccountDelegationInfo",
]
# import apis into sdk package
from stackit.auditlog.api.default_api import DefaultApi as DefaultApi
from stackit.auditlog.api_client import ApiClient as ApiClient
# import ApiClient
from stackit.auditlog.api_response import ApiResponse as ApiResponse
from stackit.auditlog.configuration import HostConfiguration as HostConfiguration
from stackit.auditlog.exceptions import ApiAttributeError as ApiAttributeError
from stackit.auditlog.exceptions import ApiException as ApiException
from stackit.auditlog.exceptions import ApiKeyError as ApiKeyError
from stackit.auditlog.exceptions import ApiTypeError as ApiTypeError
from stackit.auditlog.exceptions import ApiValueError as ApiValueError
from stackit.auditlog.exceptions import OpenApiException as OpenApiException
# import models into sdk package
from stackit.auditlog.models.audit_log_entry import AuditLogEntry as AuditLogEntry
from stackit.auditlog.models.context import Context as Context
from stackit.auditlog.models.delegation_principal import (
DelegationPrincipal as DelegationPrincipal,
)
from stackit.auditlog.models.error import Error as Error
from stackit.auditlog.models.initiator import Initiator as Initiator
from stackit.auditlog.models.inline_object import InlineObject as InlineObject
from stackit.auditlog.models.request import Request as Request
from stackit.auditlog.models.service_account_delegation_info import (
ServiceAccountDelegationInfo as ServiceAccountDelegationInfo,
)