-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
37 lines (31 loc) · 1.82 KB
/
Copy path__init__.py
File metadata and controls
37 lines (31 loc) · 1.82 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
# coding: utf-8
# flake8: noqa
"""
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.
The version of the OpenAPI document: 2.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
# import models into model package
from stackit.auditlog.models.audit_log_entry_context_response import (
AuditLogEntryContextResponse,
)
from stackit.auditlog.models.audit_log_entry_initiator_response import (
AuditLogEntryInitiatorResponse,
)
from stackit.auditlog.models.audit_log_entry_request_response import (
AuditLogEntryRequestResponse,
)
from stackit.auditlog.models.audit_log_entry_response import AuditLogEntryResponse
from stackit.auditlog.models.audit_log_entry_service_account_delegation_info_response import (
AuditLogEntryServiceAccountDelegationInfoResponse,
)
from stackit.auditlog.models.error_response import ErrorResponse
from stackit.auditlog.models.gateway_error_response import GatewayErrorResponse
from stackit.auditlog.models.list_audit_log_entries_response import (
ListAuditLogEntriesResponse,
)
from stackit.auditlog.models.service_account_delegation_info_principal_response import (
ServiceAccountDelegationInfoPrincipalResponse,
)