google-apps-events-subscriptions-v1 1.1.0

Google Cloud Client Libraries for Rust - Google Workspace Events API
Documentation
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by sidekick. DO NOT EDIT.
#![allow(rustdoc::bare_urls)]
#![allow(rustdoc::broken_intra_doc_links)]
#![allow(rustdoc::invalid_html_tags)]
#![allow(rustdoc::redundant_explicit_links)]

/// Implements a client for the Google Workspace Events API.
///
/// # Example
/// ```
/// # use google_apps_events_subscriptions_v1::client::SubscriptionsService;
/// async fn sample(
///    subscription_id: &str,
/// ) -> anyhow::Result<()> {
///     let client = SubscriptionsService::builder().build().await?;
///     let response = client.get_subscription()
///         .set_name(format!("subscriptions/{subscription_id}"))
///         .send().await?;
///     println!("response {:?}", response);
///     Ok(())
/// }
/// ```
///
/// # Service Description
///
/// A service that manages subscriptions to Google Workspace events.
///
/// # Configuration
///
/// To configure `SubscriptionsService` use the `with_*` methods in the type returned
/// by [builder()][SubscriptionsService::builder]. The default configuration should
/// work for most applications. Common configuration changes include
///
/// * [with_endpoint()]: by default this client uses the global default endpoint
///   (`https://workspaceevents.googleapis.com`). Applications using regional
///   endpoints or running in restricted networks (e.g. a network configured
///   with [Private Google Access with VPC Service Controls]) may want to
///   override this default.
/// * [with_credentials()]: by default this client uses
///   [Application Default Credentials]. Applications using custom
///   authentication may need to override this default.
///
/// [with_endpoint()]: super::builder::subscriptions_service::ClientBuilder::with_endpoint
/// [with_credentials()]: super::builder::subscriptions_service::ClientBuilder::with_credentials
/// [Private Google Access with VPC Service Controls]: https://cloud.google.com/vpc-service-controls/docs/private-connectivity
/// [Application Default Credentials]: https://cloud.google.com/docs/authentication#adc
///
/// # Pooling and Cloning
///
/// `SubscriptionsService` holds a connection pool internally, it is advised to
/// create one and reuse it. You do not need to wrap `SubscriptionsService` in
/// an [Rc](std::rc::Rc) or [Arc](std::sync::Arc) to reuse it, because it
/// already uses an `Arc` internally.
#[derive(Clone, Debug)]
pub struct SubscriptionsService {
    inner: std::sync::Arc<dyn super::stub::dynamic::SubscriptionsService>,
}

impl SubscriptionsService {
    /// Returns a builder for [SubscriptionsService].
    ///
    /// ```
    /// # async fn sample() -> google_cloud_gax::client_builder::Result<()> {
    /// # use google_apps_events_subscriptions_v1::client::SubscriptionsService;
    /// let client = SubscriptionsService::builder().build().await?;
    /// # Ok(()) }
    /// ```
    pub fn builder() -> super::builder::subscriptions_service::ClientBuilder {
        crate::new_client_builder(super::builder::subscriptions_service::client::Factory)
    }

    /// Creates a new client from the provided stub.
    ///
    /// The most common case for calling this function is in tests mocking the
    /// client's behavior.
    pub fn from_stub<T>(stub: impl Into<std::sync::Arc<T>>) -> Self
    where
        T: super::stub::SubscriptionsService + 'static,
    {
        Self { inner: stub.into() }
    }

    pub(crate) async fn new(
        config: gaxi::options::ClientConfig,
    ) -> crate::ClientBuilderResult<Self> {
        let inner = Self::build_inner(config).await?;
        Ok(Self { inner })
    }

    async fn build_inner(
        conf: gaxi::options::ClientConfig,
    ) -> crate::ClientBuilderResult<std::sync::Arc<dyn super::stub::dynamic::SubscriptionsService>>
    {
        if gaxi::options::tracing_enabled(&conf) {
            return Ok(std::sync::Arc::new(Self::build_with_tracing(conf).await?));
        }
        Ok(std::sync::Arc::new(Self::build_transport(conf).await?))
    }

    async fn build_transport(
        conf: gaxi::options::ClientConfig,
    ) -> crate::ClientBuilderResult<impl super::stub::SubscriptionsService> {
        super::transport::SubscriptionsService::new(conf).await
    }

    async fn build_with_tracing(
        conf: gaxi::options::ClientConfig,
    ) -> crate::ClientBuilderResult<impl super::stub::SubscriptionsService> {
        Self::build_transport(conf)
            .await
            .map(super::tracing::SubscriptionsService::new)
    }

    /// Creates a Google Workspace subscription. To learn how to use this
    /// method, see [Create a Google Workspace
    /// subscription](https://developers.google.com/workspace/events/guides/create-subscription).
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_apps_events_subscriptions_v1::client::SubscriptionsService;
    /// use google_cloud_lro::Poller;
    /// use google_apps_events_subscriptions_v1::Result;
    /// async fn sample(
    ///    client: &SubscriptionsService
    /// ) -> Result<()> {
    ///     let response = client.create_subscription()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn create_subscription(&self) -> super::builder::subscriptions_service::CreateSubscription {
        super::builder::subscriptions_service::CreateSubscription::new(self.inner.clone())
    }

    /// Deletes a Google Workspace subscription.
    /// To learn how to use this method, see [Delete a Google Workspace
    /// subscription](https://developers.google.com/workspace/events/guides/delete-subscription).
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_apps_events_subscriptions_v1::client::SubscriptionsService;
    /// use google_cloud_lro::Poller;
    /// use google_apps_events_subscriptions_v1::Result;
    /// async fn sample(
    ///    client: &SubscriptionsService, subscription_id: &str
    /// ) -> Result<()> {
    ///     client.delete_subscription()
    ///         .set_name(format!("subscriptions/{subscription_id}"))
    ///         .poller().until_done().await?;
    ///     Ok(())
    /// }
    /// ```
    pub fn delete_subscription(&self) -> super::builder::subscriptions_service::DeleteSubscription {
        super::builder::subscriptions_service::DeleteSubscription::new(self.inner.clone())
    }

    /// Gets details about a Google Workspace subscription. To learn how to use
    /// this method, see [Get details about a Google Workspace
    /// subscription](https://developers.google.com/workspace/events/guides/get-subscription).
    ///
    /// # Example
    /// ```
    /// # use google_apps_events_subscriptions_v1::client::SubscriptionsService;
    /// use google_apps_events_subscriptions_v1::Result;
    /// async fn sample(
    ///    client: &SubscriptionsService, subscription_id: &str
    /// ) -> Result<()> {
    ///     let response = client.get_subscription()
    ///         .set_name(format!("subscriptions/{subscription_id}"))
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_subscription(&self) -> super::builder::subscriptions_service::GetSubscription {
        super::builder::subscriptions_service::GetSubscription::new(self.inner.clone())
    }

    /// Lists Google Workspace subscriptions. To learn how to use this method, see
    /// [List Google Workspace
    /// subscriptions](https://developers.google.com/workspace/events/guides/list-subscriptions).
    ///
    /// # Example
    /// ```
    /// # use google_apps_events_subscriptions_v1::client::SubscriptionsService;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_apps_events_subscriptions_v1::Result;
    /// async fn sample(
    ///    client: &SubscriptionsService
    /// ) -> Result<()> {
    ///     let mut list = client.list_subscriptions()
    ///         /* set fields */
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_subscriptions(&self) -> super::builder::subscriptions_service::ListSubscriptions {
        super::builder::subscriptions_service::ListSubscriptions::new(self.inner.clone())
    }

    /// Updates or renews a Google Workspace subscription. To learn how to use this
    /// method, see [Update or renew a Google Workspace
    /// subscription](https://developers.google.com/workspace/events/guides/update-subscription).
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_apps_events_subscriptions_v1::client::SubscriptionsService;
    /// use google_cloud_lro::Poller;
    /// # extern crate wkt as google_cloud_wkt;
    /// use google_cloud_wkt::FieldMask;
    /// use google_apps_events_subscriptions_v1::model::Subscription;
    /// use google_apps_events_subscriptions_v1::Result;
    /// async fn sample(
    ///    client: &SubscriptionsService, subscription_id: &str
    /// ) -> Result<()> {
    ///     let response = client.update_subscription()
    ///         .set_subscription(
    ///             Subscription::new().set_name(format!("subscriptions/{subscription_id}"))/* set fields */
    ///         )
    ///         .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn update_subscription(&self) -> super::builder::subscriptions_service::UpdateSubscription {
        super::builder::subscriptions_service::UpdateSubscription::new(self.inner.clone())
    }

    /// Reactivates a suspended Google Workspace subscription.
    ///
    /// This method resets your subscription's `State` field to `ACTIVE`. Before
    /// you use this method, you must fix the error that suspended the
    /// subscription. To learn how to use this method, see [Reactivate a Google
    /// Workspace
    /// subscription](https://developers.google.com/workspace/events/guides/reactivate-subscription).
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_apps_events_subscriptions_v1::client::SubscriptionsService;
    /// use google_cloud_lro::Poller;
    /// use google_apps_events_subscriptions_v1::Result;
    /// async fn sample(
    ///    client: &SubscriptionsService
    /// ) -> Result<()> {
    ///     let response = client.reactivate_subscription()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn reactivate_subscription(
        &self,
    ) -> super::builder::subscriptions_service::ReactivateSubscription {
        super::builder::subscriptions_service::ReactivateSubscription::new(self.inner.clone())
    }

    /// Provides the [Operations][google.longrunning.Operations] service functionality in this service.
    ///
    /// [google.longrunning.Operations]: google-cloud-longrunning::client::Operations
    ///
    /// # Example
    /// ```
    /// # use google_apps_events_subscriptions_v1::client::SubscriptionsService;
    /// use google_apps_events_subscriptions_v1::Result;
    /// async fn sample(
    ///    client: &SubscriptionsService
    /// ) -> Result<()> {
    ///     let response = client.get_operation()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_operation(&self) -> super::builder::subscriptions_service::GetOperation {
        super::builder::subscriptions_service::GetOperation::new(self.inner.clone())
    }
}