All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.streamanalytics.kotlin.outputs.JobJobStorageAccount.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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