Class TableConstraints
The TableConstraints defines the primary key and foreign key.
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class TableConstraints : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ForeignKeys
Optional. Present only if the table has a foreign key. The foreign key is not enforced.
Declaration
[JsonProperty("foreignKeys")]
public virtual IList<TableConstraints.ForeignKeysData> ForeignKeys { get; set; }
Property Value
Type | Description |
---|---|
IList<TableConstraints.ForeignKeysData> |
PrimaryKey
Represents the primary key constraint on a table's columns.
Declaration
[JsonProperty("primaryKey")]
public virtual TableConstraints.PrimaryKeyData PrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
TableConstraints.PrimaryKeyData |