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;
Application stack minor version.
/**
* Application stack minor version.
*/
public class StackMinorVersion {
Application stack minor version (display only).
/**
* Application stack minor version (display only).
*/
@JsonProperty(value = "displayVersion")
private String displayVersion;
Application stack minor version (runtime only).
/**
* Application stack minor version (runtime only).
*/
@JsonProperty(value = "runtimeVersion")
private String runtimeVersion;
<code>true</code> if this is the default minor version;
otherwise, <code>false</code>.
/**
* <code>true</code> if this is the default minor version;
* otherwise, <code>false</code>.
*/
@JsonProperty(value = "isDefault")
private Boolean isDefault;
<code>true</code> if this supports Remote Debugging,
otherwise <code>false</code>.
/**
* <code>true</code> if this supports Remote Debugging,
* otherwise <code>false</code>.
*/
@JsonProperty(value = "isRemoteDebuggingEnabled")
private Boolean isRemoteDebuggingEnabled;
Get application stack minor version (display only).
Returns: the displayVersion value
/**
* Get application stack minor version (display only).
*
* @return the displayVersion value
*/
public String displayVersion() {
return this.displayVersion;
}
Set application stack minor version (display only).
Params: - displayVersion – the displayVersion value to set
Returns: the StackMinorVersion object itself.
/**
* Set application stack minor version (display only).
*
* @param displayVersion the displayVersion value to set
* @return the StackMinorVersion object itself.
*/
public StackMinorVersion withDisplayVersion(String displayVersion) {
this.displayVersion = displayVersion;
return this;
}
Get application stack minor version (runtime only).
Returns: the runtimeVersion value
/**
* Get application stack minor version (runtime only).
*
* @return the runtimeVersion value
*/
public String runtimeVersion() {
return this.runtimeVersion;
}
Set application stack minor version (runtime only).
Params: - runtimeVersion – the runtimeVersion value to set
Returns: the StackMinorVersion object itself.
/**
* Set application stack minor version (runtime only).
*
* @param runtimeVersion the runtimeVersion value to set
* @return the StackMinorVersion object itself.
*/
public StackMinorVersion withRuntimeVersion(String runtimeVersion) {
this.runtimeVersion = runtimeVersion;
return this;
}
Get <code>true</code> if this is the default minor version; otherwise, <code>false</code>.
Returns: the isDefault value
/**
* Get <code>true</code> if this is the default minor version; otherwise, <code>false</code>.
*
* @return the isDefault value
*/
public Boolean isDefault() {
return this.isDefault;
}
Set <code>true</code> if this is the default minor version; otherwise, <code>false</code>.
Params: - isDefault – the isDefault value to set
Returns: the StackMinorVersion object itself.
/**
* Set <code>true</code> if this is the default minor version; otherwise, <code>false</code>.
*
* @param isDefault the isDefault value to set
* @return the StackMinorVersion object itself.
*/
public StackMinorVersion withIsDefault(Boolean isDefault) {
this.isDefault = isDefault;
return this;
}
Get <code>true</code> if this supports Remote Debugging, otherwise <code>false</code>.
Returns: the isRemoteDebuggingEnabled value
/**
* Get <code>true</code> if this supports Remote Debugging, otherwise <code>false</code>.
*
* @return the isRemoteDebuggingEnabled value
*/
public Boolean isRemoteDebuggingEnabled() {
return this.isRemoteDebuggingEnabled;
}
Set <code>true</code> if this supports Remote Debugging, otherwise <code>false</code>.
Params: - isRemoteDebuggingEnabled – the isRemoteDebuggingEnabled value to set
Returns: the StackMinorVersion object itself.
/**
* Set <code>true</code> if this supports Remote Debugging, otherwise <code>false</code>.
*
* @param isRemoteDebuggingEnabled the isRemoteDebuggingEnabled value to set
* @return the StackMinorVersion object itself.
*/
public StackMinorVersion withIsRemoteDebuggingEnabled(Boolean isRemoteDebuggingEnabled) {
this.isRemoteDebuggingEnabled = isRemoteDebuggingEnabled;
return this;
}
}