@@ -3041,7 +3041,7 @@ def _list_instances_serialize(
3041
3041
@validate_call
3042
3042
def list_offerings (
3043
3043
self ,
3044
- project_id : StrictStr ,
3044
+ project_id : Annotated [ StrictStr , Field ( description = "Project id on which user has permissions" )] ,
3045
3045
_request_timeout : Union [
3046
3046
None ,
3047
3047
Annotated [StrictFloat , Field (gt = 0 )],
@@ -3056,7 +3056,7 @@ def list_offerings(
3056
3056
3057
3057
Get the service offerings that the service broker offers.
3058
3058
3059
- :param project_id: (required)
3059
+ :param project_id: Project id on which user has permissions (required)
3060
3060
:type project_id: str
3061
3061
:param _request_timeout: timeout setting for this request. If one
3062
3062
number provided, it will be total request
@@ -3101,7 +3101,7 @@ def list_offerings(
3101
3101
@validate_call
3102
3102
def list_offerings_with_http_info (
3103
3103
self ,
3104
- project_id : StrictStr ,
3104
+ project_id : Annotated [ StrictStr , Field ( description = "Project id on which user has permissions" )] ,
3105
3105
_request_timeout : Union [
3106
3106
None ,
3107
3107
Annotated [StrictFloat , Field (gt = 0 )],
@@ -3116,7 +3116,7 @@ def list_offerings_with_http_info(
3116
3116
3117
3117
Get the service offerings that the service broker offers.
3118
3118
3119
- :param project_id: (required)
3119
+ :param project_id: Project id on which user has permissions (required)
3120
3120
:type project_id: str
3121
3121
:param _request_timeout: timeout setting for this request. If one
3122
3122
number provided, it will be total request
@@ -3161,7 +3161,7 @@ def list_offerings_with_http_info(
3161
3161
@validate_call
3162
3162
def list_offerings_without_preload_content (
3163
3163
self ,
3164
- project_id : StrictStr ,
3164
+ project_id : Annotated [ StrictStr , Field ( description = "Project id on which user has permissions" )] ,
3165
3165
_request_timeout : Union [
3166
3166
None ,
3167
3167
Annotated [StrictFloat , Field (gt = 0 )],
@@ -3176,7 +3176,7 @@ def list_offerings_without_preload_content(
3176
3176
3177
3177
Get the service offerings that the service broker offers.
3178
3178
3179
- :param project_id: (required)
3179
+ :param project_id: Project id on which user has permissions (required)
3180
3180
:type project_id: str
3181
3181
:param _request_timeout: timeout setting for this request. If one
3182
3182
number provided, it will be total request
0 commit comments