Skip to content

Commit 1665a12

Browse files
Generate cdn
1 parent a559ffc commit 1665a12

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

services/cdn/src/stackit/cdn/models/get_custom_domain_response_certificate.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,19 @@ class GetCustomDomainResponseCertificate(BaseModel):
4545
"""
4646

4747
# data type: GetCustomDomainManagedCertificate
48+
# BEGIN of the workaround until upstream issues are fixed:
49+
# https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
50+
# and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
51+
# Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
4852
oneof_schema_1_validator: Optional[GetCustomDomainManagedCertificate] = None
53+
# END of the workaround
4954
# data type: GetCustomDomainCustomCertificate
55+
# BEGIN of the workaround until upstream issues are fixed:
56+
# https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
57+
# and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
58+
# Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
5059
oneof_schema_2_validator: Optional[GetCustomDomainCustomCertificate] = None
60+
# END of the workaround
5161
actual_instance: Optional[Union[GetCustomDomainCustomCertificate, GetCustomDomainManagedCertificate]] = None
5262
one_of_schemas: Set[str] = {"GetCustomDomainCustomCertificate", "GetCustomDomainManagedCertificate"}
5363

services/cdn/src/stackit/cdn/models/put_custom_domain_payload_certificate.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,19 @@ class PutCustomDomainPayloadCertificate(BaseModel):
4545
"""
4646

4747
# data type: PutCustomDomainManagedCertificate
48+
# BEGIN of the workaround until upstream issues are fixed:
49+
# https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
50+
# and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
51+
# Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
4852
oneof_schema_1_validator: Optional[PutCustomDomainManagedCertificate] = None
53+
# END of the workaround
4954
# data type: PutCustomDomainCustomCertificate
55+
# BEGIN of the workaround until upstream issues are fixed:
56+
# https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
57+
# and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
58+
# Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
5059
oneof_schema_2_validator: Optional[PutCustomDomainCustomCertificate] = None
60+
# END of the workaround
5161
actual_instance: Optional[Union[PutCustomDomainCustomCertificate, PutCustomDomainManagedCertificate]] = None
5262
one_of_schemas: Set[str] = {"PutCustomDomainCustomCertificate", "PutCustomDomainManagedCertificate"}
5363

services/cdn/src/stackit/cdn/models/put_custom_domain_response_certificate.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,19 @@ class PutCustomDomainResponseCertificate(BaseModel):
4545
"""
4646

4747
# data type: GetCustomDomainManagedCertificate
48+
# BEGIN of the workaround until upstream issues are fixed:
49+
# https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
50+
# and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
51+
# Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
4852
oneof_schema_1_validator: Optional[GetCustomDomainManagedCertificate] = None
53+
# END of the workaround
4954
# data type: GetCustomDomainCustomCertificate
55+
# BEGIN of the workaround until upstream issues are fixed:
56+
# https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
57+
# and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
58+
# Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
5059
oneof_schema_2_validator: Optional[GetCustomDomainCustomCertificate] = None
60+
# END of the workaround
5161
actual_instance: Optional[Union[GetCustomDomainCustomCertificate, GetCustomDomainManagedCertificate]] = None
5262
one_of_schemas: Set[str] = {"GetCustomDomainCustomCertificate", "GetCustomDomainManagedCertificate"}
5363

0 commit comments

Comments
 (0)