Class: Google::Apis::GenomicsV2alpha1::NfsMount

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/genomics_v2alpha1/classes.rb,
generated/google/apis/genomics_v2alpha1/representations.rb,
generated/google/apis/genomics_v2alpha1/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.



738
739
740
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 738

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)


736
737
738
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 736

def target
  @target
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



743
744
745
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 743

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