pub struct ExternalCatalogTableOptions {
pub connection_id: Option<String>,
pub parameters: Option<HashMap<String, String>>,
pub storage_descriptor: Option<StorageDescriptor>,
}Expand description
Metadata about open source compatible table. The fields contained in these options correspond to Hive metastore’s table-level properties.
This type is not used in any activity, and only used as part of another schema.
Fields§
§connection_id: Option<String>Optional. A connection ID that specifies the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or Amazon S3. This connection is needed to read the open source table from BigQuery. The connection_id format must be either .. or projects//locations//connections/.
parameters: Option<HashMap<String, String>>Optional. A map of the key-value pairs defining the parameters and properties of the open source table. Corresponds with Hive metastore table parameters. Maximum size of 4MiB.
storage_descriptor: Option<StorageDescriptor>Optional. A storage descriptor containing information about the physical storage of this table.
Trait Implementations§
Source§impl Clone for ExternalCatalogTableOptions
impl Clone for ExternalCatalogTableOptions
Source§fn clone(&self) -> ExternalCatalogTableOptions
fn clone(&self) -> ExternalCatalogTableOptions
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more