pub struct UpdateSourceDelta {Show 21 fields
pub enabled: Option<bool>,
pub name: Option<String>,
pub password: Option<String>,
pub pattern: Option<String>,
pub private_key: Option<String>,
pub ca_cert: Option<String>,
pub ssl_ignore_errors: Option<bool>,
pub proxy: Option<String>,
pub uri: Option<String>,
pub username: Option<String>,
pub headers: Option<Vec<EnvironmentVariable>>,
pub default_classification: Option<ClassificationString>,
pub use_managed_identity: Option<bool>,
pub git_branch: Option<String>,
pub sync: Option<bool>,
pub fetch_method: Option<FetchMethods>,
pub override_classification: Option<bool>,
pub configuration: Option<HashMap<String, Value>>,
pub data: Option<Text>,
pub update_interval: Option<NonZeroInteger>,
pub ignore_cache: Option<bool>,
}
Fields§
§enabled: Option<bool>
REF_UPDATE_SOURCE
name: Option<String>
REF_UPDATE_SOURCE
password: Option<String>
REF_UPDATE_SOURCE
pattern: Option<String>
REF_UPDATE_SOURCE
private_key: Option<String>
REF_UPDATE_SOURCE
ca_cert: Option<String>
REF_UPDATE_SOURCE
ssl_ignore_errors: Option<bool>
REF_UPDATE_SOURCE
proxy: Option<String>
REF_UPDATE_SOURCE
uri: Option<String>
REF_UPDATE_SOURCE
username: Option<String>
REF_UPDATE_SOURCE
headers: Option<Vec<EnvironmentVariable>>
REF_UPDATE_SOURCE
default_classification: Option<ClassificationString>
REF_UPDATE_SOURCE
use_managed_identity: Option<bool>
REF_UPDATE_SOURCE
git_branch: Option<String>
REF_UPDATE_SOURCE
sync: Option<bool>
REF_UPDATE_SOURCE
fetch_method: Option<FetchMethods>
REF_UPDATE_SOURCE
override_classification: Option<bool>
REF_UPDATE_SOURCE
configuration: Option<HashMap<String, Value>>
REF_UPDATE_SOURCE
data: Option<Text>
REF_UPDATE_SOURCE
update_interval: Option<NonZeroInteger>
REF_UPDATE_SOURCE
ignore_cache: Option<bool>
REF_UPDATE_SOURCE
Trait Implementations§
Source§impl Default for UpdateSourceDelta
impl Default for UpdateSourceDelta
Source§fn default() -> UpdateSourceDelta
fn default() -> UpdateSourceDelta
Returns the “default value” for a type. Read more
Source§impl Described<ElasticMeta> for UpdateSourceDelta
impl Described<ElasticMeta> for UpdateSourceDelta
Source§fn metadata() -> Descriptor<ElasticMeta>
fn metadata() -> Descriptor<ElasticMeta>
Get self description of this type
Source§impl<'de> Deserialize<'de> for UpdateSourceDeltawhere
UpdateSourceDelta: Default,
impl<'de> Deserialize<'de> for UpdateSourceDeltawhere
UpdateSourceDelta: Default,
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 UpdateSourceDelta
impl RefUnwindSafe for UpdateSourceDelta
impl Send for UpdateSourceDelta
impl Sync for UpdateSourceDelta
impl Unpin for UpdateSourceDelta
impl UnwindSafe for UpdateSourceDelta
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more