com.pulumi.azure.eventhub.kotlin.outputs.GetNamespaceAuthorizationRuleResult.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.eventhub.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getNamespaceAuthorizationRule.
* @property id The provider-assigned unique ID for this managed resource.
* @property listen Does this Authorization Rule have permissions to Listen to the Event Hub?
* @property manage Does this Authorization Rule have permissions to Manage to the Event Hub?
* @property name
* @property namespaceName
* @property primaryConnectionString The Primary Connection String for the Event Hubs authorization Rule.
* @property primaryConnectionStringAlias The alias of the Primary Connection String for the Event Hubs authorization Rule.
* @property primaryKey The Primary Key for the Event Hubs authorization Rule.
* @property resourceGroupName
* @property secondaryConnectionString The Secondary Connection String for the Event Hubs authorization Rule.
* @property secondaryConnectionStringAlias The alias of the Secondary Connection String for the Event Hubs authorization Rule.
* @property secondaryKey The Secondary Key for the Event Hubs authorization Rule.
* @property send Does this Authorization Rule have permissions to Send to the Event Hub?
*/
public data class GetNamespaceAuthorizationRuleResult(
public val id: String,
public val listen: Boolean,
public val manage: Boolean,
public val name: String,
public val namespaceName: String,
public val primaryConnectionString: String,
public val primaryConnectionStringAlias: String,
public val primaryKey: String,
public val resourceGroupName: String,
public val secondaryConnectionString: String,
public val secondaryConnectionStringAlias: String,
public val secondaryKey: String,
public val send: Boolean,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.eventhub.outputs.GetNamespaceAuthorizationRuleResult):
GetNamespaceAuthorizationRuleResult = GetNamespaceAuthorizationRuleResult(
id = javaType.id(),
listen = javaType.listen(),
manage = javaType.manage(),
name = javaType.name(),
namespaceName = javaType.namespaceName(),
primaryConnectionString = javaType.primaryConnectionString(),
primaryConnectionStringAlias = javaType.primaryConnectionStringAlias(),
primaryKey = javaType.primaryKey(),
resourceGroupName = javaType.resourceGroupName(),
secondaryConnectionString = javaType.secondaryConnectionString(),
secondaryConnectionStringAlias = javaType.secondaryConnectionStringAlias(),
secondaryKey = javaType.secondaryKey(),
send = javaType.send(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy