All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.digitalocean.kotlin.outputs.GetKubernetesClusterMaintenancePolicy.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 4.35.0.0
Show newest version
@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(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy