class Google::Apis::AppengineV1beta4::Volume
Volumes mounted within the app container. Only applicable for VM runtimes.
Attributes
name[RW]
Unique name for the volume. Corresponds to the JSON property `name` @return [String]
size_gb[RW]
Volume
size in gigabytes. Corresponds to the JSON property `sizeGb` @return [Float]
volume_type[RW]
Underlying volume type, e.g. 'tmpfs'. Corresponds to the JSON property `volumeType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appengine_v1beta4/classes.rb, line 2271 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/appengine_v1beta4/classes.rb, line 2276 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