com.pulumi.cloudflare.kotlin.outputs.GetZeroTrustAccessIdentityProviderResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getZeroTrustAccessIdentityProvider.
* @property accountId The account identifier to target for the resource. Must provide only one of `zone_id`, `account_id`.
* @property id The provider-assigned unique ID for this managed resource.
* @property name Access Identity Provider name to search for.
* @property type Access Identity Provider Type.
* @property zoneId The zone identifier to target for the resource. Must provide only one of `zone_id`, `account_id`.
*/
public data class GetZeroTrustAccessIdentityProviderResult(
public val accountId: String? = null,
public val id: String,
public val name: String,
public val type: String,
public val zoneId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetZeroTrustAccessIdentityProviderResult): GetZeroTrustAccessIdentityProviderResult = GetZeroTrustAccessIdentityProviderResult(
accountId = javaType.accountId().map({ args0 -> args0 }).orElse(null),
id = javaType.id(),
name = javaType.name(),
type = javaType.type(),
zoneId = javaType.zoneId().map({ args0 -> args0 }).orElse(null),
)
}
}