Class: Google::Apis::AppengineV1beta::Volume

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/appengine_v1beta/classes.rb,
lib/google/apis/appengine_v1beta/representations.rb,
lib/google/apis/appengine_v1beta/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.



3092
3093
3094
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3092

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

Instance Attribute Details

#nameString

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

Returns:

  • (String)


3080
3081
3082
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3080

def name
  @name
end

#size_gbFloat

Volume size in gigabytes. Corresponds to the JSON property sizeGb

Returns:

  • (Float)


3085
3086
3087
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3085

def size_gb
  @size_gb
end

#volume_typeString

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

Returns:

  • (String)


3090
3091
3092
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3090

def volume_type
  @volume_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3097
3098
3099
3100
3101
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3097

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