com.pulumi.aws.imagebuilder.kotlin.inputs.GetImageRecipesPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.imagebuilder.kotlin.inputs
import com.pulumi.aws.imagebuilder.inputs.GetImageRecipesPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getImageRecipes.
* @property filters Configuration block(s) for filtering. Detailed below.
* @property owner Owner of the image recipes. Valid values are `Self`, `Shared`, `Amazon` and `ThirdParty`. Defaults to `Self`.
*/
public data class GetImageRecipesPlainArgs(
public val filters: List? = null,
public val owner: String? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.imagebuilder.inputs.GetImageRecipesPlainArgs =
com.pulumi.aws.imagebuilder.inputs.GetImageRecipesPlainArgs.builder()
.filters(filters?.let({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.owner(owner?.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetImageRecipesPlainArgs].
*/
@PulumiTagMarker
public class GetImageRecipesPlainArgsBuilder internal constructor() {
private var filters: List? = null
private var owner: String? = null
/**
* @param value Configuration block(s) for filtering. Detailed below.
*/
@JvmName("dbhfwwvnowmanytd")
public suspend fun filters(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.filters = mapped
}
/**
* @param argument Configuration block(s) for filtering. Detailed below.
*/
@JvmName("gdvtkbevckixpeio")
public suspend fun filters(argument: List Unit>) {
val toBeMapped = argument.toList().map {
GetImageRecipesFilterBuilder().applySuspend {
it()
}.build()
}
val mapped = toBeMapped
this.filters = mapped
}
/**
* @param argument Configuration block(s) for filtering. Detailed below.
*/
@JvmName("csearonctkxctfxt")
public suspend fun filters(vararg argument: suspend GetImageRecipesFilterBuilder.() -> Unit) {
val toBeMapped = argument.toList().map {
GetImageRecipesFilterBuilder().applySuspend {
it()
}.build()
}
val mapped = toBeMapped
this.filters = mapped
}
/**
* @param argument Configuration block(s) for filtering. Detailed below.
*/
@JvmName("kvdvmvrrrxsugwtl")
public suspend fun filters(argument: suspend GetImageRecipesFilterBuilder.() -> Unit) {
val toBeMapped = listOf(GetImageRecipesFilterBuilder().applySuspend { argument() }.build())
val mapped = toBeMapped
this.filters = mapped
}
/**
* @param values Configuration block(s) for filtering. Detailed below.
*/
@JvmName("rofjvyuwovkphljo")
public suspend fun filters(vararg values: GetImageRecipesFilter) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> args0 })
this.filters = mapped
}
/**
* @param value Owner of the image recipes. Valid values are `Self`, `Shared`, `Amazon` and `ThirdParty`. Defaults to `Self`.
*/
@JvmName("tsaokchdpcjycpob")
public suspend fun owner(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.owner = mapped
}
internal fun build(): GetImageRecipesPlainArgs = GetImageRecipesPlainArgs(
filters = filters,
owner = owner,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy