Class GoogleCloudDatacatalogV1beta1ColumnSchema
Representation of a column within a schema. Columns could be nested inside other columns.
Implements
Inherited Members
Namespace: Google.Apis.DataCatalog.v1beta1.Data
Assembly: Google.Apis.DataCatalog.v1beta1.dll
Syntax
public class GoogleCloudDatacatalogV1beta1ColumnSchema : IDirectResponseSchema
Properties
Column
Required. Name of the column.
Declaration
[JsonProperty("column")]
public virtual string Column { get; set; }
Property Value
Type | Description |
---|---|
string |
Description
Optional. Description of the column. Default value is an empty string.
Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Mode
Optional. A column's mode indicates whether the values in this column are required, nullable, etc. Only
NULLABLE
, REQUIRED
and REPEATED
are supported. Default mode is NULLABLE
.
Declaration
[JsonProperty("mode")]
public virtual string Mode { get; set; }
Property Value
Type | Description |
---|---|
string |
Subcolumns
Optional. Schema of sub-columns. A column can have zero or more sub-columns.
Declaration
[JsonProperty("subcolumns")]
public virtual IList<GoogleCloudDatacatalogV1beta1ColumnSchema> Subcolumns { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudDatacatalogV1beta1ColumnSchema> |
Type
Required. Type of the column.
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
string |