pub struct GooglePrivacyDlpV2beta1OutputStorageConfig {
    pub storage_path: Option<GooglePrivacyDlpV2beta1CloudStoragePath>,
    pub table: Option<GooglePrivacyDlpV2beta1BigQueryTable>,
}
Expand description

Cloud repository for storing output.

This type is not used in any activity, and only used as part of another schema.

Fields§

§storage_path: Option<GooglePrivacyDlpV2beta1CloudStoragePath>

The path to a Google Cloud Storage location to store output. The bucket must already exist and the Google APIs service account for DLP must have write permission to write to the given bucket. Results are split over multiple csv files with each file name matching the pattern “[operation_id]_[count].csv”, for example 3094877188788974909_1.csv. The operation_id matches the identifier for the Operation, and the count is a counter used for tracking the number of files written.

The CSV file(s) contain the following columns regardless of storage type scanned:

  • id
  • info_type
  • likelihood
  • byte size of finding
  • quote
  • timestamp

For Cloud Storage the next columns are:

  • file_path
  • start_offset

For Cloud Datastore the next columns are:

  • project_id
  • namespace_id
  • path
  • column_name
  • offset

For BigQuery the next columns are:

  • row_number
  • project_id
  • dataset_id
  • table_id
§table: Option<GooglePrivacyDlpV2beta1BigQueryTable>

Store findings in a new table in the dataset.

Trait Implementations§

source§

impl Clone for GooglePrivacyDlpV2beta1OutputStorageConfig

source§

fn clone(&self) -> GooglePrivacyDlpV2beta1OutputStorageConfig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GooglePrivacyDlpV2beta1OutputStorageConfig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GooglePrivacyDlpV2beta1OutputStorageConfig

source§

fn default() -> GooglePrivacyDlpV2beta1OutputStorageConfig

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for GooglePrivacyDlpV2beta1OutputStorageConfig

source§

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 GooglePrivacyDlpV2beta1OutputStorageConfig

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Part for GooglePrivacyDlpV2beta1OutputStorageConfig

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,