Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 43 additions & 1 deletion services/cdn/src/stackit/cdn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

API used to create and manage your CDN distributions.

The version of the OpenAPI document: 1beta2.0.0
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -62,6 +62,9 @@
"GetCustomDomainResponseCertificate",
"GetDistributionResponse",
"GetLogsResponse",
"GetLogsSearchFiltersResponse",
"GetLogsSearchFiltersResponseDatacenterBlock",
"GetLogsSearchFiltersResponseDatacenterBlockItem",
"GetStatisticsResponse",
"HttpBackend",
"HttpBackendCreate",
Expand All @@ -85,13 +88,22 @@
"PutCustomDomainResponseCertificate",
"Region",
"StatusError",
"WAFRuleAction",
"WAFViolation",
"WafConfig",
"WafConfigPatch",
"WafMode",
"WafParanoiaLevel",
"WafRule",
"WafRuleCollection",
"WafRuleGroup",
"WafStatusRuleBlock",
"WafStatusRuleBlockReason",
"WafStatusRuleBlockReasonDirectlyDefined",
"WafStatusRuleBlockReasonInheritedFromCollection",
"WafStatusRuleBlockReasonInheritedFromGroup",
"WafStatusRuleBlockReasonInvalidWafType",
"WafStatusRuleBlockReasonNeverDefined",
"WafType",
]

Expand Down Expand Up @@ -188,6 +200,15 @@
GetDistributionResponse as GetDistributionResponse,
)
from stackit.cdn.models.get_logs_response import GetLogsResponse as GetLogsResponse
from stackit.cdn.models.get_logs_search_filters_response import (
GetLogsSearchFiltersResponse as GetLogsSearchFiltersResponse,
)
from stackit.cdn.models.get_logs_search_filters_response_datacenter_block import (
GetLogsSearchFiltersResponseDatacenterBlock as GetLogsSearchFiltersResponseDatacenterBlock,
)
from stackit.cdn.models.get_logs_search_filters_response_datacenter_block_item import (
GetLogsSearchFiltersResponseDatacenterBlockItem as GetLogsSearchFiltersResponseDatacenterBlockItem,
)
from stackit.cdn.models.get_statistics_response import (
GetStatisticsResponse as GetStatisticsResponse,
)
Expand Down Expand Up @@ -244,12 +265,33 @@
from stackit.cdn.models.waf_config import WafConfig as WafConfig
from stackit.cdn.models.waf_config_patch import WafConfigPatch as WafConfigPatch
from stackit.cdn.models.waf_mode import WafMode as WafMode
from stackit.cdn.models.waf_paranoia_level import WafParanoiaLevel as WafParanoiaLevel
from stackit.cdn.models.waf_rule import WafRule as WafRule
from stackit.cdn.models.waf_rule_action import WAFRuleAction as WAFRuleAction
from stackit.cdn.models.waf_rule_collection import (
WafRuleCollection as WafRuleCollection,
)
from stackit.cdn.models.waf_rule_group import WafRuleGroup as WafRuleGroup
from stackit.cdn.models.waf_status_rule_block import (
WafStatusRuleBlock as WafStatusRuleBlock,
)
from stackit.cdn.models.waf_status_rule_block_reason import (
WafStatusRuleBlockReason as WafStatusRuleBlockReason,
)
from stackit.cdn.models.waf_status_rule_block_reason_directly_defined import (
WafStatusRuleBlockReasonDirectlyDefined as WafStatusRuleBlockReasonDirectlyDefined,
)
from stackit.cdn.models.waf_status_rule_block_reason_inherited_from_collection import (
WafStatusRuleBlockReasonInheritedFromCollection as WafStatusRuleBlockReasonInheritedFromCollection,
)
from stackit.cdn.models.waf_status_rule_block_reason_inherited_from_group import (
WafStatusRuleBlockReasonInheritedFromGroup as WafStatusRuleBlockReasonInheritedFromGroup,
)
from stackit.cdn.models.waf_status_rule_block_reason_invalid_waf_type import (
WafStatusRuleBlockReasonInvalidWafType as WafStatusRuleBlockReasonInvalidWafType,
)
from stackit.cdn.models.waf_status_rule_block_reason_never_defined import (
WafStatusRuleBlockReasonNeverDefined as WafStatusRuleBlockReasonNeverDefined,
)
from stackit.cdn.models.waf_type import WafType as WafType
from stackit.cdn.models.waf_violation import WAFViolation as WAFViolation
Loading