pub struct TagHolds { /* private fields */ }Expand description
Implements a client for the Cloud Resource Manager API.
§Service Description
Allow users to create and manage TagHolds for TagValues. TagHolds represent the use of a Tag Value that is not captured by TagBindings but should still block TagValue deletion (such as a reference in a policy condition). This service provides isolated failure domains by cloud location so that TagHolds can be managed in the same location as their usage.
§Configuration
TagHolds has various configuration parameters, the defaults should
work with most applications.
§Pooling and Cloning
TagHolds holds a connection pool internally, it is advised to
create one and the reuse it. You do not need to wrap TagHolds in
an Rc or Arc to reuse it, because it already uses an Arc
internally.
Implementations§
Source§impl TagHolds
impl TagHolds
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: TagHolds + 'static,
pub fn from_stub<T>(stub: T) -> Selfwhere
T: TagHolds + 'static,
Creates a new client from the provided stub.
The most common case for calling this function is when mocking the client.
Sourcepub fn create_tag_hold(&self, parent: impl Into<String>) -> CreateTagHold
pub fn create_tag_hold(&self, parent: impl Into<String>) -> CreateTagHold
Creates a TagHold. Returns ALREADY_EXISTS if a TagHold with the same resource and origin exists under the same TagValue.
§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::TagHold, model::CreateTagHoldMetadata>
) -> Result<model::TagHold> {
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::TagHold, model::CreateTagHoldMetadata>
) -> Result<model::TagHold> {
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::TagHold (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::CreateTagHoldMetadata 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_tag_hold(&self, name: impl Into<String>) -> DeleteTagHold
pub fn delete_tag_hold(&self, name: impl Into<String>) -> DeleteTagHold
Deletes a TagHold.
§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<wkt::Empty, model::DeleteTagHoldMetadata>
) -> Result<wkt::Empty> {
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<wkt::Empty, model::DeleteTagHoldMetadata>
) -> Result<wkt::Empty> {
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 wkt::Empty (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::DeleteTagHoldMetadata 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 list_tag_holds(&self, parent: impl Into<String>) -> ListTagHolds
pub fn list_tag_holds(&self, parent: impl Into<String>) -> ListTagHolds
Lists TagHolds under a TagValue.
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.