com.pulumi.gitlab.kotlin.inputs.ProjectAccessTokenRotationConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gitlab-kotlin Show documentation
Show all versions of pulumi-gitlab-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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.ProjectAccessTokenRotationConfigurationArgs.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 ProjectAccessTokenRotationConfigurationArgs(
public val expirationDays: Output,
public val rotateBeforeDays: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gitlab.inputs.ProjectAccessTokenRotationConfigurationArgs =
com.pulumi.gitlab.inputs.ProjectAccessTokenRotationConfigurationArgs.builder()
.expirationDays(expirationDays.applyValue({ args0 -> args0 }))
.rotateBeforeDays(rotateBeforeDays.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ProjectAccessTokenRotationConfigurationArgs].
*/
@PulumiTagMarker
public class ProjectAccessTokenRotationConfigurationArgsBuilder 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("udioitnbitkmwfar")
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("liicpohwsvtqmhog")
public suspend fun rotateBeforeDays(`value`: Output) {
this.rotateBeforeDays = value
}
/**
* @param value The duration (in days) the new token should be valid for.
*/
@JvmName("fuuytlfjwgmcmaci")
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("kystjbbabgybvovf")
public suspend fun rotateBeforeDays(`value`: Int) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.rotateBeforeDays = mapped
}
internal fun build(): ProjectAccessTokenRotationConfigurationArgs =
ProjectAccessTokenRotationConfigurationArgs(
expirationDays = expirationDays ?: throw PulumiNullFieldException("expirationDays"),
rotateBeforeDays = rotateBeforeDays ?: throw PulumiNullFieldException("rotateBeforeDays"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy