pub struct PatchedOutpostRequest {
pub name: Option<String>,
pub type: Option<OutpostTypeEnum>,
pub providers: Option<Vec<i32>>,
pub service_connection: Option<Option<Uuid>>,
pub config: Option<HashMap<String, Value>>,
pub managed: Option<Option<String>>,
}
Expand description
PatchedOutpostRequest : Outpost Serializer
Fields§
§name: Option<String>
§type: Option<OutpostTypeEnum>
§providers: Option<Vec<i32>>
§service_connection: Option<Option<Uuid>>
Select Service-Connection authentik should use to manage this outpost. Leave empty if authentik should not handle the deployment.
config: Option<HashMap<String, Value>>
§managed: Option<Option<String>>
Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
Implementations§
Source§impl PatchedOutpostRequest
impl PatchedOutpostRequest
Sourcepub fn new() -> PatchedOutpostRequest
pub fn new() -> PatchedOutpostRequest
Outpost Serializer
Trait Implementations§
Source§impl Clone for PatchedOutpostRequest
impl Clone for PatchedOutpostRequest
Source§fn clone(&self) -> PatchedOutpostRequest
fn clone(&self) -> PatchedOutpostRequest
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 PatchedOutpostRequest
impl Debug for PatchedOutpostRequest
Source§impl Default for PatchedOutpostRequest
impl Default for PatchedOutpostRequest
Source§fn default() -> PatchedOutpostRequest
fn default() -> PatchedOutpostRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedOutpostRequest
impl<'de> Deserialize<'de> for PatchedOutpostRequest
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 PatchedOutpostRequest
impl PartialEq for PatchedOutpostRequest
Source§impl Serialize for PatchedOutpostRequest
impl Serialize for PatchedOutpostRequest
impl StructuralPartialEq for PatchedOutpostRequest
Auto Trait Implementations§
impl Freeze for PatchedOutpostRequest
impl RefUnwindSafe for PatchedOutpostRequest
impl Send for PatchedOutpostRequest
impl Sync for PatchedOutpostRequest
impl Unpin for PatchedOutpostRequest
impl UnwindSafe for PatchedOutpostRequest
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