pub struct EventTrigger {
pub event_type: Option<String>,
pub failure_policy: Option<FailurePolicy>,
pub resource: Option<String>,
pub service: Option<String>,
}
Expand description
Describes EventTrigger, used to request events be sent from another service.
This type is not used in any activity, and only used as part of another schema.
Fields§
§event_type: Option<String>
Required. The type of event to observe. For example: providers/cloud.storage/eventTypes/object.change
and providers/cloud.pubsub/eventTypes/topic.publish
. Event types match pattern providers/*/eventTypes/*.*
. The pattern contains: 1. namespace: For example, cloud.storage
and google.firebase.analytics
. 2. resource type: The type of resource on which event occurs. For example, the Google Cloud Storage API includes the type object
. 3. action: The action that generates the event. For example, action for a Google Cloud Storage Object is ‘change’. These parts are lower case.
failure_policy: Option<FailurePolicy>
Specifies policy for failed executions.
resource: Option<String>
Required. The resource(s) from which to observe events, for example, projects/_/buckets/myBucket
. Not all syntactically correct values are accepted by all services. For example: 1. The authorization model must support it. Google Cloud Functions only allows EventTriggers to be deployed that observe resources in the same project as the CloudFunction
. 2. The resource type must match the pattern expected for an event_type
. For example, an EventTrigger
that has an event_type
of “google.pubsub.topic.publish” should have a resource that matches Google Cloud Pub/Sub topics. Additionally, some services may support short names when creating an EventTrigger
. These will always be returned in the normalized “long” format. See each service’s documentation for supported formats.
service: Option<String>
The hostname of the service that should be observed. If no string is provided, the default service implementing the API will be used. For example, storage.googleapis.com
is the default for all event types in the google.storage
namespace.
Trait Implementations§
Source§impl Clone for EventTrigger
impl Clone for EventTrigger
Source§fn clone(&self) -> EventTrigger
fn clone(&self) -> EventTrigger
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for EventTrigger
impl Debug for EventTrigger
Source§impl Default for EventTrigger
impl Default for EventTrigger
Source§fn default() -> EventTrigger
fn default() -> EventTrigger
Source§impl<'de> Deserialize<'de> for EventTrigger
impl<'de> Deserialize<'de> for EventTrigger
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 EventTrigger
impl Serialize for EventTrigger
impl Part for EventTrigger
Auto Trait Implementations§
impl Freeze for EventTrigger
impl RefUnwindSafe for EventTrigger
impl Send for EventTrigger
impl Sync for EventTrigger
impl Unpin for EventTrigger
impl UnwindSafe for EventTrigger
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