Class: Google::Apis::JobsV3::CustomAttributeHistogramRequest
- Inherits:
-
Object
- Object
- Google::Apis::JobsV3::CustomAttributeHistogramRequest
- 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
-
#key ⇒ String
Required.
-
#long_value_histogram_bucketing_option ⇒ Google::Apis::JobsV3::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.
Constructor Details
#initialize(**args) ⇒ CustomAttributeHistogramRequest
Returns a new instance of CustomAttributeHistogramRequest.
828 829 830 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 828 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_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
813 814 815 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 813 def key @key end |
#long_value_histogram_bucketing_option ⇒ Google::Apis::JobsV3::NumericBucketingOption
Input only. Use this field to specify bucketing option for the histogram
search response.
Corresponds to the JSON property longValueHistogramBucketingOption
819 820 821 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 819 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 includes the histogram value for each
key as a string.
Corresponds to the JSON property stringValueHistogram
825 826 827 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 825 def string_value_histogram @string_value_histogram end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
833 834 835 836 837 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 833 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 |