Class: Google::Cloud::Run::V2::EmptyDirVolumeSource
- Inherits:
-
Object
- Object
- Google::Cloud::Run::V2::EmptyDirVolumeSource
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/run/v2/k8s.min.rb
Overview
In memory (tmpfs) ephemeral storage. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
Defined Under Namespace
Modules: Medium
Instance Attribute Summary collapse
-
#medium ⇒ ::Google::Cloud::Run::V2::EmptyDirVolumeSource::Medium
The medium on which the data is stored.
-
#size_limit ⇒ ::String
Limit on the storage usable by this EmptyDir volume.
Instance Attribute Details
#medium ⇒ ::Google::Cloud::Run::V2::EmptyDirVolumeSource::Medium
347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
# File 'proto_docs/google/cloud/run/v2/k8s.min.rb', line 347 class EmptyDirVolumeSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The different types of medium supported for EmptyDir. module Medium # When not specified, falls back to the default implementation which # is currently in memory (this may change over time). MEDIUM_UNSPECIFIED = 0 # Explicitly set the EmptyDir to be in memory. Uses tmpfs. MEMORY = 1 end end |
#size_limit ⇒ ::String
347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
# File 'proto_docs/google/cloud/run/v2/k8s.min.rb', line 347 class EmptyDirVolumeSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The different types of medium supported for EmptyDir. module Medium # When not specified, falls back to the default implementation which # is currently in memory (this may change over time). MEDIUM_UNSPECIFIED = 0 # Explicitly set the EmptyDir to be in memory. Uses tmpfs. MEMORY = 1 end end |