#[non_exhaustive]pub struct PubsubConfig {
pub subscription: String,
pub topic: String,
pub service_account_email: String,
pub state: State,
/* private fields */
}
Expand description
PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.subscription: String
Output only. Name of the subscription. Format is
projects/{project}/subscriptions/{subscription}
.
topic: String
The name of the topic from which this subscription is receiving messages.
Format is projects/{project}/topics/{topic}
.
service_account_email: String
Service account that will make the push request.
state: State
Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.
Implementations§
Source§impl PubsubConfig
impl PubsubConfig
pub fn new() -> Self
Sourcepub fn set_subscription<T: Into<String>>(self, v: T) -> Self
pub fn set_subscription<T: Into<String>>(self, v: T) -> Self
Sets the value of subscription.
Sourcepub fn set_service_account_email<T: Into<String>>(self, v: T) -> Self
pub fn set_service_account_email<T: Into<String>>(self, v: T) -> Self
Sets the value of service_account_email.
Trait Implementations§
Source§impl Clone for PubsubConfig
impl Clone for PubsubConfig
Source§fn clone(&self) -> PubsubConfig
fn clone(&self) -> PubsubConfig
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 PubsubConfig
impl Debug for PubsubConfig
Source§impl Default for PubsubConfig
impl Default for PubsubConfig
Source§fn default() -> PubsubConfig
fn default() -> PubsubConfig
Returns the “default value” for a type. Read more
Source§impl Message for PubsubConfig
impl Message for PubsubConfig
Source§impl PartialEq for PubsubConfig
impl PartialEq for PubsubConfig
impl StructuralPartialEq for PubsubConfig
Auto Trait Implementations§
impl Freeze for PubsubConfig
impl RefUnwindSafe for PubsubConfig
impl Send for PubsubConfig
impl Sync for PubsubConfig
impl Unpin for PubsubConfig
impl UnwindSafe for PubsubConfig
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