| | | 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.Resources.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> Previewed feature information. </summary> |
| | | 11 | | public partial class FeatureResult |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of FeatureResult. </summary> |
| | 0 | 14 | | internal FeatureResult() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of FeatureResult. </summary> |
| | | 19 | | /// <param name="name"> The name of the feature. </param> |
| | | 20 | | /// <param name="properties"> Properties of the previewed feature. </param> |
| | | 21 | | /// <param name="id"> The resource ID of the feature. </param> |
| | | 22 | | /// <param name="type"> The resource type of the feature. </param> |
| | 16 | 23 | | internal FeatureResult(string name, FeatureProperties properties, string id, string type) |
| | | 24 | | { |
| | 16 | 25 | | Name = name; |
| | 16 | 26 | | Properties = properties; |
| | 16 | 27 | | Id = id; |
| | 16 | 28 | | Type = type; |
| | 16 | 29 | | } |
| | | 30 | | |
| | | 31 | | /// <summary> The name of the feature. </summary> |
| | 0 | 32 | | public string Name { get; } |
| | | 33 | | /// <summary> Properties of the previewed feature. </summary> |
| | 0 | 34 | | public FeatureProperties Properties { get; } |
| | | 35 | | /// <summary> The resource ID of the feature. </summary> |
| | 0 | 36 | | public string Id { get; } |
| | | 37 | | /// <summary> The resource type of the feature. </summary> |
| | 0 | 38 | | public string Type { get; } |
| | | 39 | | } |
| | | 40 | | } |