pub struct AccessRequestsClient {
pub(crate) api_configurations: Arc<ApiConfigurations>,
}Expand description
Client for a requester’s PAM access requests.
Covers the requester side of the request lifecycle: listing and reading the caller’s own
requests, activateing an approved request to mint a lease,
and cancelling a request that is still pending.
Creating a request (POST /leases/ciphers/{id}) is not yet exposed here - its binding lives on
the not-yet-generated cipher_lease_api surface and lands with a later change.
Fields§
§api_configurations: Arc<ApiConfigurations>Implementations§
Source§impl AccessRequestsClient
impl AccessRequestsClient
Sourcepub async fn list_mine(&self) -> Result<Vec<AccessRequestView>, LeasingError>
pub async fn list_mine(&self) -> Result<Vec<AccessRequestView>, LeasingError>
Lists the caller’s own access requests.
Sourcepub async fn get(
&self,
id: AccessRequestId,
) -> Result<AccessRequestView, LeasingError>
pub async fn get( &self, id: AccessRequestId, ) -> Result<AccessRequestView, LeasingError>
Retrieves a single access request by ID.
Sourcepub async fn activate(
&self,
id: AccessRequestId,
) -> Result<AccessLeaseView, LeasingError>
pub async fn activate( &self, id: AccessRequestId, ) -> Result<AccessLeaseView, LeasingError>
Activates an approved request, minting and returning the resulting lease.
This is the second half of the automatic flow: once a request reaches
Approved, the requester activates it to obtain a
short-lived AccessLease over the cipher.
Sourcepub async fn cancel(&self, id: AccessRequestId) -> Result<(), LeasingError>
pub async fn cancel(&self, id: AccessRequestId) -> Result<(), LeasingError>
Cancels the caller’s own request while it is still pending.
Trait Implementations§
Source§impl From<AccessRequestsClient> for JsValue
impl From<AccessRequestsClient> for JsValue
Source§fn from(value: AccessRequestsClient) -> Self
fn from(value: AccessRequestsClient) -> Self
Source§impl FromClient for AccessRequestsClient
impl FromClient for AccessRequestsClient
Source§fn from_client(client: &Client) -> Self
fn from_client(client: &Client) -> Self
Client reference.Source§impl FromWasmAbi for AccessRequestsClient
impl FromWasmAbi for AccessRequestsClient
Source§impl IntoWasmAbi for AccessRequestsClient
impl IntoWasmAbi for AccessRequestsClient
Source§impl RefFromWasmAbi for AccessRequestsClient
impl RefFromWasmAbi for AccessRequestsClient
Source§type Anchor = RcRef<AccessRequestsClient>
type Anchor = RcRef<AccessRequestsClient>
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl VectorFromWasmAbi for AccessRequestsClient
impl VectorFromWasmAbi for AccessRequestsClient
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[AccessRequestsClient]>
Source§impl VectorIntoWasmAbi for AccessRequestsClient
impl VectorIntoWasmAbi for AccessRequestsClient
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[AccessRequestsClient]>) -> Self::Abi
Source§impl WasmDescribe for AccessRequestsClient
impl WasmDescribe for AccessRequestsClient
impl SupportsConstructor for AccessRequestsClient
impl SupportsInstanceProperty for AccessRequestsClient
impl SupportsStaticProperty for AccessRequestsClient
Auto Trait Implementations§
impl Freeze for AccessRequestsClient
impl !RefUnwindSafe for AccessRequestsClient
impl Send for AccessRequestsClient
impl Sync for AccessRequestsClient
impl Unpin for AccessRequestsClient
impl UnsafeUnpin for AccessRequestsClient
impl !UnwindSafe for AccessRequestsClient
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Arc<> Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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 more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.