| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.ResourceManager.Network.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> Dimension of the metric. </summary> |
| | | 11 | | public partial class Dimension |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of Dimension. </summary> |
| | 0 | 14 | | internal Dimension() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of Dimension. </summary> |
| | | 19 | | /// <param name="name"> The name of the dimension. </param> |
| | | 20 | | /// <param name="displayName"> The display name of the dimension. </param> |
| | | 21 | | /// <param name="internalName"> The internal name of the dimension. </param> |
| | 0 | 22 | | internal Dimension(string name, string displayName, string internalName) |
| | | 23 | | { |
| | 0 | 24 | | Name = name; |
| | 0 | 25 | | DisplayName = displayName; |
| | 0 | 26 | | InternalName = internalName; |
| | 0 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> The name of the dimension. </summary> |
| | 0 | 30 | | public string Name { get; } |
| | | 31 | | /// <summary> The display name of the dimension. </summary> |
| | 0 | 32 | | public string DisplayName { get; } |
| | | 33 | | /// <summary> The internal name of the dimension. </summary> |
| | 0 | 34 | | public string InternalName { get; } |
| | | 35 | | } |
| | | 36 | | } |