RuntimeStack Class
- java.
lang. Object - com.
microsoft. azure. management. appservice. RuntimeStack
- com.
public class RuntimeStack
Defines App service pricing tiers.
Field Summary
Modifier and Type | Field and Description |
---|---|
final Runtime |
NETCORE_V1_0
.NET Core v1.0. |
final Runtime |
NETCORE_V1_1
.NET Core v1.1. |
final Runtime |
NODEJS_4_4
Node.JS 4.4. |
final Runtime |
NODEJS_4_5
Node.JS 4.5. |
final Runtime |
NODEJS_6_10
Node.JS 6.10. |
final Runtime |
NODEJS_6_2
Node.JS 6.2. |
final Runtime |
NODEJS_6_6
Node.JS 6.6. |
final Runtime |
NODEJS_6_9
Node.JS 6.9. |
final Runtime |
PHP_5_6
PHP 5.6. |
final Runtime |
PHP_7_0
PHP 7.0. |
final Runtime |
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:
Method Details
equals
public boolean equals(Object obj)
Parameters:
hashCode
public int hashCode()
stack
public String stack()
Returns:
toString
public String toString()
version
public String version()
Returns:
Applies to
Azure SDK for Java