@@ -57,7 +57,7 @@ def create(
5757 * ,
5858 project_id : int | None = None ,
5959 region_id : int | None = None ,
60- loadbalancer_id : str ,
60+ load_balancer_id : str ,
6161 name : str ,
6262 protocol : LbListenerProtocol ,
6363 protocol_port : int ,
@@ -85,7 +85,7 @@ def create(
8585
8686 region_id: Region ID
8787
88- loadbalancer_id : Load balancer ID
88+ load_balancer_id : Load balancer ID
8989
9090 name: Load balancer listener name
9191
@@ -130,7 +130,7 @@ def create(
130130 f"/cloud/v1/lblisteners/{ project_id } /{ region_id } " ,
131131 body = maybe_transform (
132132 {
133- "loadbalancer_id " : loadbalancer_id ,
133+ "load_balancer_id " : load_balancer_id ,
134134 "name" : name ,
135135 "protocol" : protocol ,
136136 "protocol_port" : protocol_port ,
@@ -245,7 +245,7 @@ def list(
245245 * ,
246246 project_id : int | None = None ,
247247 region_id : int | None = None ,
248- loadbalancer_id : str | Omit = omit ,
248+ load_balancer_id : str | Omit = omit ,
249249 show_stats : bool | Omit = omit ,
250250 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
251251 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -262,7 +262,7 @@ def list(
262262
263263 region_id: Region ID
264264
265- loadbalancer_id : Load Balancer ID
265+ load_balancer_id : Load Balancer ID
266266
267267 show_stats: Show stats
268268
@@ -287,7 +287,7 @@ def list(
287287 timeout = timeout ,
288288 query = maybe_transform (
289289 {
290- "loadbalancer_id " : loadbalancer_id ,
290+ "load_balancer_id " : load_balancer_id ,
291291 "show_stats" : show_stats ,
292292 },
293293 listener_list_params .ListenerListParams ,
@@ -580,7 +580,7 @@ async def create(
580580 * ,
581581 project_id : int | None = None ,
582582 region_id : int | None = None ,
583- loadbalancer_id : str ,
583+ load_balancer_id : str ,
584584 name : str ,
585585 protocol : LbListenerProtocol ,
586586 protocol_port : int ,
@@ -608,7 +608,7 @@ async def create(
608608
609609 region_id: Region ID
610610
611- loadbalancer_id : Load balancer ID
611+ load_balancer_id : Load balancer ID
612612
613613 name: Load balancer listener name
614614
@@ -653,7 +653,7 @@ async def create(
653653 f"/cloud/v1/lblisteners/{ project_id } /{ region_id } " ,
654654 body = await async_maybe_transform (
655655 {
656- "loadbalancer_id " : loadbalancer_id ,
656+ "load_balancer_id " : load_balancer_id ,
657657 "name" : name ,
658658 "protocol" : protocol ,
659659 "protocol_port" : protocol_port ,
@@ -768,7 +768,7 @@ async def list(
768768 * ,
769769 project_id : int | None = None ,
770770 region_id : int | None = None ,
771- loadbalancer_id : str | Omit = omit ,
771+ load_balancer_id : str | Omit = omit ,
772772 show_stats : bool | Omit = omit ,
773773 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
774774 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -785,7 +785,7 @@ async def list(
785785
786786 region_id: Region ID
787787
788- loadbalancer_id : Load Balancer ID
788+ load_balancer_id : Load Balancer ID
789789
790790 show_stats: Show stats
791791
@@ -810,7 +810,7 @@ async def list(
810810 timeout = timeout ,
811811 query = await async_maybe_transform (
812812 {
813- "loadbalancer_id " : loadbalancer_id ,
813+ "load_balancer_id " : load_balancer_id ,
814814 "show_stats" : show_stats ,
815815 },
816816 listener_list_params .ListenerListParams ,
0 commit comments