pub struct Policies { /* private fields */ }Expand description
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 or Arc to reuse it, because it already uses an Arc
internally.
Implementations§
Source§impl Policies
impl Policies
Sourcepub async fn new_with_config(conf: ClientConfig) -> Result<Self>
pub async fn new_with_config(conf: ClientConfig) -> Result<Self>
Creates a new client with the specified configuration.
Sourcepub fn from_stub<T>(stub: T) -> Selfwhere
T: Policies + 'static,
pub fn from_stub<T>(stub: T) -> Selfwhere
T: Policies + 'static,
Creates a new client from the provided stub.
The most common case for calling this function is when mocking the client.
Sourcepub fn list_policies(&self, parent: impl Into<String>) -> ListPolicies
pub fn list_policies(&self, parent: impl Into<String>) -> ListPolicies
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.
Sourcepub fn get_policy(&self, name: impl Into<String>) -> GetPolicy
pub fn get_policy(&self, name: impl Into<String>) -> GetPolicy
Gets a policy.
Sourcepub fn create_policy(&self, parent: impl Into<String>) -> CreatePolicy
pub fn create_policy(&self, parent: impl Into<String>) -> CreatePolicy
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:
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:
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 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.
Sourcepub fn update_policy(&self, policy: impl Into<Policy>) -> UpdatePolicy
pub fn update_policy(&self, policy: impl Into<Policy>) -> UpdatePolicy
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 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.
§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:
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:
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 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.
Sourcepub fn delete_policy(&self, name: impl Into<String>) -> DeletePolicy
pub fn delete_policy(&self, name: impl Into<String>) -> DeletePolicy
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:
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:
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 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.
Sourcepub fn get_operation(&self, name: impl Into<String>) -> GetOperation
pub fn get_operation(&self, name: impl Into<String>) -> GetOperation
Provides the Operations service functionality in this service.