pub struct DataplexConfig {
pub lake_resources: Option<HashMap<String, Lake>>,
}Expand description
Specifies how metastore metadata should be integrated with the Dataplex service.
This type is not used in any activity, and only used as part of another schema.
Fields§
§lake_resources: Option<HashMap<String, Lake>>Optional. A reference to the Lake resources that this metastore service is attached to. The key is the lake resource name. Example: projects/{project_number}/locations/{location_id}/lakes/{lake_id}.
Trait Implementations§
Source§impl Clone for DataplexConfig
impl Clone for DataplexConfig
Source§fn clone(&self) -> DataplexConfig
fn clone(&self) -> DataplexConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DataplexConfig
impl Debug for DataplexConfig
Source§impl Default for DataplexConfig
impl Default for DataplexConfig
Source§fn default() -> DataplexConfig
fn default() -> DataplexConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataplexConfig
impl<'de> Deserialize<'de> for DataplexConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for DataplexConfig
impl Serialize for DataplexConfig
impl Part for DataplexConfig
Auto Trait Implementations§
impl Freeze for DataplexConfig
impl RefUnwindSafe for DataplexConfig
impl Send for DataplexConfig
impl Sync for DataplexConfig
impl Unpin for DataplexConfig
impl UnwindSafe for DataplexConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more