#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct ConfigurationFormRequest {}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ConfigurationFormResponse {
#[prost(bool, tag = "1")]
pub schema_selection_supported: bool,
#[prost(bool, tag = "2")]
pub table_selection_supported: bool,
#[prost(message, repeated, tag = "3")]
pub fields: ::prost::alloc::vec::Vec<FormField>,
#[prost(message, repeated, tag = "4")]
pub tests: ::prost::alloc::vec::Vec<ConfigurationTest>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FormField {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub label: ::prost::alloc::string::String,
#[prost(bool, tag = "3")]
pub required: bool,
#[prost(string, optional, tag = "4")]
pub description: ::core::option::Option<::prost::alloc::string::String>,
#[prost(oneof = "form_field::Type", tags = "5, 6, 7")]
pub r#type: ::core::option::Option<form_field::Type>,
}
pub mod form_field {
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Type {
#[prost(enumeration = "super::TextField", tag = "5")]
TextField(i32),
#[prost(message, tag = "6")]
DropdownField(super::DropdownField),
#[prost(message, tag = "7")]
ToggleField(super::ToggleField),
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DropdownField {
#[prost(string, repeated, tag = "1")]
pub dropdown_field: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct ToggleField {}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ConfigurationTest {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub label: ::prost::alloc::string::String,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TestRequest {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(btree_map = "string, string", tag = "2")]
pub configuration: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TestResponse {
#[prost(oneof = "test_response::Response", tags = "1, 2")]
pub response: ::core::option::Option<test_response::Response>,
}
pub mod test_response {
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Response {
#[prost(bool, tag = "1")]
Success(bool),
#[prost(string, tag = "2")]
Failure(::prost::alloc::string::String),
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SchemaList {
#[prost(message, repeated, tag = "1")]
pub schemas: ::prost::alloc::vec::Vec<Schema>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TableList {
#[prost(message, repeated, tag = "1")]
pub tables: ::prost::alloc::vec::Vec<Table>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Schema {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "2")]
pub tables: ::prost::alloc::vec::Vec<Table>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct DecimalParams {
#[prost(uint32, tag = "1")]
pub precision: u32,
#[prost(uint32, tag = "2")]
pub scale: u32,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValueType {
#[prost(
oneof = "value_type::Inner",
tags = "1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15"
)]
pub inner: ::core::option::Option<value_type::Inner>,
}
pub mod value_type {
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Inner {
#[prost(bool, tag = "1")]
Null(bool),
#[prost(bool, tag = "2")]
Bool(bool),
#[prost(int32, tag = "3")]
Short(i32),
#[prost(int32, tag = "4")]
Int(i32),
#[prost(int64, tag = "5")]
Long(i64),
#[prost(float, tag = "6")]
Float(f32),
#[prost(double, tag = "7")]
Double(f64),
#[prost(message, tag = "8")]
NaiveDate(super::super::google::protobuf::Timestamp),
#[prost(message, tag = "9")]
NaiveDatetime(super::super::google::protobuf::Timestamp),
#[prost(message, tag = "10")]
UtcDatetime(super::super::google::protobuf::Timestamp),
#[prost(string, tag = "11")]
Decimal(::prost::alloc::string::String),
#[prost(bytes, tag = "12")]
Binary(::prost::alloc::vec::Vec<u8>),
#[prost(string, tag = "13")]
String(::prost::alloc::string::String),
#[prost(string, tag = "14")]
Json(::prost::alloc::string::String),
#[prost(string, tag = "15")]
Xml(::prost::alloc::string::String),
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Table {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "2")]
pub columns: ::prost::alloc::vec::Vec<Column>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Column {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(enumeration = "DataType", tag = "2")]
pub r#type: i32,
#[prost(bool, tag = "3")]
pub primary_key: bool,
#[prost(message, optional, tag = "4")]
pub decimal: ::core::option::Option<DecimalParams>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum TextField {
PlainText = 0,
Password = 1,
Hidden = 2,
}
impl TextField {
pub fn as_str_name(&self) -> &'static str {
match self {
TextField::PlainText => "PlainText",
TextField::Password => "Password",
TextField::Hidden => "Hidden",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"PlainText" => Some(Self::PlainText),
"Password" => Some(Self::Password),
"Hidden" => Some(Self::Hidden),
_ => None,
}
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum DataType {
Unspecified = 0,
Boolean = 1,
Short = 2,
Int = 3,
Long = 4,
Decimal = 5,
Float = 6,
Double = 7,
NaiveDate = 8,
NaiveDatetime = 9,
UtcDatetime = 10,
Binary = 11,
Xml = 12,
String = 13,
Json = 14,
}
impl DataType {
pub fn as_str_name(&self) -> &'static str {
match self {
DataType::Unspecified => "UNSPECIFIED",
DataType::Boolean => "BOOLEAN",
DataType::Short => "SHORT",
DataType::Int => "INT",
DataType::Long => "LONG",
DataType::Decimal => "DECIMAL",
DataType::Float => "FLOAT",
DataType::Double => "DOUBLE",
DataType::NaiveDate => "NAIVE_DATE",
DataType::NaiveDatetime => "NAIVE_DATETIME",
DataType::UtcDatetime => "UTC_DATETIME",
DataType::Binary => "BINARY",
DataType::Xml => "XML",
DataType::String => "STRING",
DataType::Json => "JSON",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"UNSPECIFIED" => Some(Self::Unspecified),
"BOOLEAN" => Some(Self::Boolean),
"SHORT" => Some(Self::Short),
"INT" => Some(Self::Int),
"LONG" => Some(Self::Long),
"DECIMAL" => Some(Self::Decimal),
"FLOAT" => Some(Self::Float),
"DOUBLE" => Some(Self::Double),
"NAIVE_DATE" => Some(Self::NaiveDate),
"NAIVE_DATETIME" => Some(Self::NaiveDatetime),
"UTC_DATETIME" => Some(Self::UtcDatetime),
"BINARY" => Some(Self::Binary),
"XML" => Some(Self::Xml),
"STRING" => Some(Self::String),
"JSON" => Some(Self::Json),
_ => None,
}
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum OpType {
Upsert = 0,
Update = 1,
Delete = 2,
Truncate = 3,
}
impl OpType {
pub fn as_str_name(&self) -> &'static str {
match self {
OpType::Upsert => "UPSERT",
OpType::Update => "UPDATE",
OpType::Delete => "DELETE",
OpType::Truncate => "TRUNCATE",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"UPSERT" => Some(Self::Upsert),
"UPDATE" => Some(Self::Update),
"DELETE" => Some(Self::Delete),
"TRUNCATE" => Some(Self::Truncate),
_ => None,
}
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DescribeTableRequest {
#[prost(btree_map = "string, string", tag = "1")]
pub configuration: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
#[prost(string, tag = "2")]
pub schema_name: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub table_name: ::prost::alloc::string::String,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DescribeTableResponse {
#[prost(oneof = "describe_table_response::Response", tags = "1, 2, 3")]
pub response: ::core::option::Option<describe_table_response::Response>,
}
pub mod describe_table_response {
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Response {
#[prost(bool, tag = "1")]
NotFound(bool),
#[prost(string, tag = "2")]
Failure(::prost::alloc::string::String),
#[prost(message, tag = "3")]
Table(super::Table),
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateTableRequest {
#[prost(btree_map = "string, string", tag = "1")]
pub configuration: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
#[prost(string, tag = "2")]
pub schema_name: ::prost::alloc::string::String,
#[prost(message, optional, tag = "3")]
pub table: ::core::option::Option<Table>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateTableResponse {
#[prost(oneof = "create_table_response::Response", tags = "1, 2")]
pub response: ::core::option::Option<create_table_response::Response>,
}
pub mod create_table_response {
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Response {
#[prost(bool, tag = "1")]
Success(bool),
#[prost(string, tag = "2")]
Failure(::prost::alloc::string::String),
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AlterTableRequest {
#[prost(btree_map = "string, string", tag = "1")]
pub configuration: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
#[prost(string, tag = "2")]
pub schema_name: ::prost::alloc::string::String,
#[prost(message, optional, tag = "3")]
pub table: ::core::option::Option<Table>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AlterTableResponse {
#[prost(oneof = "alter_table_response::Response", tags = "1, 2")]
pub response: ::core::option::Option<alter_table_response::Response>,
}
pub mod alter_table_response {
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Response {
#[prost(bool, tag = "1")]
Success(bool),
#[prost(string, tag = "2")]
Failure(::prost::alloc::string::String),
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TruncateRequest {
#[prost(btree_map = "string, string", tag = "1")]
pub configuration: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
#[prost(string, tag = "2")]
pub schema_name: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub table_name: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub synced_column: ::prost::alloc::string::String,
#[prost(message, optional, tag = "5")]
pub utc_delete_before: ::core::option::Option<super::google::protobuf::Timestamp>,
#[prost(message, optional, tag = "6")]
pub soft: ::core::option::Option<SoftTruncate>,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SoftTruncate {
#[prost(string, tag = "3")]
pub deleted_column: ::prost::alloc::string::String,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TruncateResponse {
#[prost(oneof = "truncate_response::Response", tags = "1, 2")]
pub response: ::core::option::Option<truncate_response::Response>,
}
pub mod truncate_response {
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Response {
#[prost(bool, tag = "1")]
Success(bool),
#[prost(string, tag = "2")]
Failure(::prost::alloc::string::String),
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WriteBatchRequest {
#[prost(btree_map = "string, string", tag = "1")]
pub configuration: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
#[prost(string, tag = "2")]
pub schema_name: ::prost::alloc::string::String,
#[prost(message, optional, tag = "3")]
pub table: ::core::option::Option<Table>,
#[prost(btree_map = "string, bytes", tag = "4")]
pub keys: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::vec::Vec<u8>,
>,
#[prost(string, repeated, tag = "5")]
pub replace_files: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(string, repeated, tag = "6")]
pub update_files: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(string, repeated, tag = "7")]
pub delete_files: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(oneof = "write_batch_request::FileParams", tags = "8")]
pub file_params: ::core::option::Option<write_batch_request::FileParams>,
}
pub mod write_batch_request {
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum FileParams {
#[prost(message, tag = "8")]
Csv(super::CsvFileParams),
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CsvFileParams {
#[prost(enumeration = "Compression", tag = "1")]
pub compression: i32,
#[prost(enumeration = "Encryption", tag = "2")]
pub encryption: i32,
#[prost(string, tag = "3")]
pub null_string: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub unmodified_string: ::prost::alloc::string::String,
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WriteBatchResponse {
#[prost(oneof = "write_batch_response::Response", tags = "1, 2")]
pub response: ::core::option::Option<write_batch_response::Response>,
}
pub mod write_batch_response {
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Response {
#[prost(bool, tag = "1")]
Success(bool),
#[prost(string, tag = "2")]
Failure(::prost::alloc::string::String),
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Encryption {
None = 0,
Aes = 1,
}
impl Encryption {
pub fn as_str_name(&self) -> &'static str {
match self {
Encryption::None => "NONE",
Encryption::Aes => "AES",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"NONE" => Some(Self::None),
"AES" => Some(Self::Aes),
_ => None,
}
}
}
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Compression {
Off = 0,
Zstd = 1,
Gzip = 2,
}
impl Compression {
pub fn as_str_name(&self) -> &'static str {
match self {
Compression::Off => "OFF",
Compression::Zstd => "ZSTD",
Compression::Gzip => "GZIP",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"OFF" => Some(Self::Off),
"ZSTD" => Some(Self::Zstd),
"GZIP" => Some(Self::Gzip),
_ => None,
}
}
}
pub mod destination_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
#[derive(Debug, Clone)]
pub struct DestinationClient<T> {
inner: tonic::client::Grpc<T>,
}
impl DestinationClient<tonic::transport::Channel> {
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> DestinationClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> DestinationClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + Send + Sync,
{
DestinationClient::new(InterceptedService::new(inner, interceptor))
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
pub async fn configuration_form(
&mut self,
request: impl tonic::IntoRequest<super::ConfigurationFormRequest>,
) -> std::result::Result<
tonic::Response<super::ConfigurationFormResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/fivetran_sdk.Destination/ConfigurationForm",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("fivetran_sdk.Destination", "ConfigurationForm"),
);
self.inner.unary(req, path, codec).await
}
pub async fn test(
&mut self,
request: impl tonic::IntoRequest<super::TestRequest>,
) -> std::result::Result<tonic::Response<super::TestResponse>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/fivetran_sdk.Destination/Test",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("fivetran_sdk.Destination", "Test"));
self.inner.unary(req, path, codec).await
}
pub async fn describe_table(
&mut self,
request: impl tonic::IntoRequest<super::DescribeTableRequest>,
) -> std::result::Result<
tonic::Response<super::DescribeTableResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/fivetran_sdk.Destination/DescribeTable",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("fivetran_sdk.Destination", "DescribeTable"));
self.inner.unary(req, path, codec).await
}
pub async fn create_table(
&mut self,
request: impl tonic::IntoRequest<super::CreateTableRequest>,
) -> std::result::Result<
tonic::Response<super::CreateTableResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/fivetran_sdk.Destination/CreateTable",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("fivetran_sdk.Destination", "CreateTable"));
self.inner.unary(req, path, codec).await
}
pub async fn alter_table(
&mut self,
request: impl tonic::IntoRequest<super::AlterTableRequest>,
) -> std::result::Result<
tonic::Response<super::AlterTableResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/fivetran_sdk.Destination/AlterTable",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("fivetran_sdk.Destination", "AlterTable"));
self.inner.unary(req, path, codec).await
}
pub async fn truncate(
&mut self,
request: impl tonic::IntoRequest<super::TruncateRequest>,
) -> std::result::Result<
tonic::Response<super::TruncateResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/fivetran_sdk.Destination/Truncate",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("fivetran_sdk.Destination", "Truncate"));
self.inner.unary(req, path, codec).await
}
pub async fn write_batch(
&mut self,
request: impl tonic::IntoRequest<super::WriteBatchRequest>,
) -> std::result::Result<
tonic::Response<super::WriteBatchResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/fivetran_sdk.Destination/WriteBatch",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("fivetran_sdk.Destination", "WriteBatch"));
self.inner.unary(req, path, codec).await
}
}
}
pub mod destination_server {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
#[async_trait]
pub trait Destination: Send + Sync + 'static {
async fn configuration_form(
&self,
request: tonic::Request<super::ConfigurationFormRequest>,
) -> std::result::Result<
tonic::Response<super::ConfigurationFormResponse>,
tonic::Status,
>;
async fn test(
&self,
request: tonic::Request<super::TestRequest>,
) -> std::result::Result<tonic::Response<super::TestResponse>, tonic::Status>;
async fn describe_table(
&self,
request: tonic::Request<super::DescribeTableRequest>,
) -> std::result::Result<
tonic::Response<super::DescribeTableResponse>,
tonic::Status,
>;
async fn create_table(
&self,
request: tonic::Request<super::CreateTableRequest>,
) -> std::result::Result<
tonic::Response<super::CreateTableResponse>,
tonic::Status,
>;
async fn alter_table(
&self,
request: tonic::Request<super::AlterTableRequest>,
) -> std::result::Result<
tonic::Response<super::AlterTableResponse>,
tonic::Status,
>;
async fn truncate(
&self,
request: tonic::Request<super::TruncateRequest>,
) -> std::result::Result<
tonic::Response<super::TruncateResponse>,
tonic::Status,
>;
async fn write_batch(
&self,
request: tonic::Request<super::WriteBatchRequest>,
) -> std::result::Result<
tonic::Response<super::WriteBatchResponse>,
tonic::Status,
>;
}
#[derive(Debug)]
pub struct DestinationServer<T: Destination> {
inner: Arc<T>,
accept_compression_encodings: EnabledCompressionEncodings,
send_compression_encodings: EnabledCompressionEncodings,
max_decoding_message_size: Option<usize>,
max_encoding_message_size: Option<usize>,
}
impl<T: Destination> DestinationServer<T> {
pub fn new(inner: T) -> Self {
Self::from_arc(Arc::new(inner))
}
pub fn from_arc(inner: Arc<T>) -> Self {
Self {
inner,
accept_compression_encodings: Default::default(),
send_compression_encodings: Default::default(),
max_decoding_message_size: None,
max_encoding_message_size: None,
}
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> InterceptedService<Self, F>
where
F: tonic::service::Interceptor,
{
InterceptedService::new(Self::new(inner), interceptor)
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.accept_compression_encodings.enable(encoding);
self
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.send_compression_encodings.enable(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.max_decoding_message_size = Some(limit);
self
}
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.max_encoding_message_size = Some(limit);
self
}
}
impl<T, B> tonic::codegen::Service<http::Request<B>> for DestinationServer<T>
where
T: Destination,
B: Body + Send + 'static,
B::Error: Into<StdError> + Send + 'static,
{
type Response = http::Response<tonic::body::BoxBody>;
type Error = std::convert::Infallible;
type Future = BoxFuture<Self::Response, Self::Error>;
fn poll_ready(
&mut self,
_cx: &mut Context<'_>,
) -> Poll<std::result::Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, req: http::Request<B>) -> Self::Future {
match req.uri().path() {
"/fivetran_sdk.Destination/ConfigurationForm" => {
#[allow(non_camel_case_types)]
struct ConfigurationFormSvc<T: Destination>(pub Arc<T>);
impl<
T: Destination,
> tonic::server::UnaryService<super::ConfigurationFormRequest>
for ConfigurationFormSvc<T> {
type Response = super::ConfigurationFormResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::ConfigurationFormRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as Destination>::configuration_form(&inner, request)
.await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = ConfigurationFormSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/fivetran_sdk.Destination/Test" => {
#[allow(non_camel_case_types)]
struct TestSvc<T: Destination>(pub Arc<T>);
impl<T: Destination> tonic::server::UnaryService<super::TestRequest>
for TestSvc<T> {
type Response = super::TestResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::TestRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as Destination>::test(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = TestSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/fivetran_sdk.Destination/DescribeTable" => {
#[allow(non_camel_case_types)]
struct DescribeTableSvc<T: Destination>(pub Arc<T>);
impl<
T: Destination,
> tonic::server::UnaryService<super::DescribeTableRequest>
for DescribeTableSvc<T> {
type Response = super::DescribeTableResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::DescribeTableRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as Destination>::describe_table(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = DescribeTableSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/fivetran_sdk.Destination/CreateTable" => {
#[allow(non_camel_case_types)]
struct CreateTableSvc<T: Destination>(pub Arc<T>);
impl<
T: Destination,
> tonic::server::UnaryService<super::CreateTableRequest>
for CreateTableSvc<T> {
type Response = super::CreateTableResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::CreateTableRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as Destination>::create_table(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = CreateTableSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/fivetran_sdk.Destination/AlterTable" => {
#[allow(non_camel_case_types)]
struct AlterTableSvc<T: Destination>(pub Arc<T>);
impl<
T: Destination,
> tonic::server::UnaryService<super::AlterTableRequest>
for AlterTableSvc<T> {
type Response = super::AlterTableResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::AlterTableRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as Destination>::alter_table(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = AlterTableSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/fivetran_sdk.Destination/Truncate" => {
#[allow(non_camel_case_types)]
struct TruncateSvc<T: Destination>(pub Arc<T>);
impl<
T: Destination,
> tonic::server::UnaryService<super::TruncateRequest>
for TruncateSvc<T> {
type Response = super::TruncateResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::TruncateRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as Destination>::truncate(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = TruncateSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
"/fivetran_sdk.Destination/WriteBatch" => {
#[allow(non_camel_case_types)]
struct WriteBatchSvc<T: Destination>(pub Arc<T>);
impl<
T: Destination,
> tonic::server::UnaryService<super::WriteBatchRequest>
for WriteBatchSvc<T> {
type Response = super::WriteBatchResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::WriteBatchRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as Destination>::write_batch(&inner, request).await
};
Box::pin(fut)
}
}
let accept_compression_encodings = self.accept_compression_encodings;
let send_compression_encodings = self.send_compression_encodings;
let max_decoding_message_size = self.max_decoding_message_size;
let max_encoding_message_size = self.max_encoding_message_size;
let inner = self.inner.clone();
let fut = async move {
let method = WriteBatchSvc(inner);
let codec = tonic::codec::ProstCodec::default();
let mut grpc = tonic::server::Grpc::new(codec)
.apply_compression_config(
accept_compression_encodings,
send_compression_encodings,
)
.apply_max_message_size_config(
max_decoding_message_size,
max_encoding_message_size,
);
let res = grpc.unary(method, req).await;
Ok(res)
};
Box::pin(fut)
}
_ => {
Box::pin(async move {
Ok(
http::Response::builder()
.status(200)
.header("grpc-status", tonic::Code::Unimplemented as i32)
.header(
http::header::CONTENT_TYPE,
tonic::metadata::GRPC_CONTENT_TYPE,
)
.body(empty_body())
.unwrap(),
)
})
}
}
}
}
impl<T: Destination> Clone for DestinationServer<T> {
fn clone(&self) -> Self {
let inner = self.inner.clone();
Self {
inner,
accept_compression_encodings: self.accept_compression_encodings,
send_compression_encodings: self.send_compression_encodings,
max_decoding_message_size: self.max_decoding_message_size,
max_encoding_message_size: self.max_encoding_message_size,
}
}
}
impl<T: Destination> tonic::server::NamedService for DestinationServer<T> {
const NAME: &'static str = "fivetran_sdk.Destination";
}
}