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

com.pulumi.gcp.vertex.kotlin.inputs.AiFeatureOnlineStoreFeatureviewSyncConfigArgs.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: 8.13.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.vertex.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreFeatureviewSyncConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property cron Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs.
 * To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}".
 */
public data class AiFeatureOnlineStoreFeatureviewSyncConfigArgs(
    public val cron: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreFeatureviewSyncConfigArgs = com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreFeatureviewSyncConfigArgs.builder()
        .cron(cron?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AiFeatureOnlineStoreFeatureviewSyncConfigArgs].
 */
@PulumiTagMarker
public class AiFeatureOnlineStoreFeatureviewSyncConfigArgsBuilder internal constructor() {
    private var cron: Output? = null

    /**
     * @param value Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs.
     * To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}".
     */
    @JvmName("lpbbaibenbernrea")
    public suspend fun cron(`value`: Output) {
        this.cron = value
    }

    /**
     * @param value Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs.
     * To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}".
     */
    @JvmName("ircuawfqchrftffu")
    public suspend fun cron(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.cron = mapped
    }

    internal fun build(): AiFeatureOnlineStoreFeatureviewSyncConfigArgs =
        AiFeatureOnlineStoreFeatureviewSyncConfigArgs(
            cron = cron,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy