Class: Google::Apis::AppengineV1::Volume

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

Overview

Volumes mounted within the app container. Only applicable in the App Engine flexible environment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Volume

Returns a new instance of Volume.



3445
3446
3447
# File 'lib/google/apis/appengine_v1/classes.rb', line 3445

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

Instance Attribute Details

#nameString

Unique name for the volume. Corresponds to the JSON property name

Returns:

  • (String)


3433
3434
3435
# File 'lib/google/apis/appengine_v1/classes.rb', line 3433

def name
  @name
end

#size_gbFloat

Volume size in gigabytes. Corresponds to the JSON property sizeGb

Returns:

  • (Float)


3438
3439
3440
# File 'lib/google/apis/appengine_v1/classes.rb', line 3438

def size_gb
  @size_gb
end

#volume_typeString

Underlying volume type, e.g. 'tmpfs'. Corresponds to the JSON property volumeType

Returns:

  • (String)


3443
3444
3445
# File 'lib/google/apis/appengine_v1/classes.rb', line 3443

def volume_type
  @volume_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3450
3451
3452
3453
3454
# File 'lib/google/apis/appengine_v1/classes.rb', line 3450

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