Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2ValueFrequency
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb 
Overview
A value of a field, including its frequency.
Instance Attribute Summary collapse
- 
  
    
      #count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
How many times the value is contained in the field.
 - 
  
    
      #value  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Value 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Set of primitive values supported by the system.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2ValueFrequency 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2ValueFrequency.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ValueFrequency
Returns a new instance of GooglePrivacyDlpV2ValueFrequency.
      10200 10201 10202  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 10200 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#count ⇒ Fixnum
How many times the value is contained in the field.
Corresponds to the JSON property count
      10189 10190 10191  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 10189 def count @count end  | 
  
#value ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Value
Set of primitive values supported by the system. Note that for the purposes of
inspection or transformation, the number of bytes considered to comprise a '
Value' is based on its representation as a UTF-8 encoded string. For example,
if 'integer_value' is set to 123456789, the number of bytes would be counted
as 9, even though an int64 only holds up to 8 bytes of data.
Corresponds to the JSON property value
      10198 10199 10200  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 10198 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      10205 10206 10207 10208  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 10205 def update!(**args) @count = args[:count] if args.key?(:count) @value = args[:value] if args.key?(:value) end  |