Class: Google::Apis::GenomicsV1::NfsMount

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

Overview

Configuration for an NFSMount to be attached to the VM.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NfsMount

Returns a new instance of NfsMount.



541
542
543
# File 'lib/google/apis/genomics_v1/classes.rb', line 541

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

Instance Attribute Details

#targetString

A target NFS mount. The target must be specified as address:/mount". Corresponds to the JSON propertytarget`

Returns:

  • (String)


539
540
541
# File 'lib/google/apis/genomics_v1/classes.rb', line 539

def target
  @target
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



546
547
548
# File 'lib/google/apis/genomics_v1/classes.rb', line 546

def update!(**args)
  @target = args[:target] if args.key?(:target)
end