Class: Google::Apis::JobsV3::CustomAttributeHistogramRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/jobs_v3/classes.rb,
generated/google/apis/jobs_v3/representations.rb,
generated/google/apis/jobs_v3/representations.rb

Overview

Custom attributes histogram request. An error is 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.



881
882
883
# File 'generated/google/apis/jobs_v3/classes.rb', line 881

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)


866
867
868
# File 'generated/google/apis/jobs_v3/classes.rb', line 866

def key
  @key
end

#long_value_histogram_bucketing_optionGoogle::Apis::JobsV3::NumericBucketingOption

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



872
873
874
# File 'generated/google/apis/jobs_v3/classes.rb', line 872

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 includes the histogram value for each key as a string. Corresponds to the JSON property stringValueHistogram

Returns:

  • (Boolean)


878
879
880
# File 'generated/google/apis/jobs_v3/classes.rb', line 878

def string_value_histogram
  @string_value_histogram
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



886
887
888
889
890
# File 'generated/google/apis/jobs_v3/classes.rb', line 886

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