| | | 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> Result of the request to calculate template hash. It contains a string of minified template and its ha |
| | | 11 | | public partial class TemplateHashResult |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of TemplateHashResult. </summary> |
| | 0 | 14 | | internal TemplateHashResult() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of TemplateHashResult. </summary> |
| | | 19 | | /// <param name="minifiedTemplate"> The minified template string. </param> |
| | | 20 | | /// <param name="templateHash"> The template hash. </param> |
| | 0 | 21 | | internal TemplateHashResult(string minifiedTemplate, string templateHash) |
| | | 22 | | { |
| | 0 | 23 | | MinifiedTemplate = minifiedTemplate; |
| | 0 | 24 | | TemplateHash = templateHash; |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> The minified template string. </summary> |
| | 0 | 28 | | public string MinifiedTemplate { get; } |
| | | 29 | | /// <summary> The template hash. </summary> |
| | 0 | 30 | | public string TemplateHash { get; } |
| | | 31 | | } |
| | | 32 | | } |