Class DatasetList.DatasetsData
An array of the dataset resources in the project. Each resource contains basic information. For full information about a particular dataset resource, use the Datasets: get method. This property is omitted when there are no datasets in the project.
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class DatasetList.DatasetsData
Properties
DatasetReference
The dataset reference. Use this property to access specific parts of the dataset's ID, such as project ID or dataset ID.
Declaration
[JsonProperty("datasetReference")]
public virtual DatasetReference DatasetReference { get; set; }
Property Value
Type | Description |
---|---|
DatasetReference |
FriendlyName
An alternate name for the dataset. The friendly name is purely decorative in nature.
Declaration
[JsonProperty("friendlyName")]
public virtual string FriendlyName { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
The fully-qualified, unique, opaque ID of the dataset.
Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Kind
The resource type. This property always returns the value "bigquery#dataset"
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
string |
Labels
The labels associated with this dataset. You can use these to organize and group your datasets.
Declaration
[JsonProperty("labels")]
public virtual IDictionary<string, string> Labels { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
Location
The geographic location where the dataset resides.
Declaration
[JsonProperty("location")]
public virtual string Location { get; set; }
Property Value
Type | Description |
---|---|
string |