| | | 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.Collections.Generic; |
| | | 9 | | using Azure.Core; |
| | | 10 | | |
| | | 11 | | namespace Azure.ResourceManager.KeyVault.Models |
| | | 12 | | { |
| | | 13 | | /// <summary> One property of operation, include log specifications. </summary> |
| | | 14 | | public partial class ServiceSpecification |
| | | 15 | | { |
| | | 16 | | /// <summary> Initializes a new instance of ServiceSpecification. </summary> |
| | 0 | 17 | | internal ServiceSpecification() |
| | | 18 | | { |
| | 0 | 19 | | LogSpecifications = new ChangeTrackingList<LogSpecification>(); |
| | 0 | 20 | | } |
| | | 21 | | |
| | | 22 | | /// <summary> Initializes a new instance of ServiceSpecification. </summary> |
| | | 23 | | /// <param name="logSpecifications"> Log specifications of operation. </param> |
| | 0 | 24 | | internal ServiceSpecification(IReadOnlyList<LogSpecification> logSpecifications) |
| | | 25 | | { |
| | 0 | 26 | | LogSpecifications = logSpecifications; |
| | 0 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> Log specifications of operation. </summary> |
| | 0 | 30 | | public IReadOnlyList<LogSpecification> LogSpecifications { get; } |
| | | 31 | | } |
| | | 32 | | } |