![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.nomad.kotlin.outputs.GetJobPeriodicConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-nomad-kotlin Show documentation
Show all versions of pulumi-nomad-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.nomad.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property enabled `(boolean)` If periodic scheduling is enabled for the specified job.
* @property prohibitOverlap `(boolean)` If the specified job should wait until previous instances of the job have completed.
* @property spec `(string)`
* @property specType `(string)`
* @property timezone `(string)` Time zone to evaluate the next launch interval against.
*/
public data class GetJobPeriodicConfig(
public val enabled: Boolean,
public val prohibitOverlap: Boolean,
public val spec: String,
public val specType: String,
public val timezone: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.nomad.outputs.GetJobPeriodicConfig): GetJobPeriodicConfig = GetJobPeriodicConfig(
enabled = javaType.enabled(),
prohibitOverlap = javaType.prohibitOverlap(),
spec = javaType.spec(),
specType = javaType.specType(),
timezone = javaType.timezone(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy