Skip to main content

google_cloud_location/
client.rs

1// Copyright 2024 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// Code generated by sidekick. DO NOT EDIT.
16#![allow(rustdoc::redundant_explicit_links)]
17#![allow(rustdoc::broken_intra_doc_links)]
18
19/// Implements a client for the Cloud Metadata API.
20///
21/// # Example
22/// ```
23/// # use google_cloud_location::client::Locations;
24/// use google_cloud_gax::paginator::ItemPaginator as _;
25/// async fn sample(
26/// ) -> anyhow::Result<()> {
27///     let client = Locations::builder().build().await?;
28///     let mut list = client.list_locations()
29///         /* set fields */
30///         .by_item();
31///     while let Some(item) = list.next().await.transpose()? {
32///         println!("{:?}", item);
33///     }
34///     Ok(())
35/// }
36/// ```
37///
38/// # Service Description
39///
40/// An abstract interface that provides location-related information for
41/// a service. Service-specific metadata is provided through the
42/// [Location.metadata][google.cloud.location.Location.metadata] field.
43///
44/// [google.cloud.location.Location.metadata]: crate::model::Location::metadata
45///
46/// # Configuration
47///
48/// To configure `Locations` use the `with_*` methods in the type returned
49/// by [builder()][Locations::builder]. The default configuration should
50/// work for most applications. Common configuration changes include
51///
52/// * [with_endpoint()]: by default this client uses the global default endpoint
53///   (`https://cloud.googleapis.com`). Applications using regional
54///   endpoints or running in restricted networks (e.g. a network configured
55//    with [Private Google Access with VPC Service Controls]) may want to
56///   override this default.
57/// * [with_credentials()]: by default this client uses
58///   [Application Default Credentials]. Applications using custom
59///   authentication may need to override this default.
60///
61/// [with_endpoint()]: super::builder::locations::ClientBuilder::with_endpoint
62/// [with_credentials()]: super::builder::locations::ClientBuilder::with_credentials
63/// [Private Google Access with VPC Service Controls]: https://cloud.google.com/vpc-service-controls/docs/private-connectivity
64/// [Application Default Credentials]: https://cloud.google.com/docs/authentication#adc
65///
66/// # Pooling and Cloning
67///
68/// `Locations` holds a connection pool internally, it is advised to
69/// create one and reuse it. You do not need to wrap `Locations` in
70/// an [Rc](std::rc::Rc) or [Arc](std::sync::Arc) to reuse it, because it
71/// already uses an `Arc` internally.
72#[derive(Clone, Debug)]
73pub struct Locations {
74    inner: std::sync::Arc<dyn super::stub::dynamic::Locations>,
75}
76
77impl Locations {
78    /// Returns a builder for [Locations].
79    ///
80    /// ```
81    /// # async fn sample() -> google_cloud_gax::client_builder::Result<()> {
82    /// # use google_cloud_location::client::Locations;
83    /// let client = Locations::builder().build().await?;
84    /// # Ok(()) }
85    /// ```
86    pub fn builder() -> super::builder::locations::ClientBuilder {
87        crate::new_client_builder(super::builder::locations::client::Factory)
88    }
89
90    /// Creates a new client from the provided stub.
91    ///
92    /// The most common case for calling this function is in tests mocking the
93    /// client's behavior.
94    pub fn from_stub<T>(stub: impl Into<std::sync::Arc<T>>) -> Self
95    where
96        T: super::stub::Locations + 'static,
97    {
98        Self { inner: stub.into() }
99    }
100
101    pub(crate) async fn new(
102        config: gaxi::options::ClientConfig,
103    ) -> crate::ClientBuilderResult<Self> {
104        let inner = Self::build_inner(config).await?;
105        Ok(Self { inner })
106    }
107
108    async fn build_inner(
109        conf: gaxi::options::ClientConfig,
110    ) -> crate::ClientBuilderResult<std::sync::Arc<dyn super::stub::dynamic::Locations>> {
111        if gaxi::options::tracing_enabled(&conf) {
112            return Ok(std::sync::Arc::new(Self::build_with_tracing(conf).await?));
113        }
114        Ok(std::sync::Arc::new(Self::build_transport(conf).await?))
115    }
116
117    async fn build_transport(
118        conf: gaxi::options::ClientConfig,
119    ) -> crate::ClientBuilderResult<impl super::stub::Locations> {
120        super::transport::Locations::new(conf).await
121    }
122
123    async fn build_with_tracing(
124        conf: gaxi::options::ClientConfig,
125    ) -> crate::ClientBuilderResult<impl super::stub::Locations> {
126        Self::build_transport(conf)
127            .await
128            .map(super::tracing::Locations::new)
129    }
130
131    /// Lists information about the supported locations for this service.
132    ///
133    /// # Example
134    /// ```
135    /// # use google_cloud_location::client::Locations;
136    /// use google_cloud_gax::paginator::ItemPaginator as _;
137    /// use google_cloud_location::Result;
138    /// async fn sample(
139    ///    client: &Locations
140    /// ) -> Result<()> {
141    ///     let mut list = client.list_locations()
142    ///         /* set fields */
143    ///         .by_item();
144    ///     while let Some(item) = list.next().await.transpose()? {
145    ///         println!("{:?}", item);
146    ///     }
147    ///     Ok(())
148    /// }
149    /// ```
150    pub fn list_locations(&self) -> super::builder::locations::ListLocations {
151        super::builder::locations::ListLocations::new(self.inner.clone())
152    }
153
154    /// Gets information about a location.
155    ///
156    /// # Example
157    /// ```
158    /// # use google_cloud_location::client::Locations;
159    /// use google_cloud_location::Result;
160    /// async fn sample(
161    ///    client: &Locations
162    /// ) -> Result<()> {
163    ///     let response = client.get_location()
164    ///         /* set fields */
165    ///         .send().await?;
166    ///     println!("response {:?}", response);
167    ///     Ok(())
168    /// }
169    /// ```
170    pub fn get_location(&self) -> super::builder::locations::GetLocation {
171        super::builder::locations::GetLocation::new(self.inner.clone())
172    }
173}