// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: Apache-2.0 // // Based on https://github.com/64bit/async-openai/ by Himanshu Neema // Original Copyright (c) 2022 Himanshu Neema // Licensed under MIT License (see ATTRIBUTIONS-Rust.md) // // Modifications Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. // Licensed under Apache 2.0 use serde::Serialize; use crate::{ Client, config::Config, error::OpenAIError, types::{ ProjectUser, ProjectUserCreateRequest, ProjectUserDeleteResponse, ProjectUserListResponse, ProjectUserUpdateRequest, }, }; /// Manage users within a project, including adding, updating roles, and removing users. /// Users cannot be removed from the Default project, unless they are being removed from the organization. pub struct ProjectUsers<'c, C: Config> { client: &'c Client, pub project_id: String, } impl<'c, C: Config> ProjectUsers<'c, C> { pub fn new(client: &'c Client, project_id: &str) -> Self { Self { client, project_id: project_id.into(), } } /// Returns a list of users in the project. #[crate::byot(T0 = serde::Serialize, R = serde::de::DeserializeOwned)] pub async fn list(&self, query: &Q) -> Result where Q: Serialize + ?Sized, { self.client .get_with_query( format!("/organization/projects/{}/users", self.project_id).as_str(), &query, ) .await } /// Adds a user to the project. Users must already be members of the organization to be added to a project. #[crate::byot(T0 = serde::Serialize, R = serde::de::DeserializeOwned)] pub async fn create( &self, request: ProjectUserCreateRequest, ) -> Result { self.client .post( format!("/organization/projects/{}/users", self.project_id).as_str(), request, ) .await } /// Retrieves a user in the project. #[crate::byot(T0 = std::fmt::Display, R = serde::de::DeserializeOwned)] pub async fn retrieve(&self, user_id: &str) -> Result { self.client .get(format!("/organization/projects/{}/users/{user_id}", self.project_id).as_str()) .await } /// Modifies a user's role in the project. #[crate::byot(T0 = std::fmt::Display, T1 = serde::Serialize, R = serde::de::DeserializeOwned)] pub async fn modify( &self, user_id: &str, request: ProjectUserUpdateRequest, ) -> Result { self.client .post( format!("/organization/projects/{}/users/{user_id}", self.project_id).as_str(), request, ) .await } /// Deletes a user from the project. #[crate::byot(T0 = std::fmt::Display, R = serde::de::DeserializeOwned)] pub async fn delete(&self, user_id: &str) -> Result { self.client .delete(format!("/organization/projects/{}/users/{user_id}", self.project_id).as_str()) .await } }