@@ -3039,7 +3039,7 @@ def _list_instances_serialize(
3039
3039
@validate_call
3040
3040
def list_offerings (
3041
3041
self ,
3042
- project_id : StrictStr ,
3042
+ project_id : Annotated [ StrictStr , Field ( description = "Project id on which user has permissions" )] ,
3043
3043
_request_timeout : Union [
3044
3044
None ,
3045
3045
Annotated [StrictFloat , Field (gt = 0 )],
@@ -3054,7 +3054,7 @@ def list_offerings(
3054
3054
3055
3055
Get the service offerings that the service broker offers.
3056
3056
3057
- :param project_id: (required)
3057
+ :param project_id: Project id on which user has permissions (required)
3058
3058
:type project_id: str
3059
3059
:param _request_timeout: timeout setting for this request. If one
3060
3060
number provided, it will be total request
@@ -3099,7 +3099,7 @@ def list_offerings(
3099
3099
@validate_call
3100
3100
def list_offerings_with_http_info (
3101
3101
self ,
3102
- project_id : StrictStr ,
3102
+ project_id : Annotated [ StrictStr , Field ( description = "Project id on which user has permissions" )] ,
3103
3103
_request_timeout : Union [
3104
3104
None ,
3105
3105
Annotated [StrictFloat , Field (gt = 0 )],
@@ -3114,7 +3114,7 @@ def list_offerings_with_http_info(
3114
3114
3115
3115
Get the service offerings that the service broker offers.
3116
3116
3117
- :param project_id: (required)
3117
+ :param project_id: Project id on which user has permissions (required)
3118
3118
:type project_id: str
3119
3119
:param _request_timeout: timeout setting for this request. If one
3120
3120
number provided, it will be total request
@@ -3159,7 +3159,7 @@ def list_offerings_with_http_info(
3159
3159
@validate_call
3160
3160
def list_offerings_without_preload_content (
3161
3161
self ,
3162
- project_id : StrictStr ,
3162
+ project_id : Annotated [ StrictStr , Field ( description = "Project id on which user has permissions" )] ,
3163
3163
_request_timeout : Union [
3164
3164
None ,
3165
3165
Annotated [StrictFloat , Field (gt = 0 )],
@@ -3174,7 +3174,7 @@ def list_offerings_without_preload_content(
3174
3174
3175
3175
Get the service offerings that the service broker offers.
3176
3176
3177
- :param project_id: (required)
3177
+ :param project_id: Project id on which user has permissions (required)
3178
3178
:type project_id: str
3179
3179
:param _request_timeout: timeout setting for this request. If one
3180
3180
number provided, it will be total request
0 commit comments