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

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

package com.pulumi.gcp.sql.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property endDate End date before which maintenance will not take place. The date is in format yyyy-mm-dd i.e., 2020-11-01, or mm-dd, i.e., 11-01
 * @property startDate Start date after which maintenance will not take place. The date is in format yyyy-mm-dd i.e., 2020-11-01, or mm-dd, i.e., 11-01
 * @property time Time in UTC when the "deny maintenance period" starts on start_date and ends on end_date. The time is in format: HH:mm:SS, i.e., 00:00:00
 */
public data class GetDatabaseInstanceSettingDenyMaintenancePeriod(
    public val endDate: String,
    public val startDate: String,
    public val time: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.sql.outputs.GetDatabaseInstanceSettingDenyMaintenancePeriod): GetDatabaseInstanceSettingDenyMaintenancePeriod =
            GetDatabaseInstanceSettingDenyMaintenancePeriod(
                endDate = javaType.endDate(),
                startDate = javaType.startDate(),
                time = javaType.time(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy