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

com.pulumi.azure.purview.kotlin.outputs.AccountManagedResource.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.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