![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.insights.kotlin.inputs.StorageBlobDestinationArgs.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.insights.kotlin.inputs
import com.pulumi.azurenative.insights.inputs.StorageBlobDestinationArgs.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 containerName The container name of the Storage Blob.
* @property name A friendly name for the destination.
* This name should be unique across all destinations (regardless of type) within the data collection rule.
* @property storageAccountResourceId The resource ID of the storage account.
*/
public data class StorageBlobDestinationArgs(
public val containerName: Output? = null,
public val name: Output? = null,
public val storageAccountResourceId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.insights.inputs.StorageBlobDestinationArgs =
com.pulumi.azurenative.insights.inputs.StorageBlobDestinationArgs.builder()
.containerName(containerName?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.storageAccountResourceId(storageAccountResourceId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [StorageBlobDestinationArgs].
*/
@PulumiTagMarker
public class StorageBlobDestinationArgsBuilder internal constructor() {
private var containerName: Output? = null
private var name: Output? = null
private var storageAccountResourceId: Output? = null
/**
* @param value The container name of the Storage Blob.
*/
@JvmName("vplybgthmefsroox")
public suspend fun containerName(`value`: Output) {
this.containerName = value
}
/**
* @param value A friendly name for the destination.
* This name should be unique across all destinations (regardless of type) within the data collection rule.
*/
@JvmName("whpvylnubdrsddyy")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The resource ID of the storage account.
*/
@JvmName("ggxdwrxcbpmispit")
public suspend fun storageAccountResourceId(`value`: Output) {
this.storageAccountResourceId = value
}
/**
* @param value The container name of the Storage Blob.
*/
@JvmName("gedklddofpjepadl")
public suspend fun containerName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.containerName = mapped
}
/**
* @param value A friendly name for the destination.
* This name should be unique across all destinations (regardless of type) within the data collection rule.
*/
@JvmName("cgcdnfbsgxdkvnde")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The resource ID of the storage account.
*/
@JvmName("ejylmitdxnlnnvxi")
public suspend fun storageAccountResourceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.storageAccountResourceId = mapped
}
internal fun build(): StorageBlobDestinationArgs = StorageBlobDestinationArgs(
containerName = containerName,
name = name,
storageAccountResourceId = storageAccountResourceId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy