Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict
- 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
-
#allow_column ⇒ Array<String>
Optional.
-
#deny_column ⇒ Array<String>
Optional.
-
#namespace ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict
constructor
A new instance of GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict
Returns a new instance of GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict.
21528 21529 21530 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21528 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allow_column ⇒ Array<String>
Optional. The columns containing the allow values.
Corresponds to the JSON property allowColumn
21516 21517 21518 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21516 def allow_column @allow_column end |
#deny_column ⇒ Array<String>
Optional. The columns containing the deny values.
Corresponds to the JSON property denyColumn
21521 21522 21523 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21521 def deny_column @deny_column end |
#namespace ⇒ String
Required. The namespace of the restrict in the index.
Corresponds to the JSON property namespace
21526 21527 21528 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21526 def namespace @namespace end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21533 21534 21535 21536 21537 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21533 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 |