![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.networkcloud.kotlin.inputs.ManagedResourceGroupConfigurationArgs.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.networkcloud.kotlin.inputs
import com.pulumi.azurenative.networkcloud.inputs.ManagedResourceGroupConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property location The location of the managed resource group. If not specified, the location of the parent resource is chosen.
* @property name The name for the managed resource group. If not specified, the unique name is automatically generated.
*/
public data class ManagedResourceGroupConfigurationArgs(
public val location: Output? = null,
public val name: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.networkcloud.inputs.ManagedResourceGroupConfigurationArgs =
com.pulumi.azurenative.networkcloud.inputs.ManagedResourceGroupConfigurationArgs.builder()
.location(location?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ManagedResourceGroupConfigurationArgs].
*/
@PulumiTagMarker
public class ManagedResourceGroupConfigurationArgsBuilder internal constructor() {
private var location: Output? = null
private var name: Output? = null
/**
* @param value The location of the managed resource group. If not specified, the location of the parent resource is chosen.
*/
@JvmName("oxnllmhjyiwoqjqn")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value The name for the managed resource group. If not specified, the unique name is automatically generated.
*/
@JvmName("vkqmnarovrasluxu")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The location of the managed resource group. If not specified, the location of the parent resource is chosen.
*/
@JvmName("qvoffipqakxhbufl")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.location = mapped
}
/**
* @param value The name for the managed resource group. If not specified, the unique name is automatically generated.
*/
@JvmName("rpqcqcggddjqnrvl")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): ManagedResourceGroupConfigurationArgs =
ManagedResourceGroupConfigurationArgs(
location = location,
name = name,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy