All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.datafusion.kotlin.outputs.InstanceNetworkConfig.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.datafusion.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property ipAllocation The IP range in CIDR notation to use for the managed Data Fusion instance
 * nodes. This range must not overlap with any other ranges used in the Data Fusion instance network.
 * @property network Name of the network in the project with which the tenant project
 * will be peered for executing pipelines. In case of shared VPC where the network resides in another host
 * project the network should specified in the form of projects/{host-project-id}/global/networks/{network}
 */
public data class InstanceNetworkConfig(
    public val ipAllocation: String,
    public val network: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.datafusion.outputs.InstanceNetworkConfig): InstanceNetworkConfig = InstanceNetworkConfig(
            ipAllocation = javaType.ipAllocation(),
            network = javaType.network(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy