pub struct GetLastUserEventStatus {
pub event_source: Option<String>,
pub event_type: String,
pub item_name: String,
pub item_type: String,
pub json: Option<bool>,
pub time_back: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Fields§
§event_source: Option<String>§event_type: String§item_name: StringEvent item name
item_type: StringEvent item type can be either "target" or type of item eg "static_secret"/"dynamic_secret" To get type of some item run akeyless describe-item -n {ITEM_NAME} --jq-expression .item_type
json: Option<bool>Set output format to JSON
time_back: Option<String>The time back to search the event, for example if the value is "5m" we will return the last user event issued in the last 5 minutes. By default, we will search without any time boundary.
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Trait Implementations§
Source§impl Clone for GetLastUserEventStatus
impl Clone for GetLastUserEventStatus
Source§fn clone(&self) -> GetLastUserEventStatus
fn clone(&self) -> GetLastUserEventStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetLastUserEventStatus
impl Debug for GetLastUserEventStatus
Source§impl Default for GetLastUserEventStatus
impl Default for GetLastUserEventStatus
Source§fn default() -> GetLastUserEventStatus
fn default() -> GetLastUserEventStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetLastUserEventStatus
impl<'de> Deserialize<'de> for GetLastUserEventStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetLastUserEventStatus
impl PartialEq for GetLastUserEventStatus
Source§fn eq(&self, other: &GetLastUserEventStatus) -> bool
fn eq(&self, other: &GetLastUserEventStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetLastUserEventStatus
impl Serialize for GetLastUserEventStatus
impl StructuralPartialEq for GetLastUserEventStatus
Auto Trait Implementations§
impl Freeze for GetLastUserEventStatus
impl RefUnwindSafe for GetLastUserEventStatus
impl Send for GetLastUserEventStatus
impl Sync for GetLastUserEventStatus
impl Unpin for GetLastUserEventStatus
impl UnsafeUnpin for GetLastUserEventStatus
impl UnwindSafe for GetLastUserEventStatus
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