Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource
- 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
Instance Attribute Summary collapse
-
#entity_id_columns ⇒ Array<String>
Required.
-
#uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource
constructor
A new instance of GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource
Returns a new instance of GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource.
7279 7280 7281 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7279 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_id_columns ⇒ Array<String>
Required. Columns to construct entity_id / row keys. Start by supporting 1
only.
Corresponds to the JSON property entityIdColumns
7271 7272 7273 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7271 def entity_id_columns @entity_id_columns end |
#uri ⇒ String
Required. The BigQuery view URI that will be materialized on each sync trigger
based on FeatureView.SyncConfig.
Corresponds to the JSON property uri
7277 7278 7279 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7277 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7284 7285 7286 7287 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7284 def update!(**args) @entity_id_columns = args[:entity_id_columns] if args.key?(:entity_id_columns) @uri = args[:uri] if args.key?(:uri) end |