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

com.pulumi.nomad.kotlin.outputs.GetJobPeriodicConfig.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: 2.4.2.0
Show newest version
@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