com.pulumi.gcp.composer.kotlin.outputs.GetEnvironmentConfigMaintenanceWindow.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.composer.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property endTime Maintenance window end time. It is used only to calculate the duration of the maintenance window. The value for end-time must be in the future, relative to 'start_time'.
* @property recurrence Maintenance window recurrence. Format is a subset of RFC-5545 (https://tools.ietf.org/html/rfc5545) 'RRULE'. The only allowed values for 'FREQ' field are 'FREQ=DAILY' and 'FREQ=WEEKLY;BYDAY=...'. Example values: 'FREQ=WEEKLY;BYDAY=TU,WE', 'FREQ=DAILY'.
* @property startTime Start time of the first recurrence of the maintenance window.
*/
public data class GetEnvironmentConfigMaintenanceWindow(
public val endTime: String,
public val recurrence: String,
public val startTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.composer.outputs.GetEnvironmentConfigMaintenanceWindow): GetEnvironmentConfigMaintenanceWindow = GetEnvironmentConfigMaintenanceWindow(
endTime = javaType.endTime(),
recurrence = javaType.recurrence(),
startTime = javaType.startTime(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy