Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureGroupBigQuery

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

Input source type for BigQuery Tables and Views.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1FeatureGroupBigQuery

Returns a new instance of GoogleCloudAiplatformV1FeatureGroupBigQuery.



8171
8172
8173
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8171

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

Instance Attribute Details

#big_query_sourceGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQuerySource

The BigQuery location for the input content. Corresponds to the JSON property bigQuerySource



8155
8156
8157
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8155

def big_query_source
  @big_query_source
end

#entity_id_columnsArray<String>

Optional. Columns to construct entity_id / row keys. If not provided defaults to entity_id. Corresponds to the JSON property entityIdColumns

Returns:

  • (Array<String>)


8161
8162
8163
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8161

def entity_id_columns
  @entity_id_columns
end

#time_seriesGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureGroupBigQueryTimeSeries

Optional. If the source is a time-series source, this can be set to control how downstream sources (ex: FeatureView ) will treat time-series sources. If not set, will treat the source as a time-series source with feature_timestamp as timestamp column and no scan boundary. Corresponds to the JSON property timeSeries



8169
8170
8171
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8169

def time_series
  @time_series
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8176
8177
8178
8179
8180
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 8176

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)
  @time_series = args[:time_series] if args.key?(:time_series)
end