Class: Google::Apis::FileV1::FileShareConfig
- Inherits:
-
Object
- Object
- Google::Apis::FileV1::FileShareConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/file_v1/classes.rb,
lib/google/apis/file_v1/representations.rb,
lib/google/apis/file_v1/representations.rb
Overview
File share configuration for the instance.
Instance Attribute Summary collapse
-
#capacity_gb ⇒ Fixnum
File share capacity in gigabytes (GB).
-
#name ⇒ String
Required.
-
#nfs_export_options ⇒ Array<Google::Apis::FileV1::NfsExportOptions>
Nfs Export Options.
-
#source_backup ⇒ String
The resource name of the backup, in the format
projects/
project_number/ locations/
location_id/backups/
backup_id``, that this file share has been restored from.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FileShareConfig
constructor
A new instance of FileShareConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FileShareConfig
Returns a new instance of FileShareConfig.
300 301 302 |
# File 'lib/google/apis/file_v1/classes.rb', line 300 def initialize(**args) update!(**args) end |
Instance Attribute Details
#capacity_gb ⇒ Fixnum
File share capacity in gigabytes (GB). Filestore defines 1 GB as 1024^3 bytes.
Corresponds to the JSON property capacityGb
278 279 280 |
# File 'lib/google/apis/file_v1/classes.rb', line 278 def capacity_gb @capacity_gb end |
#name ⇒ String
Required. The name of the file share. Must use 1-16 characters for the basic
service tier and 1-63 characters for all other service tiers. Must use
lowercase letters, numbers, or underscores [a-z0-9_]. Must start with a letter.
Immutable.
Corresponds to the JSON property name
286 287 288 |
# File 'lib/google/apis/file_v1/classes.rb', line 286 def name @name end |
#nfs_export_options ⇒ Array<Google::Apis::FileV1::NfsExportOptions>
Nfs Export Options. There is a limit of 10 export options per file share.
Corresponds to the JSON property nfsExportOptions
291 292 293 |
# File 'lib/google/apis/file_v1/classes.rb', line 291 def @nfs_export_options end |
#source_backup ⇒ String
The resource name of the backup, in the format projects/
project_number/
locations/
location_id/backups/
backup_id`, that this file share has been
restored from.
Corresponds to the JSON property
sourceBackup`
298 299 300 |
# File 'lib/google/apis/file_v1/classes.rb', line 298 def source_backup @source_backup end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
305 306 307 308 309 310 |
# File 'lib/google/apis/file_v1/classes.rb', line 305 def update!(**args) @capacity_gb = args[:capacity_gb] if args.key?(:capacity_gb) @name = args[:name] if args.key?(:name) @nfs_export_options = args[:nfs_export_options] if args.key?(:nfs_export_options) @source_backup = args[:source_backup] if args.key?(:source_backup) end |