File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -462,6 +462,39 @@ export interface Routes {
462462 }
463463 }
464464 }
465+ '/acs/access_groups/create' : {
466+ route : '/acs/access_groups/create'
467+ method : 'POST'
468+ queryParams : { }
469+ jsonBody : { }
470+ commonParams : {
471+ acs_system_id : string
472+ name ?: string | undefined
473+ }
474+ formData : { }
475+ jsonResponse : {
476+ acs_access_group : {
477+ acs_access_group_id : string
478+ acs_system_id : string
479+ workspace_id : string
480+ name : string
481+ acs_access_group_type : 'pti_unit'
482+ created_at : string | Date
483+ }
484+ }
485+ }
486+ '/acs/access_groups/update' : {
487+ route : '/acs/access_groups/update'
488+ method : 'POST' | 'PATCH'
489+ queryParams : { }
490+ jsonBody : { }
491+ commonParams : {
492+ acs_access_group_id : string
493+ name ?: ( string | null ) | undefined
494+ }
495+ formData : { }
496+ jsonResponse : { }
497+ }
465498 '/acs/systems/get' : {
466499 route : '/acs/systems/get'
467500 method : 'GET' | 'POST'
You can’t perform that action at this time.
0 commit comments