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

com.pulumi.googlenative.osconfig.v1.kotlin.enums.RecurringScheduleFrequency.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.osconfig.v1.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * Required. The frequency unit of this recurring schedule.
 */
public enum class RecurringScheduleFrequency(
    public val javaValue: com.pulumi.googlenative.osconfig.v1.enums.RecurringScheduleFrequency,
) : ConvertibleToJava {
    /**
     * Invalid. A frequency must be specified.
     */
    FrequencyUnspecified(com.pulumi.googlenative.osconfig.v1.enums.RecurringScheduleFrequency.FrequencyUnspecified),

    /**
     * Indicates that the frequency of recurrence should be expressed in terms of weeks.
     */
    Weekly(com.pulumi.googlenative.osconfig.v1.enums.RecurringScheduleFrequency.Weekly),

    /**
     * Indicates that the frequency of recurrence should be expressed in terms of months.
     */
    Monthly(com.pulumi.googlenative.osconfig.v1.enums.RecurringScheduleFrequency.Monthly),

    /**
     * Indicates that the frequency of recurrence should be expressed in terms of days.
     */
    Daily(com.pulumi.googlenative.osconfig.v1.enums.RecurringScheduleFrequency.Daily),
    ;

    override fun toJava(): com.pulumi.googlenative.osconfig.v1.enums.RecurringScheduleFrequency =
        javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.osconfig.v1.enums.RecurringScheduleFrequency): RecurringScheduleFrequency =
            RecurringScheduleFrequency.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy