pub struct AssetDiscoveryConfig {
pub folder_ids: Option<Vec<String>>,
pub inclusion_mode: Option<String>,
pub project_ids: Option<Vec<String>>,
}Expand description
The configuration used for Asset Discovery runs.
This type is not used in any activity, and only used as part of another schema.
Fields§
§folder_ids: Option<Vec<String>>The folder ids to use for filtering asset discovery. It consists of only digits, e.g., 756619654966.
inclusion_mode: Option<String>The mode to use for filtering asset discovery.
project_ids: Option<Vec<String>>The project ids to use for filtering asset discovery.
Trait Implementations§
Source§impl Clone for AssetDiscoveryConfig
impl Clone for AssetDiscoveryConfig
Source§fn clone(&self) -> AssetDiscoveryConfig
fn clone(&self) -> AssetDiscoveryConfig
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 AssetDiscoveryConfig
impl Debug for AssetDiscoveryConfig
Source§impl Default for AssetDiscoveryConfig
impl Default for AssetDiscoveryConfig
Source§fn default() -> AssetDiscoveryConfig
fn default() -> AssetDiscoveryConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetDiscoveryConfig
impl<'de> Deserialize<'de> for AssetDiscoveryConfig
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 AssetDiscoveryConfig
impl Serialize for AssetDiscoveryConfig
impl Part for AssetDiscoveryConfig
Auto Trait Implementations§
impl Freeze for AssetDiscoveryConfig
impl RefUnwindSafe for AssetDiscoveryConfig
impl Send for AssetDiscoveryConfig
impl Sync for AssetDiscoveryConfig
impl Unpin for AssetDiscoveryConfig
impl UnwindSafe for AssetDiscoveryConfig
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