
com.pulumi.googlenative.websecurityscanner.v1alpha.kotlin.outputs.GoogleAccountResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.googlenative.websecurityscanner.v1alpha.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Describes authentication configuration that uses a Google account.
* @property password Input only. The password of the Google account. The credential is stored encrypted and not returned in any response nor included in audit logs.
* @property username The user name of the Google account.
*/
public data class GoogleAccountResponse(
public val password: String,
public val username: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.websecurityscanner.v1alpha.outputs.GoogleAccountResponse): GoogleAccountResponse = GoogleAccountResponse(
password = javaType.password(),
username = javaType.username(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy