Class: Google::Apis::CloudbuildV1::Volume
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudbuildV1::Volume
 
- Defined in:
- generated/google/apis/cloudbuild_v1/classes.rb,
 generated/google/apis/cloudbuild_v1/representations.rb,
 generated/google/apis/cloudbuild_v1/representations.rb
Overview
Volume describes a Docker container volume which is mounted into build steps in order to persist files across build step execution.
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of the volume to mount. 
- 
  
    
      #path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Path at which to mount the volume. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Volume 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Volume. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Volume
Returns a new instance of Volume
| 1250 1251 1252 | # File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1250 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#name ⇒ String
Name of the volume to mount.
Volume names must be unique per build step and must be valid names for
Docker volumes. Each named volume must be used by at least two build steps.
Corresponds to the JSON property name
| 1241 1242 1243 | # File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1241 def name @name end | 
#path ⇒ String
Path at which to mount the volume.
Paths must be absolute and cannot conflict with other volume paths on the
same build step or with certain reserved volume paths.
Corresponds to the JSON property path
| 1248 1249 1250 | # File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1248 def path @path end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1255 1256 1257 1258 | # File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1255 def update!(**args) @name = args[:name] if args.key?(:name) @path = args[:path] if args.key?(:path) end |