| | | 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> Information from validate template deployment response. </summary> |
| | | 11 | | public partial class DeploymentValidateResult |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of DeploymentValidateResult. </summary> |
| | 0 | 14 | | internal DeploymentValidateResult() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of DeploymentValidateResult. </summary> |
| | | 19 | | /// <param name="error"> The deployment validation error. </param> |
| | | 20 | | /// <param name="properties"> The template deployment properties. </param> |
| | 28 | 21 | | internal DeploymentValidateResult(ErrorResponse error, DeploymentPropertiesExtended properties) |
| | | 22 | | { |
| | 28 | 23 | | Error = error; |
| | 28 | 24 | | Properties = properties; |
| | 28 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> The deployment validation error. </summary> |
| | 28 | 28 | | public ErrorResponse Error { get; } |
| | | 29 | | /// <summary> The template deployment properties. </summary> |
| | 56 | 30 | | public DeploymentPropertiesExtended Properties { get; } |
| | | 31 | | } |
| | | 32 | | } |