pub struct IngestionTableSetting {
pub exclude_ingestion_by_default: Option<bool>,
pub max_bytes_per_sync_table_override: Option<f64>,
pub parameter_limits: HashMap<String, ParameterSetting>,
}Expand description
Ingestion settings for a specific table
JSON schema
{
"description": "Ingestion settings for a specific table",
"type": "object",
"properties": {
"excludeIngestionByDefault": {
"description": "Whether to exclude this table from ingestions by
default.",
"type": "boolean"
},
"maxBytesPerSyncTableOverride": {
"description": "The bytes limit when ingesting data for this table.
null means no limit.",
"type": [
"number",
"null"
]
},
"parameterLimits": {
"description": "Limits for allowed parameter values.",
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/ParameterSetting"
}
}
},
"additionalProperties": false,
"x-schema-name": "IngestionTableSetting"
}Fields§
§exclude_ingestion_by_default: Option<bool>Whether to exclude this table from ingestions by default.
max_bytes_per_sync_table_override: Option<f64>The bytes limit when ingesting data for this table. null means no limit.
parameter_limits: HashMap<String, ParameterSetting>Limits for allowed parameter values.
Trait Implementations§
Source§impl Clone for IngestionTableSetting
impl Clone for IngestionTableSetting
Source§fn clone(&self) -> IngestionTableSetting
fn clone(&self) -> IngestionTableSetting
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 IngestionTableSetting
impl Debug for IngestionTableSetting
Source§impl Default for IngestionTableSetting
impl Default for IngestionTableSetting
Source§impl<'de> Deserialize<'de> for IngestionTableSetting
impl<'de> Deserialize<'de> for IngestionTableSetting
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 From<&IngestionTableSetting> for IngestionTableSetting
impl From<&IngestionTableSetting> for IngestionTableSetting
Source§fn from(value: &IngestionTableSetting) -> Self
fn from(value: &IngestionTableSetting) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IngestionTableSetting
impl RefUnwindSafe for IngestionTableSetting
impl Send for IngestionTableSetting
impl Sync for IngestionTableSetting
impl Unpin for IngestionTableSetting
impl UnwindSafe for IngestionTableSetting
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