DeploymentSettings Constructors

Definition

Overloads

DeploymentSettings()

Initializes a new instance of the DeploymentSettings class.

DeploymentSettings(Nullable<Int32>, Nullable<Int32>, String, IDictionary<String,String>, String)

Initializes a new instance of the DeploymentSettings class.

DeploymentSettings()

Initializes a new instance of the DeploymentSettings class.

public DeploymentSettings ();
Public Sub New ()

Applies to

DeploymentSettings(Nullable<Int32>, Nullable<Int32>, String, IDictionary<String,String>, String)

Initializes a new instance of the DeploymentSettings class.

public DeploymentSettings (int? cpu = default, int? memoryInGB = default, string jvmOptions = default, System.Collections.Generic.IDictionary<string,string> environmentVariables = default, string runtimeVersion = default);
new Microsoft.Azure.Management.AppPlatform.Models.DeploymentSettings : Nullable<int> * Nullable<int> * string * System.Collections.Generic.IDictionary<string, string> * string -> Microsoft.Azure.Management.AppPlatform.Models.DeploymentSettings
Public Sub New (Optional cpu As Nullable(Of Integer) = Nothing, Optional memoryInGB As Nullable(Of Integer) = Nothing, Optional jvmOptions As String = Nothing, Optional environmentVariables As IDictionary(Of String, String) = Nothing, Optional runtimeVersion As String = Nothing)

Parameters

cpu
Nullable<Int32>

Required CPU, basic tier should be 1, standard tier should be in range (1, 4)

memoryInGB
Nullable<Int32>

Required Memory size in GB, basic tier should be in range (1, 2), standard tier should be in range (1, 8)

jvmOptions
String

JVM parameter

environmentVariables
IDictionary<String,String>

Collection of environment variables

runtimeVersion
String

Runtime version. Possible values include: 'Java_8', 'Java_11'

Applies to