@@ -105,7 +105,6 @@ def update(
105105 default_environment_image : Optional [str ] | Omit = omit ,
106106 delete_archived_environments_after : Optional [str ] | Omit = omit ,
107107 editor_version_restrictions : Dict [str , policy_update_params .EditorVersionRestrictions ] | Omit = omit ,
108- executable_deny_list : Optional [VetoExecPolicyParam ] | Omit = omit ,
109108 maximum_environment_lifetime : Optional [str ] | Omit = omit ,
110109 maximum_environments_per_user : Optional [str ] | Omit = omit ,
111110 maximum_environment_timeout : Optional [str ] | Omit = omit ,
@@ -116,6 +115,7 @@ def update(
116115 require_custom_domain_access : Optional [bool ] | Omit = omit ,
117116 restrict_account_creation_to_scim : Optional [bool ] | Omit = omit ,
118117 security_agent_policy : Optional [policy_update_params .SecurityAgentPolicy ] | Omit = omit ,
118+ veto_exec_policy : Optional [VetoExecPolicyParam ] | Omit = omit ,
119119 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
120120 # The extra values given here take precedence over values defined on the client or passed to this method.
121121 extra_headers : Headers | None = None ,
@@ -182,8 +182,6 @@ def update(
182182 editor_version_restrictions: editor_version_restrictions restricts which editor versions can be used. Maps
183183 editor ID to version policy with allowed major versions.
184184
185- executable_deny_list: executable_deny_list contains the veto exec policy for environments.
186-
187185 maximum_environment_lifetime: maximum_environment_lifetime controls for how long environments are allowed to
188186 be reused. 0 means no maximum lifetime. Maximum duration is 180 days (15552000
189187 seconds).
@@ -216,6 +214,8 @@ def update(
216214
217215 security_agent_policy: security_agent_policy contains security agent configuration updates
218216
217+ veto_exec_policy: veto_exec_policy contains the veto exec policy for environments.
218+
219219 extra_headers: Send extra headers
220220
221221 extra_query: Add additional query parameters to the request
@@ -236,7 +236,6 @@ def update(
236236 "default_environment_image" : default_environment_image ,
237237 "delete_archived_environments_after" : delete_archived_environments_after ,
238238 "editor_version_restrictions" : editor_version_restrictions ,
239- "executable_deny_list" : executable_deny_list ,
240239 "maximum_environment_lifetime" : maximum_environment_lifetime ,
241240 "maximum_environments_per_user" : maximum_environments_per_user ,
242241 "maximum_environment_timeout" : maximum_environment_timeout ,
@@ -247,6 +246,7 @@ def update(
247246 "require_custom_domain_access" : require_custom_domain_access ,
248247 "restrict_account_creation_to_scim" : restrict_account_creation_to_scim ,
249248 "security_agent_policy" : security_agent_policy ,
249+ "veto_exec_policy" : veto_exec_policy ,
250250 },
251251 policy_update_params .PolicyUpdateParams ,
252252 ),
@@ -340,7 +340,6 @@ async def update(
340340 default_environment_image : Optional [str ] | Omit = omit ,
341341 delete_archived_environments_after : Optional [str ] | Omit = omit ,
342342 editor_version_restrictions : Dict [str , policy_update_params .EditorVersionRestrictions ] | Omit = omit ,
343- executable_deny_list : Optional [VetoExecPolicyParam ] | Omit = omit ,
344343 maximum_environment_lifetime : Optional [str ] | Omit = omit ,
345344 maximum_environments_per_user : Optional [str ] | Omit = omit ,
346345 maximum_environment_timeout : Optional [str ] | Omit = omit ,
@@ -351,6 +350,7 @@ async def update(
351350 require_custom_domain_access : Optional [bool ] | Omit = omit ,
352351 restrict_account_creation_to_scim : Optional [bool ] | Omit = omit ,
353352 security_agent_policy : Optional [policy_update_params .SecurityAgentPolicy ] | Omit = omit ,
353+ veto_exec_policy : Optional [VetoExecPolicyParam ] | Omit = omit ,
354354 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
355355 # The extra values given here take precedence over values defined on the client or passed to this method.
356356 extra_headers : Headers | None = None ,
@@ -417,8 +417,6 @@ async def update(
417417 editor_version_restrictions: editor_version_restrictions restricts which editor versions can be used. Maps
418418 editor ID to version policy with allowed major versions.
419419
420- executable_deny_list: executable_deny_list contains the veto exec policy for environments.
421-
422420 maximum_environment_lifetime: maximum_environment_lifetime controls for how long environments are allowed to
423421 be reused. 0 means no maximum lifetime. Maximum duration is 180 days (15552000
424422 seconds).
@@ -451,6 +449,8 @@ async def update(
451449
452450 security_agent_policy: security_agent_policy contains security agent configuration updates
453451
452+ veto_exec_policy: veto_exec_policy contains the veto exec policy for environments.
453+
454454 extra_headers: Send extra headers
455455
456456 extra_query: Add additional query parameters to the request
@@ -471,7 +471,6 @@ async def update(
471471 "default_environment_image" : default_environment_image ,
472472 "delete_archived_environments_after" : delete_archived_environments_after ,
473473 "editor_version_restrictions" : editor_version_restrictions ,
474- "executable_deny_list" : executable_deny_list ,
475474 "maximum_environment_lifetime" : maximum_environment_lifetime ,
476475 "maximum_environments_per_user" : maximum_environments_per_user ,
477476 "maximum_environment_timeout" : maximum_environment_timeout ,
@@ -482,6 +481,7 @@ async def update(
482481 "require_custom_domain_access" : require_custom_domain_access ,
483482 "restrict_account_creation_to_scim" : restrict_account_creation_to_scim ,
484483 "security_agent_policy" : security_agent_policy ,
484+ "veto_exec_policy" : veto_exec_policy ,
485485 },
486486 policy_update_params .PolicyUpdateParams ,
487487 ),
0 commit comments