com.pulumi.gcp.compute.kotlin.outputs.GetBackendServiceIap.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.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