![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.storage.kotlin.inputs.GetEncryptionScopePlainArgs.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.storage.kotlin.inputs
import com.pulumi.azurenative.storage.inputs.GetEncryptionScopePlainArgs.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 accountName The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
* @property encryptionScopeName The name of the encryption scope within the specified storage account. Encryption scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
* @property resourceGroupName The name of the resource group within the user's subscription. The name is case insensitive.
*/
public data class GetEncryptionScopePlainArgs(
public val accountName: String,
public val encryptionScopeName: String,
public val resourceGroupName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.storage.inputs.GetEncryptionScopePlainArgs =
com.pulumi.azurenative.storage.inputs.GetEncryptionScopePlainArgs.builder()
.accountName(accountName.let({ args0 -> args0 }))
.encryptionScopeName(encryptionScopeName.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetEncryptionScopePlainArgs].
*/
@PulumiTagMarker
public class GetEncryptionScopePlainArgsBuilder internal constructor() {
private var accountName: String? = null
private var encryptionScopeName: String? = null
private var resourceGroupName: String? = null
/**
* @param value The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
*/
@JvmName("pfawpjplvtfgwlbv")
public suspend fun accountName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.accountName = mapped
}
/**
* @param value The name of the encryption scope within the specified storage account. Encryption scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
*/
@JvmName("nbgfbpkdgfmhexmm")
public suspend fun encryptionScopeName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.encryptionScopeName = mapped
}
/**
* @param value The name of the resource group within the user's subscription. The name is case insensitive.
*/
@JvmName("dmfijdgepxjxcapn")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
internal fun build(): GetEncryptionScopePlainArgs = GetEncryptionScopePlainArgs(
accountName = accountName ?: throw PulumiNullFieldException("accountName"),
encryptionScopeName = encryptionScopeName ?: throw PulumiNullFieldException("encryptionScopeName"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy