gcp-sdk-api-serviceusage-v1 0.2.0

Google Cloud Client Libraries for Rust - Service Usage 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 [ServiceUsage](crate::stubs::ServiceUsage) decorator for logging and tracing.
#[derive(Clone, Debug)]
pub struct ServiceUsage<T>
where
    T: crate::stubs::ServiceUsage + std::fmt::Debug + Send + Sync,
{
    inner: T,
}

impl<T> ServiceUsage<T>
where
    T: crate::stubs::ServiceUsage + std::fmt::Debug + Send + Sync,
{
    pub fn new(inner: T) -> Self {
        Self { inner }
    }
}

impl<T> crate::stubs::ServiceUsage for ServiceUsage<T>
where
    T: crate::stubs::ServiceUsage + std::fmt::Debug + Send + Sync,
{
    #[tracing::instrument(ret)]
    async fn enable_service(
        &self,
        req: crate::model::EnableServiceRequest,
        options: gax::options::RequestOptions,
    ) -> Result<longrunning::model::Operation> {
        self.inner.enable_service(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn disable_service(
        &self,
        req: crate::model::DisableServiceRequest,
        options: gax::options::RequestOptions,
    ) -> Result<longrunning::model::Operation> {
        self.inner.disable_service(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_service(
        &self,
        req: crate::model::GetServiceRequest,
        options: gax::options::RequestOptions,
    ) -> Result<crate::model::Service> {
        self.inner.get_service(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn list_services(
        &self,
        req: crate::model::ListServicesRequest,
        options: gax::options::RequestOptions,
    ) -> Result<crate::model::ListServicesResponse> {
        self.inner.list_services(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn batch_enable_services(
        &self,
        req: crate::model::BatchEnableServicesRequest,
        options: gax::options::RequestOptions,
    ) -> Result<longrunning::model::Operation> {
        self.inner.batch_enable_services(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn batch_get_services(
        &self,
        req: crate::model::BatchGetServicesRequest,
        options: gax::options::RequestOptions,
    ) -> Result<crate::model::BatchGetServicesResponse> {
        self.inner.batch_get_services(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn list_operations(
        &self,
        req: longrunning::model::ListOperationsRequest,
        options: gax::options::RequestOptions,
    ) -> Result<longrunning::model::ListOperationsResponse> {
        self.inner.list_operations(req, options).await
    }

    #[tracing::instrument(ret)]
    async fn get_operation(
        &self,
        req: longrunning::model::GetOperationRequest,
        options: gax::options::RequestOptions,
    ) -> Result<longrunning::model::Operation> {
        self.inner.get_operation(req, options).await
    }

    fn get_polling_policy(
        &self,
        options: &gax::options::RequestOptions,
    ) -> std::sync::Arc<dyn gax::polling_policy::PollingPolicy> {
        self.inner.get_polling_policy(options)
    }

    fn get_polling_backoff_policy(
        &self,
        options: &gax::options::RequestOptions,
    ) -> std::sync::Arc<dyn gax::polling_backoff_policy::PollingBackoffPolicy> {
        self.inner.get_polling_backoff_policy(options)
    }
}