![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.visualstudio.kotlin.inputs.GetExtensionPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.visualstudio.kotlin.inputs
import com.pulumi.azurenative.visualstudio.inputs.GetExtensionPlainArgs.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 accountResourceName The name of the Visual Studio Team Services account resource.
* @property extensionResourceName The name of the extension.
* @property resourceGroupName Name of the resource group within the Azure subscription.
*/
public data class GetExtensionPlainArgs(
public val accountResourceName: String,
public val extensionResourceName: String,
public val resourceGroupName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.visualstudio.inputs.GetExtensionPlainArgs =
com.pulumi.azurenative.visualstudio.inputs.GetExtensionPlainArgs.builder()
.accountResourceName(accountResourceName.let({ args0 -> args0 }))
.extensionResourceName(extensionResourceName.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetExtensionPlainArgs].
*/
@PulumiTagMarker
public class GetExtensionPlainArgsBuilder internal constructor() {
private var accountResourceName: String? = null
private var extensionResourceName: String? = null
private var resourceGroupName: String? = null
/**
* @param value The name of the Visual Studio Team Services account resource.
*/
@JvmName("ldyebqxuvrnnqltm")
public suspend fun accountResourceName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.accountResourceName = mapped
}
/**
* @param value The name of the extension.
*/
@JvmName("fdyprpheylrpjsfp")
public suspend fun extensionResourceName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.extensionResourceName = mapped
}
/**
* @param value Name of the resource group within the Azure subscription.
*/
@JvmName("nxmcujouihlpdxre")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
internal fun build(): GetExtensionPlainArgs = GetExtensionPlainArgs(
accountResourceName = accountResourceName ?: throw PulumiNullFieldException("accountResourceName"),
extensionResourceName = extensionResourceName ?: throw
PulumiNullFieldException("extensionResourceName"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy