com.pulumi.alicloud.cloudsso.kotlin.inputs.GetDirectoriesPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-alicloud-kotlin Show documentation
Show all versions of pulumi-alicloud-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.alicloud.cloudsso.kotlin.inputs
import com.pulumi.alicloud.cloudsso.inputs.GetDirectoriesPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getDirectories.
* @property enableDetails Default to `false`. Set it to `true` can output more details about resource attributes.
* @property ids A list of Directory IDs.
* @property nameRegex A regex string to filter results by Directory name.
* @property outputFile File name where to save data source results (after running `pulumi preview`).
*/
public data class GetDirectoriesPlainArgs(
public val enableDetails: Boolean? = null,
public val ids: List? = null,
public val nameRegex: String? = null,
public val outputFile: String? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.alicloud.cloudsso.inputs.GetDirectoriesPlainArgs =
com.pulumi.alicloud.cloudsso.inputs.GetDirectoriesPlainArgs.builder()
.enableDetails(enableDetails?.let({ args0 -> args0 }))
.ids(ids?.let({ args0 -> args0.map({ args0 -> args0 }) }))
.nameRegex(nameRegex?.let({ args0 -> args0 }))
.outputFile(outputFile?.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetDirectoriesPlainArgs].
*/
@PulumiTagMarker
public class GetDirectoriesPlainArgsBuilder internal constructor() {
private var enableDetails: Boolean? = null
private var ids: List? = null
private var nameRegex: String? = null
private var outputFile: String? = null
/**
* @param value Default to `false`. Set it to `true` can output more details about resource attributes.
*/
@JvmName("vahiwlgsqgfifsia")
public suspend fun enableDetails(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.enableDetails = mapped
}
/**
* @param value A list of Directory IDs.
*/
@JvmName("abhstaujgavaobhj")
public suspend fun ids(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.ids = mapped
}
/**
* @param values A list of Directory IDs.
*/
@JvmName("kpjiamxcborofpoq")
public suspend fun ids(vararg values: String) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> args0 })
this.ids = mapped
}
/**
* @param value A regex string to filter results by Directory name.
*/
@JvmName("fjtiancalfmafhqs")
public suspend fun nameRegex(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.nameRegex = mapped
}
/**
* @param value File name where to save data source results (after running `pulumi preview`).
*/
@JvmName("ojmkwjmbngxshuvy")
public suspend fun outputFile(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.outputFile = mapped
}
internal fun build(): GetDirectoriesPlainArgs = GetDirectoriesPlainArgs(
enableDetails = enableDetails,
ids = ids,
nameRegex = nameRegex,
outputFile = outputFile,
)
}