Permission Args
data class PermissionArgs(val constraints: Output<List<PermissionConstraintArgs>>? = null, val hosts: Output<List<String>>? = null, val methods: Output<List<String>>? = null, val notHosts: Output<List<String>>? = null, val notMethods: Output<List<String>>? = null, val notPaths: Output<List<String>>? = null, val notPorts: Output<List<String>>? = null, val paths: Output<List<String>>? = null, val ports: Output<List<String>>? = null) : ConvertibleToJava<PermissionArgs>
Deprecated All fields defined in a permission are ANDed.
Constructors
Link copied to clipboard
fun PermissionArgs(constraints: Output<List<PermissionConstraintArgs>>? = null, hosts: Output<List<String>>? = null, methods: Output<List<String>>? = null, notHosts: Output<List<String>>? = null, notMethods: Output<List<String>>? = null, notPaths: Output<List<String>>? = null, notPorts: Output<List<String>>? = null, paths: Output<List<String>>? = null, ports: Output<List<String>>? = null)