com.pulumi.gcp.bigquery.kotlin.outputs.ConnectionAzure.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.bigquery.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property application (Output)
* The name of the Azure Active Directory Application.
* @property clientId (Output)
* The client id of the Azure Active Directory Application.
* @property customerTenantId The id of customer's directory that host the data.
* @property federatedApplicationClientId The Azure Application (client) ID where the federated credentials will be hosted.
* @property identity (Output)
* A unique Google-owned and Google-generated identity for the Connection. This identity will be used to access the user's Azure Active Directory Application.
* @property objectId (Output)
* The object id of the Azure Active Directory Application.
* @property redirectUri (Output)
* The URL user will be redirected to after granting consent during connection setup.
*/
public data class ConnectionAzure(
public val application: String? = null,
public val clientId: String? = null,
public val customerTenantId: String,
public val federatedApplicationClientId: String? = null,
public val identity: String? = null,
public val objectId: String? = null,
public val redirectUri: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.bigquery.outputs.ConnectionAzure): ConnectionAzure = ConnectionAzure(
application = javaType.application().map({ args0 -> args0 }).orElse(null),
clientId = javaType.clientId().map({ args0 -> args0 }).orElse(null),
customerTenantId = javaType.customerTenantId(),
federatedApplicationClientId = javaType.federatedApplicationClientId().map({ args0 ->
args0
}).orElse(null),
identity = javaType.identity().map({ args0 -> args0 }).orElse(null),
objectId = javaType.objectId().map({ args0 -> args0 }).orElse(null),
redirectUri = javaType.redirectUri().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy