| | 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.AppConfiguration.Models |
| | 9 | | { |
| | 10 | | /// <summary> The display information for a configuration store operation. </summary> |
| | 11 | | public partial class OperationDefinitionDisplay |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of OperationDefinitionDisplay. </summary> |
| 0 | 14 | | internal OperationDefinitionDisplay() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of OperationDefinitionDisplay. </summary> |
| | 19 | | /// <param name="provider"> The resource provider name: Microsoft App Configuration.". </param> |
| | 20 | | /// <param name="resource"> The resource on which the operation is performed. </param> |
| | 21 | | /// <param name="operation"> The operation that users can perform. </param> |
| | 22 | | /// <param name="description"> The description for the operation. </param> |
| 112 | 23 | | internal OperationDefinitionDisplay(string provider, string resource, string operation, string description) |
| | 24 | | { |
| 112 | 25 | | Provider = provider; |
| 112 | 26 | | Resource = resource; |
| 112 | 27 | | Operation = operation; |
| 112 | 28 | | Description = description; |
| 112 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> The resource provider name: Microsoft App Configuration.". </summary> |
| 0 | 32 | | public string Provider { get; } |
| | 33 | | /// <summary> The resource on which the operation is performed. </summary> |
| 0 | 34 | | public string Resource { get; } |
| | 35 | | /// <summary> The operation that users can perform. </summary> |
| 0 | 36 | | public string Operation { get; } |
| | 37 | | /// <summary> The description for the operation. </summary> |
| 0 | 38 | | public string Description { get; } |
| | 39 | | } |
| | 40 | | } |