| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | using System; |
| | | 9 | | |
| | | 10 | | namespace Azure.Security.KeyVault.Administration.Models |
| | | 11 | | { |
| | | 12 | | /// <summary> Role assignment create parameters. </summary> |
| | | 13 | | internal partial class RoleAssignmentCreateParameters |
| | | 14 | | { |
| | | 15 | | /// <summary> Initializes a new instance of RoleAssignmentCreateParameters. </summary> |
| | | 16 | | /// <param name="properties"> Role assignment properties. </param> |
| | | 17 | | /// <exception cref="ArgumentNullException"> <paramref name="properties"/> is null. </exception> |
| | 26 | 18 | | public RoleAssignmentCreateParameters(RoleAssignmentProperties properties) |
| | | 19 | | { |
| | 26 | 20 | | if (properties == null) |
| | | 21 | | { |
| | 0 | 22 | | throw new ArgumentNullException(nameof(properties)); |
| | | 23 | | } |
| | | 24 | | |
| | 26 | 25 | | Properties = properties; |
| | 26 | 26 | | } |
| | | 27 | | |
| | | 28 | | /// <summary> Role assignment properties. </summary> |
| | 26 | 29 | | public RoleAssignmentProperties Properties { get; } |
| | | 30 | | } |
| | | 31 | | } |