Class GoogleCloudAiplatformV1beta1FeatureValueDestination
A destination location for Feature values and format.
Implements
Inherited Members
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1FeatureValueDestination : IDirectResponseSchema
Properties
BigqueryDestination
Output in BigQuery format. BigQueryDestination.output_uri in FeatureValueDestination.bigquery_destination must refer to a table.
Declaration
[JsonProperty("bigqueryDestination")]
public virtual GoogleCloudAiplatformV1beta1BigQueryDestination BigqueryDestination { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1beta1BigQueryDestination |
CsvDestination
Output in CSV format. Array Feature value types are not allowed in CSV format.
Declaration
[JsonProperty("csvDestination")]
public virtual GoogleCloudAiplatformV1beta1CsvDestination CsvDestination { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1beta1CsvDestination |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
TfrecordDestination
Output in TFRecord format. Below are the mapping from Feature value type in Featurestore to Feature value type in TFRecord: Value type in Featurestore | Value type in TFRecord DOUBLE, DOUBLE_ARRAY | FLOAT_LIST INT64, INT64_ARRAY | INT64_LIST STRING, STRING_ARRAY, BYTES | BYTES_LIST true -> byte_string("true"), false -> byte_string("false") BOOL, BOOL_ARRAY (true, false) | BYTES_LIST
Declaration
[JsonProperty("tfrecordDestination")]
public virtual GoogleCloudAiplatformV1beta1TFRecordDestination TfrecordDestination { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudAiplatformV1beta1TFRecordDestination |