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

com.pulumi.gcp.dataloss.kotlin.outputs.PreventionJobTriggerTriggerSchedule.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.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.dataloss.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property recurrencePeriodDuration With this option a job is started a regular periodic basis. For example: every day (86400 seconds).
 * A scheduled start time will be skipped if the previous execution has not ended when its scheduled time occurs.
 * This value must be set to a time duration greater than or equal to 1 day and can be no longer than 60 days.
 * A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
 * - - -
 */
public data class PreventionJobTriggerTriggerSchedule(
    public val recurrencePeriodDuration: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.dataloss.outputs.PreventionJobTriggerTriggerSchedule): PreventionJobTriggerTriggerSchedule = PreventionJobTriggerTriggerSchedule(
            recurrencePeriodDuration = javaType.recurrencePeriodDuration().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy