com.microsoft.azure.management.resources.implementation.DeploymentInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-resources Show documentation
Show all versions of azure-mgmt-resources Show documentation
This package contains Microsoft Azure Resource Management SDK.
/**
* 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.implementation;
import com.microsoft.azure.management.resources.DeploymentProperties;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Deployment operation parameters.
*/
public class DeploymentInner {
/**
* The location to store the deployment data.
*/
@JsonProperty(value = "location")
private String location;
/**
* The deployment properties.
*/
@JsonProperty(value = "properties", required = true)
private DeploymentProperties properties;
/**
* Deployment tags.
*/
@JsonProperty(value = "tags")
private Map tags;
/**
* Get the location to store the deployment data.
*
* @return the location value
*/
public String location() {
return this.location;
}
/**
* Set the location to store the deployment data.
*
* @param location the location value to set
* @return the DeploymentInner object itself.
*/
public DeploymentInner withLocation(String location) {
this.location = location;
return this;
}
/**
* Get the deployment properties.
*
* @return the properties value
*/
public DeploymentProperties properties() {
return this.properties;
}
/**
* Set the deployment properties.
*
* @param properties the properties value to set
* @return the DeploymentInner object itself.
*/
public DeploymentInner withProperties(DeploymentProperties properties) {
this.properties = properties;
return this;
}
/**
* Get deployment tags.
*
* @return the tags value
*/
public Map tags() {
return this.tags;
}
/**
* Set deployment tags.
*
* @param tags the tags value to set
* @return the DeploymentInner object itself.
*/
public DeploymentInner withTags(Map tags) {
this.tags = tags;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy