Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1IdMatcher
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1IdMatcher
- 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
Matcher for Features of an EntityType by Feature ID.
Instance Attribute Summary collapse
-
#ids ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1IdMatcher
constructor
A new instance of GoogleCloudAiplatformV1beta1IdMatcher.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1IdMatcher
Returns a new instance of GoogleCloudAiplatformV1beta1IdMatcher.
11772 11773 11774 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11772 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ids ⇒ Array<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
11770 11771 11772 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11770 def ids @ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11777 11778 11779 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11777 def update!(**args) @ids = args[:ids] if args.key?(:ids) end |