![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.mobilenetwork.kotlin.inputs.DiagnosticsUploadConfigurationArgs.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.mobilenetwork.kotlin.inputs
import com.pulumi.azurenative.mobilenetwork.inputs.DiagnosticsUploadConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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
/**
* Configuration for uploading packet core diagnostics.
* @property storageAccountContainerUrl The Storage Account Container URL to upload diagnostics to.
*/
public data class DiagnosticsUploadConfigurationArgs(
public val storageAccountContainerUrl: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.mobilenetwork.inputs.DiagnosticsUploadConfigurationArgs =
com.pulumi.azurenative.mobilenetwork.inputs.DiagnosticsUploadConfigurationArgs.builder()
.storageAccountContainerUrl(storageAccountContainerUrl.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DiagnosticsUploadConfigurationArgs].
*/
@PulumiTagMarker
public class DiagnosticsUploadConfigurationArgsBuilder internal constructor() {
private var storageAccountContainerUrl: Output? = null
/**
* @param value The Storage Account Container URL to upload diagnostics to.
*/
@JvmName("duwbptsdwtilvgwf")
public suspend fun storageAccountContainerUrl(`value`: Output) {
this.storageAccountContainerUrl = value
}
/**
* @param value The Storage Account Container URL to upload diagnostics to.
*/
@JvmName("ruscrbhumaxyyipe")
public suspend fun storageAccountContainerUrl(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.storageAccountContainerUrl = mapped
}
internal fun build(): DiagnosticsUploadConfigurationArgs = DiagnosticsUploadConfigurationArgs(
storageAccountContainerUrl = storageAccountContainerUrl ?: throw
PulumiNullFieldException("storageAccountContainerUrl"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy