Skip to content

Commit

Permalink
fix public api
Browse files Browse the repository at this point in the history
  • Loading branch information
maorleger committed Jan 28, 2021
1 parent 24650ee commit 6a21258
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
10 changes: 7 additions & 3 deletions sdk/keyvault/keyvault-admin/review/keyvault-admin.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,17 @@ export class KeyVaultBackupClient {
readonly vaultUrl: string;
}

// Warning: (ae-forgotten-export) The symbol "DataAction" needs to be exported by the entry point index.d.ts
//
// @public
export type KeyVaultDataAction = DataAction;

// @public
export interface KeyVaultPermission {
actions?: string[];
// Warning: (ae-forgotten-export) The symbol "DataAction" needs to be exported by the entry point index.d.ts
dataActions?: DataAction[];
dataActions?: KeyVaultDataAction[];
notActions?: string[];
notDataActions?: DataAction[];
notDataActions?: KeyVaultDataAction[];
}

// @public
Expand Down
10 changes: 8 additions & 2 deletions sdk/keyvault/keyvault-admin/src/accessControlModels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,19 @@ export interface KeyVaultPermission {
/**
* Allowed Data actions.
*/
dataActions?: DataAction[];
dataActions?: KeyVaultDataAction[];
/**
* Denied Data actions.
*/
notDataActions?: DataAction[];
notDataActions?: KeyVaultDataAction[];
}

/**
* A union type representing all possible values for
* both {@link KeyVaultPermission.dataActions} and {@link KeyVaultPermission.notDataActions}.
*/
export type KeyVaultDataAction = DataAction;

/**
* A Key Vault role definition.
*/
Expand Down

0 comments on commit 6a21258

Please sign in to comment.