forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.rs
37 lines (33 loc) · 1.07 KB
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! The BigQuery [`vector_core::sink::VectorSink`]
//!
//! This module contains the [`vector_core::sink::VectorSink`] instance responsible for taking
//! a stream of [`vector_core::event::Event`] and storing them in a BigQuery table.
//! This module uses the BigQuery Storage Write (gRPC) API.
#[cfg(all(test, feature = "gcp-bigquery-integration-tests"))]
mod integration_tests;
#[cfg(test)]
mod tests;
mod config;
mod request_builder;
mod service;
mod sink;
#[allow(warnings, clippy::pedantic, clippy::nursery)]
pub(crate) mod proto {
pub(crate) mod third_party {
pub(crate) mod google {
pub(crate) mod cloud {
pub(crate) mod bigquery {
pub(crate) mod storage {
pub(crate) mod v1 {
tonic::include_proto!("google.cloud.bigquery.storage.v1");
}
}
}
}
pub(crate) mod rpc {
tonic::include_proto!("google.rpc");
}
}
}
}
pub use self::config::BigqueryConfig;