pub struct GooglePrivacyDlpV2Connection {
pub cloud_sql: Option<GooglePrivacyDlpV2CloudSqlProperties>,
pub errors: Option<Vec<GooglePrivacyDlpV2Error>>,
pub name: Option<String>,
pub state: Option<String>,
}Expand description
A data connection to allow the DLP API to profile data in locations that require additional configuration.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations connections create organizations (response)
- locations connections get organizations (response)
- locations connections patch organizations (response)
- locations connections create projects (response)
- locations connections get projects (response)
- locations connections patch projects (response)
Fields§
§cloud_sql: Option<GooglePrivacyDlpV2CloudSqlProperties>Connect to a Cloud SQL instance.
errors: Option<Vec<GooglePrivacyDlpV2Error>>Output only. Set if status == ERROR, to provide additional details. Will store the last 10 errors sorted with the most recent first.
name: Option<String>Output only. Name of the connection: projects/{project}/locations/{location}/connections/{name}.
state: Option<String>Required. The connection’s state in its lifecycle.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2Connection
impl Clone for GooglePrivacyDlpV2Connection
Source§fn clone(&self) -> GooglePrivacyDlpV2Connection
fn clone(&self) -> GooglePrivacyDlpV2Connection
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 GooglePrivacyDlpV2Connection
impl Debug for GooglePrivacyDlpV2Connection
Source§impl Default for GooglePrivacyDlpV2Connection
impl Default for GooglePrivacyDlpV2Connection
Source§fn default() -> GooglePrivacyDlpV2Connection
fn default() -> GooglePrivacyDlpV2Connection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Connection
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Connection
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 ResponseResult for GooglePrivacyDlpV2Connection
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2Connection
impl RefUnwindSafe for GooglePrivacyDlpV2Connection
impl Send for GooglePrivacyDlpV2Connection
impl Sync for GooglePrivacyDlpV2Connection
impl Unpin for GooglePrivacyDlpV2Connection
impl UnwindSafe for GooglePrivacyDlpV2Connection
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