class Google::Apis::LifesciencesV2beta::Mount

Carries information about a particular disk mount inside a container.

Attributes

disk[RW]

The name of the disk to mount, as specified in the resources section. Corresponds to the JSON property `disk` @return [String]

path[RW]

The path to mount the disk inside the container. Corresponds to the JSON property `path` @return [String]

read_only[RW]

If true, the disk is mounted read-only inside the container. Corresponds to the JSON property `readOnly` @return [Boolean]

read_only?[RW]

If true, the disk is mounted read-only inside the container. Corresponds to the JSON property `readOnly` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/lifesciences_v2beta/classes.rb, line 783
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/lifesciences_v2beta/classes.rb, line 788
def update!(**args)
  @disk = args[:disk] if args.key?(:disk)
  @path = args[:path] if args.key?(:path)
  @read_only = args[:read_only] if args.key?(:read_only)
end