Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup

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

Features belonging to a single feature group that will be synced to Online Store.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup

Returns a new instance of GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup.



8830
8831
8832
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8830

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

Instance Attribute Details

#feature_group_idString

Required. Identifier of the feature group. Corresponds to the JSON property featureGroupId

Returns:

  • (String)


8823
8824
8825
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8823

def feature_group_id
  @feature_group_id
end

#feature_idsArray<String>

Required. Identifiers of features under the feature group. Corresponds to the JSON property featureIds

Returns:

  • (Array<String>)


8828
8829
8830
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8828

def feature_ids
  @feature_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8835
8836
8837
8838
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8835

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