[][src]Struct gcp_client::google::cloud::recommender::v1::recommender_client::RecommenderClient

pub struct RecommenderClient<T> { /* fields omitted */ }

Provides recommendations for cloud customers for various categories like performance optimization, cost savings, reliability, feature discovery, etc. These recommendations are generated automatically based on analysis of user resources, configuration and monitoring metrics.

Implementations

impl<T> RecommenderClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn list_recommendations<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListRecommendationsRequest>
) -> Result<Response<ListRecommendationsResponse>, Status>
[src]

Lists recommendations for a Cloud project. Requires the recommender.*.list IAM permission for the specified recommender.

pub async fn get_recommendation<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetRecommendationRequest>
) -> Result<Response<Recommendation>, Status>
[src]

Gets the requested recommendation. Requires the recommender.*.get IAM permission for the specified recommender.

pub async fn mark_recommendation_claimed<'_>(
    &'_ mut self,
    request: impl IntoRequest<MarkRecommendationClaimedRequest>
) -> Result<Response<Recommendation>, Status>
[src]

Mark the Recommendation State as Claimed. Users can use this method to indicate to the Recommender API that they are starting to apply the recommendation themselves. This stops the recommendation content from being updated.

MarkRecommendationClaimed can be applied to recommendations in CLAIMED, SUCCEEDED, FAILED, or ACTIVE state.

Requires the recommender.*.update IAM permission for the specified recommender.

pub async fn mark_recommendation_succeeded<'_>(
    &'_ mut self,
    request: impl IntoRequest<MarkRecommendationSucceededRequest>
) -> Result<Response<Recommendation>, Status>
[src]

Mark the Recommendation State as Succeeded. Users can use this method to indicate to the Recommender API that they have applied the recommendation themselves, and the operation was successful. This stops the recommendation content from being updated.

MarkRecommendationSucceeded can be applied to recommendations in ACTIVE, CLAIMED, SUCCEEDED, or FAILED state.

Requires the recommender.*.update IAM permission for the specified recommender.

pub async fn mark_recommendation_failed<'_>(
    &'_ mut self,
    request: impl IntoRequest<MarkRecommendationFailedRequest>
) -> Result<Response<Recommendation>, Status>
[src]

Mark the Recommendation State as Failed. Users can use this method to indicate to the Recommender API that they have applied the recommendation themselves, and the operation failed. This stops the recommendation content from being updated.

MarkRecommendationFailed can be applied to recommendations in ACTIVE, CLAIMED, SUCCEEDED, or FAILED state.

Requires the recommender.*.update IAM permission for the specified recommender.

Trait Implementations

impl<T: Clone> Clone for RecommenderClient<T>[src]

impl<T> Debug for RecommenderClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for RecommenderClient<T>

impl<T> Send for RecommenderClient<T> where
    T: Send

impl<T> Sync for RecommenderClient<T> where
    T: Sync

impl<T> Unpin for RecommenderClient<T> where
    T: Unpin

impl<T> !UnwindSafe for RecommenderClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]