Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict

Returns a new instance of GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict.



21497
21498
21499
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21497

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

Instance Attribute Details

#namespaceString

Required. The namespace of the restrict. Corresponds to the JSON property namespace

Returns:

  • (String)


21484
21485
21486
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21484

def namespace
  @namespace
end

#value_columnString

Optional. The column containing the numeric value. Corresponds to the JSON property valueColumn

Returns:

  • (String)


21489
21490
21491
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21489

def value_column
  @value_column
end

#value_typeString

Required. Numeric type of the restrict. Must be consistent for all datapoints within the namespace. Corresponds to the JSON property valueType

Returns:

  • (String)


21495
21496
21497
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21495

def value_type
  @value_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21502
21503
21504
21505
21506
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21502

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