
com.pulumi.gcp.sql.kotlin.outputs.DatabaseInstanceSettingsDenyMaintenancePeriod.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.sql.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property endDate "deny maintenance period" end date. If the year of the end date is empty, the year of the start date also must be empty. In this case, it means the no maintenance interval recurs every year. The date is in format yyyy-m-dd (the month is without leading zeros)i.e., 2020-1-01, or 2020-11-01, or mm-dd, i.e., 11-01
* @property startDate "deny maintenance period" start date. If the year of the start date is empty, the year of the end date also must be empty. In this case, it means the deny maintenance period recurs every year. The date is in format yyyy-m-dd (the month is without leading zeros)i.e., 2020-1-01, or 2020-11-01, or mm-dd, i.e., 11-01
* @property time Time in UTC when the "deny maintenance period" starts on startDate and ends on endDate. The time is in format: HH:mm:SS, i.e., 00:00:00
*/
public data class DatabaseInstanceSettingsDenyMaintenancePeriod(
public val endDate: String,
public val startDate: String,
public val time: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.sql.outputs.DatabaseInstanceSettingsDenyMaintenancePeriod): DatabaseInstanceSettingsDenyMaintenancePeriod =
DatabaseInstanceSettingsDenyMaintenancePeriod(
endDate = javaType.endDate(),
startDate = javaType.startDate(),
time = javaType.time(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy