Skip to content

Commit 5ffa7ca

Browse files
authored
Merge branch 'main' into generator-bot-13134697540/rabbitmq
2 parents 8d231f1 + 4930596 commit 5ffa7ca

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

services/mariadb/src/stackit/mariadb/api/default_api.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -3039,7 +3039,7 @@ def _list_instances_serialize(
30393039
@validate_call
30403040
def list_offerings(
30413041
self,
3042-
project_id: StrictStr,
3042+
project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")],
30433043
_request_timeout: Union[
30443044
None,
30453045
Annotated[StrictFloat, Field(gt=0)],
@@ -3054,7 +3054,7 @@ def list_offerings(
30543054
30553055
Get the service offerings that the service broker offers.
30563056
3057-
:param project_id: (required)
3057+
:param project_id: Project id on which user has permissions (required)
30583058
:type project_id: str
30593059
:param _request_timeout: timeout setting for this request. If one
30603060
number provided, it will be total request
@@ -3099,7 +3099,7 @@ def list_offerings(
30993099
@validate_call
31003100
def list_offerings_with_http_info(
31013101
self,
3102-
project_id: StrictStr,
3102+
project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")],
31033103
_request_timeout: Union[
31043104
None,
31053105
Annotated[StrictFloat, Field(gt=0)],
@@ -3114,7 +3114,7 @@ def list_offerings_with_http_info(
31143114
31153115
Get the service offerings that the service broker offers.
31163116
3117-
:param project_id: (required)
3117+
:param project_id: Project id on which user has permissions (required)
31183118
:type project_id: str
31193119
:param _request_timeout: timeout setting for this request. If one
31203120
number provided, it will be total request
@@ -3159,7 +3159,7 @@ def list_offerings_with_http_info(
31593159
@validate_call
31603160
def list_offerings_without_preload_content(
31613161
self,
3162-
project_id: StrictStr,
3162+
project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")],
31633163
_request_timeout: Union[
31643164
None,
31653165
Annotated[StrictFloat, Field(gt=0)],
@@ -3174,7 +3174,7 @@ def list_offerings_without_preload_content(
31743174
31753175
Get the service offerings that the service broker offers.
31763176
3177-
:param project_id: (required)
3177+
:param project_id: Project id on which user has permissions (required)
31783178
:type project_id: str
31793179
:param _request_timeout: timeout setting for this request. If one
31803180
number provided, it will be total request

services/opensearch/src/stackit/opensearch/api/default_api.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -3041,7 +3041,7 @@ def _list_instances_serialize(
30413041
@validate_call
30423042
def list_offerings(
30433043
self,
3044-
project_id: StrictStr,
3044+
project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")],
30453045
_request_timeout: Union[
30463046
None,
30473047
Annotated[StrictFloat, Field(gt=0)],
@@ -3056,7 +3056,7 @@ def list_offerings(
30563056
30573057
Get the service offerings that the service broker offers.
30583058
3059-
:param project_id: (required)
3059+
:param project_id: Project id on which user has permissions (required)
30603060
:type project_id: str
30613061
:param _request_timeout: timeout setting for this request. If one
30623062
number provided, it will be total request
@@ -3101,7 +3101,7 @@ def list_offerings(
31013101
@validate_call
31023102
def list_offerings_with_http_info(
31033103
self,
3104-
project_id: StrictStr,
3104+
project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")],
31053105
_request_timeout: Union[
31063106
None,
31073107
Annotated[StrictFloat, Field(gt=0)],
@@ -3116,7 +3116,7 @@ def list_offerings_with_http_info(
31163116
31173117
Get the service offerings that the service broker offers.
31183118
3119-
:param project_id: (required)
3119+
:param project_id: Project id on which user has permissions (required)
31203120
:type project_id: str
31213121
:param _request_timeout: timeout setting for this request. If one
31223122
number provided, it will be total request
@@ -3161,7 +3161,7 @@ def list_offerings_with_http_info(
31613161
@validate_call
31623162
def list_offerings_without_preload_content(
31633163
self,
3164-
project_id: StrictStr,
3164+
project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")],
31653165
_request_timeout: Union[
31663166
None,
31673167
Annotated[StrictFloat, Field(gt=0)],
@@ -3176,7 +3176,7 @@ def list_offerings_without_preload_content(
31763176
31773177
Get the service offerings that the service broker offers.
31783178
3179-
:param project_id: (required)
3179+
:param project_id: Project id on which user has permissions (required)
31803180
:type project_id: str
31813181
:param _request_timeout: timeout setting for this request. If one
31823182
number provided, it will be total request

0 commit comments

Comments
 (0)