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.appservice; import com.fasterxml.jackson.annotation.JsonProperty;
Information needed to create resources on an App Service Environment.
/** * Information needed to create resources on an App Service Environment. */
public class HostingEnvironmentDeploymentInfo {
Name of the App Service Environment.
/** * Name of the App Service Environment. */
@JsonProperty(value = "name") private String name;
Location of the App Service Environment.
/** * Location of the App Service Environment. */
@JsonProperty(value = "location") private String location;
Get name of the App Service Environment.
Returns:the name value
/** * Get name of the App Service Environment. * * @return the name value */
public String name() { return this.name; }
Set name of the App Service Environment.
Params:
  • name – the name value to set
Returns:the HostingEnvironmentDeploymentInfo object itself.
/** * Set name of the App Service Environment. * * @param name the name value to set * @return the HostingEnvironmentDeploymentInfo object itself. */
public HostingEnvironmentDeploymentInfo withName(String name) { this.name = name; return this; }
Get location of the App Service Environment.
Returns:the location value
/** * Get location of the App Service Environment. * * @return the location value */
public String location() { return this.location; }
Set location of the App Service Environment.
Params:
  • location – the location value to set
Returns:the HostingEnvironmentDeploymentInfo object itself.
/** * Set location of the App Service Environment. * * @param location the location value to set * @return the HostingEnvironmentDeploymentInfo object itself. */
public HostingEnvironmentDeploymentInfo withLocation(String location) { this.location = location; return this; } }