| | 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> Result of the request to list Storage operations. It contains a list of operations and a URL link to g |
| | 14 | | public partial class OperationListResult |
| | 15 | | { |
| | 16 | | /// <summary> Initializes a new instance of OperationListResult. </summary> |
| 0 | 17 | | internal OperationListResult() |
| | 18 | | { |
| 0 | 19 | | Value = new ChangeTrackingList<Operation>(); |
| 0 | 20 | | } |
| | 21 | |
|
| | 22 | | /// <summary> Initializes a new instance of OperationListResult. </summary> |
| | 23 | | /// <param name="value"> List of Storage operations supported by the Storage resource provider. </param> |
| | 24 | | /// <param name="nextLink"> The URL to get the next set of operations. </param> |
| 0 | 25 | | internal OperationListResult(IReadOnlyList<Operation> value, string nextLink) |
| | 26 | | { |
| 0 | 27 | | Value = value; |
| 0 | 28 | | NextLink = nextLink; |
| 0 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> List of Storage operations supported by the Storage resource provider. </summary> |
| 0 | 32 | | public IReadOnlyList<Operation> Value { get; } |
| | 33 | | /// <summary> The URL to get the next set of operations. </summary> |
| 0 | 34 | | public string NextLink { get; } |
| | 35 | | } |
| | 36 | | } |