Struct google_bigquery2::DatasetListDatasets[][src]

pub struct DatasetListDatasets {
    pub kind: Option<String>,
    pub location: Option<String>,
    pub dataset_reference: Option<DatasetReference>,
    pub friendly_name: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub id: Option<String>,
}

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.

This type is not used in any activity, and only used as part of another schema.

Fields

The resource type. This property always returns the value "bigquery#dataset".

[Experimental] The geographic location where the data resides.

The dataset reference. Use this property to access specific parts of the dataset's ID, such as project ID or dataset ID.

A descriptive name for the dataset, if one exists.

The labels associated with this dataset. You can use these to organize and group your datasets.

The fully-qualified, unique, opaque ID of the dataset.

Trait Implementations

impl Default for DatasetListDatasets
[src]

Returns the "default value" for a type. Read more

impl Clone for DatasetListDatasets
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DatasetListDatasets
[src]

Formats the value using the given formatter. Read more

impl NestedType for DatasetListDatasets
[src]

impl Part for DatasetListDatasets
[src]

Auto Trait Implementations