pub struct DatasetListDatasets {
pub dataset_reference: Option<DatasetReference>,
pub external_dataset_reference: Option<ExternalDatasetReference>,
pub friendly_name: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub location: Option<String>,
}Expand description
A dataset resource with only a subset of fields, to be returned in a list of datasets.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dataset_reference: Option<DatasetReference>The dataset reference. Use this property to access specific parts of the dataset’s ID, such as project ID or dataset ID.
external_dataset_reference: Option<ExternalDatasetReference>Output only. Reference to a read-only external dataset defined in data catalogs outside of BigQuery. Filled out when the dataset type is EXTERNAL.
friendly_name: Option<String>An alternate name for the dataset. The friendly name is purely decorative in nature.
id: Option<String>The fully-qualified, unique, opaque ID of the dataset.
kind: Option<String>The resource type. This property always returns the value “bigquery#dataset”
labels: Option<HashMap<String, String>>The labels associated with this dataset. You can use these to organize and group your datasets.
location: Option<String>The geographic location where the dataset resides.
Trait Implementations§
Source§impl Clone for DatasetListDatasets
impl Clone for DatasetListDatasets
Source§fn clone(&self) -> DatasetListDatasets
fn clone(&self) -> DatasetListDatasets
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more