你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

RuntimeStack Class

  • java.lang.Object
    • com.microsoft.azure.management.appservice.RuntimeStack

public class RuntimeStack

Defines App service pricing tiers.

Field Summary

Modifier and Type Field and Description
final RuntimeStack NETCORE_V1_0

.NET Core v1.0.

final RuntimeStack NETCORE_V1_1

.NET Core v1.1.

final RuntimeStack NODEJS_4_4

Node.JS 4.4.

final RuntimeStack NODEJS_4_5

Node.JS 4.5.

final RuntimeStack NODEJS_6_10

Node.JS 6.10.

final RuntimeStack NODEJS_6_2

Node.JS 6.2.

final RuntimeStack NODEJS_6_6

Node.JS 6.6.

final RuntimeStack NODEJS_6_9

Node.JS 6.9.

final RuntimeStack PHP_5_6

PHP 5.6.

final RuntimeStack PHP_7_0

PHP 7.0.

final RuntimeStack RUBY_2_3

Ruby 2.3.

Constructor Summary

Constructor Description
RuntimeStack(String stack, String version)

Creates a custom app service pricing tier.

Method Summary

Modifier and Type Method and Description
boolean equals(Object obj)
int hashCode()
String stack()
String toString()
String version()

Field Details

NETCORE_V1_0

public static final RuntimeStack NETCORE_V1_0= new RuntimeStack("DOTNETCORE", "1.0")

.NET Core v1.0.

NETCORE_V1_1

public static final RuntimeStack NETCORE_V1_1= new RuntimeStack("DOTNETCORE", "1.1")

.NET Core v1.1.

NODEJS_4_4

public static final RuntimeStack NODEJS_4_4= new RuntimeStack("NODE", "4.4")

Node.JS 4.4.

NODEJS_4_5

public static final RuntimeStack NODEJS_4_5= new RuntimeStack("NODE", "4.5")

Node.JS 4.5.

NODEJS_6_10

public static final RuntimeStack NODEJS_6_10= new RuntimeStack("NODE", "6.10")

Node.JS 6.10.

NODEJS_6_2

public static final RuntimeStack NODEJS_6_2= new RuntimeStack("NODE", "6.2")

Node.JS 6.2.

NODEJS_6_6

public static final RuntimeStack NODEJS_6_6= new RuntimeStack("NODE", "6.6")

Node.JS 6.6.

NODEJS_6_9

public static final RuntimeStack NODEJS_6_9= new RuntimeStack("NODE", "6.9")

Node.JS 6.9.

PHP_5_6

public static final RuntimeStack PHP_5_6= new RuntimeStack("PHP", "5.6")

PHP 5.6.

PHP_7_0

public static final RuntimeStack PHP_7_0= new RuntimeStack("PHP", "7.0")

PHP 7.0.

RUBY_2_3

public static final RuntimeStack RUBY_2_3= new RuntimeStack("RUBY", "2.3")

Ruby 2.3.

Constructor Details

RuntimeStack

public RuntimeStack(String stack, String version)

Creates a custom app service pricing tier.

Parameters:

stack - the name of the language stack
version - the version of the runtime

Method Details

equals

public boolean equals(Object obj)

Parameters:

obj

hashCode

public int hashCode()

stack

public String stack()

Returns:

the name of the language runtime stack

toString

public String toString()

version

public String version()

Returns:

the version of the runtime stack

Applies to