#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TopicConfig {
#[prost(string, tag = "1")]
pub topic: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
#[prost(message, optional, tag = "3")]
pub services: ::core::option::Option<ServicesData>,
#[prost(string, tag = "4")]
pub pipeline: ::prost::alloc::string::String,
#[prost(map = "string, string", tag = "5")]
pub topic_creation_config: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
#[prost(oneof = "topic_config::HasEnforcedPartitionCount", tags = "6")]
pub has_enforced_partition_count: ::core::option::Option<
topic_config::HasEnforcedPartitionCount,
>,
}
pub mod topic_config {
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Oneof)]
pub enum HasEnforcedPartitionCount {
#[prost(uint64, tag = "6")]
EnforcedPartitionCount(u64),
}
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct ServicesData {
#[prost(string, repeated, tag = "1")]
pub consumers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(string, repeated, tag = "2")]
pub producers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Const {
#[prost(int64, tag = "1")]
pub int: i64,
#[prost(string, tag = "2")]
pub string: ::prost::alloc::string::String,
}