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

com.pulumi.azure.apimanagement.kotlin.outputs.GetServiceTenantAccess.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.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