DeploymentArgs

data class DeploymentArgs(val address: Output<String>? = null, val config: Output<String>? = null, val deployTime: Output<String>? = null, val platform: Output<DeploymentPlatform>? = null, val resourceUri: Output<List<String>>? = 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>? = null, platform: Output<DeploymentPlatform>? = null, resourceUri: Output<List<String>>? = 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>? = null

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 resourceUri: Output<List<String>>? = null

Resource URI for the artifact being deployed taken from the deployable field with the same name.

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.