google-cloud-trace-v2 1.7.0

Google Cloud Client Libraries for Rust - Cloud Trace API
Documentation
// Copyright 2025 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::redundant_explicit_links)]
#![allow(rustdoc::broken_intra_doc_links)]

/// Implements a client for the Cloud Trace API.
///
/// # Example
/// ```
/// # use google_cloud_trace_v2::client::TraceService;
/// # async fn sample() -> Result<(), Box<dyn std::error::Error>> {
///     let client = TraceService::builder().build().await?;
///     client.batch_write_spans()
///         /* set fields */
///         .send().await?;
/// # Ok(()) }
/// ```
///
/// # Service Description
///
/// Service for collecting and viewing traces and spans within a trace.
///
/// A trace is a collection of spans corresponding to a single
/// operation or a set of operations in an application.
///
/// A span is an individual timed event which forms a node of the trace tree.
/// A single trace can contain spans from multiple services.
///
/// # Configuration
///
/// To configure `TraceService` use the `with_*` methods in the type returned
/// by [builder()][TraceService::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://cloudtrace.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::trace_service::ClientBuilder::with_endpoint
/// [with_credentials()]: super::builder::trace_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
///
/// `TraceService` holds a connection pool internally, it is advised to
/// create one and reuse it. You do not need to wrap `TraceService` 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 TraceService {
    inner: std::sync::Arc<dyn super::stub::dynamic::TraceService>,
}

impl TraceService {
    /// Returns a builder for [TraceService].
    ///
    /// ```
    /// # async fn sample() -> google_cloud_gax::client_builder::Result<()> {
    /// # use google_cloud_trace_v2::client::TraceService;
    /// let client = TraceService::builder().build().await?;
    /// # Ok(()) }
    /// ```
    pub fn builder() -> super::builder::trace_service::ClientBuilder {
        crate::new_client_builder(super::builder::trace_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: T) -> Self
    where
        T: super::stub::TraceService + 'static,
    {
        Self {
            inner: std::sync::Arc::new(stub),
        }
    }

    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::TraceService>> {
        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::TraceService> {
        super::transport::TraceService::new(conf).await
    }

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

    /// Batch writes new spans to new or existing traces. You cannot update
    /// existing spans.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_trace_v2::client::TraceService;
    /// use google_cloud_trace_v2::Result;
    /// async fn sample(
    ///    client: &TraceService
    /// ) -> Result<()> {
    ///     client.batch_write_spans()
    ///         /* set fields */
    ///         .send().await?;
    ///     Ok(())
    /// }
    /// ```
    pub fn batch_write_spans(&self) -> super::builder::trace_service::BatchWriteSpans {
        super::builder::trace_service::BatchWriteSpans::new(self.inner.clone())
    }

    /// Creates a new span.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_trace_v2::client::TraceService;
    /// use google_cloud_trace_v2::Result;
    /// async fn sample(
    ///    client: &TraceService
    /// ) -> Result<()> {
    ///     let response = client.create_span()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn create_span(&self) -> super::builder::trace_service::CreateSpan {
        super::builder::trace_service::CreateSpan::new(self.inner.clone())
    }
}