pub struct ExfilResource {
pub components: Option<Vec<String>>,
pub name: Option<String>,
}Expand description
Resource where data was exfiltrated from or exfiltrated to.
This type is not used in any activity, and only used as part of another schema.
Fields§
§components: Option<Vec<String>>Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
name: Option<String>The resource’s full resource name.
Trait Implementations§
Source§impl Clone for ExfilResource
impl Clone for ExfilResource
Source§fn clone(&self) -> ExfilResource
fn clone(&self) -> ExfilResource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExfilResource
impl Debug for ExfilResource
Source§impl Default for ExfilResource
impl Default for ExfilResource
Source§fn default() -> ExfilResource
fn default() -> ExfilResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExfilResource
impl<'de> Deserialize<'de> for ExfilResource
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
impl Part for ExfilResource
Auto Trait Implementations§
impl Freeze for ExfilResource
impl RefUnwindSafe for ExfilResource
impl Send for ExfilResource
impl Sync for ExfilResource
impl Unpin for ExfilResource
impl UnsafeUnpin for ExfilResource
impl UnwindSafe for ExfilResource
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