com.pulumi.googlenative.clouddeploy.v1.kotlin.outputs.CustomCanaryDeploymentResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.clouddeploy.v1.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* CustomCanaryDeployment represents the custom canary deployment configuration.
* @property phaseConfigs Configuration for each phase in the canary deployment in the order executed.
*/
public data class CustomCanaryDeploymentResponse(
public val phaseConfigs: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.clouddeploy.v1.outputs.CustomCanaryDeploymentResponse): CustomCanaryDeploymentResponse = CustomCanaryDeploymentResponse(
phaseConfigs = javaType.phaseConfigs().map({ args0 ->
args0.let({ args0 ->
com.pulumi.googlenative.clouddeploy.v1.kotlin.outputs.PhaseConfigResponse.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy