-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path__init__.py
More file actions
80 lines (70 loc) · 3.05 KB
/
Copy path__init__.py
File metadata and controls
80 lines (70 loc) · 3.05 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
68
69
70
71
72
73
74
75
76
77
78
79
80
# coding: utf-8
# flake8: noqa
"""
STACKIT Audit Log API
**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)
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",
"AuditLogEntryContextResponse",
"AuditLogEntryInitiatorResponse",
"AuditLogEntryRequestResponse",
"AuditLogEntryResponse",
"AuditLogEntryServiceAccountDelegationInfoResponse",
"ErrorResponse",
"GatewayErrorResponse",
"ListAuditLogEntriesResponse",
"ServiceAccountDelegationInfoPrincipalResponse",
]
# 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_context_response import (
AuditLogEntryContextResponse as AuditLogEntryContextResponse,
)
from stackit.auditlog.models.audit_log_entry_initiator_response import (
AuditLogEntryInitiatorResponse as AuditLogEntryInitiatorResponse,
)
from stackit.auditlog.models.audit_log_entry_request_response import (
AuditLogEntryRequestResponse as AuditLogEntryRequestResponse,
)
from stackit.auditlog.models.audit_log_entry_response import (
AuditLogEntryResponse as AuditLogEntryResponse,
)
from stackit.auditlog.models.audit_log_entry_service_account_delegation_info_response import (
AuditLogEntryServiceAccountDelegationInfoResponse as AuditLogEntryServiceAccountDelegationInfoResponse,
)
from stackit.auditlog.models.error_response import ErrorResponse as ErrorResponse
from stackit.auditlog.models.gateway_error_response import (
GatewayErrorResponse as GatewayErrorResponse,
)
from stackit.auditlog.models.list_audit_log_entries_response import (
ListAuditLogEntriesResponse as ListAuditLogEntriesResponse,
)
from stackit.auditlog.models.service_account_delegation_info_principal_response import (
ServiceAccountDelegationInfoPrincipalResponse as ServiceAccountDelegationInfoPrincipalResponse,
)