google-cloud-modelarmor-v1 1.7.0

Google Cloud Client Libraries for Rust - Model Armor 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::ModelArmor].
#[async_trait::async_trait]
pub trait ModelArmor: std::fmt::Debug + Send + Sync {
    async fn list_templates(
        &self,
        req: crate::model::ListTemplatesRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::ListTemplatesResponse>>;

    async fn get_template(
        &self,
        req: crate::model::GetTemplateRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::Template>>;

    async fn create_template(
        &self,
        req: crate::model::CreateTemplateRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::Template>>;

    async fn update_template(
        &self,
        req: crate::model::UpdateTemplateRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::Template>>;

    async fn delete_template(
        &self,
        req: crate::model::DeleteTemplateRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<()>>;

    async fn get_floor_setting(
        &self,
        req: crate::model::GetFloorSettingRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::FloorSetting>>;

    async fn update_floor_setting(
        &self,
        req: crate::model::UpdateFloorSettingRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::FloorSetting>>;

    async fn sanitize_user_prompt(
        &self,
        req: crate::model::SanitizeUserPromptRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::SanitizeUserPromptResponse>>;

    async fn sanitize_model_response(
        &self,
        req: crate::model::SanitizeModelResponseRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<crate::model::SanitizeModelResponseResponse>>;

    async fn list_locations(
        &self,
        req: google_cloud_location::model::ListLocationsRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<google_cloud_location::model::ListLocationsResponse>>;

    async fn get_location(
        &self,
        req: google_cloud_location::model::GetLocationRequest,
        options: crate::RequestOptions,
    ) -> crate::Result<crate::Response<google_cloud_location::model::Location>>;
}

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

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

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

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

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

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

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

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

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

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

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