Class: Google::Apis::MlV1::GoogleCloudMlV1StudyConfigParameterSpecMatchingParentCategoricalValueSpec

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

Overview

Represents the spec to match categorical values from parent parameter.

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) ⇒ GoogleCloudMlV1StudyConfigParameterSpecMatchingParentCategoricalValueSpec

Returns a new instance of GoogleCloudMlV1StudyConfigParameterSpecMatchingParentCategoricalValueSpec.



288
289
290
# File 'generated/google/apis/ml_v1/classes.rb', line 288

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

Instance Attribute Details

#valuesArray<String>

Matches values of the parent parameter with type 'CATEGORICAL'. All values must exist in categorical_value_spec of parent parameter. Corresponds to the JSON property values

Returns:

  • (Array<String>)


286
287
288
# File 'generated/google/apis/ml_v1/classes.rb', line 286

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



293
294
295
# File 'generated/google/apis/ml_v1/classes.rb', line 293

def update!(**args)
  @values = args[:values] if args.key?(:values)
end