Class: Google::Apis::FileV1::NfsExportOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/file_v1/classes.rb,
generated/google/apis/file_v1/representations.rb,
generated/google/apis/file_v1/representations.rb

Overview

NFS export options specifications.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NfsExportOptions

Returns a new instance of NfsExportOptions.



1115
1116
1117
# File 'generated/google/apis/file_v1/classes.rb', line 1115

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#access_modeString

Either READ_ONLY, for allowing only read requests on the exported directory, or READ_WRITE, for allowing both read and write requests. The default is READ_WRITE. Corresponds to the JSON property accessMode

Returns:

  • (String)


1083
1084
1085
# File 'generated/google/apis/file_v1/classes.rb', line 1083

def access_mode
  @access_mode
end

#anon_gidFixnum

An integer representing the anonymous group id with a default value of 65534. Anon_gid may only be set with squash_mode of ROOT_SQUASH. An error will be returned if this field is specified for other squash_mode settings. Corresponds to the JSON property anonGid

Returns:

  • (Fixnum)


1090
1091
1092
# File 'generated/google/apis/file_v1/classes.rb', line 1090

def anon_gid
  @anon_gid
end

#anon_uidFixnum

An integer representing the anonymous user id with a default value of 65534. Anon_uid may only be set with squash_mode of ROOT_SQUASH. An error will be returned if this field is specified for other squash_mode settings. Corresponds to the JSON property anonUid

Returns:

  • (Fixnum)


1097
1098
1099
# File 'generated/google/apis/file_v1/classes.rb', line 1097

def anon_uid
  @anon_uid
end

#ip_rangesArray<String>

List of either an IPv4 addresses in the format octet 1.octet 2.octet 3. octet 4 or CIDR ranges in the format octet 1.octet 2.octet 3.octet 4/ mask size which may mount the file share. Overlapping IP ranges are not allowed, both within and across NfsExportOptions. An error will be returned. The limit is 64 IP ranges/addresses for each FileShareConfig among all NfsExportOptions. Corresponds to the JSON property ipRanges

Returns:

  • (Array<String>)


1107
1108
1109
# File 'generated/google/apis/file_v1/classes.rb', line 1107

def ip_ranges
  @ip_ranges
end

#squash_modeString

Either NO_ROOT_SQUASH, for allowing root access on the exported directory, or ROOT_SQUASH, for not allowing root access. The default is NO_ROOT_SQUASH. Corresponds to the JSON property squashMode

Returns:

  • (String)


1113
1114
1115
# File 'generated/google/apis/file_v1/classes.rb', line 1113

def squash_mode
  @squash_mode
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1120
1121
1122
1123
1124
1125
1126
# File 'generated/google/apis/file_v1/classes.rb', line 1120

def update!(**args)
  @access_mode = args[:access_mode] if args.key?(:access_mode)
  @anon_gid = args[:anon_gid] if args.key?(:anon_gid)
  @anon_uid = args[:anon_uid] if args.key?(:anon_uid)
  @ip_ranges = args[:ip_ranges] if args.key?(:ip_ranges)
  @squash_mode = args[:squash_mode] if args.key?(:squash_mode)
end