| | | 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 definition of a configuration store operation. </summary> |
| | | 11 | | public partial class OperationDefinition |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of OperationDefinition. </summary> |
| | 0 | 14 | | internal OperationDefinition() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of OperationDefinition. </summary> |
| | | 19 | | /// <param name="name"> Operation name: {provider}/{resource}/{operation}. </param> |
| | | 20 | | /// <param name="display"> The display information for the configuration store operation. </param> |
| | 112 | 21 | | internal OperationDefinition(string name, OperationDefinitionDisplay display) |
| | | 22 | | { |
| | 112 | 23 | | Name = name; |
| | 112 | 24 | | Display = display; |
| | 112 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> Operation name: {provider}/{resource}/{operation}. </summary> |
| | 0 | 28 | | public string Name { get; } |
| | | 29 | | /// <summary> The display information for the configuration store operation. </summary> |
| | 0 | 30 | | public OperationDefinitionDisplay Display { get; } |
| | | 31 | | } |
| | | 32 | | } |