Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict

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 string values.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict

Returns a new instance of GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict.



21594
21595
21596
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21594

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

Instance Attribute Details

#allow_columnArray<String>

Optional. The columns containing the allow values. Corresponds to the JSON property allowColumn

Returns:

  • (Array<String>)


21582
21583
21584
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21582

def allow_column
  @allow_column
end

#deny_columnArray<String>

Optional. The columns containing the deny values. Corresponds to the JSON property denyColumn

Returns:

  • (Array<String>)


21587
21588
21589
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21587

def deny_column
  @deny_column
end

#namespaceString

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

Returns:

  • (String)


21592
21593
21594
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21592

def namespace
  @namespace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21599
21600
21601
21602
21603
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21599

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