Class: Google::Cloud::AIPlatform::V1::FeatureGroup::BigQuery
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::FeatureGroup::BigQuery
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/feature_group.rb
Overview
Input source type for BigQuery Tables and Views.
Defined Under Namespace
Classes: TimeSeries
Instance Attribute Summary collapse
-
#big_query_source ⇒ ::Google::Cloud::AIPlatform::V1::BigQuerySource
Required.
-
#entity_id_columns ⇒ ::Array<::String>
Optional.
-
#time_series ⇒ ::Google::Cloud::AIPlatform::V1::FeatureGroup::BigQuery::TimeSeries
Optional.
Instance Attribute Details
#big_query_source ⇒ ::Google::Cloud::AIPlatform::V1::BigQuerySource
Returns Required. Immutable. The BigQuery source URI that points to either a BigQuery Table or View.
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'proto_docs/google/cloud/aiplatform/v1/feature_group.rb', line 81 class BigQuery include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] timestamp_column # @return [::String] # Optional. Column hosting timestamp values for a time-series source. # Will be used to determine the latest `feature_values` for each entity. # Optional. If not provided, column named `feature_timestamp` of # type `TIMESTAMP` will be used. class TimeSeries include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#entity_id_columns ⇒ ::Array<::String>
Returns Optional. Columns to construct entity_id / row keys.
If not provided defaults to entity_id
.
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'proto_docs/google/cloud/aiplatform/v1/feature_group.rb', line 81 class BigQuery include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] timestamp_column # @return [::String] # Optional. Column hosting timestamp values for a time-series source. # Will be used to determine the latest `feature_values` for each entity. # Optional. If not provided, column named `feature_timestamp` of # type `TIMESTAMP` will be used. class TimeSeries include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#time_series ⇒ ::Google::Cloud::AIPlatform::V1::FeatureGroup::BigQuery::TimeSeries
Returns 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.
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'proto_docs/google/cloud/aiplatform/v1/feature_group.rb', line 81 class BigQuery include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] timestamp_column # @return [::String] # Optional. Column hosting timestamp values for a time-series source. # Will be used to determine the latest `feature_values` for each entity. # Optional. If not provided, column named `feature_timestamp` of # type `TIMESTAMP` will be used. class TimeSeries include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |