| | 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.ResourceManager.Compute.Models |
| | 11 | | { |
| | 12 | | /// <summary> The managed artifact. </summary> |
| | 13 | | internal partial class ManagedArtifact |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of ManagedArtifact. </summary> |
| | 16 | | /// <param name="id"> The managed artifact id. </param> |
| 0 | 17 | | internal ManagedArtifact(string id) |
| | 18 | | { |
| 0 | 19 | | if (id == null) |
| | 20 | | { |
| 0 | 21 | | throw new ArgumentNullException(nameof(id)); |
| | 22 | | } |
| | 23 | |
|
| 0 | 24 | | Id = id; |
| 0 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> The managed artifact id. </summary> |
| 0 | 28 | | public string Id { get; } |
| | 29 | | } |
| | 30 | | } |