
com.pulumi.azurenative.containerregistry.kotlin.inputs.GetTaskPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.containerregistry.kotlin.inputs
import com.pulumi.azurenative.containerregistry.inputs.GetTaskPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property registryName The name of the container registry.
* @property resourceGroupName The name of the resource group to which the container registry belongs.
* @property taskName The name of the container registry task.
*/
public data class GetTaskPlainArgs(
public val registryName: String,
public val resourceGroupName: String,
public val taskName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.containerregistry.inputs.GetTaskPlainArgs =
com.pulumi.azurenative.containerregistry.inputs.GetTaskPlainArgs.builder()
.registryName(registryName.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
.taskName(taskName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetTaskPlainArgs].
*/
@PulumiTagMarker
public class GetTaskPlainArgsBuilder internal constructor() {
private var registryName: String? = null
private var resourceGroupName: String? = null
private var taskName: String? = null
/**
* @param value The name of the container registry.
*/
@JvmName("edkilfdwhxucuocg")
public suspend fun registryName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.registryName = mapped
}
/**
* @param value The name of the resource group to which the container registry belongs.
*/
@JvmName("axsbesmhcfujcquq")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
/**
* @param value The name of the container registry task.
*/
@JvmName("rbcbyivpxbijykau")
public suspend fun taskName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.taskName = mapped
}
internal fun build(): GetTaskPlainArgs = GetTaskPlainArgs(
registryName = registryName ?: throw PulumiNullFieldException("registryName"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
taskName = taskName ?: throw PulumiNullFieldException("taskName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy