@@ -115,6 +115,7 @@ def update(
115115 members_create_projects : Optional [bool ] | Omit = omit ,
116116 members_require_projects : Optional [bool ] | Omit = omit ,
117117 port_sharing_disabled : Optional [bool ] | Omit = omit ,
118+ project_creation_defaults : Optional [policy_update_params .ProjectCreationDefaults ] | Omit = omit ,
118119 require_custom_domain_access : Optional [bool ] | Omit = omit ,
119120 restrict_account_creation_to_scim : Optional [bool ] | Omit = omit ,
120121 security_agent_policy : Optional [policy_update_params .SecurityAgentPolicy ] | Omit = omit ,
@@ -218,6 +219,9 @@ def update(
218219 in the organization. System ports (VS Code Browser, agents) are always exempt
219220 from this policy.
220221
222+ project_creation_defaults: project_creation_defaults contains updates to default settings applied to newly
223+ created projects.
224+
221225 require_custom_domain_access: require_custom_domain_access controls whether users must access via custom
222226 domain when one is configured. When true, access via app.gitpod.io is blocked.
223227
@@ -257,6 +261,7 @@ def update(
257261 "members_create_projects" : members_create_projects ,
258262 "members_require_projects" : members_require_projects ,
259263 "port_sharing_disabled" : port_sharing_disabled ,
264+ "project_creation_defaults" : project_creation_defaults ,
260265 "require_custom_domain_access" : require_custom_domain_access ,
261266 "restrict_account_creation_to_scim" : restrict_account_creation_to_scim ,
262267 "security_agent_policy" : security_agent_policy ,
@@ -362,6 +367,7 @@ async def update(
362367 members_create_projects : Optional [bool ] | Omit = omit ,
363368 members_require_projects : Optional [bool ] | Omit = omit ,
364369 port_sharing_disabled : Optional [bool ] | Omit = omit ,
370+ project_creation_defaults : Optional [policy_update_params .ProjectCreationDefaults ] | Omit = omit ,
365371 require_custom_domain_access : Optional [bool ] | Omit = omit ,
366372 restrict_account_creation_to_scim : Optional [bool ] | Omit = omit ,
367373 security_agent_policy : Optional [policy_update_params .SecurityAgentPolicy ] | Omit = omit ,
@@ -465,6 +471,9 @@ async def update(
465471 in the organization. System ports (VS Code Browser, agents) are always exempt
466472 from this policy.
467473
474+ project_creation_defaults: project_creation_defaults contains updates to default settings applied to newly
475+ created projects.
476+
468477 require_custom_domain_access: require_custom_domain_access controls whether users must access via custom
469478 domain when one is configured. When true, access via app.gitpod.io is blocked.
470479
@@ -504,6 +513,7 @@ async def update(
504513 "members_create_projects" : members_create_projects ,
505514 "members_require_projects" : members_require_projects ,
506515 "port_sharing_disabled" : port_sharing_disabled ,
516+ "project_creation_defaults" : project_creation_defaults ,
507517 "require_custom_domain_access" : require_custom_domain_access ,
508518 "restrict_account_creation_to_scim" : restrict_account_creation_to_scim ,
509519 "security_agent_policy" : security_agent_policy ,
0 commit comments