Database Instance Settings Ip Configuration Args
data class DatabaseInstanceSettingsIpConfigurationArgs(val allocatedIpRange: Output<String>? = null, val authorizedNetworks: Output<List<DatabaseInstanceSettingsIpConfigurationAuthorizedNetworkArgs>>? = null, val enablePrivatePathForGoogleCloudServices: Output<Boolean>? = null, val ipv4Enabled: Output<Boolean>? = null, val privateNetwork: Output<String>? = null, val pscConfigs: Output<List<DatabaseInstanceSettingsIpConfigurationPscConfigArgs>>? = null, val requireSsl: Output<Boolean>? = null) : ConvertibleToJava<DatabaseInstanceSettingsIpConfigurationArgs>
Constructors
Link copied to clipboard
fun DatabaseInstanceSettingsIpConfigurationArgs(allocatedIpRange: Output<String>? = null, authorizedNetworks: Output<List<DatabaseInstanceSettingsIpConfigurationAuthorizedNetworkArgs>>? = null, enablePrivatePathForGoogleCloudServices: Output<Boolean>? = null, ipv4Enabled: Output<Boolean>? = null, privateNetwork: Output<String>? = null, pscConfigs: Output<List<DatabaseInstanceSettingsIpConfigurationPscConfigArgs>>? = null, requireSsl: Output<Boolean>? = null)
Functions
Properties
Link copied to clipboard
The name of the allocated ip range for the private ip CloudSQL 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?.
Link copied to clipboard
val authorizedNetworks: Output<List<DatabaseInstanceSettingsIpConfigurationAuthorizedNetworkArgs>>? = null
Link copied to clipboard
The VPC network from which the Cloud SQL instance is accessible for private IP. For example, projects/myProject/global/networks/default. Specifying a network enables private IP. At least ipv4_enabled
must be enabled or a private_network
must be configured. This setting can be updated, but it cannot be removed after it is set.
Link copied to clipboard