pub struct GatewayUpdateDefaults {
pub cert_access_id: Option<String>,
pub event_on_status_change: Option<String>,
pub hvp_route_version: Option<i64>,
pub json: Option<bool>,
pub key: Option<String>,
pub oidc_access_id: Option<String>,
pub saml_access_id: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Expand description
GatewayUpdateDefaults : gatewayUpdateDefaults is a command that updates defaults settings
Fields§
§cert_access_id: Option<String>Default Certificate access id for UI login
event_on_status_change: Option<String>Trigger an event when Gateway status is changed [true/false]
hvp_route_version: Option<i64>Hvp route version to use [1/2]
json: Option<bool>Set output format to JSON
key: Option<String>The name of the gateway default encryption key
oidc_access_id: Option<String>Default OIDC access id for UI login
saml_access_id: Option<String>Default SAML access id for UI login
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl GatewayUpdateDefaults
impl GatewayUpdateDefaults
Sourcepub fn new() -> GatewayUpdateDefaults
pub fn new() -> GatewayUpdateDefaults
gatewayUpdateDefaults is a command that updates defaults settings
Trait Implementations§
Source§impl Clone for GatewayUpdateDefaults
impl Clone for GatewayUpdateDefaults
Source§fn clone(&self) -> GatewayUpdateDefaults
fn clone(&self) -> GatewayUpdateDefaults
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 GatewayUpdateDefaults
impl Debug for GatewayUpdateDefaults
Source§impl Default for GatewayUpdateDefaults
impl Default for GatewayUpdateDefaults
Source§fn default() -> GatewayUpdateDefaults
fn default() -> GatewayUpdateDefaults
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GatewayUpdateDefaults
impl<'de> Deserialize<'de> for GatewayUpdateDefaults
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 GatewayUpdateDefaults
impl PartialEq for GatewayUpdateDefaults
Source§fn eq(&self, other: &GatewayUpdateDefaults) -> bool
fn eq(&self, other: &GatewayUpdateDefaults) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GatewayUpdateDefaults
impl Serialize for GatewayUpdateDefaults
impl StructuralPartialEq for GatewayUpdateDefaults
Auto Trait Implementations§
impl Freeze for GatewayUpdateDefaults
impl RefUnwindSafe for GatewayUpdateDefaults
impl Send for GatewayUpdateDefaults
impl Sync for GatewayUpdateDefaults
impl Unpin for GatewayUpdateDefaults
impl UnsafeUnpin for GatewayUpdateDefaults
impl UnwindSafe for GatewayUpdateDefaults
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