
com.pulumi.googlenative.apigee.v1.kotlin.outputs.GetAliasResult.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.apigee.v1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property alias Resource ID for this alias. Values must match the regular expression `[^/]{1,255}`.
* @property certsInfo Chain of certificates under this alias.
* @property type Type of alias.
*/
public data class GetAliasResult(
public val alias: String,
public val certsInfo: GoogleCloudApigeeV1CertificateResponse,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.apigee.v1.outputs.GetAliasResult): GetAliasResult = GetAliasResult(
alias = javaType.alias(),
certsInfo = javaType.certsInfo().let({ args0 ->
com.pulumi.googlenative.apigee.v1.kotlin.outputs.GoogleCloudApigeeV1CertificateResponse.Companion.toKotlin(args0)
}),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy