gcp_sdk_iam_v2/client.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
// 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::broken_intra_doc_links)]
use crate::Result;
use std::sync::Arc;
/// Implements a client for the Identity and Access Management (IAM) API.
///
/// # Service Description
///
/// An interface for managing Identity and Access Management (IAM) policies.
///
/// # Configuration
///
/// `Policies` has various configuration parameters, the defaults should
/// work with most applications.
///
/// # Pooling and Cloning
///
/// `Policies` holds a connection pool internally, it is advised to
/// create one and the reuse it. You do not need to wrap `Policies` in
/// an [Rc](std::rc::Rc) or [Arc] to reuse it, because it already uses an `Arc`
/// internally.
#[derive(Clone, Debug)]
pub struct Policies {
inner: Arc<dyn crate::stubs::dynamic::Policies>,
}
impl Policies {
/// Creates a new client with the default configuration.
pub async fn new() -> Result<Self> {
Self::new_with_config(gax::options::ClientConfig::default()).await
}
/// Creates a new client with the specified configuration.
pub async fn new_with_config(conf: gax::options::ClientConfig) -> Result<Self> {
let inner = Self::build_inner(conf).await?;
Ok(Self { inner })
}
/// Creates a new client from the provided stub.
///
/// The most common case for calling this function is when mocking the
/// client.
pub fn from_stub<T>(stub: T) -> Self
where
T: crate::stubs::Policies + 'static,
{
Self {
inner: Arc::new(stub),
}
}
async fn build_inner(
conf: gax::options::ClientConfig,
) -> Result<Arc<dyn crate::stubs::dynamic::Policies>> {
if conf.tracing_enabled() {
return Ok(Arc::new(Self::build_with_tracing(conf).await?));
}
Ok(Arc::new(Self::build_transport(conf).await?))
}
async fn build_transport(
conf: gax::options::ClientConfig,
) -> Result<impl crate::stubs::Policies> {
crate::transport::Policies::new(conf).await
}
async fn build_with_tracing(
conf: gax::options::ClientConfig,
) -> Result<impl crate::stubs::Policies> {
Self::build_transport(conf)
.await
.map(crate::tracing::Policies::new)
}
/// Retrieves the policies of the specified kind that are attached to a
/// resource.
///
/// The response lists only policy metadata. In particular, policy rules are
/// omitted.
pub fn list_policies(
&self,
parent: impl Into<std::string::String>,
) -> crate::builders::policies::ListPolicies {
crate::builders::policies::ListPolicies::new(self.inner.clone()).set_parent(parent.into())
}
/// Gets a policy.
pub fn get_policy(
&self,
name: impl Into<std::string::String>,
) -> crate::builders::policies::GetPolicy {
crate::builders::policies::GetPolicy::new(self.inner.clone()).set_name(name.into())
}
/// Creates a policy.
///
/// # Long running operations
///
/// Calling [poller()] on the resulting builder returns an implementation of
/// the [lro::Poller] trait. You need to call `Poller::poll` on this
/// `Poller` at least once to start the LRO. You may periodically poll this
/// object to find the status of the operation. The poller automatically
/// extract the final response value and any intermediate metadata values.
///
/// Calling [send()] on the resulting builder starts a LRO (long-Running
/// Operation). LROs run in the background, and the application may poll
/// them periodically to find out if they have succeeded, or failed. See
/// below for instructions on how to manually use the resulting [Operation].
/// We recommend `poller()` in favor of `send()`.
///
/// ## Polling until completion
///
/// Applications that do not care about intermediate results in a
/// long-running operation may use the [until_done()] function:
///
/// ```
/// # use gax::Result;
/// # use gcp_sdk_iam_v2::model;
/// async fn wait(
/// mut poller: impl lro::Poller<model::Policy, model::PolicyOperationMetadata>
/// ) -> Result<model::Policy> {
/// poller.until_done().await
/// }
/// ```
///
/// This will wait until the LRO completes (successfully or with an error).
/// Applications can set the [PollingPolicy] and [PollingBackoffPolicy] to
/// control for how long the function runs.
///
/// ## Polling with detailed metadata updates
///
/// Using the result of [poller()] follows a common pattern:
///
/// ```
/// # use gax::Result;
/// # use gcp_sdk_iam_v2::model;
/// async fn wait(
/// mut poller: impl lro::Poller<model::Policy, model::PolicyOperationMetadata>
/// ) -> Result<model::Policy> {
/// while let Some(p) = poller.poll().await {
/// match p {
/// lro::PollingResult::Completed(r) => { return r; },
/// lro::PollingResult::InProgress(m) => { println!("in progress {m:?}"); },
/// lro::PollingResult::PollingError(_) => { /* ignored */ },
/// }
/// tokio::time::sleep(std::time::Duration::from_secs(1)).await;
/// }
/// Err(gax::error::Error::other("LRO never completed"))
/// }
/// ```
///
/// ## Manually polling long-running operations
///
/// If you call [send()], you need to examine the contents of the resulting
/// [Operation][longrunning::model::Operation] to determine the result of
/// the operation.
///
/// If the `done` field is `true`, the operation has completed. The `result`
/// field contains the final response, this will be a [crate::model::Policy] (as
/// an [Any]), or the error (as a `Status`).
///
/// If the `done` field is `false`, the operation has not completed. The
/// operation may also include a [crate::model::PolicyOperationMetadata] value in the `metadata`
/// field. This value would also be encoded as an [Any]. The metadata may
/// include information about how much progress the LRO has made.
///
/// To find out if the operation has completed, use the [get_operation]
/// method and repeat the steps outlined above.
///
/// Note that most errors on [get_operation] do not indicate that the
/// long-running operation failed. Long-running operation failures return
/// the error status in the [result] field.
///
/// [send()]: crate::builders::policies::CreatePolicy::send
/// [poller()]: crate::builders::policies::CreatePolicy::poller
/// [until_done()]: lro::Poller::until_done
/// [PollingPolicy]: gax::polling_policy::PollingPolicy
/// [PollingBackoffPolicy]: gax::polling_backoff_policy::PollingBackoffPolicy
/// [get_operation]: Self::get_operation
/// [metadata]: longrunning::model::Operation::result
/// [name]: longrunning::model::Operation::name
/// [Operation]: longrunning::model::Operation
/// [result]: longrunning::model::Operation::result
/// [Any]: wkt::Any
pub fn create_policy(
&self,
parent: impl Into<std::string::String>,
) -> crate::builders::policies::CreatePolicy {
crate::builders::policies::CreatePolicy::new(self.inner.clone()).set_parent(parent.into())
}
/// Updates the specified policy.
///
/// You can update only the rules and the display name for the policy.
///
/// To update a policy, you should use a read-modify-write loop:
///
/// . Use [GetPolicy][google.iam.v2.Policies.GetPolicy] to read the current version of the policy.
/// . Modify the policy as needed.
/// . Use `UpdatePolicy` to write the updated policy.
///
/// This pattern helps prevent conflicts between concurrent updates.
///
/// [google.iam.v2.Policies.GetPolicy]: crate::client::Policies::get_policy
///
/// # Long running operations
///
/// Calling [poller()] on the resulting builder returns an implementation of
/// the [lro::Poller] trait. You need to call `Poller::poll` on this
/// `Poller` at least once to start the LRO. You may periodically poll this
/// object to find the status of the operation. The poller automatically
/// extract the final response value and any intermediate metadata values.
///
/// Calling [send()] on the resulting builder starts a LRO (long-Running
/// Operation). LROs run in the background, and the application may poll
/// them periodically to find out if they have succeeded, or failed. See
/// below for instructions on how to manually use the resulting [Operation].
/// We recommend `poller()` in favor of `send()`.
///
/// ## Polling until completion
///
/// Applications that do not care about intermediate results in a
/// long-running operation may use the [until_done()] function:
///
/// ```
/// # use gax::Result;
/// # use gcp_sdk_iam_v2::model;
/// async fn wait(
/// mut poller: impl lro::Poller<model::Policy, model::PolicyOperationMetadata>
/// ) -> Result<model::Policy> {
/// poller.until_done().await
/// }
/// ```
///
/// This will wait until the LRO completes (successfully or with an error).
/// Applications can set the [PollingPolicy] and [PollingBackoffPolicy] to
/// control for how long the function runs.
///
/// ## Polling with detailed metadata updates
///
/// Using the result of [poller()] follows a common pattern:
///
/// ```
/// # use gax::Result;
/// # use gcp_sdk_iam_v2::model;
/// async fn wait(
/// mut poller: impl lro::Poller<model::Policy, model::PolicyOperationMetadata>
/// ) -> Result<model::Policy> {
/// while let Some(p) = poller.poll().await {
/// match p {
/// lro::PollingResult::Completed(r) => { return r; },
/// lro::PollingResult::InProgress(m) => { println!("in progress {m:?}"); },
/// lro::PollingResult::PollingError(_) => { /* ignored */ },
/// }
/// tokio::time::sleep(std::time::Duration::from_secs(1)).await;
/// }
/// Err(gax::error::Error::other("LRO never completed"))
/// }
/// ```
///
/// ## Manually polling long-running operations
///
/// If you call [send()], you need to examine the contents of the resulting
/// [Operation][longrunning::model::Operation] to determine the result of
/// the operation.
///
/// If the `done` field is `true`, the operation has completed. The `result`
/// field contains the final response, this will be a [crate::model::Policy] (as
/// an [Any]), or the error (as a `Status`).
///
/// If the `done` field is `false`, the operation has not completed. The
/// operation may also include a [crate::model::PolicyOperationMetadata] value in the `metadata`
/// field. This value would also be encoded as an [Any]. The metadata may
/// include information about how much progress the LRO has made.
///
/// To find out if the operation has completed, use the [get_operation]
/// method and repeat the steps outlined above.
///
/// Note that most errors on [get_operation] do not indicate that the
/// long-running operation failed. Long-running operation failures return
/// the error status in the [result] field.
///
/// [send()]: crate::builders::policies::UpdatePolicy::send
/// [poller()]: crate::builders::policies::UpdatePolicy::poller
/// [until_done()]: lro::Poller::until_done
/// [PollingPolicy]: gax::polling_policy::PollingPolicy
/// [PollingBackoffPolicy]: gax::polling_backoff_policy::PollingBackoffPolicy
/// [get_operation]: Self::get_operation
/// [metadata]: longrunning::model::Operation::result
/// [name]: longrunning::model::Operation::name
/// [Operation]: longrunning::model::Operation
/// [result]: longrunning::model::Operation::result
/// [Any]: wkt::Any
pub fn update_policy(
&self,
policy: impl Into<crate::model::Policy>,
) -> crate::builders::policies::UpdatePolicy {
crate::builders::policies::UpdatePolicy::new(self.inner.clone()).set_policy(policy.into())
}
/// Deletes a policy. This action is permanent.
///
/// # Long running operations
///
/// Calling [poller()] on the resulting builder returns an implementation of
/// the [lro::Poller] trait. You need to call `Poller::poll` on this
/// `Poller` at least once to start the LRO. You may periodically poll this
/// object to find the status of the operation. The poller automatically
/// extract the final response value and any intermediate metadata values.
///
/// Calling [send()] on the resulting builder starts a LRO (long-Running
/// Operation). LROs run in the background, and the application may poll
/// them periodically to find out if they have succeeded, or failed. See
/// below for instructions on how to manually use the resulting [Operation].
/// We recommend `poller()` in favor of `send()`.
///
/// ## Polling until completion
///
/// Applications that do not care about intermediate results in a
/// long-running operation may use the [until_done()] function:
///
/// ```
/// # use gax::Result;
/// # use gcp_sdk_iam_v2::model;
/// async fn wait(
/// mut poller: impl lro::Poller<model::Policy, model::PolicyOperationMetadata>
/// ) -> Result<model::Policy> {
/// poller.until_done().await
/// }
/// ```
///
/// This will wait until the LRO completes (successfully or with an error).
/// Applications can set the [PollingPolicy] and [PollingBackoffPolicy] to
/// control for how long the function runs.
///
/// ## Polling with detailed metadata updates
///
/// Using the result of [poller()] follows a common pattern:
///
/// ```
/// # use gax::Result;
/// # use gcp_sdk_iam_v2::model;
/// async fn wait(
/// mut poller: impl lro::Poller<model::Policy, model::PolicyOperationMetadata>
/// ) -> Result<model::Policy> {
/// while let Some(p) = poller.poll().await {
/// match p {
/// lro::PollingResult::Completed(r) => { return r; },
/// lro::PollingResult::InProgress(m) => { println!("in progress {m:?}"); },
/// lro::PollingResult::PollingError(_) => { /* ignored */ },
/// }
/// tokio::time::sleep(std::time::Duration::from_secs(1)).await;
/// }
/// Err(gax::error::Error::other("LRO never completed"))
/// }
/// ```
///
/// ## Manually polling long-running operations
///
/// If you call [send()], you need to examine the contents of the resulting
/// [Operation][longrunning::model::Operation] to determine the result of
/// the operation.
///
/// If the `done` field is `true`, the operation has completed. The `result`
/// field contains the final response, this will be a [crate::model::Policy] (as
/// an [Any]), or the error (as a `Status`).
///
/// If the `done` field is `false`, the operation has not completed. The
/// operation may also include a [crate::model::PolicyOperationMetadata] value in the `metadata`
/// field. This value would also be encoded as an [Any]. The metadata may
/// include information about how much progress the LRO has made.
///
/// To find out if the operation has completed, use the [get_operation]
/// method and repeat the steps outlined above.
///
/// Note that most errors on [get_operation] do not indicate that the
/// long-running operation failed. Long-running operation failures return
/// the error status in the [result] field.
///
/// [send()]: crate::builders::policies::DeletePolicy::send
/// [poller()]: crate::builders::policies::DeletePolicy::poller
/// [until_done()]: lro::Poller::until_done
/// [PollingPolicy]: gax::polling_policy::PollingPolicy
/// [PollingBackoffPolicy]: gax::polling_backoff_policy::PollingBackoffPolicy
/// [get_operation]: Self::get_operation
/// [metadata]: longrunning::model::Operation::result
/// [name]: longrunning::model::Operation::name
/// [Operation]: longrunning::model::Operation
/// [result]: longrunning::model::Operation::result
/// [Any]: wkt::Any
pub fn delete_policy(
&self,
name: impl Into<std::string::String>,
) -> crate::builders::policies::DeletePolicy {
crate::builders::policies::DeletePolicy::new(self.inner.clone()).set_name(name.into())
}
/// Provides the [Operations][google.longrunning.Operations] service functionality in this service.
///
/// [google.longrunning.Operations]: longrunning::client::Operations
pub fn get_operation(
&self,
name: impl Into<std::string::String>,
) -> crate::builders::policies::GetOperation {
crate::builders::policies::GetOperation::new(self.inner.clone()).set_name(name.into())
}
}