![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.streamanalytics.kotlin.outputs.JobJobStorageAccount.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.streamanalytics.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property accountKey The account key for the Azure storage account.
* @property accountName The name of the Azure storage account.
* @property authenticationMode The authentication mode of the storage account. The only supported value is `ConnectionString`. Defaults to `ConnectionString`.
*/
public data class JobJobStorageAccount(
public val accountKey: String,
public val accountName: String,
public val authenticationMode: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.streamanalytics.outputs.JobJobStorageAccount): JobJobStorageAccount = JobJobStorageAccount(
accountKey = javaType.accountKey(),
accountName = javaType.accountName(),
authenticationMode = javaType.authenticationMode().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy