DeploymentSettings Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
Azure SDK for .NET