Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Restrictions on numeric values.
Instance Attribute Summary collapse
-
#namespace ⇒ String
Required.
-
#value_column ⇒ String
Optional.
-
#value_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict
constructor
A new instance of GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict
Returns a new instance of GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict.
21563 21564 21565 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21563 def initialize(**args) update!(**args) end |
Instance Attribute Details
#namespace ⇒ String
Required. The namespace of the restrict.
Corresponds to the JSON property namespace
21550 21551 21552 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21550 def namespace @namespace end |
#value_column ⇒ String
Optional. The column containing the numeric value.
Corresponds to the JSON property valueColumn
21555 21556 21557 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21555 def value_column @value_column end |
#value_type ⇒ String
Required. Numeric type of the restrict. Must be consistent for all datapoints
within the namespace.
Corresponds to the JSON property valueType
21561 21562 21563 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21561 def value_type @value_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21568 21569 21570 21571 21572 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21568 def update!(**args) @namespace = args[:namespace] if args.key?(:namespace) @value_column = args[:value_column] if args.key?(:value_column) @value_type = args[:value_type] if args.key?(:value_type) end |