feldera-types 0.286.0

Public API types for Feldera
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};
use utoipa::ToSchema;

/// Configuration for inserting data with ad-hoc queries
///
/// An ad-hoc input adapters cannot be usefully configured as part of pipeline
/// configuration.  Instead, use ad-hoc queries through the UI, the REST API, or
/// the `fda` command-line tool.
#[derive(Clone, Debug, PartialEq, Eq, Deserialize, Serialize, ToSchema)]
pub struct AdHocInputConfig {
    /// Autogenerated name.
    pub name: String,
}