| | 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> Deployment on error behavior with additional details. </summary> |
| | 11 | | public partial class OnErrorDeploymentExtended |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of OnErrorDeploymentExtended. </summary> |
| 0 | 14 | | internal OnErrorDeploymentExtended() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of OnErrorDeploymentExtended. </summary> |
| | 19 | | /// <param name="provisioningState"> The state of the provisioning for the on error deployment. </param> |
| | 20 | | /// <param name="type"> The deployment on error behavior type. Possible values are LastSuccessful and SpecificDe |
| | 21 | | /// <param name="deploymentName"> The deployment to be used on error case. </param> |
| 0 | 22 | | internal OnErrorDeploymentExtended(string provisioningState, OnErrorDeploymentType? type, string deploymentName) |
| | 23 | | { |
| 0 | 24 | | ProvisioningState = provisioningState; |
| 0 | 25 | | Type = type; |
| 0 | 26 | | DeploymentName = deploymentName; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> The state of the provisioning for the on error deployment. </summary> |
| 0 | 30 | | public string ProvisioningState { get; } |
| | 31 | | /// <summary> The deployment on error behavior type. Possible values are LastSuccessful and SpecificDeployment. |
| 0 | 32 | | public OnErrorDeploymentType? Type { get; } |
| | 33 | | /// <summary> The deployment to be used on error case. </summary> |
| 0 | 34 | | public string DeploymentName { get; } |
| | 35 | | } |
| | 36 | | } |