Class StackMinorVersion
- java.lang.Object
-
- com.microsoft.azure.management.appservice.StackMinorVersion
-
public class StackMinorVersion extends Object
Application stack minor version.
-
-
Constructor Summary
Constructors Constructor Description StackMinorVersion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringdisplayVersion()Get application stack minor version (display only).BooleanisDefault()Get <code>true</code> if this is the default minor version; otherwise, <code>false</code>.BooleanisRemoteDebuggingEnabled()Get <code>true</code> if this supports Remote Debugging, otherwise <code>false</code>.StringruntimeVersion()Get application stack minor version (runtime only).StackMinorVersionwithDisplayVersion(String displayVersion)Set application stack minor version (display only).StackMinorVersionwithIsDefault(Boolean isDefault)Set <code>true</code> if this is the default minor version; otherwise, <code>false</code>.StackMinorVersionwithIsRemoteDebuggingEnabled(Boolean isRemoteDebuggingEnabled)Set <code>true</code> if this supports Remote Debugging, otherwise <code>false</code>.StackMinorVersionwithRuntimeVersion(String runtimeVersion)Set application stack minor version (runtime only).
-
-
-
Method Detail
-
displayVersion
public String displayVersion()
Get application stack minor version (display only).- Returns:
- the displayVersion value
-
withDisplayVersion
public StackMinorVersion withDisplayVersion(String displayVersion)
Set application stack minor version (display only).- Parameters:
displayVersion- the displayVersion value to set- Returns:
- the StackMinorVersion object itself.
-
runtimeVersion
public String runtimeVersion()
Get application stack minor version (runtime only).- Returns:
- the runtimeVersion value
-
withRuntimeVersion
public StackMinorVersion withRuntimeVersion(String runtimeVersion)
Set application stack minor version (runtime only).- Parameters:
runtimeVersion- the runtimeVersion value to set- Returns:
- the StackMinorVersion object itself.
-
isDefault
public Boolean isDefault()
Get <code>true</code> if this is the default minor version; otherwise, <code>false</code>.- Returns:
- the isDefault value
-
withIsDefault
public StackMinorVersion withIsDefault(Boolean isDefault)
Set <code>true</code> if this is the default minor version; otherwise, <code>false</code>.- Parameters:
isDefault- the isDefault value to set- Returns:
- the StackMinorVersion object itself.
-
isRemoteDebuggingEnabled
public Boolean isRemoteDebuggingEnabled()
Get <code>true</code> if this supports Remote Debugging, otherwise <code>false</code>.- Returns:
- the isRemoteDebuggingEnabled value
-
withIsRemoteDebuggingEnabled
public StackMinorVersion withIsRemoteDebuggingEnabled(Boolean isRemoteDebuggingEnabled)
Set <code>true</code> if this supports Remote Debugging, otherwise <code>false</code>.- Parameters:
isRemoteDebuggingEnabled- the isRemoteDebuggingEnabled value to set- Returns:
- the StackMinorVersion object itself.
-
-