@@ -194,20 +194,22 @@ message UpdateOrganizationSettingsRequest {
194
194
195
195
// allowed_workspace_classes are the IDs of classes, which can be used by
196
196
// workspaces in an organization. Pass an empty array to allow all workspace
197
- // classes
197
+ // classes.
198
+ // Only updates if update_allowed_workspace_classes is true.
198
199
repeated string allowed_workspace_classes = 5 ;
199
200
200
201
// restricted_editor_names updates the list of restricted editor names that
201
202
// are not allowed to be used by workspaces in an organization. If empty, all
202
- // editors are allowed. Only updates if update_restricted_editor_names is
203
- // true.
203
+ // editors are allowed.
204
+ // Only updates if update_restricted_editor_names is true.
204
205
repeated string restricted_editor_names = 6 ;
205
206
206
207
// Specifies whether restricted_workspace_classes should be updated
207
208
optional bool update_restricted_editor_names = 7 ;
208
209
209
210
// pinned_editor_versions updates the pinned version for the corresponding
210
- // editor
211
+ // editor.
212
+ // Only updates if update_pinned_editor_versions is true.
211
213
map <string , string > pinned_editor_versions = 8 ;
212
214
213
215
// Specifies whether pinned_editor_versions should be updated
@@ -219,6 +221,7 @@ message UpdateOrganizationSettingsRequest {
219
221
// timeout_settings are the settings for workspace timeouts
220
222
optional TimeoutSettings timeout_settings = 11 ;
221
223
224
+ // Only updates if update_role_restrictions is true.
222
225
repeated RoleRestrictionEntry role_restrictions = 12 ;
223
226
224
227
// update_role_restrictions specifies whether role_restrictions should be
@@ -236,6 +239,10 @@ message UpdateOrganizationSettingsRequest {
236
239
// annotate_git_commits specifies whether to annotate git commits created in
237
240
// Gitpod workspaces with the gitpod host
238
241
optional bool annotate_git_commits = 17 ;
242
+
243
+ // update_role_restrictions specifies whether role_restrictions should be
244
+ // updated
245
+ optional bool update_allowed_workspace_classes = 18 ;
239
246
}
240
247
241
248
message UpdateOrganizationSettingsResponse {
0 commit comments