IpConfigurationArgs

data class IpConfigurationArgs(val allocatedIpRange: Output<String>? = null, val authorizedNetworks: Output<List<AclEntryArgs>>? = null, val enablePrivatePathForGoogleCloudServices: Output<Boolean>? = null, val ipv4Enabled: Output<Boolean>? = null, val privateNetwork: Output<String>? = null, val requireSsl: Output<Boolean>? = null) : ConvertibleToJava<IpConfigurationArgs>

IP Management configuration.

Constructors

Link copied to clipboard
fun IpConfigurationArgs(allocatedIpRange: Output<String>? = null, authorizedNetworks: Output<List<AclEntryArgs>>? = null, enablePrivatePathForGoogleCloudServices: Output<Boolean>? = null, ipv4Enabled: Output<Boolean>? = null, privateNetwork: Output<String>? = null, requireSsl: Output<Boolean>? = null)

Functions

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

Properties

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

The name of the allocated ip range for the private ip Cloud SQL instance. For example: "google-managed-services-default". If set, the instance ip will be created in the allocated range. The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])?.

Link copied to clipboard
val authorizedNetworks: Output<List<AclEntryArgs>>? = null

The list of external networks that are allowed to connect to the instance using the IP. In 'CIDR' notation, also known as 'slash' notation (for example: 157.197.200.0/24).

Link copied to clipboard

Controls connectivity to private IP instances from Google services, such as BigQuery.

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

Whether the instance is assigned a public IP address or not.

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

The resource link for the VPC network from which the Cloud SQL instance is accessible for private IP. For example, /projects/myProject/global/networks/default. This setting can be updated, but it cannot be removed after it is set.

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

Whether SSL connections over IP are enforced or not.