Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for create, update, and delete for custom role definitions #18227

Merged
merged 14 commits into from
Jan 29, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## 4.0.0-beta.4 (Unreleased)

### Added

- Support in `KeyVaultAccessControlClient` to create, update, and delete custom role definitions.

## 4.0.0-beta.3 (2020-11-12)

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using System;
using Azure.Core;

namespace Azure.Security.KeyVault.Administration.Models
{
[CodeGenModel("DataAction")]
public readonly partial struct KeyVaultDataAction : IEquatable<KeyVaultDataAction>
{ }
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading