pub struct AccessRulesClient {
pub(crate) api_configurations: Arc<ApiConfigurations>,
}Expand description
Client for PAM access rule CRUD operations.
Fields§
§api_configurations: Arc<ApiConfigurations>Implementations§
Source§impl AccessRulesClient
impl AccessRulesClient
Sourcepub async fn list(
&self,
organization_id: OrganizationId,
) -> Result<Vec<AccessRuleView>, AccessRuleError>
pub async fn list( &self, organization_id: OrganizationId, ) -> Result<Vec<AccessRuleView>, AccessRuleError>
Lists all access rules for an organization.
Sourcepub async fn get(
&self,
organization_id: OrganizationId,
id: AccessRuleId,
) -> Result<AccessRuleView, AccessRuleError>
pub async fn get( &self, organization_id: OrganizationId, id: AccessRuleId, ) -> Result<AccessRuleView, AccessRuleError>
Retrieves a single access rule by ID.
Sourcepub async fn create(
&self,
organization_id: OrganizationId,
request: AccessRuleAddEditRequest,
) -> Result<AccessRuleView, AccessRuleError>
pub async fn create( &self, organization_id: OrganizationId, request: AccessRuleAddEditRequest, ) -> Result<AccessRuleView, AccessRuleError>
Validates and creates a new access rule.
Sourcepub async fn update(
&self,
organization_id: OrganizationId,
id: AccessRuleId,
request: AccessRuleAddEditRequest,
) -> Result<AccessRuleView, AccessRuleError>
pub async fn update( &self, organization_id: OrganizationId, id: AccessRuleId, request: AccessRuleAddEditRequest, ) -> Result<AccessRuleView, AccessRuleError>
Validates and updates an existing access rule.
Sourcepub async fn delete(
&self,
organization_id: OrganizationId,
id: AccessRuleId,
) -> Result<(), AccessRuleError>
pub async fn delete( &self, organization_id: OrganizationId, id: AccessRuleId, ) -> Result<(), AccessRuleError>
Deletes an access rule.
Trait Implementations§
Source§impl From<AccessRulesClient> for JsValue
impl From<AccessRulesClient> for JsValue
Source§fn from(value: AccessRulesClient) -> Self
fn from(value: AccessRulesClient) -> Self
Converts to this type from the input type.
Source§impl FromClient for AccessRulesClient
impl FromClient for AccessRulesClient
Source§fn from_client(client: &Client) -> Self
fn from_client(client: &Client) -> Self
Construct this type from a
Client reference.Source§impl FromWasmAbi for AccessRulesClient
impl FromWasmAbi for AccessRulesClient
Source§impl IntoWasmAbi for AccessRulesClient
impl IntoWasmAbi for AccessRulesClient
Source§impl RefFromWasmAbi for AccessRulesClient
impl RefFromWasmAbi for AccessRulesClient
Source§type Anchor = RcRef<AccessRulesClient>
type Anchor = RcRef<AccessRulesClient>
The type that holds the reference to
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 TryFromJsValue for AccessRulesClient
impl TryFromJsValue for AccessRulesClient
Source§impl VectorFromWasmAbi for AccessRulesClient
impl VectorFromWasmAbi for AccessRulesClient
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[AccessRulesClient]>
Source§impl VectorIntoWasmAbi for AccessRulesClient
impl VectorIntoWasmAbi for AccessRulesClient
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[AccessRulesClient]>) -> Self::Abi
Source§impl WasmDescribe for AccessRulesClient
impl WasmDescribe for AccessRulesClient
impl SupportsConstructor for AccessRulesClient
impl SupportsInstanceProperty for AccessRulesClient
impl SupportsStaticProperty for AccessRulesClient
Auto Trait Implementations§
impl Freeze for AccessRulesClient
impl !RefUnwindSafe for AccessRulesClient
impl Send for AccessRulesClient
impl Sync for AccessRulesClient
impl Unpin for AccessRulesClient
impl UnsafeUnpin for AccessRulesClient
impl !UnwindSafe for AccessRulesClient
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
Mutably borrows from an owned value. Read more
§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
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
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>
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 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
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.