Class: Google::Apis::LifesciencesV2beta::NfsMount
- Inherits:
-
Object
- Object
- Google::Apis::LifesciencesV2beta::NfsMount
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/lifesciences_v2beta/classes.rb,
lib/google/apis/lifesciences_v2beta/representations.rb,
lib/google/apis/lifesciences_v2beta/representations.rb
Overview
Configuration for an NFSMount to be attached to the VM.
Instance Attribute Summary collapse
-
#target ⇒ String
A target NFS mount.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NfsMount
constructor
A new instance of NfsMount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NfsMount
Returns a new instance of NfsMount.
804 805 806 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 804 def initialize(**args) update!(**args) end |
Instance Attribute Details
#target ⇒ String
A target NFS mount. The target must be specified as address:/mount".
Corresponds to the JSON propertytarget`
802 803 804 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 802 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
809 810 811 |
# File 'lib/google/apis/lifesciences_v2beta/classes.rb', line 809 def update!(**args) @target = args[:target] if args.key?(:target) end |