@@ -165,6 +165,7 @@ def update(
165165 id : str ,
166166 name : str ,
167167 type : Literal ["standard" , "enterprise" ],
168+ managed_by : account_update_params .ManagedBy | Omit = omit ,
168169 settings : account_update_params .Settings | Omit = omit ,
169170 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
170171 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -183,6 +184,8 @@ def update(
183184
184185 name: Account name
185186
187+ managed_by: Parent container details
188+
186189 settings: Account settings
187190
188191 extra_headers: Send extra headers
@@ -202,6 +205,7 @@ def update(
202205 "id" : id ,
203206 "name" : name ,
204207 "type" : type ,
208+ "managed_by" : managed_by ,
205209 "settings" : settings ,
206210 },
207211 account_update_params .AccountUpdateParams ,
@@ -451,6 +455,7 @@ async def update(
451455 id : str ,
452456 name : str ,
453457 type : Literal ["standard" , "enterprise" ],
458+ managed_by : account_update_params .ManagedBy | Omit = omit ,
454459 settings : account_update_params .Settings | Omit = omit ,
455460 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
456461 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -469,6 +474,8 @@ async def update(
469474
470475 name: Account name
471476
477+ managed_by: Parent container details
478+
472479 settings: Account settings
473480
474481 extra_headers: Send extra headers
@@ -488,6 +495,7 @@ async def update(
488495 "id" : id ,
489496 "name" : name ,
490497 "type" : type ,
498+ "managed_by" : managed_by ,
491499 "settings" : settings ,
492500 },
493501 account_update_params .AccountUpdateParams ,
0 commit comments