Class XPSColumnSpec
Inheritance
XPSColumnSpec
Assembly: Google.Apis.CloudNaturalLanguage.v2.dll
Syntax
public class XPSColumnSpec : IDirectResponseSchema
Properties
ColumnId
The unique id of the column. When Preprocess, the Tables BE will popuate the order id of the column, which
reflects the order of the column inside the table, i.e. 0 means the first column in the table, N-1 means the
last column. AutoML BE will persist this order id in Spanner and set the order id here when calling
RefreshTablesStats and Train. Note: it's different than the column_spec_id that is generated in AutoML BE.
Declaration
[JsonProperty("columnId")]
public virtual int? ColumnId { get; set; }
Property Value
DataStats
The data stats of the column. It's outputed in RefreshTablesStats and a required input for Train.
Declaration
[JsonProperty("dataStats")]
public virtual XPSDataStats DataStats { get; set; }
Property Value
DataType
The data type of the column. It's outputed in Preprocess rpc and a required input for RefreshTablesStats and
Train.
Declaration
[JsonProperty("dataType")]
public virtual XPSDataType DataType { get; set; }
Property Value
DisplayName
The display name of the column. It's outputed in Preprocess and a required input for RefreshTablesStats and
Train.
Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
Declaration
[JsonProperty("forecastingMetadata")]
public virtual XPSColumnSpecForecastingMetadata ForecastingMetadata { get; set; }
Property Value
It's outputed in RefreshTablesStats, and a required input in Train.
Declaration
[JsonProperty("topCorrelatedColumns")]
public virtual IList<XPSColumnSpecCorrelatedColumn> TopCorrelatedColumns { get; set; }
Property Value
Implements