FirewallRulesArgs

data class FirewallRulesArgs(val azureServices: Output<Either<String, AllowType>>? = null, val callerClientIP: Output<Either<String, AllowType>>? = null, val ipRanges: Output<List<String>>? = null) : ConvertibleToJava<FirewallRulesArgs>

Target service's firewall rules. to allow connections from source service.

Constructors

Link copied to clipboard
constructor(azureServices: Output<Either<String, AllowType>>? = null, callerClientIP: Output<Either<String, AllowType>>? = null, ipRanges: Output<List<String>>? = null)

Properties

Link copied to clipboard
val azureServices: Output<Either<String, AllowType>>? = null

Allow Azure services to access the target service if true.

Link copied to clipboard
val callerClientIP: Output<Either<String, AllowType>>? = null

Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.

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

This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.

Functions

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