All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.resources.OnErrorDeployment Maven / Gradle / Ivy

There is a newer version: 1.41.4
Show newest version
/**
 * 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.
 */
public class OnErrorDeployment {
    /**
     * 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.
     */
    @JsonProperty(value = "deploymentName")
    private String deploymentName;

    /**
     * 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'.
     *
     * @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.
     *
     * @return the deploymentName value
     */
    public String deploymentName() {
        return this.deploymentName;
    }

    /**
     * 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;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy