NetworkConfigArgs

data class NetworkConfigArgs(val canIpForward: Output<Boolean>? = null, val enableExternalIps: Output<Boolean>? = null, val network: Output<String>? = null, val subnetwork: Output<String>? = null) : ConvertibleToJava<NetworkConfigArgs>

Network related configurations.

Constructors

Link copied to clipboard
fun NetworkConfigArgs(canIpForward: Output<Boolean>? = null, enableExternalIps: Output<Boolean>? = null, network: Output<String>? = null, subnetwork: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): NetworkConfigArgs

Properties

Link copied to clipboard
val canIpForward: Output<Boolean>? = null

Allows the TPU node to send and receive packets with non-matching destination or source IPs. This is required if you plan to use the TPU workers to forward routes.

Link copied to clipboard
val enableExternalIps: Output<Boolean>? = null

Indicates that external IP addresses would be associated with the TPU workers. If set to false, the specified subnetwork or network should have Private Google Access enabled.

Link copied to clipboard
val network: Output<String>? = null

The name of the network for the TPU node. It must be a preexisting Google Compute Engine network. If none is provided, "default" will be used.

Link copied to clipboard
val subnetwork: Output<String>? = null

The name of the subnetwork for the TPU node. It must be a preexisting Google Compute Engine subnetwork. If none is provided, "default" will be used.