com.pulumi.gcp.apphub.kotlin.outputs.GetDiscoveredServiceServiceProperty.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.apphub.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property gcpProject The service project identifier that the underlying cloud resource resides in.
* @property location The location of the discovered service.
* @property zone The location that the underlying resource resides in if it is zonal.
*/
public data class GetDiscoveredServiceServiceProperty(
public val gcpProject: String,
public val location: String,
public val zone: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.apphub.outputs.GetDiscoveredServiceServiceProperty): GetDiscoveredServiceServiceProperty = GetDiscoveredServiceServiceProperty(
gcpProject = javaType.gcpProject(),
location = javaType.location(),
zone = javaType.zone(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy