DeploymentOccurrenceArgs

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

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

Constructors

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

Functions

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

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

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.