Class: Google::Apis::JobsV2::CustomAttributeHistogramRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::JobsV2::CustomAttributeHistogramRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/jobs_v2/classes.rb,
 generated/google/apis/jobs_v2/representations.rb,
 generated/google/apis/jobs_v2/representations.rb
Overview
Custom attributes histogram request. An error will be thrown if neither string_value_histogram or long_value_histogram_bucketing_option has been defined.
Instance Attribute Summary collapse
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Required. 
- 
  
    
      #long_value_histogram_bucketing_option  ⇒ Google::Apis::JobsV2::NumericBucketingOption 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Input only. 
- 
  
    
      #string_value_histogram  ⇒ Boolean 
    
    
      (also: #string_value_histogram?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CustomAttributeHistogramRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CustomAttributeHistogramRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomAttributeHistogramRequest
Returns a new instance of CustomAttributeHistogramRequest
| 837 838 839 | # File 'generated/google/apis/jobs_v2/classes.rb', line 837 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#key ⇒ String
Required.
Specifies the custom field key to perform a histogram on. If
specified without long_value_buckets or long_value_min_max, a
histogram on string values of the given key is triggered,
otherwise histogram is performed on long values.
Corresponds to the JSON property key
| 822 823 824 | # File 'generated/google/apis/jobs_v2/classes.rb', line 822 def key @key end | 
#long_value_histogram_bucketing_option ⇒ Google::Apis::JobsV2::NumericBucketingOption
Input only.
Use this field to specify bucketing option for the histogram search response.
Corresponds to the JSON property longValueHistogramBucketingOption
| 828 829 830 | # File 'generated/google/apis/jobs_v2/classes.rb', line 828 def long_value_histogram_bucketing_option @long_value_histogram_bucketing_option end | 
#string_value_histogram ⇒ Boolean Also known as: string_value_histogram?
Optional. If set to true, the response will include the histogram value for
each key as a string.
Corresponds to the JSON property stringValueHistogram
| 834 835 836 | # File 'generated/google/apis/jobs_v2/classes.rb', line 834 def string_value_histogram @string_value_histogram end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 842 843 844 845 846 | # File 'generated/google/apis/jobs_v2/classes.rb', line 842 def update!(**args) @key = args[:key] if args.key?(:key) @long_value_histogram_bucketing_option = args[:long_value_histogram_bucketing_option] if args.key?(:long_value_histogram_bucketing_option) @string_value_histogram = args[:string_value_histogram] if args.key?(:string_value_histogram) end |