Class: Google::Apis::AppengineV1beta::Volume
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta::Volume
- 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
-
#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.
3526 3527 3528 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3526 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Unique name for the volume.
Corresponds to the JSON property name
3514 3515 3516 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3514 def name @name end |
#size_gb ⇒ Float
Volume size in gigabytes.
Corresponds to the JSON property sizeGb
3519 3520 3521 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3519 def size_gb @size_gb end |
#volume_type ⇒ String
Underlying volume type, e.g. 'tmpfs'.
Corresponds to the JSON property volumeType
3524 3525 3526 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3524 def volume_type @volume_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3531 3532 3533 3534 3535 |
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 3531 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 |