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

com.pulumi.cloudflare.kotlin.outputs.GetZeroTrustAccessApplicationResult.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: 5.47.0.0
Show 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 getZeroTrustAccessApplication.
 * @property accountId The account identifier to target for the resource. Must provide only one of `zone_id`, `account_id`.
 * @property aud Application Audience (AUD) Tag of the application.
 * @property domain The primary hostname and path that Access will secure. Must provide only one of `name`, `domain`.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property name Friendly name of the Access Application. Must provide only one of `name`, `domain`.
 * @property zoneId The zone identifier to target for the resource. Must provide only one of `zone_id`, `account_id`.
 */
public data class GetZeroTrustAccessApplicationResult(
    public val accountId: String? = null,
    public val aud: String,
    public val domain: String,
    public val id: String,
    public val name: String,
    public val zoneId: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetZeroTrustAccessApplicationResult): GetZeroTrustAccessApplicationResult = GetZeroTrustAccessApplicationResult(
            accountId = javaType.accountId().map({ args0 -> args0 }).orElse(null),
            aud = javaType.aud(),
            domain = javaType.domain(),
            id = javaType.id(),
            name = javaType.name(),
            zoneId = javaType.zoneId().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy