Class: Google::Apis::ComputeBeta::Metadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::Metadata
 
 
- Defined in:
 - generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb 
Overview
A metadata key/value entry.
Defined Under Namespace
Classes: Item
Instance Attribute Summary collapse
- 
  
    
      #fingerprint  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies a fingerprint for this request, which is essentially a hash of the metadata's contents and used for optimistic locking.
 - 
  
    
      #items  ⇒ Array<Google::Apis::ComputeBeta::Metadata::Item> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Array of key/value pairs.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Type of the resource.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Metadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Metadata.
 - 
  
    
      #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) ⇒ Metadata
Returns a new instance of Metadata
      12883 12884 12885  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 12883 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#fingerprint ⇒ String
Specifies a fingerprint for this request, which is essentially a hash of the
metadata's contents and used for optimistic locking. The fingerprint is
initially generated by Compute Engine and changes after every request to
modify or update metadata. You must always provide an up-to-date fingerprint
hash in order to update or change metadata.
To see the latest fingerprint, make a get() request to retrieve the resource.
Corresponds to the JSON property fingerprint
NOTE: Values are automatically base64 encoded/decoded in the client library.
      12870 12871 12872  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 12870 def fingerprint @fingerprint end  | 
  
#items ⇒ Array<Google::Apis::ComputeBeta::Metadata::Item>
Array of key/value pairs. The total size of all keys and values must be less
than 512 KB.
Corresponds to the JSON property items
      12876 12877 12878  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 12876 def items @items end  | 
  
#kind ⇒ String
[Output Only] Type of the resource. Always compute#metadata for metadata.
Corresponds to the JSON property kind
      12881 12882 12883  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 12881 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      12888 12889 12890 12891 12892  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 12888 def update!(**args) @fingerprint = args[:fingerprint] if args.key?(:fingerprint) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end  |