pub struct GoogleChannelConfig {
pub crypto_key_name: Option<String>,
pub name: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
A GoogleChannelConfig is a resource that stores the custom settings respected by Eventarc first-party triggers in the matching region. Once configured, first-party event data will be protected using the specified custom managed encryption key instead of Google-managed encryption keys.
§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 get google channel config projects (response)
- locations update google channel config projects (request|response)
Fields§
§crypto_key_name: Option<String>
Optional. Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt their event data. It must match the pattern projects/*/locations/*/keyRings/*/cryptoKeys/*
.
name: Option<String>
Required. The resource name of the config. Must be in the format of, projects/{project}/locations/{location}/googleChannelConfig
.
update_time: Option<DateTime<Utc>>
Output only. The last-modified time.
Trait Implementations§
Source§impl Clone for GoogleChannelConfig
impl Clone for GoogleChannelConfig
Source§fn clone(&self) -> GoogleChannelConfig
fn clone(&self) -> GoogleChannelConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GoogleChannelConfig
impl Debug for GoogleChannelConfig
Source§impl Default for GoogleChannelConfig
impl Default for GoogleChannelConfig
Source§fn default() -> GoogleChannelConfig
fn default() -> GoogleChannelConfig
Source§impl<'de> Deserialize<'de> for GoogleChannelConfig
impl<'de> Deserialize<'de> for GoogleChannelConfig
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>,
Source§impl Serialize for GoogleChannelConfig
impl Serialize for GoogleChannelConfig
impl RequestValue for GoogleChannelConfig
impl ResponseResult for GoogleChannelConfig
Auto Trait Implementations§
impl Freeze for GoogleChannelConfig
impl RefUnwindSafe for GoogleChannelConfig
impl Send for GoogleChannelConfig
impl Sync for GoogleChannelConfig
impl Unpin for GoogleChannelConfig
impl UnwindSafe for GoogleChannelConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more