Class: Google::Bigtable::V2::Mutation::SetCell
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Bigtable::V2::Mutation::SetCell
 
 
- Defined in:
 - lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/data.rb
 
Overview
A Mutation which sets the value of the specified cell.
Instance Attribute Summary collapse
- 
  
    
      #column_qualifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The qualifier of the column into which new data should be written.
 - 
  
    
      #family_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the family into which new data should be written.
 - 
  
    
      #timestamp_micros  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The timestamp of the cell into which new data should be written.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value to be written into the specified cell.
 
Instance Attribute Details
#column_qualifier ⇒ String
Returns The qualifier of the column into which new data should be written. Can be any byte string, including the empty string.
      439  | 
    
      # File 'lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/data.rb', line 439 class SetCell; end  | 
  
#family_name ⇒ String
Returns The name of the family into which new data should be written. Must match +[-_.a-zA-Z0-9]++
      439  | 
    
      # File 'lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/data.rb', line 439 class SetCell; end  | 
  
#timestamp_micros ⇒ Integer
Returns The timestamp of the cell into which new data should be written. Use -1 for current Bigtable server time. Otherwise, the client should set this value itself, noting that the default value is a timestamp of zero if the field is left unspecified. Values must match the granularity of the table (e.g. micros, millis).
      439  | 
    
      # File 'lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/data.rb', line 439 class SetCell; end  | 
  
#value ⇒ String
Returns The value to be written into the specified cell.
      439  | 
    
      # File 'lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/data.rb', line 439 class SetCell; end  |