File tree 2 files changed +3
-5
lines changed
vertexai/resources/preview/feature_store
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ def create(
92
92
cls ,
93
93
name : str ,
94
94
source : FeatureGroupBigQuerySource = None ,
95
- entity_id_columns : Optional [List [str ]] = None ,
96
95
labels : Optional [Dict [str , str ]] = None ,
97
96
description : Optional [str ] = None ,
98
97
project : Optional [str ] = None ,
@@ -107,9 +106,6 @@ def create(
107
106
Args:
108
107
name: The name of the feature group.
109
108
source: The BigQuery source of the feature group.
110
- entity_id_columns:
111
- The entity ID columns. If not specified, defaults to
112
- ['entity_id'].
113
109
labels:
114
110
The labels with user-defined metadata to organize your
115
111
FeatureGroup.
Original file line number Diff line number Diff line change @@ -170,5 +170,7 @@ def as_dict(self) -> Dict[str, Any]:
170
170
class FeatureGroupBigQuerySource :
171
171
"""BigQuery source for the Feature Group."""
172
172
173
+ # The URI for the BigQuery table/view.
173
174
uri : str
174
- entity_id_columns : List [str ]
175
+ # The entity ID columns. If not specified, defaults to ['entity_id'].
176
+ entity_id_columns : Optional [List [str ]] = None
You can’t perform that action at this time.
0 commit comments