Show / Hide Table of Contents

Class GoogleCloudDatacatalogV1beta1ColumnSchema

Representation of a column within a schema. Columns could be nested inside other columns.

Inheritance
object
GoogleCloudDatacatalogV1beta1ColumnSchema
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX