class Google::Apis::GenomicsV2alpha1::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/genomics_v2alpha1/classes.rb, line 692
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/genomics_v2alpha1/classes.rb, line 697
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