Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureGroupBigQuery
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureGroupBigQuery
- 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
Input source type for BigQuery Tables and Views.
Instance Attribute Summary collapse
-
#big_query_source ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQuerySource
The BigQuery location for the input content.
-
#entity_id_columns ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeatureGroupBigQuery
constructor
A new instance of GoogleCloudAiplatformV1beta1FeatureGroupBigQuery.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeatureGroupBigQuery
Returns a new instance of GoogleCloudAiplatformV1beta1FeatureGroupBigQuery.
6516 6517 6518 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6516 def initialize(**args) update!(**args) end |
Instance Attribute Details
#big_query_source ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQuerySource
The BigQuery location for the input content.
Corresponds to the JSON property bigQuerySource
6508 6509 6510 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6508 def big_query_source @big_query_source end |
#entity_id_columns ⇒ Array<String>
Optional. Columns to construct entity_id / row keys. Currently only supports 1
entity_id_column. If not provided defaults to entity_id.
Corresponds to the JSON property entityIdColumns
6514 6515 6516 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6514 def entity_id_columns @entity_id_columns end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6521 6522 6523 6524 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6521 def update!(**args) @big_query_source = args[:big_query_source] if args.key?(:big_query_source) @entity_id_columns = args[:entity_id_columns] if args.key?(:entity_id_columns) end |