Class: Google::Apis::WorkstationsV1beta::EphemeralDirectory

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

Overview

An ephemeral directory which won't persist across workstation sessions. It is freshly created on every workstation start operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EphemeralDirectory

Returns a new instance of EphemeralDirectory.



407
408
409
# File 'lib/google/apis/workstations_v1beta/classes.rb', line 407

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

Instance Attribute Details

#gce_pdGoogle::Apis::WorkstationsV1beta::GcePersistentDisk

An EphemeralDirectory is backed by a Compute Engine persistent disk. Corresponds to the JSON property gcePd



400
401
402
# File 'lib/google/apis/workstations_v1beta/classes.rb', line 400

def gce_pd
  @gce_pd
end

#mount_pathString

Required. Location of this directory in the running workstation. Corresponds to the JSON property mountPath

Returns:

  • (String)


405
406
407
# File 'lib/google/apis/workstations_v1beta/classes.rb', line 405

def mount_path
  @mount_path
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



412
413
414
415
# File 'lib/google/apis/workstations_v1beta/classes.rb', line 412

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