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

com.pulumi.googlenative.memcache.v1beta2.kotlin.outputs.WeeklyMaintenanceWindowResponse.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.memcache.v1beta2.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Time window specified for weekly operations.
 * @property day Allows to define schedule that runs specified day of the week.
 * @property duration Duration of the time window.
 * @property startTime Start time of the window in UTC.
 */
public data class WeeklyMaintenanceWindowResponse(
    public val day: String,
    public val duration: String,
    public val startTime: TimeOfDayResponse,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.memcache.v1beta2.outputs.WeeklyMaintenanceWindowResponse): WeeklyMaintenanceWindowResponse = WeeklyMaintenanceWindowResponse(
            day = javaType.day(),
            duration = javaType.duration(),
            startTime = javaType.startTime().let({ args0 ->
                com.pulumi.googlenative.memcache.v1beta2.kotlin.outputs.TimeOfDayResponse.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy