![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.apimanagement.kotlin.outputs.GetServiceTenantAccess.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.apimanagement.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property enabled Is access to the Management API enabled (presumably "for this Tenant")?
* @property primaryKey Primary access key for the tenant access information contract.
* @property secondaryKey Secondary access key for the tenant access information contract.
* @property tenantId The ID of the Tenant which has access to this API Management instance.
*/
public data class GetServiceTenantAccess(
public val enabled: Boolean,
public val primaryKey: String,
public val secondaryKey: String,
public val tenantId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.GetServiceTenantAccess): GetServiceTenantAccess = GetServiceTenantAccess(
enabled = javaType.enabled(),
primaryKey = javaType.primaryKey(),
secondaryKey = javaType.secondaryKey(),
tenantId = javaType.tenantId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy