pub enum AuthConfigUpdateParams {
Custom {
credentials: Option<Value>,
proxy_config: Option<Value>,
tool_access_config: Option<Value>,
shared_credentials: Option<Value>,
is_enabled_for_tool_router: Option<bool>,
},
Default {
credentials: Option<DefaultCredentials>,
is_enabled_for_tool_router: Option<bool>,
},
}Expand description
Authentication configuration update parameters
Variants§
Custom
Update custom auth config
Fields
Updated shared credentials
Default
Update default auth config
Trait Implementations§
Source§impl Clone for AuthConfigUpdateParams
impl Clone for AuthConfigUpdateParams
Source§fn clone(&self) -> AuthConfigUpdateParams
fn clone(&self) -> AuthConfigUpdateParams
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 AuthConfigUpdateParams
impl Debug for AuthConfigUpdateParams
Source§impl<'de> Deserialize<'de> for AuthConfigUpdateParams
impl<'de> Deserialize<'de> for AuthConfigUpdateParams
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
Auto Trait Implementations§
impl Freeze for AuthConfigUpdateParams
impl RefUnwindSafe for AuthConfigUpdateParams
impl Send for AuthConfigUpdateParams
impl Sync for AuthConfigUpdateParams
impl Unpin for AuthConfigUpdateParams
impl UnsafeUnpin for AuthConfigUpdateParams
impl UnwindSafe for AuthConfigUpdateParams
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