com.pulumi.gcp.databasemigrationservice.kotlin.outputs.PrivateConnectionVpcPeeringConfig.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.databasemigrationservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property subnet A free subnet for peering. (CIDR of /29)
* - - -
* @property vpcName Fully qualified name of the VPC that Database Migration Service will peer to.
* Format: projects/{project}/global/{networks}/{name}
*/
public data class PrivateConnectionVpcPeeringConfig(
public val subnet: String,
public val vpcName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.databasemigrationservice.outputs.PrivateConnectionVpcPeeringConfig): PrivateConnectionVpcPeeringConfig = PrivateConnectionVpcPeeringConfig(
subnet = javaType.subnet(),
vpcName = javaType.vpcName(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy