Skip to content

Commit

Permalink
add key vault certificate permission (#12965)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenTanyi authored Jul 9, 2020
1 parent 0526b69 commit 9361802
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,29 @@ interface WithPermissions<ParentT> {
*/
WithAttach<ParentT> allowStorageAllPermissions();

/**
* Allow all permissions for the AD identity to access certificates.
*
* @return the next stage of access policy definition
*/
WithAttach<ParentT> allowCertificateAllPermissions();

/**
* Allow a list of permissions for the AD identity to access certificates.
*
* @param permissions the list of permissions allowed
* @return the next stage of access policy definition
*/
WithAttach<ParentT> allowCertificatePermissions(CertificatePermissions... permissions);

/**
* Allow a list of permissions for the AD identity to access certificates.
*
* @param permissions the list of permissions allowed
* @return the next stage of access policy definition
*/
WithAttach<ParentT> allowCertificatePermissions(List<CertificatePermissions> permissions);

/**
* Allow a list of permissions for the AD identity to access storage.
*
Expand Down

0 comments on commit 9361802

Please sign in to comment.