NetworkConfigArgs

data class NetworkConfigArgs(val connectMode: Output<NetworkConfigConnectMode>? = null, val modes: Output<List<NetworkConfigModesItem>>? = null, val network: Output<String>? = null, val reservedIpRange: Output<String>? = null) : ConvertibleToJava<NetworkConfigArgs>

Network configuration for the instance.

Constructors

Link copied to clipboard
fun NetworkConfigArgs(connectMode: Output<NetworkConfigConnectMode>? = null, modes: Output<List<NetworkConfigModesItem>>? = null, network: Output<String>? = null, reservedIpRange: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard

The network connect mode of the Filestore instance. If not provided, the connect mode defaults to DIRECT_PEERING.

Link copied to clipboard
val modes: Output<List<NetworkConfigModesItem>>? = null

Internet protocol versions for which the instance has IP addresses assigned. For this version, only MODE_IPV4 is supported.

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

The name of the Google Compute Engine VPC network to which the instance is connected.

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

Optional, reserved_ip_range can have one of the following two types of values. * CIDR range value when using DIRECT_PEERING connect mode. * Allocated IP address range when using PRIVATE_SERVICE_ACCESS connect mode. When the name of an allocated IP address range is specified, it must be one of the ranges associated with the private service access connection. When specified as a direct CIDR value, it must be a /29 CIDR block for Basic tier, a /24 CIDR block for High Scale tier, or a /26 CIDR block for Enterprise tier in one of the internal IP address ranges that identifies the range of IP addresses reserved for this instance. For example, 10.0.0.0/29, 192.168.0.0/24, or 192.168.0.0/26, respectively. The range you specify can't overlap with either existing subnets or assigned IP address ranges for other Filestore instances in the selected VPC network.