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

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1StudyConfigParameterSpecMatchingParentCategoricalValueSpec

Returns a new instance of GoogleCloudMlV1StudyConfigParameterSpecMatchingParentCategoricalValueSpec.



272
273
274
# File 'generated/google/apis/ml_v1/classes.rb', line 272

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


270
271
272
# File 'generated/google/apis/ml_v1/classes.rb', line 270

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



277
278
279
# File 'generated/google/apis/ml_v1/classes.rb', line 277

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