StackMinorVersion Class

  • java.lang.Object
    • com.azure.resourcemanager.appservice.models.StackMinorVersion

Implements

public final class StackMinorVersion
implements JsonSerializable<StackMinorVersion>

Application stack minor version.

Constructor Summary

Constructor Description
StackMinorVersion()

Creates an instance of StackMinorVersion class.

Method Summary

Modifier and Type Method and Description
String displayVersion()

Get the displayVersion property: Application stack minor version (display only).

static StackMinorVersion fromJson(JsonReader jsonReader)

Reads an instance of StackMinorVersion from the JsonReader.

Boolean isDefault()

Get the isDefault property: true if this is the default minor version; otherwise, false.

Boolean isRemoteDebuggingEnabled()

Get the isRemoteDebuggingEnabled property: true if this supports Remote Debugging, otherwise false.

String runtimeVersion()

Get the runtimeVersion property: Application stack minor version (runtime only).

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

StackMinorVersion withDisplayVersion(String displayVersion)

Set the displayVersion property: Application stack minor version (display only).

StackMinorVersion withIsDefault(Boolean isDefault)

Set the isDefault property: true if this is the default minor version; otherwise, false.

StackMinorVersion withIsRemoteDebuggingEnabled(Boolean isRemoteDebuggingEnabled)

Set the isRemoteDebuggingEnabled property: true if this supports Remote Debugging, otherwise false.

StackMinorVersion withRuntimeVersion(String runtimeVersion)

Set the runtimeVersion property: Application stack minor version (runtime only).

Methods inherited from java.lang.Object

Constructor Details

StackMinorVersion

public StackMinorVersion()

Creates an instance of StackMinorVersion class.

Method Details

displayVersion

public String displayVersion()

Get the displayVersion property: Application stack minor version (display only).

Returns:

the displayVersion value.

fromJson

public static StackMinorVersion fromJson(JsonReader jsonReader)

Reads an instance of StackMinorVersion from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of StackMinorVersion if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If an error occurs while reading the StackMinorVersion.

isDefault

public Boolean isDefault()

Get the isDefault property: true if this is the default minor version; otherwise, false.

Returns:

the isDefault value.

isRemoteDebuggingEnabled

public Boolean isRemoteDebuggingEnabled()

Get the isRemoteDebuggingEnabled property: true if this supports Remote Debugging, otherwise false.

Returns:

the isRemoteDebuggingEnabled value.

runtimeVersion

public String runtimeVersion()

Get the runtimeVersion property: Application stack minor version (runtime only).

Returns:

the runtimeVersion value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

withDisplayVersion

public StackMinorVersion withDisplayVersion(String displayVersion)

Set the displayVersion property: Application stack minor version (display only).

Parameters:

displayVersion - the displayVersion value to set.

Returns:

the StackMinorVersion object itself.

withIsDefault

public StackMinorVersion withIsDefault(Boolean isDefault)

Set the isDefault property: true if this is the default minor version; otherwise, false.

Parameters:

isDefault - the isDefault value to set.

Returns:

the StackMinorVersion object itself.

withIsRemoteDebuggingEnabled

public StackMinorVersion withIsRemoteDebuggingEnabled(Boolean isRemoteDebuggingEnabled)

Set the isRemoteDebuggingEnabled property: true if this supports Remote Debugging, otherwise false.

Parameters:

isRemoteDebuggingEnabled - the isRemoteDebuggingEnabled value to set.

Returns:

the StackMinorVersion object itself.

withRuntimeVersion

public StackMinorVersion withRuntimeVersion(String runtimeVersion)

Set the runtimeVersion property: Application stack minor version (runtime only).

Parameters:

runtimeVersion - the runtimeVersion value to set.

Returns:

the StackMinorVersion object itself.

Applies to