Class: Google::Apis::JobsV2::CustomAttributeHistogramRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CustomAttributeHistogramRequest

Returns a new instance of CustomAttributeHistogramRequest.



826
827
828
# File 'generated/google/apis/jobs_v2/classes.rb', line 826

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#keyString

Required. Specifies the custom field key to perform a histogram on. If specified without long_value_histogram_bucketing_option, histogram on string values of the given key is triggered, otherwise histogram is performed on long values. Corresponds to the JSON property key

Returns:

  • (String)


811
812
813
# File 'generated/google/apis/jobs_v2/classes.rb', line 811

def key
  @key
end

#long_value_histogram_bucketing_optionGoogle::Apis::JobsV2::NumericBucketingOption

Input only. Use this field to specify bucketing option for the histogram search response. Corresponds to the JSON property longValueHistogramBucketingOption



817
818
819
# File 'generated/google/apis/jobs_v2/classes.rb', line 817

def long_value_histogram_bucketing_option
  @long_value_histogram_bucketing_option
end

#string_value_histogramBoolean 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

Returns:

  • (Boolean)


823
824
825
# File 'generated/google/apis/jobs_v2/classes.rb', line 823

def string_value_histogram
  @string_value_histogram
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



831
832
833
834
835
# File 'generated/google/apis/jobs_v2/classes.rb', line 831

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