![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.purview.kotlin.outputs.AccountManagedResource.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.purview.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property eventHubNamespaceId The ID of the managed event hub namespace.
* @property resourceGroupId The ID of the managed resource group.
* @property storageAccountId The ID of the managed storage account.
*/
public data class AccountManagedResource(
public val eventHubNamespaceId: String? = null,
public val resourceGroupId: String? = null,
public val storageAccountId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.purview.outputs.AccountManagedResource): AccountManagedResource = AccountManagedResource(
eventHubNamespaceId = javaType.eventHubNamespaceId().map({ args0 -> args0 }).orElse(null),
resourceGroupId = javaType.resourceGroupId().map({ args0 -> args0 }).orElse(null),
storageAccountId = javaType.storageAccountId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy