google_cloud_developerconnect_v1/client.rs
1// Copyright 2025 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 Developer Connect API.
20///
21/// # Example
22/// ```
23/// # tokio_test::block_on(async {
24/// # use google_cloud_developerconnect_v1::client::DeveloperConnect;
25/// let client = DeveloperConnect::builder().build().await?;
26/// // use `client` to make requests to the Developer Connect API.
27/// # gax::client_builder::Result::<()>::Ok(()) });
28/// ```
29///
30/// # Service Description
31///
32/// Service describing handlers for resources
33///
34/// # Configuration
35///
36/// To configure `DeveloperConnect` use the `with_*` methods in the type returned
37/// by [builder()][DeveloperConnect::builder]. The default configuration should
38/// work for most applications. Common configuration changes include
39///
40/// * [with_endpoint()]: by default this client uses the global default endpoint
41/// (`https://developerconnect.googleapis.com`). Applications using regional
42/// endpoints or running in restricted networks (e.g. a network configured
43// with [Private Google Access with VPC Service Controls]) may want to
44/// override this default.
45/// * [with_credentials()]: by default this client uses
46/// [Application Default Credentials]. Applications using custom
47/// authentication may need to override this default.
48///
49/// [with_endpoint()]: super::builder::developer_connect::ClientBuilder::with_endpoint
50/// [with_credentials()]: super::builder::developer_connect::ClientBuilder::credentials
51/// [Private Google Access with VPC Service Controls]: https://cloud.google.com/vpc-service-controls/docs/private-connectivity
52/// [Application Default Credentials]: https://cloud.google.com/docs/authentication#adc
53///
54/// # Pooling and Cloning
55///
56/// `DeveloperConnect` holds a connection pool internally, it is advised to
57/// create one and the reuse it. You do not need to wrap `DeveloperConnect` in
58/// an [Rc](std::rc::Rc) or [Arc](std::sync::Arc) to reuse it, because it
59/// already uses an `Arc` internally.
60#[derive(Clone, Debug)]
61pub struct DeveloperConnect {
62 inner: std::sync::Arc<dyn super::stub::dynamic::DeveloperConnect>,
63}
64
65impl DeveloperConnect {
66 /// Returns a builder for [DeveloperConnect].
67 ///
68 /// ```
69 /// # tokio_test::block_on(async {
70 /// # use google_cloud_developerconnect_v1::client::DeveloperConnect;
71 /// let client = DeveloperConnect::builder().build().await?;
72 /// # gax::client_builder::Result::<()>::Ok(()) });
73 /// ```
74 pub fn builder() -> super::builder::developer_connect::ClientBuilder {
75 gax::client_builder::internal::new_builder(
76 super::builder::developer_connect::client::Factory,
77 )
78 }
79
80 /// Creates a new client from the provided stub.
81 ///
82 /// The most common case for calling this function is in tests mocking the
83 /// client's behavior.
84 pub fn from_stub<T>(stub: T) -> Self
85 where
86 T: super::stub::DeveloperConnect + 'static,
87 {
88 Self {
89 inner: std::sync::Arc::new(stub),
90 }
91 }
92
93 pub(crate) async fn new(
94 config: gaxi::options::ClientConfig,
95 ) -> gax::client_builder::Result<Self> {
96 let inner = Self::build_inner(config).await?;
97 Ok(Self { inner })
98 }
99
100 async fn build_inner(
101 conf: gaxi::options::ClientConfig,
102 ) -> gax::client_builder::Result<std::sync::Arc<dyn super::stub::dynamic::DeveloperConnect>>
103 {
104 if gaxi::options::tracing_enabled(&conf) {
105 return Ok(std::sync::Arc::new(Self::build_with_tracing(conf).await?));
106 }
107 Ok(std::sync::Arc::new(Self::build_transport(conf).await?))
108 }
109
110 async fn build_transport(
111 conf: gaxi::options::ClientConfig,
112 ) -> gax::client_builder::Result<impl super::stub::DeveloperConnect> {
113 super::transport::DeveloperConnect::new(conf).await
114 }
115
116 async fn build_with_tracing(
117 conf: gaxi::options::ClientConfig,
118 ) -> gax::client_builder::Result<impl super::stub::DeveloperConnect> {
119 Self::build_transport(conf)
120 .await
121 .map(super::tracing::DeveloperConnect::new)
122 }
123
124 /// Lists Connections in a given project and location.
125 pub fn list_connections(&self) -> super::builder::developer_connect::ListConnections {
126 super::builder::developer_connect::ListConnections::new(self.inner.clone())
127 }
128
129 /// Gets details of a single Connection.
130 pub fn get_connection(&self) -> super::builder::developer_connect::GetConnection {
131 super::builder::developer_connect::GetConnection::new(self.inner.clone())
132 }
133
134 /// Creates a new Connection in a given project and location.
135 ///
136 /// # Long running operations
137 ///
138 /// This method is used to start, and/or poll a [long-running Operation].
139 /// The [Working with long-running operations] chapter in the [user guide]
140 /// covers these operations in detail.
141 ///
142 /// [long-running operation]: https://google.aip.dev/151
143 /// [user guide]: https://googleapis.github.io/google-cloud-rust/
144 /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
145 pub fn create_connection(&self) -> super::builder::developer_connect::CreateConnection {
146 super::builder::developer_connect::CreateConnection::new(self.inner.clone())
147 }
148
149 /// Updates the parameters of a single Connection.
150 ///
151 /// # Long running operations
152 ///
153 /// This method is used to start, and/or poll a [long-running Operation].
154 /// The [Working with long-running operations] chapter in the [user guide]
155 /// covers these operations in detail.
156 ///
157 /// [long-running operation]: https://google.aip.dev/151
158 /// [user guide]: https://googleapis.github.io/google-cloud-rust/
159 /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
160 pub fn update_connection(&self) -> super::builder::developer_connect::UpdateConnection {
161 super::builder::developer_connect::UpdateConnection::new(self.inner.clone())
162 }
163
164 /// Deletes a single Connection.
165 ///
166 /// # Long running operations
167 ///
168 /// This method is used to start, and/or poll a [long-running Operation].
169 /// The [Working with long-running operations] chapter in the [user guide]
170 /// covers these operations in detail.
171 ///
172 /// [long-running operation]: https://google.aip.dev/151
173 /// [user guide]: https://googleapis.github.io/google-cloud-rust/
174 /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
175 pub fn delete_connection(&self) -> super::builder::developer_connect::DeleteConnection {
176 super::builder::developer_connect::DeleteConnection::new(self.inner.clone())
177 }
178
179 /// Creates a GitRepositoryLink. Upon linking a Git Repository, Developer
180 /// Connect will configure the Git Repository to send webhook events to
181 /// Developer Connect. Connections that use Firebase GitHub Application will
182 /// have events forwarded to the Firebase service. All other Connections will
183 /// have events forwarded to Cloud Build.
184 ///
185 /// # Long running operations
186 ///
187 /// This method is used to start, and/or poll a [long-running Operation].
188 /// The [Working with long-running operations] chapter in the [user guide]
189 /// covers these operations in detail.
190 ///
191 /// [long-running operation]: https://google.aip.dev/151
192 /// [user guide]: https://googleapis.github.io/google-cloud-rust/
193 /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
194 pub fn create_git_repository_link(
195 &self,
196 ) -> super::builder::developer_connect::CreateGitRepositoryLink {
197 super::builder::developer_connect::CreateGitRepositoryLink::new(self.inner.clone())
198 }
199
200 /// Deletes a single GitRepositoryLink.
201 ///
202 /// # Long running operations
203 ///
204 /// This method is used to start, and/or poll a [long-running Operation].
205 /// The [Working with long-running operations] chapter in the [user guide]
206 /// covers these operations in detail.
207 ///
208 /// [long-running operation]: https://google.aip.dev/151
209 /// [user guide]: https://googleapis.github.io/google-cloud-rust/
210 /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
211 pub fn delete_git_repository_link(
212 &self,
213 ) -> super::builder::developer_connect::DeleteGitRepositoryLink {
214 super::builder::developer_connect::DeleteGitRepositoryLink::new(self.inner.clone())
215 }
216
217 /// Lists GitRepositoryLinks in a given project, location, and connection.
218 pub fn list_git_repository_links(
219 &self,
220 ) -> super::builder::developer_connect::ListGitRepositoryLinks {
221 super::builder::developer_connect::ListGitRepositoryLinks::new(self.inner.clone())
222 }
223
224 /// Gets details of a single GitRepositoryLink.
225 pub fn get_git_repository_link(
226 &self,
227 ) -> super::builder::developer_connect::GetGitRepositoryLink {
228 super::builder::developer_connect::GetGitRepositoryLink::new(self.inner.clone())
229 }
230
231 /// Fetches read/write token of a given gitRepositoryLink.
232 pub fn fetch_read_write_token(&self) -> super::builder::developer_connect::FetchReadWriteToken {
233 super::builder::developer_connect::FetchReadWriteToken::new(self.inner.clone())
234 }
235
236 /// Fetches read token of a given gitRepositoryLink.
237 pub fn fetch_read_token(&self) -> super::builder::developer_connect::FetchReadToken {
238 super::builder::developer_connect::FetchReadToken::new(self.inner.clone())
239 }
240
241 /// FetchLinkableGitRepositories returns a list of git repositories from an SCM
242 /// that are available to be added to a Connection.
243 pub fn fetch_linkable_git_repositories(
244 &self,
245 ) -> super::builder::developer_connect::FetchLinkableGitRepositories {
246 super::builder::developer_connect::FetchLinkableGitRepositories::new(self.inner.clone())
247 }
248
249 /// FetchGitHubInstallations returns the list of GitHub Installations that
250 /// are available to be added to a Connection.
251 /// For github.com, only installations accessible to the authorizer token
252 /// are returned. For GitHub Enterprise, all installations are returned.
253 pub fn fetch_git_hub_installations(
254 &self,
255 ) -> super::builder::developer_connect::FetchGitHubInstallations {
256 super::builder::developer_connect::FetchGitHubInstallations::new(self.inner.clone())
257 }
258
259 /// Fetch the list of branches or tags for a given repository.
260 pub fn fetch_git_refs(&self) -> super::builder::developer_connect::FetchGitRefs {
261 super::builder::developer_connect::FetchGitRefs::new(self.inner.clone())
262 }
263
264 /// Lists information about the supported locations for this service.
265 pub fn list_locations(&self) -> super::builder::developer_connect::ListLocations {
266 super::builder::developer_connect::ListLocations::new(self.inner.clone())
267 }
268
269 /// Gets information about a location.
270 pub fn get_location(&self) -> super::builder::developer_connect::GetLocation {
271 super::builder::developer_connect::GetLocation::new(self.inner.clone())
272 }
273
274 /// Provides the [Operations][google.longrunning.Operations] service functionality in this service.
275 ///
276 /// [google.longrunning.Operations]: longrunning::client::Operations
277 pub fn list_operations(&self) -> super::builder::developer_connect::ListOperations {
278 super::builder::developer_connect::ListOperations::new(self.inner.clone())
279 }
280
281 /// Provides the [Operations][google.longrunning.Operations] service functionality in this service.
282 ///
283 /// [google.longrunning.Operations]: longrunning::client::Operations
284 pub fn get_operation(&self) -> super::builder::developer_connect::GetOperation {
285 super::builder::developer_connect::GetOperation::new(self.inner.clone())
286 }
287
288 /// Provides the [Operations][google.longrunning.Operations] service functionality in this service.
289 ///
290 /// [google.longrunning.Operations]: longrunning::client::Operations
291 pub fn delete_operation(&self) -> super::builder::developer_connect::DeleteOperation {
292 super::builder::developer_connect::DeleteOperation::new(self.inner.clone())
293 }
294
295 /// Provides the [Operations][google.longrunning.Operations] service functionality in this service.
296 ///
297 /// [google.longrunning.Operations]: longrunning::client::Operations
298 pub fn cancel_operation(&self) -> super::builder::developer_connect::CancelOperation {
299 super::builder::developer_connect::CancelOperation::new(self.inner.clone())
300 }
301}