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

com.microsoft.azure.management.resources.DeploymentsWhatIfHeaders 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;

/**
 * Defines headers for WhatIf operation.
 */
public class DeploymentsWhatIfHeaders {
    /**
     * URL to get status of this long-running operation.
     */
    @JsonProperty(value = "Location")
    private String location;

    /**
     * Number of seconds to wait before polling for status.
     */
    @JsonProperty(value = "Retry-After")
    private String retryAfter;

    /**
     * Get uRL to get status of this long-running operation.
     *
     * @return the location value
     */
    public String location() {
        return this.location;
    }

    /**
     * Set uRL to get status of this long-running operation.
     *
     * @param location the location value to set
     * @return the DeploymentsWhatIfHeaders object itself.
     */
    public DeploymentsWhatIfHeaders withLocation(String location) {
        this.location = location;
        return this;
    }

    /**
     * Get number of seconds to wait before polling for status.
     *
     * @return the retryAfter value
     */
    public String retryAfter() {
        return this.retryAfter;
    }

    /**
     * Set number of seconds to wait before polling for status.
     *
     * @param retryAfter the retryAfter value to set
     * @return the DeploymentsWhatIfHeaders object itself.
     */
    public DeploymentsWhatIfHeaders withRetryAfter(String retryAfter) {
        this.retryAfter = retryAfter;
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy