Skip to content

Commit

Permalink
Merge pull request #4640 from minglumlu/private/mingl/CA-364630
Browse files Browse the repository at this point in the history
Add [post|put]_services_xenops to client auth permission list
  • Loading branch information
robhoes authored Mar 7, 2022
2 parents 0af6cf7 + 86bc0ea commit 2e6487e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions ocaml/idl/datamodel.ml
Original file line number Diff line number Diff line change
Expand Up @@ -8081,10 +8081,22 @@ let http_actions =
, (Get, Constants.xenops_uri, false, [], _R_VM_POWER_ADMIN, [])
)
; ( "post_services_xenops"
, (Post, Constants.xenops_uri, false, [], _R_VM_POWER_ADMIN, [])
, ( Post
, Constants.xenops_uri
, false
, []
, _R_VM_POWER_ADMIN ++ _R_CLIENT_CERT
, []
)
)
; ( "put_services_xenops"
, (Put, Constants.xenops_uri, false, [], _R_VM_POWER_ADMIN, [])
, ( Put
, Constants.xenops_uri
, false
, []
, _R_VM_POWER_ADMIN ++ _R_CLIENT_CERT
, []
)
)
; ( "get_services_sm"
, (Get, Constants.sm_uri, false, [], _R_VM_POWER_ADMIN, [])
Expand Down

0 comments on commit 2e6487e

Please sign in to comment.