Class IntegerRangePartition
Integer range partitioning. see https://cloud.google.com/bigquery/docs/partitioned-tables#integer_range
Implements
Inherited Members
Namespace: Google.Apis.Datastream.v1.Data
Assembly: Google.Apis.Datastream.v1.dll
Syntax
public class IntegerRangePartition : IDirectResponseSchema
Properties
Column
Required. The partitioning column.
Declaration
[JsonProperty("column")]
public virtual string Column { 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 |
End
Required. The ending value for range partitioning (exclusive).
Declaration
[JsonProperty("end")]
public virtual long? End { get; set; }
Property Value
| Type | Description |
|---|---|
| long? |
Interval
Required. The interval of each range within the partition.
Declaration
[JsonProperty("interval")]
public virtual long? Interval { get; set; }
Property Value
| Type | Description |
|---|---|
| long? |
Start
Required. The starting value for range partitioning (inclusive).
Declaration
[JsonProperty("start")]
public virtual long? Start { get; set; }
Property Value
| Type | Description |
|---|---|
| long? |