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

com.pulumi.gcp.compute.kotlin.outputs.GetBackendServiceIap.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property oauth2ClientId OAuth2 Client ID for IAP
 * @property oauth2ClientSecret OAuth2 Client Secret for IAP
 * @property oauth2ClientSecretSha256 OAuth2 Client Secret SHA-256 for IAP
 */
public data class GetBackendServiceIap(
    public val oauth2ClientId: String,
    public val oauth2ClientSecret: String,
    public val oauth2ClientSecretSha256: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetBackendServiceIap): GetBackendServiceIap = GetBackendServiceIap(
            oauth2ClientId = javaType.oauth2ClientId(),
            oauth2ClientSecret = javaType.oauth2ClientSecret(),
            oauth2ClientSecretSha256 = javaType.oauth2ClientSecretSha256(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy