Class: Google::Apis::ComputeV1::Image::RawDisk
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::Image::RawDisk
 
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
 generated/google/apis/compute_v1/representations.rb,
 generated/google/apis/compute_v1/representations.rb
Overview
The parameters of the raw disk image.
Instance Attribute Summary collapse
- 
  
    
      #container_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The format used to encode and transmit the block device, which should be TAR. 
- 
  
    
      #sha1_checksum  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An optional SHA1 checksum of the disk image before unpackaging; provided by the client when the disk image is created. 
- 
  
    
      #source  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The full Google Cloud Storage URL where the disk image is stored. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RawDisk 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RawDisk. 
- 
  
    
      #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) ⇒ RawDisk
Returns a new instance of RawDisk
| 6364 6365 6366 | # File 'generated/google/apis/compute_v1/classes.rb', line 6364 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#container_type ⇒ String
The format used to encode and transmit the block device, which should be TAR.
This is just a container and transmission format and not a runtime format.
Provided by the client when the disk image is created.
Corresponds to the JSON property containerType
| 6350 6351 6352 | # File 'generated/google/apis/compute_v1/classes.rb', line 6350 def container_type @container_type end | 
#sha1_checksum ⇒ String
An optional SHA1 checksum of the disk image before unpackaging; provided by
the client when the disk image is created.
Corresponds to the JSON property sha1Checksum
| 6356 6357 6358 | # File 'generated/google/apis/compute_v1/classes.rb', line 6356 def sha1_checksum @sha1_checksum end | 
#source ⇒ String
The full Google Cloud Storage URL where the disk image is stored. You must
provide either this property or the sourceDisk property but not both.
Corresponds to the JSON property source
| 6362 6363 6364 | # File 'generated/google/apis/compute_v1/classes.rb', line 6362 def source @source end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 6369 6370 6371 6372 6373 | # File 'generated/google/apis/compute_v1/classes.rb', line 6369 def update!(**args) @container_type = args[:container_type] if args.key?(:container_type) @sha1_checksum = args[:sha1_checksum] if args.key?(:sha1_checksum) @source = args[:source] if args.key?(:source) end |