com.pulumi.googlenative.deploymentmanager.v2beta.kotlin.outputs.DeploymentUpdateResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.deploymentmanager.v2beta.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property description An optional user-provided description of the deployment after the current update has been applied.
* @property labels Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression: `[a-z]([-a-z0-9]*[a-z0-9])?` Label values must be between 0 and 63 characters long and must conform to the regular expression `([a-z]([-a-z0-9]*[a-z0-9])?)?`.
* @property manifest URL of the manifest representing the update configuration of this deployment.
*/
public data class DeploymentUpdateResponse(
public val description: String,
public val labels: List,
public val manifest: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.deploymentmanager.v2beta.outputs.DeploymentUpdateResponse): DeploymentUpdateResponse = DeploymentUpdateResponse(
description = javaType.description(),
labels = javaType.labels().map({ args0 ->
args0.let({ args0 ->
com.pulumi.googlenative.deploymentmanager.v2beta.kotlin.outputs.DeploymentUpdateLabelEntryResponse.Companion.toKotlin(args0)
})
}),
manifest = javaType.manifest(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy