-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
ArmDeploymentValidateResult.cs
34 lines (28 loc) · 1.18 KB
/
ArmDeploymentValidateResult.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using Azure;
namespace Azure.ResourceManager.Resources.Models
{
/// <summary> Information from validate template deployment response. </summary>
public partial class ArmDeploymentValidateResult
{
/// <summary> Initializes a new instance of ArmDeploymentValidateResult. </summary>
internal ArmDeploymentValidateResult()
{
}
/// <summary> Initializes a new instance of ArmDeploymentValidateResult. </summary>
/// <param name="error"> The deployment validation error. </param>
/// <param name="properties"> The template deployment properties. </param>
internal ArmDeploymentValidateResult(ResponseError error, ArmDeploymentPropertiesExtended properties)
{
Error = error;
Properties = properties;
}
/// <summary> The deployment validation error. </summary>
public ResponseError Error { get; }
/// <summary> The template deployment properties. </summary>
public ArmDeploymentPropertiesExtended Properties { get; }
}
}