google-cloud-api-cloudquotas-v1 1.8.0

Google Cloud Client Libraries for Rust - Cloud Quotas 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.

/// A dyn-compatible, crate-private version of [super::CloudQuotas].
#[async_trait::async_trait]
pub trait CloudQuotas: std::fmt::Debug + Send + Sync {
    async fn list_quota_infos(
        &self,
        req: crate::model::ListQuotaInfosRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::ListQuotaInfosResponse>>;

    async fn get_quota_info(
        &self,
        req: crate::model::GetQuotaInfoRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::QuotaInfo>>;

    async fn list_quota_preferences(
        &self,
        req: crate::model::ListQuotaPreferencesRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::ListQuotaPreferencesResponse>>;

    async fn get_quota_preference(
        &self,
        req: crate::model::GetQuotaPreferenceRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::QuotaPreference>>;

    async fn create_quota_preference(
        &self,
        req: crate::model::CreateQuotaPreferenceRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::QuotaPreference>>;

    async fn update_quota_preference(
        &self,
        req: crate::model::UpdateQuotaPreferenceRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::QuotaPreference>>;
}

/// All implementations of [super::CloudQuotas] also implement [CloudQuotas].
#[async_trait::async_trait]
impl<T: super::CloudQuotas> CloudQuotas for T {
    /// Forwards the call to the implementation provided by `T`.
    async fn list_quota_infos(
        &self,
        req: crate::model::ListQuotaInfosRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::ListQuotaInfosResponse>> {
        T::list_quota_infos(self, req, options).await
    }

    /// Forwards the call to the implementation provided by `T`.
    async fn get_quota_info(
        &self,
        req: crate::model::GetQuotaInfoRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::QuotaInfo>> {
        T::get_quota_info(self, req, options).await
    }

    /// Forwards the call to the implementation provided by `T`.
    async fn list_quota_preferences(
        &self,
        req: crate::model::ListQuotaPreferencesRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::ListQuotaPreferencesResponse>> {
        T::list_quota_preferences(self, req, options).await
    }

    /// Forwards the call to the implementation provided by `T`.
    async fn get_quota_preference(
        &self,
        req: crate::model::GetQuotaPreferenceRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::QuotaPreference>> {
        T::get_quota_preference(self, req, options).await
    }

    /// Forwards the call to the implementation provided by `T`.
    async fn create_quota_preference(
        &self,
        req: crate::model::CreateQuotaPreferenceRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::QuotaPreference>> {
        T::create_quota_preference(self, req, options).await
    }

    /// Forwards the call to the implementation provided by `T`.
    async fn update_quota_preference(
        &self,
        req: crate::model::UpdateQuotaPreferenceRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::QuotaPreference>> {
        T::update_quota_preference(self, req, options).await
    }
}