DeploymentSettingsArgs

data class DeploymentSettingsArgs(val cpu: Output<Int>? = null, val environmentVariables: Output<Map<String, String>>? = null, val jvmOptions: Output<String>? = null, val memoryInGB: Output<Int>? = null, val netCoreMainEntryPath: Output<String>? = null, val runtimeVersion: Output<Either<String, RuntimeVersion>>? = null) : ConvertibleToJava<DeploymentSettingsArgs>

Deployment settings payload

Constructors

Link copied to clipboard
constructor(cpu: Output<Int>? = null, environmentVariables: Output<Map<String, String>>? = null, jvmOptions: Output<String>? = null, memoryInGB: Output<Int>? = null, netCoreMainEntryPath: Output<String>? = null, runtimeVersion: Output<Either<String, RuntimeVersion>>? = null)

Properties

Link copied to clipboard
val cpu: Output<Int>? = null

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

Link copied to clipboard
val environmentVariables: Output<Map<String, String>>? = null

Collection of environment variables

Link copied to clipboard
val jvmOptions: Output<String>? = null

JVM parameter

Link copied to clipboard
val memoryInGB: Output<Int>? = null

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

Link copied to clipboard
val netCoreMainEntryPath: Output<String>? = null

The path to the .NET executable relative to zip root

Link copied to clipboard
val runtimeVersion: Output<Either<String, RuntimeVersion>>? = null

Runtime version

Functions

Link copied to clipboard
open override fun toJava(): DeploymentSettingsArgs