com.pulumi.gcp.storage.kotlin.outputs.TransferJobScheduleScheduleEndDate.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.storage.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property day Day of month. Must be from 1 to 31 and valid for the year and month.
* @property month Month of year. Must be from 1 to 12.
* @property year Year of date. Must be from 1 to 9999.
*/
public data class TransferJobScheduleScheduleEndDate(
public val day: Int,
public val month: Int,
public val year: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.storage.outputs.TransferJobScheduleScheduleEndDate): TransferJobScheduleScheduleEndDate = TransferJobScheduleScheduleEndDate(
day = javaType.day(),
month = javaType.month(),
year = javaType.year(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy