#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Link {
#[prost(string, tag = "1")]
pub rid: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub local_resource_rid: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub remote_resource_rid: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub remote_connection_rid: ::prost::alloc::string::String,
#[prost(bool, tag = "5")]
pub enabled: bool,
#[prost(enumeration = "ResourceType", tag = "6")]
pub resource_type: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateLinkRequest {
#[prost(string, tag = "1")]
pub local_resource_rid: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub remote_resource_rid: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub remote_connection_rid: ::prost::alloc::string::String,
#[prost(bool, tag = "4")]
pub enabled: bool,
#[prost(enumeration = "ResourceType", tag = "5")]
pub resource_type: i32,
#[prost(string, tag = "6")]
pub workspace_rid: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct CreateLinkResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetLinkRequest {
#[prost(string, tag = "1")]
pub link_rid: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetLinkResponse {
#[prost(message, optional, tag = "1")]
pub link: ::core::option::Option<Link>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateLinkRequest {
#[prost(string, tag = "1")]
pub link_rid: ::prost::alloc::string::String,
#[prost(string, optional, tag = "2")]
pub remote_connection_rid: ::core::option::Option<::prost::alloc::string::String>,
#[prost(bool, optional, tag = "3")]
pub enabled: ::core::option::Option<bool>,
#[prost(string, optional, tag = "4")]
pub remote_resource_rid: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateLinkResponse {
#[prost(message, optional, tag = "1")]
pub link: ::core::option::Option<Link>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteLinkRequest {
#[prost(string, tag = "1")]
pub link_rid: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct DeleteLinkResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SearchLinksRequest {
#[prost(string, tag = "1")]
pub workspace_rid: ::prost::alloc::string::String,
#[prost(int32, tag = "2")]
pub page_size: i32,
#[prost(bool, optional, tag = "3")]
pub enabled: ::core::option::Option<bool>,
#[prost(enumeration = "ResourceType", optional, tag = "4")]
pub resource_type: ::core::option::Option<i32>,
#[prost(string, optional, tag = "5")]
pub local_resource_rid: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "6")]
pub remote_connection_rid: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "7")]
pub page_token: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SearchLinksResponse {
#[prost(message, repeated, tag = "1")]
pub links: ::prost::alloc::vec::Vec<Link>,
#[prost(string, optional, tag = "2")]
pub next_page_token: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ResourceType {
Unspecified = 0,
Dataset = 1,
}
impl ResourceType {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "RESOURCE_TYPE_UNSPECIFIED",
Self::Dataset => "RESOURCE_TYPE_DATASET",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"RESOURCE_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"RESOURCE_TYPE_DATASET" => Some(Self::Dataset),
_ => None,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum MeshServiceError {
LinkNotFound = 0,
LinkAlreadyExists = 1,
RemoteConnectionNotFound = 2,
RemoteConnectionAlreadyExists = 3,
RemoteConnectionHasDependentLinks = 4,
InvalidApiToken = 5,
}
impl MeshServiceError {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::LinkNotFound => "MESH_SERVICE_ERROR_LINK_NOT_FOUND",
Self::LinkAlreadyExists => "MESH_SERVICE_ERROR_LINK_ALREADY_EXISTS",
Self::RemoteConnectionNotFound => {
"MESH_SERVICE_ERROR_REMOTE_CONNECTION_NOT_FOUND"
}
Self::RemoteConnectionAlreadyExists => {
"MESH_SERVICE_ERROR_REMOTE_CONNECTION_ALREADY_EXISTS"
}
Self::RemoteConnectionHasDependentLinks => {
"MESH_SERVICE_ERROR_REMOTE_CONNECTION_HAS_DEPENDENT_LINKS"
}
Self::InvalidApiToken => "MESH_SERVICE_ERROR_INVALID_API_TOKEN",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"MESH_SERVICE_ERROR_LINK_NOT_FOUND" => Some(Self::LinkNotFound),
"MESH_SERVICE_ERROR_LINK_ALREADY_EXISTS" => Some(Self::LinkAlreadyExists),
"MESH_SERVICE_ERROR_REMOTE_CONNECTION_NOT_FOUND" => {
Some(Self::RemoteConnectionNotFound)
}
"MESH_SERVICE_ERROR_REMOTE_CONNECTION_ALREADY_EXISTS" => {
Some(Self::RemoteConnectionAlreadyExists)
}
"MESH_SERVICE_ERROR_REMOTE_CONNECTION_HAS_DEPENDENT_LINKS" => {
Some(Self::RemoteConnectionHasDependentLinks)
}
"MESH_SERVICE_ERROR_INVALID_API_TOKEN" => Some(Self::InvalidApiToken),
_ => None,
}
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RemoteConnection {
#[prost(string, tag = "1")]
pub rid: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub base_url: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub secret_rid: ::prost::alloc::string::String,
#[prost(enumeration = "RemoteConnectionStatus", tag = "5")]
pub status: i32,
#[prost(message, optional, tag = "6")]
pub status_updated_at: ::core::option::Option<
super::super::super::google::protobuf::Timestamp,
>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateRemoteConnectionRequest {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub base_url: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub secret_rid: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub workspace_rid: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateRemoteConnectionResponse {
#[prost(message, optional, tag = "1")]
pub remote_connection: ::core::option::Option<RemoteConnection>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetRemoteConnectionRequest {
#[prost(string, tag = "1")]
pub remote_connection_rid: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetRemoteConnectionResponse {
#[prost(message, optional, tag = "1")]
pub remote_connection: ::core::option::Option<RemoteConnection>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateRemoteConnectionRequest {
#[prost(string, tag = "1")]
pub remote_connection_rid: ::prost::alloc::string::String,
#[prost(string, optional, tag = "2")]
pub name: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "3")]
pub base_url: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "4")]
pub secret_rid: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateRemoteConnectionResponse {
#[prost(message, optional, tag = "1")]
pub remote_connection: ::core::option::Option<RemoteConnection>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteRemoteConnectionRequest {
#[prost(string, tag = "1")]
pub remote_connection_rid: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct DeleteRemoteConnectionResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListRemoteConnectionsRequest {
#[prost(string, tag = "1")]
pub workspace_rid: ::prost::alloc::string::String,
#[prost(int32, tag = "2")]
pub page_size: i32,
#[prost(string, optional, tag = "3")]
pub page_token: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListRemoteConnectionsResponse {
#[prost(message, repeated, tag = "1")]
pub remote_connections: ::prost::alloc::vec::Vec<RemoteConnection>,
#[prost(string, optional, tag = "2")]
pub next_page_token: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum RemoteConnectionStatus {
Unspecified = 0,
Online = 1,
Offline = 2,
}
impl RemoteConnectionStatus {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "REMOTE_CONNECTION_STATUS_UNSPECIFIED",
Self::Online => "REMOTE_CONNECTION_STATUS_ONLINE",
Self::Offline => "REMOTE_CONNECTION_STATUS_OFFLINE",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"REMOTE_CONNECTION_STATUS_UNSPECIFIED" => Some(Self::Unspecified),
"REMOTE_CONNECTION_STATUS_ONLINE" => Some(Self::Online),
"REMOTE_CONNECTION_STATUS_OFFLINE" => Some(Self::Offline),
_ => None,
}
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MeshRequest {
#[prost(oneof = "mesh_request::Request", tags = "1, 2")]
pub request: ::core::option::Option<mesh_request::Request>,
}
pub mod mesh_request {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Request {
#[prost(message, tag = "1")]
DataStream(super::DataStreamRequest),
#[prost(message, tag = "2")]
FileIngest(super::FileIngestRequest),
}
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct MeshResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DataStreamRequest {
#[prost(message, repeated, tag = "1")]
pub write_batches_request: ::prost::alloc::vec::Vec<
super::super::direct_channel_writer::v2::InternalWriteBatchesRequest,
>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FileIngestRequest {
#[prost(bytes = "vec", tag = "1")]
pub ingest_request: ::prost::alloc::vec::Vec<u8>,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct HealthCheckRequest {}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct HealthCheckResponse {}
pub mod mesh_service_client {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value,
)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
#[derive(Debug, Clone)]
pub struct MeshServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl MeshServiceClient<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> MeshServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::Body>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::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,
) -> MeshServiceClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::Body>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::Body>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::Body>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
MeshServiceClient::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 mesh(
&mut self,
request: impl tonic::IntoRequest<super::MeshRequest>,
) -> std::result::Result<tonic::Response<super::MeshResponse>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/Mesh",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.mesh.v1.MeshService", "Mesh"));
self.inner.unary(req, path, codec).await
}
pub async fn health_check(
&mut self,
request: impl tonic::IntoRequest<super::HealthCheckRequest>,
) -> std::result::Result<
tonic::Response<super::HealthCheckResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/HealthCheck",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.mesh.v1.MeshService", "HealthCheck"));
self.inner.unary(req, path, codec).await
}
pub async fn create_link(
&mut self,
request: impl tonic::IntoRequest<super::CreateLinkRequest>,
) -> std::result::Result<
tonic::Response<super::CreateLinkResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/CreateLink",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.mesh.v1.MeshService", "CreateLink"));
self.inner.unary(req, path, codec).await
}
pub async fn get_link(
&mut self,
request: impl tonic::IntoRequest<super::GetLinkRequest>,
) -> std::result::Result<
tonic::Response<super::GetLinkResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/GetLink",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.mesh.v1.MeshService", "GetLink"));
self.inner.unary(req, path, codec).await
}
pub async fn update_link(
&mut self,
request: impl tonic::IntoRequest<super::UpdateLinkRequest>,
) -> std::result::Result<
tonic::Response<super::UpdateLinkResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/UpdateLink",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.mesh.v1.MeshService", "UpdateLink"));
self.inner.unary(req, path, codec).await
}
pub async fn delete_link(
&mut self,
request: impl tonic::IntoRequest<super::DeleteLinkRequest>,
) -> std::result::Result<
tonic::Response<super::DeleteLinkResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/DeleteLink",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.mesh.v1.MeshService", "DeleteLink"));
self.inner.unary(req, path, codec).await
}
pub async fn search_links(
&mut self,
request: impl tonic::IntoRequest<super::SearchLinksRequest>,
) -> std::result::Result<
tonic::Response<super::SearchLinksResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/SearchLinks",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.mesh.v1.MeshService", "SearchLinks"));
self.inner.unary(req, path, codec).await
}
pub async fn create_remote_connection(
&mut self,
request: impl tonic::IntoRequest<super::CreateRemoteConnectionRequest>,
) -> std::result::Result<
tonic::Response<super::CreateRemoteConnectionResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/CreateRemoteConnection",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"nominal.mesh.v1.MeshService",
"CreateRemoteConnection",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn get_remote_connection(
&mut self,
request: impl tonic::IntoRequest<super::GetRemoteConnectionRequest>,
) -> std::result::Result<
tonic::Response<super::GetRemoteConnectionResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/GetRemoteConnection",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("nominal.mesh.v1.MeshService", "GetRemoteConnection"),
);
self.inner.unary(req, path, codec).await
}
pub async fn update_remote_connection(
&mut self,
request: impl tonic::IntoRequest<super::UpdateRemoteConnectionRequest>,
) -> std::result::Result<
tonic::Response<super::UpdateRemoteConnectionResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/UpdateRemoteConnection",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"nominal.mesh.v1.MeshService",
"UpdateRemoteConnection",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn delete_remote_connection(
&mut self,
request: impl tonic::IntoRequest<super::DeleteRemoteConnectionRequest>,
) -> std::result::Result<
tonic::Response<super::DeleteRemoteConnectionResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/DeleteRemoteConnection",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"nominal.mesh.v1.MeshService",
"DeleteRemoteConnection",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn list_remote_connections(
&mut self,
request: impl tonic::IntoRequest<super::ListRemoteConnectionsRequest>,
) -> std::result::Result<
tonic::Response<super::ListRemoteConnectionsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.mesh.v1.MeshService/ListRemoteConnections",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"nominal.mesh.v1.MeshService",
"ListRemoteConnections",
),
);
self.inner.unary(req, path, codec).await
}
}
}