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

com.pulumi.gitlab.kotlin.inputs.GroupAccessTokenRotationConfigurationArgs.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.4.2.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gitlab.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gitlab.inputs.GroupAccessTokenRotationConfigurationArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property expirationDays The duration (in days) the new token should be valid for.
 * @property rotateBeforeDays The duration (in days) before the expiration when the token should be rotated. As an example, if set to 7 days, the token will rotate 7 days before the expiration date, but only when `pulumi up` is run in that timeframe.
 */
public data class GroupAccessTokenRotationConfigurationArgs(
    public val expirationDays: Output,
    public val rotateBeforeDays: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gitlab.inputs.GroupAccessTokenRotationConfigurationArgs =
        com.pulumi.gitlab.inputs.GroupAccessTokenRotationConfigurationArgs.builder()
            .expirationDays(expirationDays.applyValue({ args0 -> args0 }))
            .rotateBeforeDays(rotateBeforeDays.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [GroupAccessTokenRotationConfigurationArgs].
 */
@PulumiTagMarker
public class GroupAccessTokenRotationConfigurationArgsBuilder internal constructor() {
    private var expirationDays: Output? = null

    private var rotateBeforeDays: Output? = null

    /**
     * @param value The duration (in days) the new token should be valid for.
     */
    @JvmName("dhwjdnircipqakko")
    public suspend fun expirationDays(`value`: Output) {
        this.expirationDays = value
    }

    /**
     * @param value The duration (in days) before the expiration when the token should be rotated. As an example, if set to 7 days, the token will rotate 7 days before the expiration date, but only when `pulumi up` is run in that timeframe.
     */
    @JvmName("glyvoqcbauabuatq")
    public suspend fun rotateBeforeDays(`value`: Output) {
        this.rotateBeforeDays = value
    }

    /**
     * @param value The duration (in days) the new token should be valid for.
     */
    @JvmName("ojudlmnnwwsyoddw")
    public suspend fun expirationDays(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.expirationDays = mapped
    }

    /**
     * @param value The duration (in days) before the expiration when the token should be rotated. As an example, if set to 7 days, the token will rotate 7 days before the expiration date, but only when `pulumi up` is run in that timeframe.
     */
    @JvmName("paxkodayxavoiaha")
    public suspend fun rotateBeforeDays(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.rotateBeforeDays = mapped
    }

    internal fun build(): GroupAccessTokenRotationConfigurationArgs =
        GroupAccessTokenRotationConfigurationArgs(
            expirationDays = expirationDays ?: throw PulumiNullFieldException("expirationDays"),
            rotateBeforeDays = rotateBeforeDays ?: throw PulumiNullFieldException("rotateBeforeDays"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy