com.pulumi.gcp.vpcaccess.kotlin.outputs.GetConnectorSubnet.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.vpcaccess.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name Name of the resource.
* - - -
* @property projectId Project in which the subnet exists. If not set, this project is assumed to be the project for which the connector create request was issued.
*/
public data class GetConnectorSubnet(
public val name: String,
public val projectId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.vpcaccess.outputs.GetConnectorSubnet): GetConnectorSubnet = GetConnectorSubnet(
name = javaType.name(),
projectId = javaType.projectId(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy