Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generator: Update SDK /services/mariadb #630

Merged
merged 1 commit into from
Feb 5, 2025
Merged
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
12 changes: 6 additions & 6 deletions services/mariadb/src/stackit/mariadb/api/default_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3039,7 +3039,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)],
Expand All @@ -3054,7 +3054,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
Expand Down Expand Up @@ -3099,7 +3099,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)],
Expand All @@ -3114,7 +3114,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
Expand Down Expand Up @@ -3159,7 +3159,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)],
Expand All @@ -3174,7 +3174,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
Expand Down
Loading