![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.notificationhub.kotlin.outputs.GetNamespaceResult.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.notificationhub.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getNamespace.
* @property enabled Is this Notification Hub Namespace enabled?
* @property id The provider-assigned unique ID for this managed resource.
* @property location The Azure Region in which this Notification Hub Namespace exists.
* @property name The name of the SKU to use for this Notification Hub Namespace. Possible values are `Free`, `Basic` or `Standard.`
* @property namespaceType The Type of Namespace, such as `Messaging` or `NotificationHub`.
* @property resourceGroupName
* @property servicebusEndpoint
* @property sku A `sku` block as defined below.
* @property tags A mapping of tags to assign to the resource.
*/
public data class GetNamespaceResult(
public val enabled: Boolean,
public val id: String,
public val location: String,
public val name: String,
public val namespaceType: String,
public val resourceGroupName: String,
public val servicebusEndpoint: String,
public val sku: GetNamespaceSku,
public val tags: Map,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.notificationhub.outputs.GetNamespaceResult): GetNamespaceResult = GetNamespaceResult(
enabled = javaType.enabled(),
id = javaType.id(),
location = javaType.location(),
name = javaType.name(),
namespaceType = javaType.namespaceType(),
resourceGroupName = javaType.resourceGroupName(),
servicebusEndpoint = javaType.servicebusEndpoint(),
sku = javaType.sku().let({ args0 ->
com.pulumi.azure.notificationhub.kotlin.outputs.GetNamespaceSku.Companion.toKotlin(args0)
}),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy