diff --git a/services/cdn/src/stackit/cdn/models/get_custom_domain_response_certificate.py b/services/cdn/src/stackit/cdn/models/get_custom_domain_response_certificate.py index e43b7631..fa4d856f 100644 --- a/services/cdn/src/stackit/cdn/models/get_custom_domain_response_certificate.py +++ b/services/cdn/src/stackit/cdn/models/get_custom_domain_response_certificate.py @@ -45,9 +45,19 @@ class GetCustomDomainResponseCertificate(BaseModel): """ # data type: GetCustomDomainManagedCertificate + # BEGIN of the workaround until upstream issues are fixed: + # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024 + # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024 + # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227 oneof_schema_1_validator: Optional[GetCustomDomainManagedCertificate] = None + # END of the workaround # data type: GetCustomDomainCustomCertificate + # BEGIN of the workaround until upstream issues are fixed: + # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024 + # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024 + # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227 oneof_schema_2_validator: Optional[GetCustomDomainCustomCertificate] = None + # END of the workaround actual_instance: Optional[Union[GetCustomDomainCustomCertificate, GetCustomDomainManagedCertificate]] = None one_of_schemas: Set[str] = {"GetCustomDomainCustomCertificate", "GetCustomDomainManagedCertificate"} diff --git a/services/cdn/src/stackit/cdn/models/put_custom_domain_payload_certificate.py b/services/cdn/src/stackit/cdn/models/put_custom_domain_payload_certificate.py index 804d3def..e4b78192 100644 --- a/services/cdn/src/stackit/cdn/models/put_custom_domain_payload_certificate.py +++ b/services/cdn/src/stackit/cdn/models/put_custom_domain_payload_certificate.py @@ -45,9 +45,19 @@ class PutCustomDomainPayloadCertificate(BaseModel): """ # data type: PutCustomDomainManagedCertificate + # BEGIN of the workaround until upstream issues are fixed: + # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024 + # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024 + # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227 oneof_schema_1_validator: Optional[PutCustomDomainManagedCertificate] = None + # END of the workaround # data type: PutCustomDomainCustomCertificate + # BEGIN of the workaround until upstream issues are fixed: + # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024 + # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024 + # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227 oneof_schema_2_validator: Optional[PutCustomDomainCustomCertificate] = None + # END of the workaround actual_instance: Optional[Union[PutCustomDomainCustomCertificate, PutCustomDomainManagedCertificate]] = None one_of_schemas: Set[str] = {"PutCustomDomainCustomCertificate", "PutCustomDomainManagedCertificate"} diff --git a/services/cdn/src/stackit/cdn/models/put_custom_domain_response_certificate.py b/services/cdn/src/stackit/cdn/models/put_custom_domain_response_certificate.py index a23fc0e1..b5b4018c 100644 --- a/services/cdn/src/stackit/cdn/models/put_custom_domain_response_certificate.py +++ b/services/cdn/src/stackit/cdn/models/put_custom_domain_response_certificate.py @@ -45,9 +45,19 @@ class PutCustomDomainResponseCertificate(BaseModel): """ # data type: GetCustomDomainManagedCertificate + # BEGIN of the workaround until upstream issues are fixed: + # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024 + # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024 + # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227 oneof_schema_1_validator: Optional[GetCustomDomainManagedCertificate] = None + # END of the workaround # data type: GetCustomDomainCustomCertificate + # BEGIN of the workaround until upstream issues are fixed: + # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024 + # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024 + # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227 oneof_schema_2_validator: Optional[GetCustomDomainCustomCertificate] = None + # END of the workaround actual_instance: Optional[Union[GetCustomDomainCustomCertificate, GetCustomDomainManagedCertificate]] = None one_of_schemas: Set[str] = {"GetCustomDomainCustomCertificate", "GetCustomDomainManagedCertificate"}