Class: Google::Apis::AppengineV1::Volume
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::Volume
- 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
-
#name ⇒ String
Unique name for the volume.
-
#size_gb ⇒ Float
Volume size in gigabytes.
-
#volume_type ⇒ String
Underlying volume type, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Volume
constructor
A new instance of Volume.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Volume
Returns a new instance of Volume.
3482 3483 3484 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 3482 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Unique name for the volume.
Corresponds to the JSON property name
3470 3471 3472 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 3470 def name @name end |
#size_gb ⇒ Float
Volume size in gigabytes.
Corresponds to the JSON property sizeGb
3475 3476 3477 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 3475 def size_gb @size_gb end |
#volume_type ⇒ String
Underlying volume type, e.g. 'tmpfs'.
Corresponds to the JSON property volumeType
3480 3481 3482 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 3480 def volume_type @volume_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3487 3488 3489 3490 3491 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 3487 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 |