com.pulumi.azure.monitoring.kotlin.outputs.AutoscaleSettingProfileFixedDate.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.monitoring.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property end Specifies the end date for the profile, formatted as an RFC3339 date string.
* @property start Specifies the start date for the profile, formatted as an RFC3339 date string.
* @property timezone The Time Zone of the `start` and `end` times. A list of [possible values can be found here](https://msdn.microsoft.com/en-us/library/azure/dn931928.aspx). Defaults to `UTC`.
*/
public data class AutoscaleSettingProfileFixedDate(
public val end: String,
public val start: String,
public val timezone: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.monitoring.outputs.AutoscaleSettingProfileFixedDate): AutoscaleSettingProfileFixedDate = AutoscaleSettingProfileFixedDate(
end = javaType.end(),
start = javaType.start(),
timezone = javaType.timezone().map({ args0 -> args0 }).orElse(null),
)
}
}