pub struct AgentConnector {Show 18 fields
pub connector_uuid: Option<Uuid>,
pub name: String,
pub enabled: Option<bool>,
pub component: String,
pub verbose_name: String,
pub verbose_name_plural: String,
pub meta_model_name: String,
pub snapshot_expiry: Option<String>,
pub auth_session_duration: Option<String>,
pub auth_terminate_session_on_expiry: Option<bool>,
pub refresh_interval: Option<String>,
pub authorization_flow: Option<Option<Uuid>>,
pub nss_uid_offset: Option<u32>,
pub nss_gid_offset: Option<u32>,
pub challenge_key: Option<Option<Uuid>>,
pub challenge_idle_timeout: Option<String>,
pub challenge_trigger_check_in: Option<bool>,
pub jwt_federation_providers: Option<Vec<i32>>,
}Fields§
§connector_uuid: Option<Uuid>§name: String§enabled: Option<bool>§component: StringGet object component so that we know how to edit the object
verbose_name: StringReturn object’s verbose_name
verbose_name_plural: StringReturn object’s plural verbose_name
meta_model_name: StringReturn internal model name
snapshot_expiry: Option<String>§auth_session_duration: Option<String>§auth_terminate_session_on_expiry: Option<bool>§refresh_interval: Option<String>§nss_uid_offset: Option<u32>§nss_gid_offset: Option<u32>§challenge_key: Option<Option<Uuid>>§challenge_idle_timeout: Option<String>§challenge_trigger_check_in: Option<bool>§jwt_federation_providers: Option<Vec<i32>>Implementations§
Trait Implementations§
Source§impl Clone for AgentConnector
impl Clone for AgentConnector
Source§fn clone(&self) -> AgentConnector
fn clone(&self) -> AgentConnector
Returns a duplicate of the value. Read more
1.0.0 · 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 AgentConnector
impl Debug for AgentConnector
Source§impl Default for AgentConnector
impl Default for AgentConnector
Source§fn default() -> AgentConnector
fn default() -> AgentConnector
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentConnector
impl<'de> Deserialize<'de> for AgentConnector
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 AgentConnector
impl PartialEq for AgentConnector
Source§impl Serialize for AgentConnector
impl Serialize for AgentConnector
impl StructuralPartialEq for AgentConnector
Auto Trait Implementations§
impl Freeze for AgentConnector
impl RefUnwindSafe for AgentConnector
impl Send for AgentConnector
impl Sync for AgentConnector
impl Unpin for AgentConnector
impl UnsafeUnpin for AgentConnector
impl UnwindSafe for AgentConnector
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