google-cloud-recommender-v1 1.7.0

Google Cloud Client Libraries for Rust - Recommender API
Documentation
// 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.
use crate::Result;

/// Implements a [Recommender](super::stub::Recommender) decorator for logging and tracing.
#[derive(Clone, Debug)]
pub struct Recommender<T>
where
    T: super::stub::Recommender + std::fmt::Debug + Send + Sync,
{
    inner: T,
}

impl<T> Recommender<T>
where
    T: super::stub::Recommender + std::fmt::Debug + Send + Sync,
{
    pub fn new(inner: T) -> Self {
        Self { inner }
    }
}

impl<T> super::stub::Recommender for Recommender<T>
where
    T: super::stub::Recommender + std::fmt::Debug + Send + Sync,
{
    #[tracing::instrument(ret)]
    async fn list_insights(
        &self,
        req: crate::model::ListInsightsRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::ListInsightsResponse>> {
        self.inner.list_insights(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_insight(
        &self,
        req: crate::model::GetInsightRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Insight>> {
        self.inner.get_insight(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn mark_insight_accepted(
        &self,
        req: crate::model::MarkInsightAcceptedRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Insight>> {
        self.inner.mark_insight_accepted(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn list_recommendations(
        &self,
        req: crate::model::ListRecommendationsRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::ListRecommendationsResponse>> {
        self.inner.list_recommendations(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_recommendation(
        &self,
        req: crate::model::GetRecommendationRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Recommendation>> {
        self.inner.get_recommendation(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn mark_recommendation_dismissed(
        &self,
        req: crate::model::MarkRecommendationDismissedRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Recommendation>> {
        self.inner.mark_recommendation_dismissed(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn mark_recommendation_claimed(
        &self,
        req: crate::model::MarkRecommendationClaimedRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Recommendation>> {
        self.inner.mark_recommendation_claimed(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn mark_recommendation_succeeded(
        &self,
        req: crate::model::MarkRecommendationSucceededRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Recommendation>> {
        self.inner.mark_recommendation_succeeded(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn mark_recommendation_failed(
        &self,
        req: crate::model::MarkRecommendationFailedRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::Recommendation>> {
        self.inner.mark_recommendation_failed(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_recommender_config(
        &self,
        req: crate::model::GetRecommenderConfigRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::RecommenderConfig>> {
        self.inner.get_recommender_config(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn update_recommender_config(
        &self,
        req: crate::model::UpdateRecommenderConfigRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::RecommenderConfig>> {
        self.inner.update_recommender_config(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_insight_type_config(
        &self,
        req: crate::model::GetInsightTypeConfigRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::InsightTypeConfig>> {
        self.inner.get_insight_type_config(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn update_insight_type_config(
        &self,
        req: crate::model::UpdateInsightTypeConfigRequest,
        options: crate::RequestOptions,
    ) -> Result<crate::Response<crate::model::InsightTypeConfig>> {
        self.inner.update_insight_type_config(req, options).await
    }
}