@@ -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