google-maps-mapsplatformdatasets-v1 1.0.0

Google Cloud Client Libraries for Rust - Maps Platform Datasets 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 Maps Platform Datasets API.
///
/// # Example
/// ```
/// # use google_maps_mapsplatformdatasets_v1::client::MapsPlatformDatasets;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// async fn sample(
///    parent: &str,
/// ) -> anyhow::Result<()> {
///     let client = MapsPlatformDatasets::builder().build().await?;
///     let mut list = client.list_datasets()
///         .set_parent(parent)
///         .by_item();
///     while let Some(item) = list.next().await.transpose()? {
///         println!("{:?}", item);
///     }
///     Ok(())
/// }
/// ```
///
/// # Service Description
///
/// Service definition for the Maps Platform Datasets API.
///
/// # Configuration
///
/// To configure `MapsPlatformDatasets` use the `with_*` methods in the type returned
/// by [builder()][MapsPlatformDatasets::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://mapsplatformdatasets.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::maps_platform_datasets::ClientBuilder::with_endpoint
/// [with_credentials()]: super::builder::maps_platform_datasets::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
///
/// `MapsPlatformDatasets` holds a connection pool internally, it is advised to
/// create one and reuse it. You do not need to wrap `MapsPlatformDatasets` 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 MapsPlatformDatasets {
    inner: std::sync::Arc<dyn super::stub::dynamic::MapsPlatformDatasets>,
}

impl MapsPlatformDatasets {
    /// Returns a builder for [MapsPlatformDatasets].
    ///
    /// ```
    /// # async fn sample() -> google_cloud_gax::client_builder::Result<()> {
    /// # use google_maps_mapsplatformdatasets_v1::client::MapsPlatformDatasets;
    /// let client = MapsPlatformDatasets::builder().build().await?;
    /// # Ok(()) }
    /// ```
    pub fn builder() -> super::builder::maps_platform_datasets::ClientBuilder {
        crate::new_client_builder(super::builder::maps_platform_datasets::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::MapsPlatformDatasets + '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::MapsPlatformDatasets>>
    {
        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::MapsPlatformDatasets> {
        super::transport::MapsPlatformDatasets::new(conf).await
    }

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

    /// Creates a new dataset for the specified project.
    ///
    /// # Example
    /// ```
    /// # use google_maps_mapsplatformdatasets_v1::client::MapsPlatformDatasets;
    /// use google_maps_mapsplatformdatasets_v1::model::Dataset;
    /// use google_maps_mapsplatformdatasets_v1::Result;
    /// async fn sample(
    ///    client: &MapsPlatformDatasets, parent: &str
    /// ) -> Result<()> {
    ///     let response = client.create_dataset()
    ///         .set_parent(parent)
    ///         .set_dataset(
    ///             Dataset::new()/* set fields */
    ///         )
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn create_dataset(&self) -> super::builder::maps_platform_datasets::CreateDataset {
        super::builder::maps_platform_datasets::CreateDataset::new(self.inner.clone())
    }

    /// Updates the metadata for the dataset.
    ///
    /// # Example
    /// ```
    /// # use google_maps_mapsplatformdatasets_v1::client::MapsPlatformDatasets;
    /// # extern crate wkt as google_cloud_wkt;
    /// use google_cloud_wkt::FieldMask;
    /// use google_maps_mapsplatformdatasets_v1::model::Dataset;
    /// use google_maps_mapsplatformdatasets_v1::Result;
    /// async fn sample(
    ///    client: &MapsPlatformDatasets, project_id: &str, dataset_id: &str
    /// ) -> Result<()> {
    ///     let response = client.update_dataset_metadata()
    ///         .set_dataset(
    ///             Dataset::new().set_name(format!("projects/{project_id}/datasets/{dataset_id}"))/* set fields */
    ///         )
    ///         .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn update_dataset_metadata(
        &self,
    ) -> super::builder::maps_platform_datasets::UpdateDatasetMetadata {
        super::builder::maps_platform_datasets::UpdateDatasetMetadata::new(self.inner.clone())
    }

    /// Gets the dataset.
    ///
    /// # Example
    /// ```
    /// # use google_maps_mapsplatformdatasets_v1::client::MapsPlatformDatasets;
    /// use google_maps_mapsplatformdatasets_v1::Result;
    /// async fn sample(
    ///    client: &MapsPlatformDatasets, project_id: &str, dataset_id: &str
    /// ) -> Result<()> {
    ///     let response = client.get_dataset()
    ///         .set_name(format!("projects/{project_id}/datasets/{dataset_id}"))
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_dataset(&self) -> super::builder::maps_platform_datasets::GetDataset {
        super::builder::maps_platform_datasets::GetDataset::new(self.inner.clone())
    }

    /// Gets all the errors of a dataset.
    ///
    /// # Example
    /// ```
    /// # use google_maps_mapsplatformdatasets_v1::client::MapsPlatformDatasets;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_maps_mapsplatformdatasets_v1::Result;
    /// async fn sample(
    ///    client: &MapsPlatformDatasets
    /// ) -> Result<()> {
    ///     let mut list = client.fetch_dataset_errors()
    ///         /* set fields */
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn fetch_dataset_errors(
        &self,
    ) -> super::builder::maps_platform_datasets::FetchDatasetErrors {
        super::builder::maps_platform_datasets::FetchDatasetErrors::new(self.inner.clone())
    }

    /// Lists all the datasets for the specified project.
    ///
    /// # Example
    /// ```
    /// # use google_maps_mapsplatformdatasets_v1::client::MapsPlatformDatasets;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_maps_mapsplatformdatasets_v1::Result;
    /// async fn sample(
    ///    client: &MapsPlatformDatasets, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_datasets()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_datasets(&self) -> super::builder::maps_platform_datasets::ListDatasets {
        super::builder::maps_platform_datasets::ListDatasets::new(self.inner.clone())
    }

    /// Deletes the specified dataset.
    ///
    /// # Example
    /// ```
    /// # use google_maps_mapsplatformdatasets_v1::client::MapsPlatformDatasets;
    /// use google_maps_mapsplatformdatasets_v1::Result;
    /// async fn sample(
    ///    client: &MapsPlatformDatasets, project_id: &str, dataset_id: &str
    /// ) -> Result<()> {
    ///     client.delete_dataset()
    ///         .set_name(format!("projects/{project_id}/datasets/{dataset_id}"))
    ///         .send().await?;
    ///     Ok(())
    /// }
    /// ```
    pub fn delete_dataset(&self) -> super::builder::maps_platform_datasets::DeleteDataset {
        super::builder::maps_platform_datasets::DeleteDataset::new(self.inner.clone())
    }
}