DeploymentsWhatIfAtManagementGroupScopeHeaders.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.resources.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The DeploymentsWhatIfAtManagementGroupScopeHeaders model. */
@Fluent
public final class DeploymentsWhatIfAtManagementGroupScopeHeaders {
@JsonIgnore
private final ClientLogger logger = new ClientLogger(DeploymentsWhatIfAtManagementGroupScopeHeaders.class);
/*
* The Retry-After property.
*/
@JsonProperty(value = "Retry-After")
private String retryAfter;
/*
* The Location property.
*/
@JsonProperty(value = "Location")
private String location;
/**
* Get the retryAfter property: The Retry-After property.
*
* @return the retryAfter value.
*/
public String retryAfter() {
return this.retryAfter;
}
/**
* Set the retryAfter property: The Retry-After property.
*
* @param retryAfter the retryAfter value to set.
* @return the DeploymentsWhatIfAtManagementGroupScopeHeaders object itself.
*/
public DeploymentsWhatIfAtManagementGroupScopeHeaders withRetryAfter(String retryAfter) {
this.retryAfter = retryAfter;
return this;
}
/**
* Get the location property: The Location property.
*
* @return the location value.
*/
public String location() {
return this.location;
}
/**
* Set the location property: The Location property.
*
* @param location the location value to set.
* @return the DeploymentsWhatIfAtManagementGroupScopeHeaders object itself.
*/
public DeploymentsWhatIfAtManagementGroupScopeHeaders withLocation(String location) {
this.location = location;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}