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

com.pulumi.gcp.redis.kotlin.outputs.GetInstanceMaintenanceSchedule.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: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.redis.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property endTime Output only. The end time of any upcoming scheduled maintenance for this instance.
 * A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
 * resolution and up to nine fractional digits.
 * @property scheduleDeadlineTime Output only. The deadline that the maintenance schedule start time
 * can not go beyond, including reschedule.
 * A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
 * resolution and up to nine fractional digits.
 * @property startTime Output only. The start time of any upcoming scheduled maintenance for this instance.
 * A timestamp in RFC3339 UTC "Zulu" format, with nanosecond
 * resolution and up to nine fractional digits.
 */
public data class GetInstanceMaintenanceSchedule(
    public val endTime: String,
    public val scheduleDeadlineTime: String,
    public val startTime: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.redis.outputs.GetInstanceMaintenanceSchedule): GetInstanceMaintenanceSchedule = GetInstanceMaintenanceSchedule(
            endTime = javaType.endTime(),
            scheduleDeadlineTime = javaType.scheduleDeadlineTime(),
            startTime = javaType.startTime(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy