Nfs Access Rule Args
data class NfsAccessRuleArgs(val access: Output<Either<String, NfsAccessRuleAccess>>, val anonymousGID: Output<String>? = null, val anonymousUID: Output<String>? = null, val filter: Output<String>? = null, val rootSquash: Output<Boolean>? = null, val scope: Output<Either<String, NfsAccessRuleScope>>, val submountAccess: Output<Boolean>? = null, val suid: Output<Boolean>? = null) : ConvertibleToJava<NfsAccessRuleArgs>
Rule to place restrictions on portions of the cache namespace being presented to clients.
Constructors
Link copied to clipboard
fun NfsAccessRuleArgs(access: Output<Either<String, NfsAccessRuleAccess>>, anonymousGID: Output<String>? = null, anonymousUID: Output<String>? = null, filter: Output<String>? = null, rootSquash: Output<Boolean>? = null, scope: Output<Either<String, NfsAccessRuleScope>>, submountAccess: Output<Boolean>? = null, suid: Output<Boolean>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
Filter applied to the scope for this rule. The filter's format depends on its scope. 'default' scope matches all clients and has no filter value. 'network' scope takes a filter in CIDR format (for example, 10.99.1.0/24). 'host' takes an IP address or fully qualified domain name as filter. If a client does not match any filter rule and there is no default rule, access is denied.
Link copied to clipboard