Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand All @@ -29,7 +29,6 @@
"ApiAttributeError",
"ApiException",
"CreateCertificatePayload",
"CreateCertificateResponse",
"GetCertificateResponse",
"GoogleProtobufAny",
"ListCertificatesResponse",
Expand All @@ -54,9 +53,6 @@
from stackit.certificates.models.create_certificate_payload import (
CreateCertificatePayload as CreateCertificatePayload,
)
from stackit.certificates.models.create_certificate_response import (
CreateCertificateResponse as CreateCertificateResponse,
)
from stackit.certificates.models.get_certificate_response import (
GetCertificateResponse as GetCertificateResponse,
)
Expand Down
23 changes: 10 additions & 13 deletions services/certificates/src/stackit/certificates/api/default_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand All @@ -22,9 +22,6 @@
from stackit.certificates.models.create_certificate_payload import (
CreateCertificatePayload,
)
from stackit.certificates.models.create_certificate_response import (
CreateCertificateResponse,
)
from stackit.certificates.models.get_certificate_response import GetCertificateResponse
from stackit.certificates.models.list_certificates_response import (
ListCertificatesResponse,
Expand Down Expand Up @@ -60,7 +57,7 @@ def create_certificate(
_content_type: Optional[StrictStr] = None,
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> CreateCertificateResponse:
) -> GetCertificateResponse:
"""Store a TLS certificate in a project.

CreateCertificate will store a TLS certificate in a project.
Expand Down Expand Up @@ -104,7 +101,7 @@ def create_certificate(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "CreateCertificateResponse",
"200": "GetCertificateResponse",
"400": None,
"401": "Status",
"403": None,
Expand Down Expand Up @@ -132,7 +129,7 @@ def create_certificate_with_http_info(
_content_type: Optional[StrictStr] = None,
_headers: Optional[Dict[StrictStr, Any]] = None,
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
) -> ApiResponse[CreateCertificateResponse]:
) -> ApiResponse[GetCertificateResponse]:
"""Store a TLS certificate in a project.

CreateCertificate will store a TLS certificate in a project.
Expand Down Expand Up @@ -176,7 +173,7 @@ def create_certificate_with_http_info(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "CreateCertificateResponse",
"200": "GetCertificateResponse",
"400": None,
"401": "Status",
"403": None,
Expand Down Expand Up @@ -248,7 +245,7 @@ def create_certificate_without_preload_content(
)

_response_types_map: Dict[str, Optional[str]] = {
"200": "CreateCertificateResponse",
"200": "GetCertificateResponse",
"400": None,
"401": "Status",
"403": None,
Expand Down Expand Up @@ -308,7 +305,7 @@ def _create_certificate_serialize(

return self.api_client.param_serialize(
method="POST",
resource_path="/v2beta/projects/{projectId}/regions/{region}/certificates",
resource_path="/v2/projects/{projectId}/regions/{region}/certificates",
path_params=_path_params,
query_params=_query_params,
header_params=_header_params,
Expand Down Expand Up @@ -576,7 +573,7 @@ def _delete_certificate_serialize(

return self.api_client.param_serialize(
method="DELETE",
resource_path="/v2beta/projects/{projectId}/regions/{region}/certificates/{id}",
resource_path="/v2/projects/{projectId}/regions/{region}/certificates/{id}",
path_params=_path_params,
query_params=_query_params,
header_params=_header_params,
Expand Down Expand Up @@ -847,7 +844,7 @@ def _get_certificate_serialize(

return self.api_client.param_serialize(
method="GET",
resource_path="/v2beta/projects/{projectId}/regions/{region}/certificates/{id}",
resource_path="/v2/projects/{projectId}/regions/{region}/certificates/{id}",
path_params=_path_params,
query_params=_query_params,
header_params=_header_params,
Expand Down Expand Up @@ -1167,7 +1164,7 @@ def _list_certificates_serialize(

return self.api_client.param_serialize(
method="GET",
resource_path="/v2beta/projects/{projectId}/regions/{region}/certificates",
resource_path="/v2/projects/{projectId}/regions/{region}/certificates",
path_params=_path_params,
query_params=_query_params,
header_params=_header_params,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand All @@ -17,9 +17,6 @@
from stackit.certificates.models.create_certificate_payload import (
CreateCertificatePayload,
)
from stackit.certificates.models.create_certificate_response import (
CreateCertificateResponse,
)
from stackit.certificates.models.get_certificate_response import GetCertificateResponse
from stackit.certificates.models.google_protobuf_any import GoogleProtobufAny
from stackit.certificates.models.list_certificates_response import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/certificates/src/stackit/certificates/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API offers the ability to store TLS certificates, which can be used by load balancing servers in STACKIT. They can be between consumer and load balancing server and/or between load balancing server and endpoint server.

The version of the OpenAPI document: 2beta.0.0
The version of the OpenAPI document: 2.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Loading