From 4930596fdd7a32ad508b6c54102d8d7a9f50141b Mon Sep 17 00:00:00 2001 From: stackit-pipeline <142982727+stackit-pipeline@users.noreply.github.com> Date: Wed, 5 Feb 2025 12:05:07 +0100 Subject: [PATCH] Generate opensearch (#632) --- .../src/stackit/opensearch/api/default_api.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/services/opensearch/src/stackit/opensearch/api/default_api.py b/services/opensearch/src/stackit/opensearch/api/default_api.py index 41cf1e34..bfca9705 100644 --- a/services/opensearch/src/stackit/opensearch/api/default_api.py +++ b/services/opensearch/src/stackit/opensearch/api/default_api.py @@ -3041,7 +3041,7 @@ def _list_instances_serialize( @validate_call def list_offerings( self, - project_id: StrictStr, + project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -3056,7 +3056,7 @@ def list_offerings( Get the service offerings that the service broker offers. - :param project_id: (required) + :param project_id: Project id on which user has permissions (required) :type project_id: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -3101,7 +3101,7 @@ def list_offerings( @validate_call def list_offerings_with_http_info( self, - project_id: StrictStr, + project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -3116,7 +3116,7 @@ def list_offerings_with_http_info( Get the service offerings that the service broker offers. - :param project_id: (required) + :param project_id: Project id on which user has permissions (required) :type project_id: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -3161,7 +3161,7 @@ def list_offerings_with_http_info( @validate_call def list_offerings_without_preload_content( self, - project_id: StrictStr, + project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -3176,7 +3176,7 @@ def list_offerings_without_preload_content( Get the service offerings that the service broker offers. - :param project_id: (required) + :param project_id: Project id on which user has permissions (required) :type project_id: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request