Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.resources;
import com.fasterxml.jackson.annotation.JsonProperty;
Deployment on error behavior.
/**
* Deployment on error behavior.
*/
public class OnErrorDeployment {
The deployment on error behavior type. Possible values are
LastSuccessful and SpecificDeployment. Possible values include:
'LastSuccessful', 'SpecificDeployment'.
/**
* The deployment on error behavior type. Possible values are
* LastSuccessful and SpecificDeployment. Possible values include:
* 'LastSuccessful', 'SpecificDeployment'.
*/
@JsonProperty(value = "type")
private OnErrorDeploymentType type;
The deployment to be used on error case.
/**
* The deployment to be used on error case.
*/
@JsonProperty(value = "deploymentName")
private String deploymentName;
Get the deployment on error behavior type. Possible values are LastSuccessful and SpecificDeployment. Possible values include: 'LastSuccessful', 'SpecificDeployment'.
Returns: the type value
/**
* Get the deployment on error behavior type. Possible values are LastSuccessful and SpecificDeployment. Possible values include: 'LastSuccessful', 'SpecificDeployment'.
*
* @return the type value
*/
public OnErrorDeploymentType type() {
return this.type;
}
Set the deployment on error behavior type. Possible values are LastSuccessful and SpecificDeployment. Possible values include: 'LastSuccessful', 'SpecificDeployment'.
Params: - type – the type value to set
Returns: the OnErrorDeployment object itself.
/**
* Set the deployment on error behavior type. Possible values are LastSuccessful and SpecificDeployment. Possible values include: 'LastSuccessful', 'SpecificDeployment'.
*
* @param type the type value to set
* @return the OnErrorDeployment object itself.
*/
public OnErrorDeployment withType(OnErrorDeploymentType type) {
this.type = type;
return this;
}
Get the deployment to be used on error case.
Returns: the deploymentName value
/**
* Get the deployment to be used on error case.
*
* @return the deploymentName value
*/
public String deploymentName() {
return this.deploymentName;
}
Set the deployment to be used on error case.
Params: - deploymentName – the deploymentName value to set
Returns: the OnErrorDeployment object itself.
/**
* Set the deployment to be used on error case.
*
* @param deploymentName the deploymentName value to set
* @return the OnErrorDeployment object itself.
*/
public OnErrorDeployment withDeploymentName(String deploymentName) {
this.deploymentName = deploymentName;
return this;
}
}