pub struct Credentials<'a> { /* private fields */ }Available on crate feature
managed-agents-preview only.Expand description
Namespace handle for credential operations on a single vault.
Implementations§
Source§impl Credentials<'_>
impl Credentials<'_>
Sourcepub async fn create(
&self,
request: CreateCredentialRequest,
) -> Result<Credential>
pub async fn create( &self, request: CreateCredentialRequest, ) -> Result<Credential>
POST /v1/vaults/{vault_id}/credentials.
Sourcepub async fn update(
&self,
credential_id: &str,
request: UpdateCredentialRequest,
) -> Result<Credential>
pub async fn update( &self, credential_id: &str, request: UpdateCredentialRequest, ) -> Result<Credential>
POST /v1/vaults/{vault_id}/credentials/{cred_id} (update;
rotate tokens, change display name).
Sourcepub async fn retrieve(&self, credential_id: &str) -> Result<Credential>
pub async fn retrieve(&self, credential_id: &str) -> Result<Credential>
GET /v1/vaults/{vault_id}/credentials/{cred_id}.
Sourcepub async fn list(
&self,
params: ListVaultsParams,
) -> Result<Paginated<Credential>>
pub async fn list( &self, params: ListVaultsParams, ) -> Result<Paginated<Credential>>
GET /v1/vaults/{vault_id}/credentials.
Sourcepub async fn archive(&self, credential_id: &str) -> Result<Credential>
pub async fn archive(&self, credential_id: &str) -> Result<Credential>
POST /v1/vaults/{vault_id}/credentials/{cred_id}/archive.
Frees the mcp_server_url slot for a replacement credential.
Auto Trait Implementations§
impl<'a> Freeze for Credentials<'a>
impl<'a> !RefUnwindSafe for Credentials<'a>
impl<'a> Send for Credentials<'a>
impl<'a> Sync for Credentials<'a>
impl<'a> Unpin for Credentials<'a>
impl<'a> UnsafeUnpin for Credentials<'a>
impl<'a> !UnwindSafe for Credentials<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.