DeploymentArgs

data class DeploymentArgs(val address: Output<String>? = null, val config: Output<String>? = null, val deployTime: Output<String>, val platform: Output<DeploymentPlatform>? = null, val undeployTime: Output<String>? = null, val userEmail: Output<String>? = null) : ConvertibleToJava<DeploymentArgs>

The period during which some deployable was active in a runtime.

Constructors

Link copied to clipboard
fun DeploymentArgs(address: Output<String>? = null, config: Output<String>? = null, deployTime: Output<String>, platform: Output<DeploymentPlatform>? = null, undeployTime: Output<String>? = null, userEmail: Output<String>? = null)

Functions

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

Properties

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

Address of the runtime element hosting this deployment.

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

Configuration used to create this deployment.

Link copied to clipboard
val deployTime: Output<String>

Beginning of the lifetime of this deployment.

Link copied to clipboard
val platform: Output<DeploymentPlatform>? = null

Platform hosting this deployment.

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

End of the lifetime of this deployment.

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

Identity of the user that triggered this deployment.