com.pulumi.digitalocean.kotlin.outputs.GetKubernetesClusterMaintenancePolicy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-digitalocean-kotlin Show documentation
Show all versions of pulumi-digitalocean-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.digitalocean.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property day The day for the service window of the Kubernetes cluster.
* @property duration The duration of the operation.
* @property startTime The start time of the upgrade operation.
*/
public data class GetKubernetesClusterMaintenancePolicy(
public val day: String,
public val duration: String,
public val startTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.GetKubernetesClusterMaintenancePolicy): GetKubernetesClusterMaintenancePolicy = GetKubernetesClusterMaintenancePolicy(
day = javaType.day(),
duration = javaType.duration(),
startTime = javaType.startTime(),
)
}
}