Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IdMatcher

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Matcher for Features of an EntityType by Feature ID.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1IdMatcher

Returns a new instance of GoogleCloudAiplatformV1IdMatcher.



10894
10895
10896
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10894

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

Instance Attribute Details

#idsArray<String>

Required. The following are accepted as ids: * A single-element list containing only *, which selects all Features in the target EntityType, or * A list containing only Feature IDs, which selects only Features with those IDs in the target EntityType. Corresponds to the JSON property ids

Returns:

  • (Array<String>)


10892
10893
10894
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10892

def ids
  @ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10899
10900
10901
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10899

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