| | | 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> Description of logging specification. </summary> |
| | | 11 | | public partial class LogSpecification |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of LogSpecification. </summary> |
| | 0 | 14 | | internal LogSpecification() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of LogSpecification. </summary> |
| | | 19 | | /// <param name="name"> The name of the specification. </param> |
| | | 20 | | /// <param name="displayName"> The display name of the specification. </param> |
| | | 21 | | /// <param name="blobDuration"> Duration of the blob. </param> |
| | 0 | 22 | | internal LogSpecification(string name, string displayName, string blobDuration) |
| | | 23 | | { |
| | 0 | 24 | | Name = name; |
| | 0 | 25 | | DisplayName = displayName; |
| | 0 | 26 | | BlobDuration = blobDuration; |
| | 0 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> The name of the specification. </summary> |
| | 0 | 30 | | public string Name { get; } |
| | | 31 | | /// <summary> The display name of the specification. </summary> |
| | 0 | 32 | | public string DisplayName { get; } |
| | | 33 | | /// <summary> Duration of the blob. </summary> |
| | 0 | 34 | | public string BlobDuration { get; } |
| | | 35 | | } |
| | | 36 | | } |