#![allow(unknown_lints)]
#![allow(clippy::all)]
#![allow(unused_attributes)]
#![cfg_attr(rustfmt, rustfmt::skip)]
#![allow(box_pointers)]
#![allow(dead_code)]
#![allow(missing_docs)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(trivial_casts)]
#![allow(unused_results)]
#![allow(unused_mut)]
const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_3_4_0;
#[derive(PartialEq,Clone,Default,Debug)]
pub struct NewAudienceRequest {
pub session_id: ::std::string::String,
pub audience: ::protobuf::MessageField<super::sp_common::Audience>,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a NewAudienceRequest {
fn default() -> &'a NewAudienceRequest {
<NewAudienceRequest as ::protobuf::Message>::default_instance()
}
}
impl NewAudienceRequest {
pub fn new() -> NewAudienceRequest {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(2);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"session_id",
|m: &NewAudienceRequest| { &m.session_id },
|m: &mut NewAudienceRequest| { &mut m.session_id },
));
fields.push(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::sp_common::Audience>(
"audience",
|m: &NewAudienceRequest| { &m.audience },
|m: &mut NewAudienceRequest| { &mut m.audience },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<NewAudienceRequest>(
"NewAudienceRequest",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for NewAudienceRequest {
const NAME: &'static str = "NewAudienceRequest";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
self.session_id = is.read_string()?;
},
18 => {
::protobuf::rt::read_singular_message_into_field(is, &mut self.audience)?;
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
if !self.session_id.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.session_id);
}
if let Some(v) = self.audience.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
}
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
if !self.session_id.is_empty() {
os.write_string(1, &self.session_id)?;
}
if let Some(v) = self.audience.as_ref() {
::protobuf::rt::write_message_field_with_cached_size(2, v, os)?;
}
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> NewAudienceRequest {
NewAudienceRequest::new()
}
fn clear(&mut self) {
self.session_id.clear();
self.audience.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static NewAudienceRequest {
static instance: NewAudienceRequest = NewAudienceRequest {
session_id: ::std::string::String::new(),
audience: ::protobuf::MessageField::none(),
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for NewAudienceRequest {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("NewAudienceRequest").unwrap()).clone()
}
}
impl ::std::fmt::Display for NewAudienceRequest {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for NewAudienceRequest {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
#[derive(PartialEq,Clone,Default,Debug)]
pub struct HeartbeatRequest {
pub session_id: ::std::string::String,
pub service_name: ::std::string::String,
pub audiences: ::std::vec::Vec<super::sp_common::Audience>,
pub client_info: ::protobuf::MessageField<super::sp_info::ClientInfo>,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a HeartbeatRequest {
fn default() -> &'a HeartbeatRequest {
<HeartbeatRequest as ::protobuf::Message>::default_instance()
}
}
impl HeartbeatRequest {
pub fn new() -> HeartbeatRequest {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(4);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"session_id",
|m: &HeartbeatRequest| { &m.session_id },
|m: &mut HeartbeatRequest| { &mut m.session_id },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"service_name",
|m: &HeartbeatRequest| { &m.service_name },
|m: &mut HeartbeatRequest| { &mut m.service_name },
));
fields.push(::protobuf::reflect::rt::v2::make_vec_simpler_accessor::<_, _>(
"audiences",
|m: &HeartbeatRequest| { &m.audiences },
|m: &mut HeartbeatRequest| { &mut m.audiences },
));
fields.push(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::sp_info::ClientInfo>(
"client_info",
|m: &HeartbeatRequest| { &m.client_info },
|m: &mut HeartbeatRequest| { &mut m.client_info },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<HeartbeatRequest>(
"HeartbeatRequest",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for HeartbeatRequest {
const NAME: &'static str = "HeartbeatRequest";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
self.session_id = is.read_string()?;
},
18 => {
self.service_name = is.read_string()?;
},
26 => {
self.audiences.push(is.read_message()?);
},
34 => {
::protobuf::rt::read_singular_message_into_field(is, &mut self.client_info)?;
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
if !self.session_id.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.session_id);
}
if !self.service_name.is_empty() {
my_size += ::protobuf::rt::string_size(2, &self.service_name);
}
for value in &self.audiences {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
};
if let Some(v) = self.client_info.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
}
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
if !self.session_id.is_empty() {
os.write_string(1, &self.session_id)?;
}
if !self.service_name.is_empty() {
os.write_string(2, &self.service_name)?;
}
for v in &self.audiences {
::protobuf::rt::write_message_field_with_cached_size(3, v, os)?;
};
if let Some(v) = self.client_info.as_ref() {
::protobuf::rt::write_message_field_with_cached_size(4, v, os)?;
}
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> HeartbeatRequest {
HeartbeatRequest::new()
}
fn clear(&mut self) {
self.session_id.clear();
self.service_name.clear();
self.audiences.clear();
self.client_info.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static HeartbeatRequest {
static instance: HeartbeatRequest = HeartbeatRequest {
session_id: ::std::string::String::new(),
service_name: ::std::string::String::new(),
audiences: ::std::vec::Vec::new(),
client_info: ::protobuf::MessageField::none(),
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for HeartbeatRequest {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("HeartbeatRequest").unwrap()).clone()
}
}
impl ::std::fmt::Display for HeartbeatRequest {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for HeartbeatRequest {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
#[derive(PartialEq,Clone,Default,Debug)]
pub struct NotifyRequest {
pub condition_type: ::protobuf::EnumOrUnknown<notify_request::ConditionType>,
pub step: ::protobuf::MessageField<super::sp_pipeline::PipelineStep>,
pub audience: ::protobuf::MessageField<super::sp_common::Audience>,
pub occurred_at_unix_ts_utc: i64,
pub pipeline_id: ::std::string::String,
pub payload: ::std::vec::Vec<u8>,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a NotifyRequest {
fn default() -> &'a NotifyRequest {
<NotifyRequest as ::protobuf::Message>::default_instance()
}
}
impl NotifyRequest {
pub fn new() -> NotifyRequest {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(6);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"condition_type",
|m: &NotifyRequest| { &m.condition_type },
|m: &mut NotifyRequest| { &mut m.condition_type },
));
fields.push(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::sp_pipeline::PipelineStep>(
"step",
|m: &NotifyRequest| { &m.step },
|m: &mut NotifyRequest| { &mut m.step },
));
fields.push(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::sp_common::Audience>(
"audience",
|m: &NotifyRequest| { &m.audience },
|m: &mut NotifyRequest| { &mut m.audience },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"occurred_at_unix_ts_utc",
|m: &NotifyRequest| { &m.occurred_at_unix_ts_utc },
|m: &mut NotifyRequest| { &mut m.occurred_at_unix_ts_utc },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"pipeline_id",
|m: &NotifyRequest| { &m.pipeline_id },
|m: &mut NotifyRequest| { &mut m.pipeline_id },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"payload",
|m: &NotifyRequest| { &m.payload },
|m: &mut NotifyRequest| { &mut m.payload },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<NotifyRequest>(
"NotifyRequest",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for NotifyRequest {
const NAME: &'static str = "NotifyRequest";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
8 => {
self.condition_type = is.read_enum_or_unknown()?;
},
18 => {
::protobuf::rt::read_singular_message_into_field(is, &mut self.step)?;
},
26 => {
::protobuf::rt::read_singular_message_into_field(is, &mut self.audience)?;
},
32 => {
self.occurred_at_unix_ts_utc = is.read_int64()?;
},
42 => {
self.pipeline_id = is.read_string()?;
},
50 => {
self.payload = is.read_bytes()?;
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
if self.condition_type != ::protobuf::EnumOrUnknown::new(notify_request::ConditionType::CONDITION_TYPE_UNSET) {
my_size += ::protobuf::rt::int32_size(1, self.condition_type.value());
}
if let Some(v) = self.step.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
}
if let Some(v) = self.audience.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
}
if self.occurred_at_unix_ts_utc != 0 {
my_size += ::protobuf::rt::int64_size(4, self.occurred_at_unix_ts_utc);
}
if !self.pipeline_id.is_empty() {
my_size += ::protobuf::rt::string_size(5, &self.pipeline_id);
}
if !self.payload.is_empty() {
my_size += ::protobuf::rt::bytes_size(6, &self.payload);
}
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
if self.condition_type != ::protobuf::EnumOrUnknown::new(notify_request::ConditionType::CONDITION_TYPE_UNSET) {
os.write_enum(1, ::protobuf::EnumOrUnknown::value(&self.condition_type))?;
}
if let Some(v) = self.step.as_ref() {
::protobuf::rt::write_message_field_with_cached_size(2, v, os)?;
}
if let Some(v) = self.audience.as_ref() {
::protobuf::rt::write_message_field_with_cached_size(3, v, os)?;
}
if self.occurred_at_unix_ts_utc != 0 {
os.write_int64(4, self.occurred_at_unix_ts_utc)?;
}
if !self.pipeline_id.is_empty() {
os.write_string(5, &self.pipeline_id)?;
}
if !self.payload.is_empty() {
os.write_bytes(6, &self.payload)?;
}
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> NotifyRequest {
NotifyRequest::new()
}
fn clear(&mut self) {
self.condition_type = ::protobuf::EnumOrUnknown::new(notify_request::ConditionType::CONDITION_TYPE_UNSET);
self.step.clear();
self.audience.clear();
self.occurred_at_unix_ts_utc = 0;
self.pipeline_id.clear();
self.payload.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static NotifyRequest {
static instance: NotifyRequest = NotifyRequest {
condition_type: ::protobuf::EnumOrUnknown::from_i32(0),
step: ::protobuf::MessageField::none(),
audience: ::protobuf::MessageField::none(),
occurred_at_unix_ts_utc: 0,
pipeline_id: ::std::string::String::new(),
payload: ::std::vec::Vec::new(),
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for NotifyRequest {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("NotifyRequest").unwrap()).clone()
}
}
impl ::std::fmt::Display for NotifyRequest {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for NotifyRequest {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
pub mod notify_request {
#[derive(Clone,Copy,PartialEq,Eq,Debug,Hash)]
pub enum ConditionType {
CONDITION_TYPE_UNSET = 0,
CONDITION_TYPE_ON_TRUE = 1,
CONDITION_TYPE_ON_FALSE = 2,
CONDITION_TYPE_ON_ERROR = 3,
}
impl ::protobuf::Enum for ConditionType {
const NAME: &'static str = "ConditionType";
fn value(&self) -> i32 {
*self as i32
}
fn from_i32(value: i32) -> ::std::option::Option<ConditionType> {
match value {
0 => ::std::option::Option::Some(ConditionType::CONDITION_TYPE_UNSET),
1 => ::std::option::Option::Some(ConditionType::CONDITION_TYPE_ON_TRUE),
2 => ::std::option::Option::Some(ConditionType::CONDITION_TYPE_ON_FALSE),
3 => ::std::option::Option::Some(ConditionType::CONDITION_TYPE_ON_ERROR),
_ => ::std::option::Option::None
}
}
fn from_str(str: &str) -> ::std::option::Option<ConditionType> {
match str {
"CONDITION_TYPE_UNSET" => ::std::option::Option::Some(ConditionType::CONDITION_TYPE_UNSET),
"CONDITION_TYPE_ON_TRUE" => ::std::option::Option::Some(ConditionType::CONDITION_TYPE_ON_TRUE),
"CONDITION_TYPE_ON_FALSE" => ::std::option::Option::Some(ConditionType::CONDITION_TYPE_ON_FALSE),
"CONDITION_TYPE_ON_ERROR" => ::std::option::Option::Some(ConditionType::CONDITION_TYPE_ON_ERROR),
_ => ::std::option::Option::None
}
}
const VALUES: &'static [ConditionType] = &[
ConditionType::CONDITION_TYPE_UNSET,
ConditionType::CONDITION_TYPE_ON_TRUE,
ConditionType::CONDITION_TYPE_ON_FALSE,
ConditionType::CONDITION_TYPE_ON_ERROR,
];
}
impl ::protobuf::EnumFull for ConditionType {
fn enum_descriptor() -> ::protobuf::reflect::EnumDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| super::file_descriptor().enum_by_package_relative_name("NotifyRequest.ConditionType").unwrap()).clone()
}
fn descriptor(&self) -> ::protobuf::reflect::EnumValueDescriptor {
let index = *self as usize;
Self::enum_descriptor().value_by_index(index)
}
}
impl ::std::default::Default for ConditionType {
fn default() -> Self {
ConditionType::CONDITION_TYPE_UNSET
}
}
impl ConditionType {
pub(in super) fn generated_enum_descriptor_data() -> ::protobuf::reflect::GeneratedEnumDescriptorData {
::protobuf::reflect::GeneratedEnumDescriptorData::new::<ConditionType>("NotifyRequest.ConditionType")
}
}
}
#[derive(PartialEq,Clone,Default,Debug)]
pub struct MetricsRequest {
pub metrics: ::std::vec::Vec<super::sp_common::Metric>,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a MetricsRequest {
fn default() -> &'a MetricsRequest {
<MetricsRequest as ::protobuf::Message>::default_instance()
}
}
impl MetricsRequest {
pub fn new() -> MetricsRequest {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(1);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_vec_simpler_accessor::<_, _>(
"metrics",
|m: &MetricsRequest| { &m.metrics },
|m: &mut MetricsRequest| { &mut m.metrics },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<MetricsRequest>(
"MetricsRequest",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for MetricsRequest {
const NAME: &'static str = "MetricsRequest";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
self.metrics.push(is.read_message()?);
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
for value in &self.metrics {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
};
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
for v in &self.metrics {
::protobuf::rt::write_message_field_with_cached_size(1, v, os)?;
};
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> MetricsRequest {
MetricsRequest::new()
}
fn clear(&mut self) {
self.metrics.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static MetricsRequest {
static instance: MetricsRequest = MetricsRequest {
metrics: ::std::vec::Vec::new(),
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for MetricsRequest {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("MetricsRequest").unwrap()).clone()
}
}
impl ::std::fmt::Display for MetricsRequest {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for MetricsRequest {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
#[derive(PartialEq,Clone,Default,Debug)]
pub struct RegisterRequest {
pub service_name: ::std::string::String,
pub session_id: ::std::string::String,
pub client_info: ::protobuf::MessageField<super::sp_info::ClientInfo>,
pub audiences: ::std::vec::Vec<super::sp_common::Audience>,
pub dry_run: bool,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a RegisterRequest {
fn default() -> &'a RegisterRequest {
<RegisterRequest as ::protobuf::Message>::default_instance()
}
}
impl RegisterRequest {
pub fn new() -> RegisterRequest {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(5);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"service_name",
|m: &RegisterRequest| { &m.service_name },
|m: &mut RegisterRequest| { &mut m.service_name },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"session_id",
|m: &RegisterRequest| { &m.session_id },
|m: &mut RegisterRequest| { &mut m.session_id },
));
fields.push(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::sp_info::ClientInfo>(
"client_info",
|m: &RegisterRequest| { &m.client_info },
|m: &mut RegisterRequest| { &mut m.client_info },
));
fields.push(::protobuf::reflect::rt::v2::make_vec_simpler_accessor::<_, _>(
"audiences",
|m: &RegisterRequest| { &m.audiences },
|m: &mut RegisterRequest| { &mut m.audiences },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"dry_run",
|m: &RegisterRequest| { &m.dry_run },
|m: &mut RegisterRequest| { &mut m.dry_run },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<RegisterRequest>(
"RegisterRequest",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for RegisterRequest {
const NAME: &'static str = "RegisterRequest";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
self.service_name = is.read_string()?;
},
18 => {
self.session_id = is.read_string()?;
},
26 => {
::protobuf::rt::read_singular_message_into_field(is, &mut self.client_info)?;
},
34 => {
self.audiences.push(is.read_message()?);
},
40 => {
self.dry_run = is.read_bool()?;
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
if !self.service_name.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.service_name);
}
if !self.session_id.is_empty() {
my_size += ::protobuf::rt::string_size(2, &self.session_id);
}
if let Some(v) = self.client_info.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
}
for value in &self.audiences {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
};
if self.dry_run != false {
my_size += 1 + 1;
}
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
if !self.service_name.is_empty() {
os.write_string(1, &self.service_name)?;
}
if !self.session_id.is_empty() {
os.write_string(2, &self.session_id)?;
}
if let Some(v) = self.client_info.as_ref() {
::protobuf::rt::write_message_field_with_cached_size(3, v, os)?;
}
for v in &self.audiences {
::protobuf::rt::write_message_field_with_cached_size(4, v, os)?;
};
if self.dry_run != false {
os.write_bool(5, self.dry_run)?;
}
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> RegisterRequest {
RegisterRequest::new()
}
fn clear(&mut self) {
self.service_name.clear();
self.session_id.clear();
self.client_info.clear();
self.audiences.clear();
self.dry_run = false;
self.special_fields.clear();
}
fn default_instance() -> &'static RegisterRequest {
static instance: RegisterRequest = RegisterRequest {
service_name: ::std::string::String::new(),
session_id: ::std::string::String::new(),
client_info: ::protobuf::MessageField::none(),
audiences: ::std::vec::Vec::new(),
dry_run: false,
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for RegisterRequest {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("RegisterRequest").unwrap()).clone()
}
}
impl ::std::fmt::Display for RegisterRequest {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for RegisterRequest {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
#[derive(PartialEq,Clone,Default,Debug)]
pub struct DeregisterRequest {
pub service_name: ::std::string::String,
pub session_id: ::std::string::String,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a DeregisterRequest {
fn default() -> &'a DeregisterRequest {
<DeregisterRequest as ::protobuf::Message>::default_instance()
}
}
impl DeregisterRequest {
pub fn new() -> DeregisterRequest {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(2);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"service_name",
|m: &DeregisterRequest| { &m.service_name },
|m: &mut DeregisterRequest| { &mut m.service_name },
));
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"session_id",
|m: &DeregisterRequest| { &m.session_id },
|m: &mut DeregisterRequest| { &mut m.session_id },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<DeregisterRequest>(
"DeregisterRequest",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for DeregisterRequest {
const NAME: &'static str = "DeregisterRequest";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
self.service_name = is.read_string()?;
},
18 => {
self.session_id = is.read_string()?;
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
if !self.service_name.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.service_name);
}
if !self.session_id.is_empty() {
my_size += ::protobuf::rt::string_size(2, &self.session_id);
}
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
if !self.service_name.is_empty() {
os.write_string(1, &self.service_name)?;
}
if !self.session_id.is_empty() {
os.write_string(2, &self.session_id)?;
}
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> DeregisterRequest {
DeregisterRequest::new()
}
fn clear(&mut self) {
self.service_name.clear();
self.session_id.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static DeregisterRequest {
static instance: DeregisterRequest = DeregisterRequest {
service_name: ::std::string::String::new(),
session_id: ::std::string::String::new(),
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for DeregisterRequest {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("DeregisterRequest").unwrap()).clone()
}
}
impl ::std::fmt::Display for DeregisterRequest {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for DeregisterRequest {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
#[derive(PartialEq,Clone,Default,Debug)]
pub struct GetSetPipelinesCommandsByServiceRequest {
pub service_name: ::std::string::String,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a GetSetPipelinesCommandsByServiceRequest {
fn default() -> &'a GetSetPipelinesCommandsByServiceRequest {
<GetSetPipelinesCommandsByServiceRequest as ::protobuf::Message>::default_instance()
}
}
impl GetSetPipelinesCommandsByServiceRequest {
pub fn new() -> GetSetPipelinesCommandsByServiceRequest {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(1);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_simpler_field_accessor::<_, _>(
"service_name",
|m: &GetSetPipelinesCommandsByServiceRequest| { &m.service_name },
|m: &mut GetSetPipelinesCommandsByServiceRequest| { &mut m.service_name },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<GetSetPipelinesCommandsByServiceRequest>(
"GetSetPipelinesCommandsByServiceRequest",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for GetSetPipelinesCommandsByServiceRequest {
const NAME: &'static str = "GetSetPipelinesCommandsByServiceRequest";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
self.service_name = is.read_string()?;
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
if !self.service_name.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.service_name);
}
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
if !self.service_name.is_empty() {
os.write_string(1, &self.service_name)?;
}
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> GetSetPipelinesCommandsByServiceRequest {
GetSetPipelinesCommandsByServiceRequest::new()
}
fn clear(&mut self) {
self.service_name.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static GetSetPipelinesCommandsByServiceRequest {
static instance: GetSetPipelinesCommandsByServiceRequest = GetSetPipelinesCommandsByServiceRequest {
service_name: ::std::string::String::new(),
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for GetSetPipelinesCommandsByServiceRequest {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("GetSetPipelinesCommandsByServiceRequest").unwrap()).clone()
}
}
impl ::std::fmt::Display for GetSetPipelinesCommandsByServiceRequest {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for GetSetPipelinesCommandsByServiceRequest {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
#[derive(PartialEq,Clone,Default,Debug)]
pub struct GetSetPipelinesCommandsByServiceResponse {
pub set_pipeline_commands: ::std::vec::Vec<super::sp_command::Command>,
pub wasm_modules: ::std::collections::HashMap<::std::string::String, super::sp_shared::WasmModule>,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a GetSetPipelinesCommandsByServiceResponse {
fn default() -> &'a GetSetPipelinesCommandsByServiceResponse {
<GetSetPipelinesCommandsByServiceResponse as ::protobuf::Message>::default_instance()
}
}
impl GetSetPipelinesCommandsByServiceResponse {
pub fn new() -> GetSetPipelinesCommandsByServiceResponse {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(2);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_vec_simpler_accessor::<_, _>(
"set_pipeline_commands",
|m: &GetSetPipelinesCommandsByServiceResponse| { &m.set_pipeline_commands },
|m: &mut GetSetPipelinesCommandsByServiceResponse| { &mut m.set_pipeline_commands },
));
fields.push(::protobuf::reflect::rt::v2::make_map_simpler_accessor::<_, _, _>(
"wasm_modules",
|m: &GetSetPipelinesCommandsByServiceResponse| { &m.wasm_modules },
|m: &mut GetSetPipelinesCommandsByServiceResponse| { &mut m.wasm_modules },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<GetSetPipelinesCommandsByServiceResponse>(
"GetSetPipelinesCommandsByServiceResponse",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for GetSetPipelinesCommandsByServiceResponse {
const NAME: &'static str = "GetSetPipelinesCommandsByServiceResponse";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
self.set_pipeline_commands.push(is.read_message()?);
},
26 => {
let len = is.read_raw_varint32()?;
let old_limit = is.push_limit(len as u64)?;
let mut key = ::std::default::Default::default();
let mut value = ::std::default::Default::default();
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => key = is.read_string()?,
18 => value = is.read_message()?,
_ => ::protobuf::rt::skip_field_for_tag(tag, is)?,
};
}
is.pop_limit(old_limit);
self.wasm_modules.insert(key, value);
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
for value in &self.set_pipeline_commands {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
};
for (k, v) in &self.wasm_modules {
let mut entry_size = 0;
entry_size += ::protobuf::rt::string_size(1, &k);
let len = v.compute_size();
entry_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(entry_size) + entry_size
};
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
for v in &self.set_pipeline_commands {
::protobuf::rt::write_message_field_with_cached_size(1, v, os)?;
};
for (k, v) in &self.wasm_modules {
let mut entry_size = 0;
entry_size += ::protobuf::rt::string_size(1, &k);
let len = v.cached_size() as u64;
entry_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
os.write_raw_varint32(26)?; os.write_raw_varint32(entry_size as u32)?;
os.write_string(1, &k)?;
::protobuf::rt::write_message_field_with_cached_size(2, v, os)?;
};
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> GetSetPipelinesCommandsByServiceResponse {
GetSetPipelinesCommandsByServiceResponse::new()
}
fn clear(&mut self) {
self.set_pipeline_commands.clear();
self.wasm_modules.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static GetSetPipelinesCommandsByServiceResponse {
static instance: ::protobuf::rt::Lazy<GetSetPipelinesCommandsByServiceResponse> = ::protobuf::rt::Lazy::new();
instance.get(GetSetPipelinesCommandsByServiceResponse::new)
}
}
impl ::protobuf::MessageFull for GetSetPipelinesCommandsByServiceResponse {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("GetSetPipelinesCommandsByServiceResponse").unwrap()).clone()
}
}
impl ::std::fmt::Display for GetSetPipelinesCommandsByServiceResponse {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for GetSetPipelinesCommandsByServiceResponse {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
#[derive(PartialEq,Clone,Default,Debug)]
pub struct SendSchemaRequest {
pub audience: ::protobuf::MessageField<super::sp_common::Audience>,
pub schema: ::protobuf::MessageField<super::sp_common::Schema>,
pub special_fields: ::protobuf::SpecialFields,
}
impl<'a> ::std::default::Default for &'a SendSchemaRequest {
fn default() -> &'a SendSchemaRequest {
<SendSchemaRequest as ::protobuf::Message>::default_instance()
}
}
impl SendSchemaRequest {
pub fn new() -> SendSchemaRequest {
::std::default::Default::default()
}
fn generated_message_descriptor_data() -> ::protobuf::reflect::GeneratedMessageDescriptorData {
let mut fields = ::std::vec::Vec::with_capacity(2);
let mut oneofs = ::std::vec::Vec::with_capacity(0);
fields.push(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::sp_common::Audience>(
"audience",
|m: &SendSchemaRequest| { &m.audience },
|m: &mut SendSchemaRequest| { &mut m.audience },
));
fields.push(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::sp_common::Schema>(
"schema",
|m: &SendSchemaRequest| { &m.schema },
|m: &mut SendSchemaRequest| { &mut m.schema },
));
::protobuf::reflect::GeneratedMessageDescriptorData::new_2::<SendSchemaRequest>(
"SendSchemaRequest",
fields,
oneofs,
)
}
}
impl ::protobuf::Message for SendSchemaRequest {
const NAME: &'static str = "SendSchemaRequest";
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::Result<()> {
while let Some(tag) = is.read_raw_tag_or_eof()? {
match tag {
10 => {
::protobuf::rt::read_singular_message_into_field(is, &mut self.audience)?;
},
18 => {
::protobuf::rt::read_singular_message_into_field(is, &mut self.schema)?;
},
tag => {
::protobuf::rt::read_unknown_or_skip_group(tag, is, self.special_fields.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u64 {
let mut my_size = 0;
if let Some(v) = self.audience.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
}
if let Some(v) = self.schema.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint64_size(len) + len;
}
my_size += ::protobuf::rt::unknown_fields_size(self.special_fields.unknown_fields());
self.special_fields.cached_size().set(my_size as u32);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::Result<()> {
if let Some(v) = self.audience.as_ref() {
::protobuf::rt::write_message_field_with_cached_size(1, v, os)?;
}
if let Some(v) = self.schema.as_ref() {
::protobuf::rt::write_message_field_with_cached_size(2, v, os)?;
}
os.write_unknown_fields(self.special_fields.unknown_fields())?;
::std::result::Result::Ok(())
}
fn special_fields(&self) -> &::protobuf::SpecialFields {
&self.special_fields
}
fn mut_special_fields(&mut self) -> &mut ::protobuf::SpecialFields {
&mut self.special_fields
}
fn new() -> SendSchemaRequest {
SendSchemaRequest::new()
}
fn clear(&mut self) {
self.audience.clear();
self.schema.clear();
self.special_fields.clear();
}
fn default_instance() -> &'static SendSchemaRequest {
static instance: SendSchemaRequest = SendSchemaRequest {
audience: ::protobuf::MessageField::none(),
schema: ::protobuf::MessageField::none(),
special_fields: ::protobuf::SpecialFields::new(),
};
&instance
}
}
impl ::protobuf::MessageFull for SendSchemaRequest {
fn descriptor() -> ::protobuf::reflect::MessageDescriptor {
static descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::Lazy::new();
descriptor.get(|| file_descriptor().message_by_package_relative_name("SendSchemaRequest").unwrap()).clone()
}
}
impl ::std::fmt::Display for SendSchemaRequest {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for SendSchemaRequest {
type RuntimeType = ::protobuf::reflect::rt::RuntimeTypeMessage<Self>;
}
static file_descriptor_proto_data: &'static [u8] = b"\
\n\x11sp_internal.proto\x12\x06protos\x1a\x16shared/sp_shared.proto\x1a\
\x10sp_command.proto\x1a\x0fsp_common.proto\x1a\rsp_info.proto\x1a\x11sp\
_pipeline.proto\"a\n\x12NewAudienceRequest\x12\x1d\n\nsession_id\x18\x01\
\x20\x01(\tR\tsessionId\x12,\n\x08audience\x18\x02\x20\x01(\x0b2\x10.pro\
tos.AudienceR\x08audience\"\xb9\x01\n\x10HeartbeatRequest\x12\x1d\n\nses\
sion_id\x18\x01\x20\x01(\tR\tsessionId\x12!\n\x0cservice_name\x18\x02\
\x20\x01(\tR\x0bserviceName\x12.\n\taudiences\x18\x03\x20\x03(\x0b2\x10.\
protos.AudienceR\taudiences\x123\n\x0bclient_info\x18\x04\x20\x01(\x0b2\
\x12.protos.ClientInfoR\nclientInfo\"\xa5\x03\n\rNotifyRequest\x12J\n\
\x0econdition_type\x18\x01\x20\x01(\x0e2#.protos.NotifyRequest.Condition\
TypeR\rconditionType\x12(\n\x04step\x18\x02\x20\x01(\x0b2\x14.protos.Pip\
elineStepR\x04step\x12,\n\x08audience\x18\x03\x20\x01(\x0b2\x10.protos.A\
udienceR\x08audience\x124\n\x17occurred_at_unix_ts_utc\x18\x04\x20\x01(\
\x03R\x13occurredAtUnixTsUtc\x12\x1f\n\x0bpipeline_id\x18\x05\x20\x01(\t\
R\npipelineId\x12\x18\n\x07payload\x18\x06\x20\x01(\x0cR\x07payload\"\
\x7f\n\rConditionType\x12\x18\n\x14CONDITION_TYPE_UNSET\x10\0\x12\x1a\n\
\x16CONDITION_TYPE_ON_TRUE\x10\x01\x12\x1b\n\x17CONDITION_TYPE_ON_FALSE\
\x10\x02\x12\x1b\n\x17CONDITION_TYPE_ON_ERROR\x10\x03\":\n\x0eMetricsReq\
uest\x12(\n\x07metrics\x18\x01\x20\x03(\x0b2\x0e.protos.MetricR\x07metri\
cs\"\xd1\x01\n\x0fRegisterRequest\x12!\n\x0cservice_name\x18\x01\x20\x01\
(\tR\x0bserviceName\x12\x1d\n\nsession_id\x18\x02\x20\x01(\tR\tsessionId\
\x123\n\x0bclient_info\x18\x03\x20\x01(\x0b2\x12.protos.ClientInfoR\ncli\
entInfo\x12.\n\taudiences\x18\x04\x20\x03(\x0b2\x10.protos.AudienceR\tau\
diences\x12\x17\n\x07dry_run\x18\x05\x20\x01(\x08R\x06dryRun\"U\n\x11Der\
egisterRequest\x12!\n\x0cservice_name\x18\x01\x20\x01(\tR\x0bserviceName\
\x12\x1d\n\nsession_id\x18\x02\x20\x01(\tR\tsessionId\"L\n'GetSetPipelin\
esCommandsByServiceRequest\x12!\n\x0cservice_name\x18\x01\x20\x01(\tR\
\x0bserviceName\"\xb0\x02\n(GetSetPipelinesCommandsByServiceResponse\x12\
C\n\x15set_pipeline_commands\x18\x01\x20\x03(\x0b2\x0f.protos.CommandR\
\x13setPipelineCommands\x12d\n\x0cwasm_modules\x18\x03\x20\x03(\x0b2A.pr\
otos.GetSetPipelinesCommandsByServiceResponse.WasmModulesEntryR\x0bwasmM\
odules\x1aY\n\x10WasmModulesEntry\x12\x10\n\x03key\x18\x01\x20\x01(\tR\
\x03key\x12/\n\x05value\x18\x02\x20\x01(\x0b2\x19.protos.shared.WasmModu\
leR\x05value:\x028\x01\"i\n\x11SendSchemaRequest\x12,\n\x08audience\x18\
\x01\x20\x01(\x0b2\x10.protos.AudienceR\x08audience\x12&\n\x06schema\x18\
\x02\x20\x01(\x0b2\x0e.protos.SchemaR\x06schema2\xc9\x04\n\x08Internal\
\x126\n\x08Register\x12\x17.protos.RegisterRequest\x1a\x0f.protos.Comman\
d0\x01\x12C\n\x0bNewAudience\x12\x1a.protos.NewAudienceRequest\x1a\x18.p\
rotos.StandardResponse\x12?\n\tHeartbeat\x12\x18.protos.HeartbeatRequest\
\x1a\x18.protos.StandardResponse\x129\n\x06Notify\x12\x15.protos.NotifyR\
equest\x1a\x18.protos.StandardResponse\x12;\n\x07Metrics\x12\x16.protos.\
MetricsRequest\x1a\x18.protos.StandardResponse\x12\x85\x01\n\x20GetSetPi\
pelinesCommandsByService\x12/.protos.GetSetPipelinesCommandsByServiceReq\
uest\x1a0.protos.GetSetPipelinesCommandsByServiceResponse\x12<\n\x08Send\
Tail\x12\x14.protos.TailResponse\x1a\x18.protos.StandardResponse(\x01\
\x12A\n\nSendSchema\x12\x19.protos.SendSchemaRequest\x1a\x18.protos.Stan\
dardResponseBPZ:github.com/streamdal/streamdal/libs/protos/build/go/prot\
os\xea\x02\x11Streamdal::ProtosJ\xa8+\n\x07\x12\x05\0\0\x9b\x01\x01\n\
\x08\n\x01\x0c\x12\x03\0\0\x12\n\x08\n\x01\x02\x12\x03\x02\0\x0f\n\t\n\
\x02\x03\0\x12\x03\x04\0\x20\n\t\n\x02\x03\x01\x12\x03\x05\0\x1a\n\t\n\
\x02\x03\x02\x12\x03\x06\0\x19\n\t\n\x02\x03\x03\x12\x03\x07\0\x17\n\t\n\
\x02\x03\x04\x12\x03\x08\0\x1b\n\x08\n\x01\x08\x12\x03\n\0Q\n\t\n\x02\
\x08\x0b\x12\x03\n\0Q\n\x08\n\x01\x08\x12\x03\x0b\0*\n\t\n\x02\x08-\x12\
\x03\x0b\0*\n\n\n\x02\x06\0\x12\x04\r\0-\x01\n\n\n\x03\x06\0\x01\x12\x03\
\r\x08\x10\n\xbc\x02\n\x04\x06\0\x02\0\x12\x03\x13\x02@\x1a\xae\x02\x20I\
nitial\x20method\x20that\x20an\x20SDK\x20should\x20call\x20to\x20registe\
r\x20itself\x20with\x20the\x20server.\n\x20The\x20server\x20will\x20use\
\x20this\x20stream\x20to\x20send\x20commands\x20to\x20the\x20SDK\x20via\
\x20the\n\x20`CommandResponse`\x20message.\x20Clients\x20should\x20conti\
nuously\x20listen\x20for\n\x20CommandResponse\x20messages\x20and\x20re-e\
stablish\x20registration\x20if\x20the\x20stream\x20gets\n\x20disconnecte\
d.\n\n\x0c\n\x05\x06\0\x02\0\x01\x12\x03\x13\x06\x0e\n\x0c\n\x05\x06\0\
\x02\0\x02\x12\x03\x13\x0f\x1e\n\x0c\n\x05\x06\0\x02\0\x06\x12\x03\x13)/\
\n\x0c\n\x05\x06\0\x02\0\x03\x12\x03\x130>\n\xb0\x01\n\x04\x06\0\x02\x01\
\x12\x03\x18\x02A\x1a\xa2\x01\x20Declare\x20a\x20new\x20audience\x20that\
\x20the\x20SDK\x20is\x20able\x20to\x20accept\x20commands\x20for.\n\x20An\
\x20SDK\x20would\x20use\x20this\x20method\x20when\x20a\x20new\x20audienc\
e\x20is\x20declared\x20by\x20the\x20user\n\x20via\x20`.Process()`.\n\n\
\x0c\n\x05\x06\0\x02\x01\x01\x12\x03\x18\x06\x11\n\x0c\n\x05\x06\0\x02\
\x01\x02\x12\x03\x18\x12$\n\x0c\n\x05\x06\0\x02\x01\x03\x12\x03\x18/?\n\
\x84\x01\n\x04\x06\0\x02\x02\x12\x03\x1c\x02=\x1aw\x20SDK\x20is\x20respo\
nsible\x20for\x20sending\x20heartbeats\x20to\x20the\x20server\x20to\x20l\
et\x20the\x20server\n\x20know\x20about\x20active\x20consumers\x20and\x20\
producers.\n\n\x0c\n\x05\x06\0\x02\x02\x01\x12\x03\x1c\x06\x0f\n\x0c\n\
\x05\x06\0\x02\x02\x02\x12\x03\x1c\x10\x20\n\x0c\n\x05\x06\0\x02\x02\x03\
\x12\x03\x1c+;\n\x86\x01\n\x04\x06\0\x02\x03\x12\x03\x20\x027\x1ay\x20Us\
e\x20this\x20method\x20when\x20Notify\x20condition\x20has\x20been\x20tri\
ggered;\x20the\x20server\x20will\n\x20decide\x20on\x20what\x20to\x20do\
\x20about\x20the\x20notification.\n\n\x0c\n\x05\x06\0\x02\x03\x01\x12\
\x03\x20\x06\x0c\n\x0c\n\x05\x06\0\x02\x03\x02\x12\x03\x20\r\x1a\n\x0c\n\
\x05\x06\0\x02\x03\x03\x12\x03\x20%5\n2\n\x04\x06\0\x02\x04\x12\x03#\x02\
9\x1a%\x20Send\x20periodic\x20metrics\x20to\x20the\x20server\n\n\x0c\n\
\x05\x06\0\x02\x04\x01\x12\x03#\x06\r\n\x0c\n\x05\x06\0\x02\x04\x02\x12\
\x03#\x0e\x1c\n\x0c\n\x05\x06\0\x02\x04\x03\x12\x03#'7\n\x8b\x01\n\x04\
\x06\0\x02\x05\x12\x04'\x02\x83\x01\x1a}\x20Used\x20to\x20pull\x20all\
\x20pipeline\x20configs\x20for\x20the\x20service\x20name\x20in\x20the\
\x20SDK's\x20constructor\n\x20This\x20is\x20needed\x20because\x20Registe\
r()\x20is\x20async\n\n\x0c\n\x05\x06\0\x02\x05\x01\x12\x03'\x06&\n\x0c\n\
\x05\x06\0\x02\x05\x02\x12\x03''N\n\r\n\x05\x06\0\x02\x05\x03\x12\x04'Y\
\x81\x01\n\x0b\n\x04\x06\0\x02\x06\x12\x03)\x02?\n\x0c\n\x05\x06\0\x02\
\x06\x01\x12\x03)\x06\x0e\n\x0c\n\x05\x06\0\x02\x06\x05\x12\x03)\x0f\x15\
\n\x0c\n\x05\x06\0\x02\x06\x02\x12\x03)\x16\"\n\x0c\n\x05\x06\0\x02\x06\
\x03\x12\x03)-=\n=\n\x04\x06\0\x02\x07\x12\x03,\x02?\x1a0\x20Used\x20by\
\x20SDK\x20to\x20send\x20a\x20new\x20schema\x20to\x20the\x20server\n\n\
\x0c\n\x05\x06\0\x02\x07\x01\x12\x03,\x06\x10\n\x0c\n\x05\x06\0\x02\x07\
\x02\x12\x03,\x11\"\n\x0c\n\x05\x06\0\x02\x07\x03\x12\x03,-=\n\n\n\x02\
\x04\0\x12\x04/\05\x01\n\n\n\x03\x04\0\x01\x12\x03/\x08\x1a\n7\n\x04\x04\
\0\x02\0\x12\x031\x02\x18\x1a*\x20The\x20session\x20that\x20is\x20perfor\
ming\x20this\x20call\n\n\x0c\n\x05\x04\0\x02\0\x05\x12\x031\x02\x08\n\
\x0c\n\x05\x04\0\x02\0\x01\x12\x031\t\x13\n\x0c\n\x05\x04\0\x02\0\x03\
\x12\x031\x16\x17\n&\n\x04\x04\0\x02\x01\x12\x034\x02\x18\x1a\x19\x20New\
ly\x20created\x20audience.\n\n\x0c\n\x05\x04\0\x02\x01\x06\x12\x034\x02\
\n\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x034\x0b\x13\n\x0c\n\x05\x04\0\x02\
\x01\x03\x12\x034\x16\x17\n\x8a\x01\n\x02\x04\x01\x12\x049\0F\x01\x1a~\
\x20Each\x20consumer\x20and\x20producer\x20should\x20send\x20periodic\
\x20heartbeats\x20to\x20the\x20server\n\x20to\x20let\x20the\x20server\
\x20know\x20that\x20they\x20are\x20still\x20active.\n\n\n\n\x03\x04\x01\
\x01\x12\x039\x08\x18\n7\n\x04\x04\x01\x02\0\x12\x03;\x02\x18\x1a*\x20Se\
ssion\x20ID\x20for\x20this\x20instance\x20of\x20the\x20SDK.\n\n\x0c\n\
\x05\x04\x01\x02\0\x05\x12\x03;\x02\x08\n\x0c\n\x05\x04\x01\x02\0\x01\
\x12\x03;\t\x13\n\x0c\n\x05\x04\x01\x02\0\x03\x12\x03;\x16\x17\nb\n\x04\
\x04\x01\x02\x01\x12\x03>\x02\x1a\x1aU\x20Name\x20of\x20the\x20service\
\x20that\x20is\x20sending\x20the\x20heartbeat.\x20Used\x20for\x20refresh\
ing\x20registration\n\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03>\x02\x08\n\
\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03>\t\x15\n\x0c\n\x05\x04\x01\x02\
\x01\x03\x12\x03>\x18\x19\n\x8a\x01\n\x04\x04\x01\x02\x02\x12\x03B\x02\"\
\x1a}\x20Used\x20for\x20refreshing\x20live\x20audience\x20keys\x20in\x20\
the\x20event\x20that\x20backing\x20store\n\x20connection\x20is\x20lost\
\x20and\x20TTLed\x20audience\x20keys\x20are\x20lost\n\n\x0c\n\x05\x04\
\x01\x02\x02\x04\x12\x03B\x02\n\n\x0c\n\x05\x04\x01\x02\x02\x06\x12\x03B\
\x0b\x13\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03B\x14\x1d\n\x0c\n\x05\
\x04\x01\x02\x02\x03\x12\x03B\x20!\n/\n\x04\x04\x01\x02\x03\x12\x03E\x02\
$\x1a\"\x20Used\x20for\x20refreshing\x20registration\n\n\x0c\n\x05\x04\
\x01\x02\x03\x06\x12\x03E\x02\x13\n\x0c\n\x05\x04\x01\x02\x03\x01\x12\
\x03E\x14\x1f\n\x0c\n\x05\x04\x01\x02\x03\x03\x12\x03E\"#\n\n\n\x02\x04\
\x02\x12\x04H\0c\x01\n\n\n\x03\x04\x02\x01\x12\x03H\x08\x15\n\xf8\x01\n\
\x04\x04\x02\x04\0\x12\x04L\x02Q\x03\x1a\xe9\x01\x20This\x20will\x20be\
\x20used\x20to\x20pull\x20the\x20condition\x20type\x20(true,\x20false,\
\x20error)\x20from\x20the\x20pipeline\x20step,\n\x20so\x20that\x20we\x20\
can\x20include\x20metadata,\x20abort\x20condition,\x20etc.,\x20in\x20the\
\x20notification\n\x20The\x20condition\x20will\x20contain\x20the\x20noti\
fication\x20configuration\x20also.\n\n\x0c\n\x05\x04\x02\x04\0\x01\x12\
\x03L\x07\x14\n\r\n\x06\x04\x02\x04\0\x02\0\x12\x03M\x04\x1d\n\x0e\n\x07\
\x04\x02\x04\0\x02\0\x01\x12\x03M\x04\x18\n\x0e\n\x07\x04\x02\x04\0\x02\
\0\x02\x12\x03M\x1b\x1c\n\r\n\x06\x04\x02\x04\0\x02\x01\x12\x03N\x04\x1f\
\n\x0e\n\x07\x04\x02\x04\0\x02\x01\x01\x12\x03N\x04\x1a\n\x0e\n\x07\x04\
\x02\x04\0\x02\x01\x02\x12\x03N\x1d\x1e\n\r\n\x06\x04\x02\x04\0\x02\x02\
\x12\x03O\x04\x20\n\x0e\n\x07\x04\x02\x04\0\x02\x02\x01\x12\x03O\x04\x1b\
\n\x0e\n\x07\x04\x02\x04\0\x02\x02\x02\x12\x03O\x1e\x1f\n\r\n\x06\x04\
\x02\x04\0\x02\x03\x12\x03P\x04\x20\n\x0e\n\x07\x04\x02\x04\0\x02\x03\
\x01\x12\x03P\x04\x1b\n\x0e\n\x07\x04\x02\x04\0\x02\x03\x02\x12\x03P\x1e\
\x1f\n\x0b\n\x04\x04\x02\x02\0\x12\x03S\x02#\n\x0c\n\x05\x04\x02\x02\0\
\x06\x12\x03S\x02\x0f\n\x0c\n\x05\x04\x02\x02\0\x01\x12\x03S\x10\x1e\n\
\x0c\n\x05\x04\x02\x02\0\x03\x12\x03S!\"\nQ\n\x04\x04\x02\x02\x01\x12\
\x03V\x02\x18\x1aD\x20Used\x20for\x20pulling\x20step\x20name\x20and\x20a\
ny\x20other\x20info\x20needed\x20in\x20the\x20future\n\n\x0c\n\x05\x04\
\x02\x02\x01\x06\x12\x03V\x02\x0e\n\x0c\n\x05\x04\x02\x02\x01\x01\x12\
\x03V\x0f\x13\n\x0c\n\x05\x04\x02\x02\x01\x03\x12\x03V\x16\x17\n'\n\x04\
\x04\x02\x02\x02\x12\x03Y\x02\x18\x1a\x1a\x20Included\x20in\x20notificat\
ion\n\n\x0c\n\x05\x04\x02\x02\x02\x06\x12\x03Y\x02\n\n\x0c\n\x05\x04\x02\
\x02\x02\x01\x12\x03Y\x0b\x13\n\x0c\n\x05\x04\x02\x02\x02\x03\x12\x03Y\
\x16\x17\n'\n\x04\x04\x02\x02\x03\x12\x03\\\x02$\x1a\x1a\x20Included\x20\
in\x20notification\n\n\x0c\n\x05\x04\x02\x02\x03\x05\x12\x03\\\x02\x07\n\
\x0c\n\x05\x04\x02\x02\x03\x01\x12\x03\\\x08\x1f\n\x0c\n\x05\x04\x02\x02\
\x03\x03\x12\x03\\\"#\n'\n\x04\x04\x02\x02\x04\x12\x03_\x02\x19\x1a\x1a\
\x20Included\x20in\x20notification\n\n\x0c\n\x05\x04\x02\x02\x04\x05\x12\
\x03_\x02\x08\n\x0c\n\x05\x04\x02\x02\x04\x01\x12\x03_\t\x14\n\x0c\n\x05\
\x04\x02\x02\x04\x03\x12\x03_\x17\x18\n'\n\x04\x04\x02\x02\x05\x12\x03b\
\x02\x14\x1a\x1a\x20Included\x20in\x20notification\n\n\x0c\n\x05\x04\x02\
\x02\x05\x05\x12\x03b\x02\x07\n\x0c\n\x05\x04\x02\x02\x05\x01\x12\x03b\
\x08\x0f\n\x0c\n\x05\x04\x02\x02\x05\x03\x12\x03b\x12\x13\n\n\n\x02\x04\
\x03\x12\x04e\0g\x01\n\n\n\x03\x04\x03\x01\x12\x03e\x08\x16\n\x0b\n\x04\
\x04\x03\x02\0\x12\x03f\x02%\n\x0c\n\x05\x04\x03\x02\0\x04\x12\x03f\x02\
\n\n\x0c\n\x05\x04\x03\x02\0\x06\x12\x03f\x0b\x18\n\x0c\n\x05\x04\x03\
\x02\0\x01\x12\x03f\x19\x20\n\x0c\n\x05\x04\x03\x02\0\x03\x12\x03f#$\n\n\
\n\x02\x04\x04\x12\x04i\0~\x01\n\n\n\x03\x04\x04\x01\x12\x03i\x08\x17\nC\
\n\x04\x04\x04\x02\0\x12\x03k\x02\x1a\x1a6\x20REQUIRED\x20--\x20Name\x20\
of\x20the\x20service\x20that\x20is\x20registering.\n\n\x0c\n\x05\x04\x04\
\x02\0\x05\x12\x03k\x02\x08\n\x0c\n\x05\x04\x04\x02\0\x01\x12\x03k\t\x15\
\n\x0c\n\x05\x04\x04\x02\0\x03\x12\x03k\x18\x19\n\xad\x01\n\x04\x04\x04\
\x02\x01\x12\x03q\x02\x18\x1a\x9f\x01\x20REQUIRED\x20--\x20Unique\x20ID\
\x20for\x20this\x20SDK\x20instance.\n\n\x20This\x20should\x20be\x20gener\
ated\x20every\x20time\x20the\x20SDK\x20is\x20instantiated\x20(oe.\x20eve\
ry\n\x20time\x20a\x20NEW\x20registration\x20is\x20performed).\n\n\x0c\n\
\x05\x04\x04\x02\x01\x05\x12\x03q\x02\x08\n\x0c\n\x05\x04\x04\x02\x01\
\x01\x12\x03q\t\x13\n\x0c\n\x05\x04\x04\x02\x01\x03\x12\x03q\x16\x17\nQ\
\n\x04\x04\x04\x02\x02\x12\x03t\x02$\x1aD\x20REQUIRED\x20--\x20Info\x20a\
bout\x20the\x20client\x20(lib\x20name,\x20lang,\x20os,\x20arch,\x20etc.)\
\n\n\x0c\n\x05\x04\x04\x02\x02\x06\x12\x03t\x02\x13\n\x0c\n\x05\x04\x04\
\x02\x02\x01\x12\x03t\x14\x1f\n\x0c\n\x05\x04\x04\x02\x02\x03\x12\x03t\"\
#\n\x87\x01\n\x04\x04\x04\x02\x03\x12\x03x\x02)\x1az\x20OPTIONAL\x20--\
\x20if\x20these\x20are\x20defined,\x20these\x20will\x20show\x20up\x20in\
\x20the\x20UI\x20even\x20if\n\x20there\x20is\x20no\x20active\x20.Process\
()\x20call\x20from\x20the\x20SDK.\n\n\x0c\n\x05\x04\x04\x02\x03\x04\x12\
\x03x\x02\n\n\x0c\n\x05\x04\x04\x02\x03\x06\x12\x03x\x0b\x1a\n\x0c\n\x05\
\x04\x04\x02\x03\x01\x12\x03x\x1b$\n\x0c\n\x05\x04\x04\x02\x03\x03\x12\
\x03x'(\n\xd9\x01\n\x04\x04\x04\x02\x04\x12\x03}\x02\x13\x1a\xcb\x01\x20\
OPTIONAL\x20--\x20If\x20set,\x20we\x20know\x20that\x20any\x20pipelines\
\x20or\x20steps\x20executed\x20in\x20this\n\x20SDK\x20will\x20NOT\x20mod\
ify\x20the\x20input/output\x20data.\x20As\x20in,\x20the\x20SDK\x20will\
\x20log\x20what\x20it\n\x20_would_\x20do\x20and\x20always\x20return\x20t\
he\x20original\x20data\x20set.\n\n\x0c\n\x05\x04\x04\x02\x04\x05\x12\x03\
}\x02\x06\n\x0c\n\x05\x04\x04\x02\x04\x01\x12\x03}\x07\x0e\n\x0c\n\x05\
\x04\x04\x02\x04\x03\x12\x03}\x11\x12\nV\n\x02\x04\x05\x12\x06\x81\x01\0\
\x84\x01\x01\x1aH\x20Same\x20as\x20RegisterRequest\x20-\x20used\x20for\
\x20broadcasting\x20a\x20deregistration\x20event\n\n\x0b\n\x03\x04\x05\
\x01\x12\x04\x81\x01\x08\x19\n\x0c\n\x04\x04\x05\x02\0\x12\x04\x82\x01\
\x02\x1a\n\r\n\x05\x04\x05\x02\0\x05\x12\x04\x82\x01\x02\x08\n\r\n\x05\
\x04\x05\x02\0\x01\x12\x04\x82\x01\t\x15\n\r\n\x05\x04\x05\x02\0\x03\x12\
\x04\x82\x01\x18\x19\n\x0c\n\x04\x04\x05\x02\x01\x12\x04\x83\x01\x02\x18\
\n\r\n\x05\x04\x05\x02\x01\x05\x12\x04\x83\x01\x02\x08\n\r\n\x05\x04\x05\
\x02\x01\x01\x12\x04\x83\x01\t\x13\n\r\n\x05\x04\x05\x02\x01\x03\x12\x04\
\x83\x01\x16\x17\n\xa6\x03\n\x02\x04\x06\x12\x06\x8c\x01\0\x8e\x01\x01\
\x1a\x97\x03\x20Method\x20used\x20by\x20SDKs\x20to\x20fetch\x20all\x20Se\
tPipelinesCommands\x20for\x20a\x20given\x20service\x20name.\n\x20The\x20\
SDK\x20may\x20not\x20know\x20of\x20all\x20audiences\x20yet\x20so\x20this\
\x20method\x20returns\x20ALL\n\x20SetPipelinesCommands\x20that\x20use\
\x20the\x20same\x20same\x20service\x20name.\x20SDKs\x20should\x20store\n\
\x20the\x20commands\x20(or\x20pipelines)\x20in\x20memory\x20tied\x20to\
\x20an\x20audience,\x20so\x20that\x20if/when\x20a\n\x20.Process()\x20cal\
l\x20occurs\x20with\x20an\x20audience\x20-\x20the\x20SDK\x20will\x20alre\
ady\x20have\x20the\n\x20pipeline\x20config\x20in\x20memory.\n\n\x0b\n\
\x03\x04\x06\x01\x12\x04\x8c\x01\x08/\n\x0c\n\x04\x04\x06\x02\0\x12\x04\
\x8d\x01\x02\x1a\n\r\n\x05\x04\x06\x02\0\x05\x12\x04\x8d\x01\x02\x08\n\r\
\n\x05\x04\x06\x02\0\x01\x12\x04\x8d\x01\t\x15\n\r\n\x05\x04\x06\x02\0\
\x03\x12\x04\x8d\x01\x18\x19\n\x0c\n\x02\x04\x07\x12\x06\x90\x01\0\x96\
\x01\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\x90\x01\x080\n=\n\x04\x04\x07\
\x02\0\x12\x04\x92\x01\x024\x1a/\x20SetPipelinesCommands\x20for\x20all\
\x20active\x20pipelines\n\n\r\n\x05\x04\x07\x02\0\x04\x12\x04\x92\x01\
\x02\n\n\r\n\x05\x04\x07\x02\0\x06\x12\x04\x92\x01\x0b\x19\n\r\n\x05\x04\
\x07\x02\0\x01\x12\x04\x92\x01\x1a/\n\r\n\x05\x04\x07\x02\0\x03\x12\x04\
\x92\x0123\n\x1c\n\x04\x04\x07\x02\x01\x12\x04\x95\x01\x028\x1a\x0e\x20I\
D\x20=\x20wasm\x20ID\n\n\r\n\x05\x04\x07\x02\x01\x06\x12\x04\x95\x01\x02\
&\n\r\n\x05\x04\x07\x02\x01\x01\x12\x04\x95\x01'3\n\r\n\x05\x04\x07\x02\
\x01\x03\x12\x04\x95\x0167\n\x0c\n\x02\x04\x08\x12\x06\x98\x01\0\x9b\x01\
\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\x98\x01\x08\x19\n\x0c\n\x04\x04\x08\
\x02\0\x12\x04\x99\x01\x02\x18\n\r\n\x05\x04\x08\x02\0\x06\x12\x04\x99\
\x01\x02\n\n\r\n\x05\x04\x08\x02\0\x01\x12\x04\x99\x01\x0b\x13\n\r\n\x05\
\x04\x08\x02\0\x03\x12\x04\x99\x01\x16\x17\n\x0c\n\x04\x04\x08\x02\x01\
\x12\x04\x9a\x01\x02\x14\n\r\n\x05\x04\x08\x02\x01\x06\x12\x04\x9a\x01\
\x02\x08\n\r\n\x05\x04\x08\x02\x01\x01\x12\x04\x9a\x01\t\x0f\n\r\n\x05\
\x04\x08\x02\x01\x03\x12\x04\x9a\x01\x12\x13b\x06proto3\
";
fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto {
static file_descriptor_proto_lazy: ::protobuf::rt::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::Lazy::new();
file_descriptor_proto_lazy.get(|| {
::protobuf::Message::parse_from_bytes(file_descriptor_proto_data).unwrap()
})
}
pub fn file_descriptor() -> &'static ::protobuf::reflect::FileDescriptor {
static generated_file_descriptor_lazy: ::protobuf::rt::Lazy<::protobuf::reflect::GeneratedFileDescriptor> = ::protobuf::rt::Lazy::new();
static file_descriptor: ::protobuf::rt::Lazy<::protobuf::reflect::FileDescriptor> = ::protobuf::rt::Lazy::new();
file_descriptor.get(|| {
let generated_file_descriptor = generated_file_descriptor_lazy.get(|| {
let mut deps = ::std::vec::Vec::with_capacity(5);
deps.push(super::sp_shared::file_descriptor().clone());
deps.push(super::sp_command::file_descriptor().clone());
deps.push(super::sp_common::file_descriptor().clone());
deps.push(super::sp_info::file_descriptor().clone());
deps.push(super::sp_pipeline::file_descriptor().clone());
let mut messages = ::std::vec::Vec::with_capacity(9);
messages.push(NewAudienceRequest::generated_message_descriptor_data());
messages.push(HeartbeatRequest::generated_message_descriptor_data());
messages.push(NotifyRequest::generated_message_descriptor_data());
messages.push(MetricsRequest::generated_message_descriptor_data());
messages.push(RegisterRequest::generated_message_descriptor_data());
messages.push(DeregisterRequest::generated_message_descriptor_data());
messages.push(GetSetPipelinesCommandsByServiceRequest::generated_message_descriptor_data());
messages.push(GetSetPipelinesCommandsByServiceResponse::generated_message_descriptor_data());
messages.push(SendSchemaRequest::generated_message_descriptor_data());
let mut enums = ::std::vec::Vec::with_capacity(1);
enums.push(notify_request::ConditionType::generated_enum_descriptor_data());
::protobuf::reflect::GeneratedFileDescriptor::new_generated(
file_descriptor_proto(),
deps,
messages,
enums,
)
});
::protobuf::reflect::FileDescriptor::new_generated_2(generated_file_descriptor)
})
}