#![allow(unknown_lints)]
#![allow(clippy)]
#![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(unsafe_code)]
#![allow(unused_imports)]
#![allow(unused_results)]
use protobuf::Message as Message_imported_for_functions;
use protobuf::ProtobufEnum as ProtobufEnum_imported_for_functions;
#[derive(PartialEq,Clone,Default)]
pub struct LogEntry {
pub log_name: ::std::string::String,
pub resource: ::protobuf::SingularPtrField<super::super::super::api::monitored_resource::MonitoredResource>,
pub timestamp: ::protobuf::SingularPtrField<::protobuf::well_known_types::Timestamp>,
pub receive_timestamp: ::protobuf::SingularPtrField<::protobuf::well_known_types::Timestamp>,
pub severity: super::super::types::log_severity::LogSeverity,
pub insert_id: ::std::string::String,
pub http_request: ::protobuf::SingularPtrField<super::super::types::http_request::HttpRequest>,
pub labels: ::std::collections::HashMap<::std::string::String, ::std::string::String>,
pub operation: ::protobuf::SingularPtrField<LogEntryOperation>,
pub trace: ::std::string::String,
pub span_id: ::std::string::String,
pub source_location: ::protobuf::SingularPtrField<LogEntrySourceLocation>,
pub payload: ::std::option::Option<LogEntry_oneof_payload>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::protobuf::CachedSize,
}
#[derive(Clone,PartialEq)]
pub enum LogEntry_oneof_payload {
proto_payload(::protobuf::well_known_types::Any),
text_payload(::std::string::String),
json_payload(::protobuf::well_known_types::Struct),
}
impl LogEntry {
pub fn new() -> LogEntry {
::std::default::Default::default()
}
pub fn clear_log_name(&mut self) {
self.log_name.clear();
}
pub fn set_log_name(&mut self, v: ::std::string::String) {
self.log_name = v;
}
pub fn mut_log_name(&mut self) -> &mut ::std::string::String {
&mut self.log_name
}
pub fn take_log_name(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.log_name, ::std::string::String::new())
}
pub fn get_log_name(&self) -> &str {
&self.log_name
}
pub fn clear_resource(&mut self) {
self.resource.clear();
}
pub fn has_resource(&self) -> bool {
self.resource.is_some()
}
pub fn set_resource(&mut self, v: super::super::super::api::monitored_resource::MonitoredResource) {
self.resource = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_resource(&mut self) -> &mut super::super::super::api::monitored_resource::MonitoredResource {
if self.resource.is_none() {
self.resource.set_default();
}
self.resource.as_mut().unwrap()
}
pub fn take_resource(&mut self) -> super::super::super::api::monitored_resource::MonitoredResource {
self.resource.take().unwrap_or_else(|| super::super::super::api::monitored_resource::MonitoredResource::new())
}
pub fn get_resource(&self) -> &super::super::super::api::monitored_resource::MonitoredResource {
self.resource.as_ref().unwrap_or_else(|| super::super::super::api::monitored_resource::MonitoredResource::default_instance())
}
pub fn clear_proto_payload(&mut self) {
self.payload = ::std::option::Option::None;
}
pub fn has_proto_payload(&self) -> bool {
match self.payload {
::std::option::Option::Some(LogEntry_oneof_payload::proto_payload(..)) => true,
_ => false,
}
}
pub fn set_proto_payload(&mut self, v: ::protobuf::well_known_types::Any) {
self.payload = ::std::option::Option::Some(LogEntry_oneof_payload::proto_payload(v))
}
pub fn mut_proto_payload(&mut self) -> &mut ::protobuf::well_known_types::Any {
if let ::std::option::Option::Some(LogEntry_oneof_payload::proto_payload(_)) = self.payload {
} else {
self.payload = ::std::option::Option::Some(LogEntry_oneof_payload::proto_payload(::protobuf::well_known_types::Any::new()));
}
match self.payload {
::std::option::Option::Some(LogEntry_oneof_payload::proto_payload(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_proto_payload(&mut self) -> ::protobuf::well_known_types::Any {
if self.has_proto_payload() {
match self.payload.take() {
::std::option::Option::Some(LogEntry_oneof_payload::proto_payload(v)) => v,
_ => panic!(),
}
} else {
::protobuf::well_known_types::Any::new()
}
}
pub fn get_proto_payload(&self) -> &::protobuf::well_known_types::Any {
match self.payload {
::std::option::Option::Some(LogEntry_oneof_payload::proto_payload(ref v)) => v,
_ => ::protobuf::well_known_types::Any::default_instance(),
}
}
pub fn clear_text_payload(&mut self) {
self.payload = ::std::option::Option::None;
}
pub fn has_text_payload(&self) -> bool {
match self.payload {
::std::option::Option::Some(LogEntry_oneof_payload::text_payload(..)) => true,
_ => false,
}
}
pub fn set_text_payload(&mut self, v: ::std::string::String) {
self.payload = ::std::option::Option::Some(LogEntry_oneof_payload::text_payload(v))
}
pub fn mut_text_payload(&mut self) -> &mut ::std::string::String {
if let ::std::option::Option::Some(LogEntry_oneof_payload::text_payload(_)) = self.payload {
} else {
self.payload = ::std::option::Option::Some(LogEntry_oneof_payload::text_payload(::std::string::String::new()));
}
match self.payload {
::std::option::Option::Some(LogEntry_oneof_payload::text_payload(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_text_payload(&mut self) -> ::std::string::String {
if self.has_text_payload() {
match self.payload.take() {
::std::option::Option::Some(LogEntry_oneof_payload::text_payload(v)) => v,
_ => panic!(),
}
} else {
::std::string::String::new()
}
}
pub fn get_text_payload(&self) -> &str {
match self.payload {
::std::option::Option::Some(LogEntry_oneof_payload::text_payload(ref v)) => v,
_ => "",
}
}
pub fn clear_json_payload(&mut self) {
self.payload = ::std::option::Option::None;
}
pub fn has_json_payload(&self) -> bool {
match self.payload {
::std::option::Option::Some(LogEntry_oneof_payload::json_payload(..)) => true,
_ => false,
}
}
pub fn set_json_payload(&mut self, v: ::protobuf::well_known_types::Struct) {
self.payload = ::std::option::Option::Some(LogEntry_oneof_payload::json_payload(v))
}
pub fn mut_json_payload(&mut self) -> &mut ::protobuf::well_known_types::Struct {
if let ::std::option::Option::Some(LogEntry_oneof_payload::json_payload(_)) = self.payload {
} else {
self.payload = ::std::option::Option::Some(LogEntry_oneof_payload::json_payload(::protobuf::well_known_types::Struct::new()));
}
match self.payload {
::std::option::Option::Some(LogEntry_oneof_payload::json_payload(ref mut v)) => v,
_ => panic!(),
}
}
pub fn take_json_payload(&mut self) -> ::protobuf::well_known_types::Struct {
if self.has_json_payload() {
match self.payload.take() {
::std::option::Option::Some(LogEntry_oneof_payload::json_payload(v)) => v,
_ => panic!(),
}
} else {
::protobuf::well_known_types::Struct::new()
}
}
pub fn get_json_payload(&self) -> &::protobuf::well_known_types::Struct {
match self.payload {
::std::option::Option::Some(LogEntry_oneof_payload::json_payload(ref v)) => v,
_ => ::protobuf::well_known_types::Struct::default_instance(),
}
}
pub fn clear_timestamp(&mut self) {
self.timestamp.clear();
}
pub fn has_timestamp(&self) -> bool {
self.timestamp.is_some()
}
pub fn set_timestamp(&mut self, v: ::protobuf::well_known_types::Timestamp) {
self.timestamp = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_timestamp(&mut self) -> &mut ::protobuf::well_known_types::Timestamp {
if self.timestamp.is_none() {
self.timestamp.set_default();
}
self.timestamp.as_mut().unwrap()
}
pub fn take_timestamp(&mut self) -> ::protobuf::well_known_types::Timestamp {
self.timestamp.take().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::new())
}
pub fn get_timestamp(&self) -> &::protobuf::well_known_types::Timestamp {
self.timestamp.as_ref().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::default_instance())
}
pub fn clear_receive_timestamp(&mut self) {
self.receive_timestamp.clear();
}
pub fn has_receive_timestamp(&self) -> bool {
self.receive_timestamp.is_some()
}
pub fn set_receive_timestamp(&mut self, v: ::protobuf::well_known_types::Timestamp) {
self.receive_timestamp = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_receive_timestamp(&mut self) -> &mut ::protobuf::well_known_types::Timestamp {
if self.receive_timestamp.is_none() {
self.receive_timestamp.set_default();
}
self.receive_timestamp.as_mut().unwrap()
}
pub fn take_receive_timestamp(&mut self) -> ::protobuf::well_known_types::Timestamp {
self.receive_timestamp.take().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::new())
}
pub fn get_receive_timestamp(&self) -> &::protobuf::well_known_types::Timestamp {
self.receive_timestamp.as_ref().unwrap_or_else(|| ::protobuf::well_known_types::Timestamp::default_instance())
}
pub fn clear_severity(&mut self) {
self.severity = super::super::types::log_severity::LogSeverity::DEFAULT;
}
pub fn set_severity(&mut self, v: super::super::types::log_severity::LogSeverity) {
self.severity = v;
}
pub fn get_severity(&self) -> super::super::types::log_severity::LogSeverity {
self.severity
}
pub fn clear_insert_id(&mut self) {
self.insert_id.clear();
}
pub fn set_insert_id(&mut self, v: ::std::string::String) {
self.insert_id = v;
}
pub fn mut_insert_id(&mut self) -> &mut ::std::string::String {
&mut self.insert_id
}
pub fn take_insert_id(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.insert_id, ::std::string::String::new())
}
pub fn get_insert_id(&self) -> &str {
&self.insert_id
}
pub fn clear_http_request(&mut self) {
self.http_request.clear();
}
pub fn has_http_request(&self) -> bool {
self.http_request.is_some()
}
pub fn set_http_request(&mut self, v: super::super::types::http_request::HttpRequest) {
self.http_request = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_http_request(&mut self) -> &mut super::super::types::http_request::HttpRequest {
if self.http_request.is_none() {
self.http_request.set_default();
}
self.http_request.as_mut().unwrap()
}
pub fn take_http_request(&mut self) -> super::super::types::http_request::HttpRequest {
self.http_request.take().unwrap_or_else(|| super::super::types::http_request::HttpRequest::new())
}
pub fn get_http_request(&self) -> &super::super::types::http_request::HttpRequest {
self.http_request.as_ref().unwrap_or_else(|| super::super::types::http_request::HttpRequest::default_instance())
}
pub fn clear_labels(&mut self) {
self.labels.clear();
}
pub fn set_labels(&mut self, v: ::std::collections::HashMap<::std::string::String, ::std::string::String>) {
self.labels = v;
}
pub fn mut_labels(&mut self) -> &mut ::std::collections::HashMap<::std::string::String, ::std::string::String> {
&mut self.labels
}
pub fn take_labels(&mut self) -> ::std::collections::HashMap<::std::string::String, ::std::string::String> {
::std::mem::replace(&mut self.labels, ::std::collections::HashMap::new())
}
pub fn get_labels(&self) -> &::std::collections::HashMap<::std::string::String, ::std::string::String> {
&self.labels
}
pub fn clear_operation(&mut self) {
self.operation.clear();
}
pub fn has_operation(&self) -> bool {
self.operation.is_some()
}
pub fn set_operation(&mut self, v: LogEntryOperation) {
self.operation = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_operation(&mut self) -> &mut LogEntryOperation {
if self.operation.is_none() {
self.operation.set_default();
}
self.operation.as_mut().unwrap()
}
pub fn take_operation(&mut self) -> LogEntryOperation {
self.operation.take().unwrap_or_else(|| LogEntryOperation::new())
}
pub fn get_operation(&self) -> &LogEntryOperation {
self.operation.as_ref().unwrap_or_else(|| LogEntryOperation::default_instance())
}
pub fn clear_trace(&mut self) {
self.trace.clear();
}
pub fn set_trace(&mut self, v: ::std::string::String) {
self.trace = v;
}
pub fn mut_trace(&mut self) -> &mut ::std::string::String {
&mut self.trace
}
pub fn take_trace(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.trace, ::std::string::String::new())
}
pub fn get_trace(&self) -> &str {
&self.trace
}
pub fn clear_span_id(&mut self) {
self.span_id.clear();
}
pub fn set_span_id(&mut self, v: ::std::string::String) {
self.span_id = v;
}
pub fn mut_span_id(&mut self) -> &mut ::std::string::String {
&mut self.span_id
}
pub fn take_span_id(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.span_id, ::std::string::String::new())
}
pub fn get_span_id(&self) -> &str {
&self.span_id
}
pub fn clear_source_location(&mut self) {
self.source_location.clear();
}
pub fn has_source_location(&self) -> bool {
self.source_location.is_some()
}
pub fn set_source_location(&mut self, v: LogEntrySourceLocation) {
self.source_location = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_source_location(&mut self) -> &mut LogEntrySourceLocation {
if self.source_location.is_none() {
self.source_location.set_default();
}
self.source_location.as_mut().unwrap()
}
pub fn take_source_location(&mut self) -> LogEntrySourceLocation {
self.source_location.take().unwrap_or_else(|| LogEntrySourceLocation::new())
}
pub fn get_source_location(&self) -> &LogEntrySourceLocation {
self.source_location.as_ref().unwrap_or_else(|| LogEntrySourceLocation::default_instance())
}
}
impl ::protobuf::Message for LogEntry {
fn is_initialized(&self) -> bool {
for v in &self.resource {
if !v.is_initialized() {
return false;
}
};
if let Some(LogEntry_oneof_payload::proto_payload(ref v)) = self.payload {
if !v.is_initialized() {
return false;
}
}
if let Some(LogEntry_oneof_payload::json_payload(ref v)) = self.payload {
if !v.is_initialized() {
return false;
}
}
for v in &self.timestamp {
if !v.is_initialized() {
return false;
}
};
for v in &self.receive_timestamp {
if !v.is_initialized() {
return false;
}
};
for v in &self.http_request {
if !v.is_initialized() {
return false;
}
};
for v in &self.operation {
if !v.is_initialized() {
return false;
}
};
for v in &self.source_location {
if !v.is_initialized() {
return false;
}
};
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !is.eof()? {
let (field_number, wire_type) = is.read_tag_unpack()?;
match field_number {
12 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.log_name)?;
},
8 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.resource)?;
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
}
self.payload = ::std::option::Option::Some(LogEntry_oneof_payload::proto_payload(is.read_message()?));
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
}
self.payload = ::std::option::Option::Some(LogEntry_oneof_payload::text_payload(is.read_string()?));
},
6 => {
if wire_type != ::protobuf::wire_format::WireTypeLengthDelimited {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
}
self.payload = ::std::option::Option::Some(LogEntry_oneof_payload::json_payload(is.read_message()?));
},
9 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.timestamp)?;
},
24 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.receive_timestamp)?;
},
10 => {
::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.severity, 10, &mut self.unknown_fields)?
},
4 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.insert_id)?;
},
7 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.http_request)?;
},
11 => {
::protobuf::rt::read_map_into::<::protobuf::types::ProtobufTypeString, ::protobuf::types::ProtobufTypeString>(wire_type, is, &mut self.labels)?;
},
15 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.operation)?;
},
22 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.trace)?;
},
27 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.span_id)?;
},
23 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.source_location)?;
},
_ => {
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
if !self.log_name.is_empty() {
my_size += ::protobuf::rt::string_size(12, &self.log_name);
}
if let Some(ref v) = self.resource.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.timestamp.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.receive_timestamp.as_ref() {
let len = v.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if self.severity != super::super::types::log_severity::LogSeverity::DEFAULT {
my_size += ::protobuf::rt::enum_size(10, self.severity);
}
if !self.insert_id.is_empty() {
my_size += ::protobuf::rt::string_size(4, &self.insert_id);
}
if let Some(ref v) = self.http_request.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
my_size += ::protobuf::rt::compute_map_size::<::protobuf::types::ProtobufTypeString, ::protobuf::types::ProtobufTypeString>(11, &self.labels);
if let Some(ref v) = self.operation.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if !self.trace.is_empty() {
my_size += ::protobuf::rt::string_size(22, &self.trace);
}
if !self.span_id.is_empty() {
my_size += ::protobuf::rt::string_size(27, &self.span_id);
}
if let Some(ref v) = self.source_location.as_ref() {
let len = v.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let ::std::option::Option::Some(ref v) = self.payload {
match v {
&LogEntry_oneof_payload::proto_payload(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
&LogEntry_oneof_payload::text_payload(ref v) => {
my_size += ::protobuf::rt::string_size(3, &v);
},
&LogEntry_oneof_payload::json_payload(ref v) => {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
},
};
}
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if !self.log_name.is_empty() {
os.write_string(12, &self.log_name)?;
}
if let Some(ref v) = self.resource.as_ref() {
os.write_tag(8, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
}
if let Some(ref v) = self.timestamp.as_ref() {
os.write_tag(9, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
}
if let Some(ref v) = self.receive_timestamp.as_ref() {
os.write_tag(24, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
}
if self.severity != super::super::types::log_severity::LogSeverity::DEFAULT {
os.write_enum(10, self.severity.value())?;
}
if !self.insert_id.is_empty() {
os.write_string(4, &self.insert_id)?;
}
if let Some(ref v) = self.http_request.as_ref() {
os.write_tag(7, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
}
::protobuf::rt::write_map_with_cached_sizes::<::protobuf::types::ProtobufTypeString, ::protobuf::types::ProtobufTypeString>(11, &self.labels, os)?;
if let Some(ref v) = self.operation.as_ref() {
os.write_tag(15, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
}
if !self.trace.is_empty() {
os.write_string(22, &self.trace)?;
}
if !self.span_id.is_empty() {
os.write_string(27, &self.span_id)?;
}
if let Some(ref v) = self.source_location.as_ref() {
os.write_tag(23, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
}
if let ::std::option::Option::Some(ref v) = self.payload {
match v {
&LogEntry_oneof_payload::proto_payload(ref v) => {
os.write_tag(2, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
},
&LogEntry_oneof_payload::text_payload(ref v) => {
os.write_string(3, v)?;
},
&LogEntry_oneof_payload::json_payload(ref v) => {
os.write_tag(6, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
},
};
}
os.write_unknown_fields(self.get_unknown_fields())?;
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn as_any_mut(&mut self) -> &mut ::std::any::Any {
self as &mut ::std::any::Any
}
fn into_any(self: Box<Self>) -> ::std::boxed::Box<::std::any::Any> {
self
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
Self::descriptor_static()
}
fn new() -> LogEntry {
LogEntry::new()
}
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"log_name",
|m: &LogEntry| { &m.log_name },
|m: &mut LogEntry| { &mut m.log_name },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::super::super::api::monitored_resource::MonitoredResource>>(
"resource",
|m: &LogEntry| { &m.resource },
|m: &mut LogEntry| { &mut m.resource },
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor::<_, ::protobuf::well_known_types::Any>(
"proto_payload",
LogEntry::has_proto_payload,
LogEntry::get_proto_payload,
));
fields.push(::protobuf::reflect::accessor::make_singular_string_accessor::<_>(
"text_payload",
LogEntry::has_text_payload,
LogEntry::get_text_payload,
));
fields.push(::protobuf::reflect::accessor::make_singular_message_accessor::<_, ::protobuf::well_known_types::Struct>(
"json_payload",
LogEntry::has_json_payload,
LogEntry::get_json_payload,
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Timestamp>>(
"timestamp",
|m: &LogEntry| { &m.timestamp },
|m: &mut LogEntry| { &mut m.timestamp },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Timestamp>>(
"receive_timestamp",
|m: &LogEntry| { &m.receive_timestamp },
|m: &mut LogEntry| { &mut m.receive_timestamp },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum<super::super::types::log_severity::LogSeverity>>(
"severity",
|m: &LogEntry| { &m.severity },
|m: &mut LogEntry| { &mut m.severity },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"insert_id",
|m: &LogEntry| { &m.insert_id },
|m: &mut LogEntry| { &mut m.insert_id },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::super::types::http_request::HttpRequest>>(
"http_request",
|m: &LogEntry| { &m.http_request },
|m: &mut LogEntry| { &mut m.http_request },
));
fields.push(::protobuf::reflect::accessor::make_map_accessor::<_, ::protobuf::types::ProtobufTypeString, ::protobuf::types::ProtobufTypeString>(
"labels",
|m: &LogEntry| { &m.labels },
|m: &mut LogEntry| { &mut m.labels },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<LogEntryOperation>>(
"operation",
|m: &LogEntry| { &m.operation },
|m: &mut LogEntry| { &mut m.operation },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"trace",
|m: &LogEntry| { &m.trace },
|m: &mut LogEntry| { &mut m.trace },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"span_id",
|m: &LogEntry| { &m.span_id },
|m: &mut LogEntry| { &mut m.span_id },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<LogEntrySourceLocation>>(
"source_location",
|m: &LogEntry| { &m.source_location },
|m: &mut LogEntry| { &mut m.source_location },
));
::protobuf::reflect::MessageDescriptor::new::<LogEntry>(
"LogEntry",
fields,
file_descriptor_proto()
)
})
}
}
fn default_instance() -> &'static LogEntry {
static mut instance: ::protobuf::lazy::Lazy<LogEntry> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const LogEntry,
};
unsafe {
instance.get(LogEntry::new)
}
}
}
impl ::protobuf::Clear for LogEntry {
fn clear(&mut self) {
self.clear_log_name();
self.clear_resource();
self.clear_proto_payload();
self.clear_text_payload();
self.clear_json_payload();
self.clear_timestamp();
self.clear_receive_timestamp();
self.clear_severity();
self.clear_insert_id();
self.clear_http_request();
self.clear_labels();
self.clear_operation();
self.clear_trace();
self.clear_span_id();
self.clear_source_location();
self.unknown_fields.clear();
}
}
impl ::std::fmt::Debug for LogEntry {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for LogEntry {
fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef {
::protobuf::reflect::ProtobufValueRef::Message(self)
}
}
#[derive(PartialEq,Clone,Default)]
pub struct LogEntryOperation {
pub id: ::std::string::String,
pub producer: ::std::string::String,
pub first: bool,
pub last: bool,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::protobuf::CachedSize,
}
impl LogEntryOperation {
pub fn new() -> LogEntryOperation {
::std::default::Default::default()
}
pub fn clear_id(&mut self) {
self.id.clear();
}
pub fn set_id(&mut self, v: ::std::string::String) {
self.id = v;
}
pub fn mut_id(&mut self) -> &mut ::std::string::String {
&mut self.id
}
pub fn take_id(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.id, ::std::string::String::new())
}
pub fn get_id(&self) -> &str {
&self.id
}
pub fn clear_producer(&mut self) {
self.producer.clear();
}
pub fn set_producer(&mut self, v: ::std::string::String) {
self.producer = v;
}
pub fn mut_producer(&mut self) -> &mut ::std::string::String {
&mut self.producer
}
pub fn take_producer(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.producer, ::std::string::String::new())
}
pub fn get_producer(&self) -> &str {
&self.producer
}
pub fn clear_first(&mut self) {
self.first = false;
}
pub fn set_first(&mut self, v: bool) {
self.first = v;
}
pub fn get_first(&self) -> bool {
self.first
}
pub fn clear_last(&mut self) {
self.last = false;
}
pub fn set_last(&mut self, v: bool) {
self.last = v;
}
pub fn get_last(&self) -> bool {
self.last
}
}
impl ::protobuf::Message for LogEntryOperation {
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !is.eof()? {
let (field_number, wire_type) = is.read_tag_unpack()?;
match field_number {
1 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.id)?;
},
2 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.producer)?;
},
3 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
}
let tmp = is.read_bool()?;
self.first = tmp;
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
}
let tmp = is.read_bool()?;
self.last = tmp;
},
_ => {
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
if !self.id.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.id);
}
if !self.producer.is_empty() {
my_size += ::protobuf::rt::string_size(2, &self.producer);
}
if self.first != false {
my_size += 2;
}
if self.last != false {
my_size += 2;
}
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if !self.id.is_empty() {
os.write_string(1, &self.id)?;
}
if !self.producer.is_empty() {
os.write_string(2, &self.producer)?;
}
if self.first != false {
os.write_bool(3, self.first)?;
}
if self.last != false {
os.write_bool(4, self.last)?;
}
os.write_unknown_fields(self.get_unknown_fields())?;
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn as_any_mut(&mut self) -> &mut ::std::any::Any {
self as &mut ::std::any::Any
}
fn into_any(self: Box<Self>) -> ::std::boxed::Box<::std::any::Any> {
self
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
Self::descriptor_static()
}
fn new() -> LogEntryOperation {
LogEntryOperation::new()
}
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"id",
|m: &LogEntryOperation| { &m.id },
|m: &mut LogEntryOperation| { &mut m.id },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"producer",
|m: &LogEntryOperation| { &m.producer },
|m: &mut LogEntryOperation| { &mut m.producer },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBool>(
"first",
|m: &LogEntryOperation| { &m.first },
|m: &mut LogEntryOperation| { &mut m.first },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBool>(
"last",
|m: &LogEntryOperation| { &m.last },
|m: &mut LogEntryOperation| { &mut m.last },
));
::protobuf::reflect::MessageDescriptor::new::<LogEntryOperation>(
"LogEntryOperation",
fields,
file_descriptor_proto()
)
})
}
}
fn default_instance() -> &'static LogEntryOperation {
static mut instance: ::protobuf::lazy::Lazy<LogEntryOperation> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const LogEntryOperation,
};
unsafe {
instance.get(LogEntryOperation::new)
}
}
}
impl ::protobuf::Clear for LogEntryOperation {
fn clear(&mut self) {
self.clear_id();
self.clear_producer();
self.clear_first();
self.clear_last();
self.unknown_fields.clear();
}
}
impl ::std::fmt::Debug for LogEntryOperation {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for LogEntryOperation {
fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef {
::protobuf::reflect::ProtobufValueRef::Message(self)
}
}
#[derive(PartialEq,Clone,Default)]
pub struct LogEntrySourceLocation {
pub file: ::std::string::String,
pub line: i64,
pub function: ::std::string::String,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::protobuf::CachedSize,
}
impl LogEntrySourceLocation {
pub fn new() -> LogEntrySourceLocation {
::std::default::Default::default()
}
pub fn clear_file(&mut self) {
self.file.clear();
}
pub fn set_file(&mut self, v: ::std::string::String) {
self.file = v;
}
pub fn mut_file(&mut self) -> &mut ::std::string::String {
&mut self.file
}
pub fn take_file(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.file, ::std::string::String::new())
}
pub fn get_file(&self) -> &str {
&self.file
}
pub fn clear_line(&mut self) {
self.line = 0;
}
pub fn set_line(&mut self, v: i64) {
self.line = v;
}
pub fn get_line(&self) -> i64 {
self.line
}
pub fn clear_function(&mut self) {
self.function.clear();
}
pub fn set_function(&mut self, v: ::std::string::String) {
self.function = v;
}
pub fn mut_function(&mut self) -> &mut ::std::string::String {
&mut self.function
}
pub fn take_function(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.function, ::std::string::String::new())
}
pub fn get_function(&self) -> &str {
&self.function
}
}
impl ::protobuf::Message for LogEntrySourceLocation {
fn is_initialized(&self) -> bool {
true
}
fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> {
while !is.eof()? {
let (field_number, wire_type) = is.read_tag_unpack()?;
match field_number {
1 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.file)?;
},
2 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
}
let tmp = is.read_int64()?;
self.line = tmp;
},
3 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.function)?;
},
_ => {
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
},
};
}
::std::result::Result::Ok(())
}
#[allow(unused_variables)]
fn compute_size(&self) -> u32 {
let mut my_size = 0;
if !self.file.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.file);
}
if self.line != 0 {
my_size += ::protobuf::rt::value_size(2, self.line, ::protobuf::wire_format::WireTypeVarint);
}
if !self.function.is_empty() {
my_size += ::protobuf::rt::string_size(3, &self.function);
}
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
self.cached_size.set(my_size);
my_size
}
fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> {
if !self.file.is_empty() {
os.write_string(1, &self.file)?;
}
if self.line != 0 {
os.write_int64(2, self.line)?;
}
if !self.function.is_empty() {
os.write_string(3, &self.function)?;
}
os.write_unknown_fields(self.get_unknown_fields())?;
::std::result::Result::Ok(())
}
fn get_cached_size(&self) -> u32 {
self.cached_size.get()
}
fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
&self.unknown_fields
}
fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
&mut self.unknown_fields
}
fn as_any(&self) -> &::std::any::Any {
self as &::std::any::Any
}
fn as_any_mut(&mut self) -> &mut ::std::any::Any {
self as &mut ::std::any::Any
}
fn into_any(self: Box<Self>) -> ::std::boxed::Box<::std::any::Any> {
self
}
fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
Self::descriptor_static()
}
fn new() -> LogEntrySourceLocation {
LogEntrySourceLocation::new()
}
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::MessageDescriptor,
};
unsafe {
descriptor.get(|| {
let mut fields = ::std::vec::Vec::new();
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"file",
|m: &LogEntrySourceLocation| { &m.file },
|m: &mut LogEntrySourceLocation| { &mut m.file },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt64>(
"line",
|m: &LogEntrySourceLocation| { &m.line },
|m: &mut LogEntrySourceLocation| { &mut m.line },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"function",
|m: &LogEntrySourceLocation| { &m.function },
|m: &mut LogEntrySourceLocation| { &mut m.function },
));
::protobuf::reflect::MessageDescriptor::new::<LogEntrySourceLocation>(
"LogEntrySourceLocation",
fields,
file_descriptor_proto()
)
})
}
}
fn default_instance() -> &'static LogEntrySourceLocation {
static mut instance: ::protobuf::lazy::Lazy<LogEntrySourceLocation> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const LogEntrySourceLocation,
};
unsafe {
instance.get(LogEntrySourceLocation::new)
}
}
}
impl ::protobuf::Clear for LogEntrySourceLocation {
fn clear(&mut self) {
self.clear_file();
self.clear_line();
self.clear_function();
self.unknown_fields.clear();
}
}
impl ::std::fmt::Debug for LogEntrySourceLocation {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for LogEntrySourceLocation {
fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef {
::protobuf::reflect::ProtobufValueRef::Message(self)
}
}
static file_descriptor_proto_data: &'static [u8] = b"\
\n!google/logging/v2/log_entry.proto\x12\x11google.logging.v2\x1a\x1cgoo\
gle/api/annotations.proto\x1a#google/api/monitored_resource.proto\x1a&go\
ogle/logging/type/http_request.proto\x1a&google/logging/type/log_severit\
y.proto\x1a\x19google/protobuf/any.proto\x1a\x1cgoogle/protobuf/struct.p\
roto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xf1\x06\n\x08LogEntry\x12\
\x19\n\x08log_name\x18\x0c\x20\x01(\tR\x07logName\x129\n\x08resource\x18\
\x08\x20\x01(\x0b2\x1d.google.api.MonitoredResourceR\x08resource\x12;\n\
\rproto_payload\x18\x02\x20\x01(\x0b2\x14.google.protobuf.AnyH\0R\x0cpro\
toPayload\x12#\n\x0ctext_payload\x18\x03\x20\x01(\tH\0R\x0btextPayload\
\x12<\n\x0cjson_payload\x18\x06\x20\x01(\x0b2\x17.google.protobuf.Struct\
H\0R\x0bjsonPayload\x128\n\ttimestamp\x18\t\x20\x01(\x0b2\x1a.google.pro\
tobuf.TimestampR\ttimestamp\x12G\n\x11receive_timestamp\x18\x18\x20\x01(\
\x0b2\x1a.google.protobuf.TimestampR\x10receiveTimestamp\x12<\n\x08sever\
ity\x18\n\x20\x01(\x0e2\x20.google.logging.type.LogSeverityR\x08severity\
\x12\x1b\n\tinsert_id\x18\x04\x20\x01(\tR\x08insertId\x12C\n\x0chttp_req\
uest\x18\x07\x20\x01(\x0b2\x20.google.logging.type.HttpRequestR\x0bhttpR\
equest\x12?\n\x06labels\x18\x0b\x20\x03(\x0b2'.google.logging.v2.LogEntr\
y.LabelsEntryR\x06labels\x12B\n\toperation\x18\x0f\x20\x01(\x0b2$.google\
.logging.v2.LogEntryOperationR\toperation\x12\x14\n\x05trace\x18\x16\x20\
\x01(\tR\x05trace\x12\x17\n\x07span_id\x18\x1b\x20\x01(\tR\x06spanId\x12\
R\n\x0fsource_location\x18\x17\x20\x01(\x0b2).google.logging.v2.LogEntry\
SourceLocationR\x0esourceLocation\x1a9\n\x0bLabelsEntry\x12\x10\n\x03key\
\x18\x01\x20\x01(\tR\x03key\x12\x14\n\x05value\x18\x02\x20\x01(\tR\x05va\
lue:\x028\x01B\t\n\x07payload\"i\n\x11LogEntryOperation\x12\x0e\n\x02id\
\x18\x01\x20\x01(\tR\x02id\x12\x1a\n\x08producer\x18\x02\x20\x01(\tR\x08\
producer\x12\x14\n\x05first\x18\x03\x20\x01(\x08R\x05first\x12\x12\n\x04\
last\x18\x04\x20\x01(\x08R\x04last\"\\\n\x16LogEntrySourceLocation\x12\
\x12\n\x04file\x18\x01\x20\x01(\tR\x04file\x12\x12\n\x04line\x18\x02\x20\
\x01(\x03R\x04line\x12\x1a\n\x08function\x18\x03\x20\x01(\tR\x08function\
B\x99\x01\n\x15com.google.logging.v2B\rLogEntryProtoP\x01Z8google.golang\
.org/genproto/googleapis/logging/v2;logging\xf8\x01\x01\xaa\x02\x17Googl\
e.Cloud.Logging.V2\xca\x02\x17Google\\Cloud\\Logging\\V2J\xb1>\n\x07\x12\
\x05\x0e\0\xaf\x01\x01\n\xbd\x04\n\x01\x0c\x12\x03\x0e\0\x122\xb2\x04\
\x20Copyright\x202017\x20Google\x20Inc.\n\n\x20Licensed\x20under\x20the\
\x20Apache\x20License,\x20Version\x202.0\x20(the\x20\"License\");\n\x20y\
ou\x20may\x20not\x20use\x20this\x20file\x20except\x20in\x20compliance\
\x20with\x20the\x20License.\n\x20You\x20may\x20obtain\x20a\x20copy\x20of\
\x20the\x20License\x20at\n\n\x20\x20\x20\x20\x20http://www.apache.org/li\
censes/LICENSE-2.0\n\n\x20Unless\x20required\x20by\x20applicable\x20law\
\x20or\x20agreed\x20to\x20in\x20writing,\x20software\n\x20distributed\
\x20under\x20the\x20License\x20is\x20distributed\x20on\x20an\x20\"AS\x20\
IS\"\x20BASIS,\n\x20WITHOUT\x20WARRANTIES\x20OR\x20CONDITIONS\x20OF\x20A\
NY\x20KIND,\x20either\x20express\x20or\x20implied.\n\x20See\x20the\x20Li\
cense\x20for\x20the\x20specific\x20language\x20governing\x20permissions\
\x20and\n\x20limitations\x20under\x20the\x20License.\n\n\x08\n\x01\x02\
\x12\x03\x10\x08\x19\n\t\n\x02\x03\0\x12\x03\x12\x07%\n\t\n\x02\x03\x01\
\x12\x03\x13\x07,\n\t\n\x02\x03\x02\x12\x03\x14\x07/\n\t\n\x02\x03\x03\
\x12\x03\x15\x07/\n\t\n\x02\x03\x04\x12\x03\x16\x07\"\n\t\n\x02\x03\x05\
\x12\x03\x17\x07%\n\t\n\x02\x03\x06\x12\x03\x18\x07(\n\x08\n\x01\x08\x12\
\x03\x1a\0\x1f\n\x0b\n\x04\x08\xe7\x07\0\x12\x03\x1a\0\x1f\n\x0c\n\x05\
\x08\xe7\x07\0\x02\x12\x03\x1a\x07\x17\n\r\n\x06\x08\xe7\x07\0\x02\0\x12\
\x03\x1a\x07\x17\n\x0e\n\x07\x08\xe7\x07\0\x02\0\x01\x12\x03\x1a\x07\x17\
\n\x0c\n\x05\x08\xe7\x07\0\x03\x12\x03\x1a\x1a\x1e\n\x08\n\x01\x08\x12\
\x03\x1b\04\n\x0b\n\x04\x08\xe7\x07\x01\x12\x03\x1b\04\n\x0c\n\x05\x08\
\xe7\x07\x01\x02\x12\x03\x1b\x07\x17\n\r\n\x06\x08\xe7\x07\x01\x02\0\x12\
\x03\x1b\x07\x17\n\x0e\n\x07\x08\xe7\x07\x01\x02\0\x01\x12\x03\x1b\x07\
\x17\n\x0c\n\x05\x08\xe7\x07\x01\x07\x12\x03\x1b\x1a3\n\x08\n\x01\x08\
\x12\x03\x1c\0O\n\x0b\n\x04\x08\xe7\x07\x02\x12\x03\x1c\0O\n\x0c\n\x05\
\x08\xe7\x07\x02\x02\x12\x03\x1c\x07\x11\n\r\n\x06\x08\xe7\x07\x02\x02\0\
\x12\x03\x1c\x07\x11\n\x0e\n\x07\x08\xe7\x07\x02\x02\0\x01\x12\x03\x1c\
\x07\x11\n\x0c\n\x05\x08\xe7\x07\x02\x07\x12\x03\x1c\x14N\n\x08\n\x01\
\x08\x12\x03\x1d\0\"\n\x0b\n\x04\x08\xe7\x07\x03\x12\x03\x1d\0\"\n\x0c\n\
\x05\x08\xe7\x07\x03\x02\x12\x03\x1d\x07\x1a\n\r\n\x06\x08\xe7\x07\x03\
\x02\0\x12\x03\x1d\x07\x1a\n\x0e\n\x07\x08\xe7\x07\x03\x02\0\x01\x12\x03\
\x1d\x07\x1a\n\x0c\n\x05\x08\xe7\x07\x03\x03\x12\x03\x1d\x1d!\n\x08\n\
\x01\x08\x12\x03\x1e\0.\n\x0b\n\x04\x08\xe7\x07\x04\x12\x03\x1e\0.\n\x0c\
\n\x05\x08\xe7\x07\x04\x02\x12\x03\x1e\x07\x1b\n\r\n\x06\x08\xe7\x07\x04\
\x02\0\x12\x03\x1e\x07\x1b\n\x0e\n\x07\x08\xe7\x07\x04\x02\0\x01\x12\x03\
\x1e\x07\x1b\n\x0c\n\x05\x08\xe7\x07\x04\x07\x12\x03\x1e\x1e-\n\x08\n\
\x01\x08\x12\x03\x1f\0.\n\x0b\n\x04\x08\xe7\x07\x05\x12\x03\x1f\0.\n\x0c\
\n\x05\x08\xe7\x07\x05\x02\x12\x03\x1f\x07\x13\n\r\n\x06\x08\xe7\x07\x05\
\x02\0\x12\x03\x1f\x07\x13\n\x0e\n\x07\x08\xe7\x07\x05\x02\0\x01\x12\x03\
\x1f\x07\x13\n\x0c\n\x05\x08\xe7\x07\x05\x07\x12\x03\x1f\x16-\n\x08\n\
\x01\x08\x12\x03\x20\04\n\x0b\n\x04\x08\xe7\x07\x06\x12\x03\x20\04\n\x0c\
\n\x05\x08\xe7\x07\x06\x02\x12\x03\x20\x07\x14\n\r\n\x06\x08\xe7\x07\x06\
\x02\0\x12\x03\x20\x07\x14\n\x0e\n\x07\x08\xe7\x07\x06\x02\0\x01\x12\x03\
\x20\x07\x14\n\x0c\n\x05\x08\xe7\x07\x06\x07\x12\x03\x20\x173\n,\n\x02\
\x04\0\x12\x05$\0\x88\x01\x01\x1a\x1f\x20An\x20individual\x20entry\x20in\
\x20a\x20log.\n\n\n\n\x03\x04\0\x01\x12\x03$\x08\x10\n\xfe\x08\n\x04\x04\
\0\x02\0\x12\x03;\x02\x17\x1a\xf0\x08\x20Required.\x20The\x20resource\
\x20name\x20of\x20the\x20log\x20to\x20which\x20this\x20log\x20entry\x20b\
elongs:\n\n\x20\x20\x20\x20\x20\"projects/[PROJECT_ID]/logs/[LOG_ID]\"\n\
\x20\x20\x20\x20\x20\"organizations/[ORGANIZATION_ID]/logs/[LOG_ID]\"\n\
\x20\x20\x20\x20\x20\"billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]\
\"\n\x20\x20\x20\x20\x20\"folders/[FOLDER_ID]/logs/[LOG_ID]\"\n\n\x20\
\x20A\x20project\x20number\x20may\x20optionally\x20be\x20used\x20in\x20p\
lace\x20of\x20PROJECT_ID.\x20The\n\x20\x20project\x20number\x20is\x20tra\
nslated\x20to\x20its\x20corresponding\x20PROJECT_ID\x20internally\n\x20\
\x20and\x20the\x20`log_name`\x20field\x20will\x20contain\x20PROJECT_ID\
\x20in\x20queries\x20and\x20exports.\n\n\x20`[LOG_ID]`\x20must\x20be\x20\
URL-encoded\x20within\x20`log_name`.\x20Example:\n\x20`\"organizations/1\
234567890/logs/cloudresourcemanager.googleapis.com%2Factivity\"`.\n\x20`\
[LOG_ID]`\x20must\x20be\x20less\x20than\x20512\x20characters\x20long\x20\
and\x20can\x20only\x20include\x20the\n\x20following\x20characters:\x20up\
per\x20and\x20lower\x20case\x20alphanumeric\x20characters,\n\x20forward-\
slash,\x20underscore,\x20hyphen,\x20and\x20period.\n\n\x20For\x20backwar\
d\x20compatibility,\x20if\x20`log_name`\x20begins\x20with\x20a\x20forwar\
d-slash,\x20such\n\x20as\x20`/projects/...`,\x20then\x20the\x20log\x20en\
try\x20is\x20ingested\x20as\x20usual\x20but\x20the\n\x20forward-slash\
\x20is\x20removed.\x20Listing\x20the\x20log\x20entry\x20will\x20not\x20s\
how\x20the\x20leading\n\x20slash\x20and\x20filtering\x20for\x20a\x20log\
\x20name\x20with\x20a\x20leading\x20slash\x20will\x20never\x20return\n\
\x20any\x20results.\n\n\r\n\x05\x04\0\x02\0\x04\x12\x04;\x02$\x12\n\x0c\
\n\x05\x04\0\x02\0\x05\x12\x03;\x02\x08\n\x0c\n\x05\x04\0\x02\0\x01\x12\
\x03;\t\x11\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03;\x14\x16\n\xf3\x01\n\x04\
\x04\0\x02\x01\x12\x03A\x02,\x1a\xe5\x01\x20Required.\x20The\x20monitore\
d\x20resource\x20associated\x20with\x20this\x20log\x20entry.\n\x20Exampl\
e:\x20a\x20log\x20entry\x20that\x20reports\x20a\x20database\x20error\x20\
would\x20be\n\x20associated\x20with\x20the\x20monitored\x20resource\x20d\
esignating\x20the\x20particular\n\x20database\x20that\x20reported\x20the\
\x20error.\n\n\r\n\x05\x04\0\x02\x01\x04\x12\x04A\x02;\x17\n\x0c\n\x05\
\x04\0\x02\x01\x06\x12\x03A\x02\x1e\n\x0c\n\x05\x04\0\x02\x01\x01\x12\
\x03A\x1f'\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03A*+\nT\n\x04\x04\0\x08\0\
\x12\x04D\x02P\x03\x1aF\x20Optional.\x20The\x20log\x20entry\x20payload,\
\x20which\x20can\x20be\x20one\x20of\x20multiple\x20types.\n\n\x0c\n\x05\
\x04\0\x08\0\x01\x12\x03D\x08\x0f\n\x9c\x01\n\x04\x04\0\x02\x02\x12\x03H\
\x04*\x1a\x8e\x01\x20The\x20log\x20entry\x20payload,\x20represented\x20a\
s\x20a\x20protocol\x20buffer.\x20\x20Some\n\x20Google\x20Cloud\x20Platfo\
rm\x20services\x20use\x20this\x20field\x20for\x20their\x20log\n\x20entry\
\x20payloads.\n\n\x0c\n\x05\x04\0\x02\x02\x06\x12\x03H\x04\x17\n\x0c\n\
\x05\x04\0\x02\x02\x01\x12\x03H\x18%\n\x0c\n\x05\x04\0\x02\x02\x03\x12\
\x03H()\nN\n\x04\x04\0\x02\x03\x12\x03K\x04\x1c\x1aA\x20The\x20log\x20en\
try\x20payload,\x20represented\x20as\x20a\x20Unicode\x20string\x20(UTF-8\
).\n\n\x0c\n\x05\x04\0\x02\x03\x05\x12\x03K\x04\n\n\x0c\n\x05\x04\0\x02\
\x03\x01\x12\x03K\x0b\x17\n\x0c\n\x05\x04\0\x02\x03\x03\x12\x03K\x1a\x1b\
\ne\n\x04\x04\0\x02\x04\x12\x03O\x04,\x1aX\x20The\x20log\x20entry\x20pay\
load,\x20represented\x20as\x20a\x20structure\x20that\x20is\n\x20expresse\
d\x20as\x20a\x20JSON\x20object.\n\n\x0c\n\x05\x04\0\x02\x04\x06\x12\x03O\
\x04\x1a\n\x0c\n\x05\x04\0\x02\x04\x01\x12\x03O\x1b'\n\x0c\n\x05\x04\0\
\x02\x04\x03\x12\x03O*+\n\xfb\x03\n\x04\x04\0\x02\x05\x12\x03[\x02*\x1a\
\xed\x03\x20Optional.\x20The\x20time\x20the\x20event\x20described\x20by\
\x20the\x20log\x20entry\x20occurred.\n\x20This\x20time\x20is\x20used\x20\
to\x20compute\x20the\x20log\x20entry's\x20age\x20and\x20to\x20enforce\n\
\x20the\x20logs\x20retention\x20period.\x20If\x20this\x20field\x20is\x20\
omitted\x20in\x20a\x20new\x20log\n\x20entry,\x20then\x20Stackdriver\x20L\
ogging\x20assigns\x20it\x20the\x20current\x20time.\n\n\x20Incoming\x20lo\
g\x20entries\x20should\x20have\x20timestamps\x20that\x20are\x20no\x20mor\
e\x20than\n\x20the\x20[logs\x20retention\x20period](/logging/quota-polic\
y)\x20in\x20the\x20past,\n\x20and\x20no\x20more\x20than\x2024\x20hours\
\x20in\x20the\x20future.\n\x20See\x20the\x20`entries.write`\x20API\x20me\
thod\x20for\x20more\x20information.\n\n\r\n\x05\x04\0\x02\x05\x04\x12\
\x04[\x02P\x03\n\x0c\n\x05\x04\0\x02\x05\x06\x12\x03[\x02\x1b\n\x0c\n\
\x05\x04\0\x02\x05\x01\x12\x03[\x1c%\n\x0c\n\x05\x04\0\x02\x05\x03\x12\
\x03[()\nW\n\x04\x04\0\x02\x06\x12\x03^\x023\x1aJ\x20Output\x20only.\x20\
The\x20time\x20the\x20log\x20entry\x20was\x20received\x20by\x20Stackdriv\
er\x20Logging.\n\n\r\n\x05\x04\0\x02\x06\x04\x12\x04^\x02[*\n\x0c\n\x05\
\x04\0\x02\x06\x06\x12\x03^\x02\x1b\n\x0c\n\x05\x04\0\x02\x06\x01\x12\
\x03^\x1c-\n\x0c\n\x05\x04\0\x02\x06\x03\x12\x03^02\nd\n\x04\x04\0\x02\
\x07\x12\x03b\x020\x1aW\x20Optional.\x20The\x20severity\x20of\x20the\x20\
log\x20entry.\x20The\x20default\x20value\x20is\n\x20`LogSeverity.DEFAULT\
`.\n\n\r\n\x05\x04\0\x02\x07\x04\x12\x04b\x02^3\n\x0c\n\x05\x04\0\x02\
\x07\x06\x12\x03b\x02!\n\x0c\n\x05\x04\0\x02\x07\x01\x12\x03b\"*\n\x0c\n\
\x05\x04\0\x02\x07\x03\x12\x03b-/\n\xbb\x03\n\x04\x04\0\x02\x08\x12\x03j\
\x02\x17\x1a\xad\x03\x20Optional.\x20A\x20unique\x20identifier\x20for\
\x20the\x20log\x20entry.\x20If\x20you\x20provide\x20a\x20value,\n\x20the\
n\x20Stackdriver\x20Logging\x20considers\x20other\x20log\x20entries\x20i\
n\x20the\x20same\x20project,\n\x20with\x20the\x20same\x20`timestamp`,\
\x20and\x20with\x20the\x20same\x20`insert_id`\x20to\x20be\x20duplicates\
\n\x20which\x20can\x20be\x20removed.\x20\x20If\x20omitted\x20in\x20new\
\x20log\x20entries,\x20then\x20Stackdriver\n\x20Logging\x20assigns\x20it\
s\x20own\x20unique\x20identifier.\x20The\x20`insert_id`\x20is\x20also\
\x20used\n\x20to\x20order\x20log\x20entries\x20that\x20have\x20the\x20sa\
me\x20`timestamp`\x20value.\n\n\r\n\x05\x04\0\x02\x08\x04\x12\x04j\x02b0\
\n\x0c\n\x05\x04\0\x02\x08\x05\x12\x03j\x02\x08\n\x0c\n\x05\x04\0\x02\
\x08\x01\x12\x03j\t\x12\n\x0c\n\x05\x04\0\x02\x08\x03\x12\x03j\x15\x16\n\
k\n\x04\x04\0\x02\t\x12\x03n\x023\x1a^\x20Optional.\x20Information\x20ab\
out\x20the\x20HTTP\x20request\x20associated\x20with\x20this\n\x20log\x20\
entry,\x20if\x20applicable.\n\n\r\n\x05\x04\0\x02\t\x04\x12\x04n\x02j\
\x17\n\x0c\n\x05\x04\0\x02\t\x06\x12\x03n\x02!\n\x0c\n\x05\x04\0\x02\t\
\x01\x12\x03n\".\n\x0c\n\x05\x04\0\x02\t\x03\x12\x03n12\n{\n\x04\x04\0\
\x02\n\x12\x03r\x02\"\x1an\x20Optional.\x20A\x20set\x20of\x20user-define\
d\x20(key,\x20value)\x20data\x20that\x20provides\x20additional\n\x20info\
rmation\x20about\x20the\x20log\x20entry.\n\n\r\n\x05\x04\0\x02\n\x04\x12\
\x04r\x02n3\n\x0c\n\x05\x04\0\x02\n\x06\x12\x03r\x02\x15\n\x0c\n\x05\x04\
\0\x02\n\x01\x12\x03r\x16\x1c\n\x0c\n\x05\x04\0\x02\n\x03\x12\x03r\x1f!\
\nf\n\x04\x04\0\x02\x0b\x12\x03v\x02#\x1aY\x20Optional.\x20Information\
\x20about\x20an\x20operation\x20associated\x20with\x20the\x20log\x20entr\
y,\x20if\n\x20applicable.\n\n\r\n\x05\x04\0\x02\x0b\x04\x12\x04v\x02r\"\
\n\x0c\n\x05\x04\0\x02\x0b\x06\x12\x03v\x02\x13\n\x0c\n\x05\x04\0\x02\
\x0b\x01\x12\x03v\x14\x1d\n\x0c\n\x05\x04\0\x02\x0b\x03\x12\x03v\x20\"\n\
\x92\x02\n\x04\x04\0\x02\x0c\x12\x03|\x02\x14\x1a\x84\x02\x20Optional.\
\x20Resource\x20name\x20of\x20the\x20trace\x20associated\x20with\x20the\
\x20log\x20entry,\x20if\x20any.\n\x20If\x20it\x20contains\x20a\x20relati\
ve\x20resource\x20name,\x20the\x20name\x20is\x20assumed\x20to\x20be\x20r\
elative\n\x20to\x20`//tracing.googleapis.com`.\x20Example:\n\x20`project\
s/my-projectid/traces/06796866738c859f2f19b7cfb3214824`\n\n\r\n\x05\x04\
\0\x02\x0c\x04\x12\x04|\x02v#\n\x0c\n\x05\x04\0\x02\x0c\x05\x12\x03|\x02\
\x08\n\x0c\n\x05\x04\0\x02\x0c\x01\x12\x03|\t\x0e\n\x0c\n\x05\x04\0\x02\
\x0c\x03\x12\x03|\x11\x13\n\x91\x02\n\x04\x04\0\x02\r\x12\x04\x83\x01\
\x02\x16\x1a\x82\x02\x20Optional.\x20Id\x20of\x20the\x20span\x20within\
\x20the\x20trace\x20associated\x20with\x20the\x20log\x20entry.\n\x20e.g.\
\x20\"0000000000000042\"\n\x20For\x20Stackdriver\x20trace\x20spans,\x20t\
his\x20is\x20the\x20same\x20format\x20that\x20the\x20Stackdriver\n\x20tr\
ace\x20API\x20uses.\n\x20The\x20ID\x20is\x20a\x2016-character\x20hexadec\
imal\x20encoding\x20of\x20an\x208-byte\x20array.\n\n\x0e\n\x05\x04\0\x02\
\r\x04\x12\x05\x83\x01\x02|\x14\n\r\n\x05\x04\0\x02\r\x05\x12\x04\x83\
\x01\x02\x08\n\r\n\x05\x04\0\x02\r\x01\x12\x04\x83\x01\t\x10\n\r\n\x05\
\x04\0\x02\r\x03\x12\x04\x83\x01\x13\x15\nb\n\x04\x04\0\x02\x0e\x12\x04\
\x87\x01\x02.\x1aT\x20Optional.\x20Source\x20code\x20location\x20informa\
tion\x20associated\x20with\x20the\x20log\x20entry,\n\x20if\x20any.\n\n\
\x0f\n\x05\x04\0\x02\x0e\x04\x12\x06\x87\x01\x02\x83\x01\x16\n\r\n\x05\
\x04\0\x02\x0e\x06\x12\x04\x87\x01\x02\x18\n\r\n\x05\x04\0\x02\x0e\x01\
\x12\x04\x87\x01\x19(\n\r\n\x05\x04\0\x02\x0e\x03\x12\x04\x87\x01+-\nx\n\
\x02\x04\x01\x12\x06\x8c\x01\0\x9b\x01\x01\x1aj\x20Additional\x20informa\
tion\x20about\x20a\x20potentially\x20long-running\x20operation\x20with\
\x20which\n\x20a\x20log\x20entry\x20is\x20associated.\n\n\x0b\n\x03\x04\
\x01\x01\x12\x04\x8c\x01\x08\x19\n\x91\x01\n\x04\x04\x01\x02\0\x12\x04\
\x8f\x01\x02\x10\x1a\x82\x01\x20Optional.\x20An\x20arbitrary\x20operatio\
n\x20identifier.\x20Log\x20entries\x20with\x20the\n\x20same\x20identifie\
r\x20are\x20assumed\x20to\x20be\x20part\x20of\x20the\x20same\x20operatio\
n.\n\n\x0f\n\x05\x04\x01\x02\0\x04\x12\x06\x8f\x01\x02\x8c\x01\x1b\n\r\n\
\x05\x04\x01\x02\0\x05\x12\x04\x8f\x01\x02\x08\n\r\n\x05\x04\x01\x02\0\
\x01\x12\x04\x8f\x01\t\x0b\n\r\n\x05\x04\x01\x02\0\x03\x12\x04\x8f\x01\
\x0e\x0f\n\xe1\x01\n\x04\x04\x01\x02\x01\x12\x04\x94\x01\x02\x16\x1a\xd2\
\x01\x20Optional.\x20An\x20arbitrary\x20producer\x20identifier.\x20The\
\x20combination\x20of\n\x20`id`\x20and\x20`producer`\x20must\x20be\x20gl\
obally\x20unique.\x20\x20Examples\x20for\x20`producer`:\n\x20`\"MyDivisi\
on.MyBigCompany.com\"`,\x20`\"github.com/MyProject/MyApplication\"`.\n\n\
\x0f\n\x05\x04\x01\x02\x01\x04\x12\x06\x94\x01\x02\x8f\x01\x10\n\r\n\x05\
\x04\x01\x02\x01\x05\x12\x04\x94\x01\x02\x08\n\r\n\x05\x04\x01\x02\x01\
\x01\x12\x04\x94\x01\t\x11\n\r\n\x05\x04\x01\x02\x01\x03\x12\x04\x94\x01\
\x14\x15\n[\n\x04\x04\x01\x02\x02\x12\x04\x97\x01\x02\x11\x1aM\x20Option\
al.\x20Set\x20this\x20to\x20True\x20if\x20this\x20is\x20the\x20first\x20\
log\x20entry\x20in\x20the\x20operation.\n\n\x0f\n\x05\x04\x01\x02\x02\
\x04\x12\x06\x97\x01\x02\x94\x01\x16\n\r\n\x05\x04\x01\x02\x02\x05\x12\
\x04\x97\x01\x02\x06\n\r\n\x05\x04\x01\x02\x02\x01\x12\x04\x97\x01\x07\
\x0c\n\r\n\x05\x04\x01\x02\x02\x03\x12\x04\x97\x01\x0f\x10\nZ\n\x04\x04\
\x01\x02\x03\x12\x04\x9a\x01\x02\x10\x1aL\x20Optional.\x20Set\x20this\
\x20to\x20True\x20if\x20this\x20is\x20the\x20last\x20log\x20entry\x20in\
\x20the\x20operation.\n\n\x0f\n\x05\x04\x01\x02\x03\x04\x12\x06\x9a\x01\
\x02\x97\x01\x11\n\r\n\x05\x04\x01\x02\x03\x05\x12\x04\x9a\x01\x02\x06\n\
\r\n\x05\x04\x01\x02\x03\x01\x12\x04\x9a\x01\x07\x0b\n\r\n\x05\x04\x01\
\x02\x03\x03\x12\x04\x9a\x01\x0e\x0f\nc\n\x02\x04\x02\x12\x06\x9f\x01\0\
\xaf\x01\x01\x1aU\x20Additional\x20information\x20about\x20the\x20source\
\x20code\x20location\x20that\x20produced\x20the\x20log\n\x20entry.\n\n\
\x0b\n\x03\x04\x02\x01\x12\x04\x9f\x01\x08\x1e\n\x89\x01\n\x04\x04\x02\
\x02\0\x12\x04\xa2\x01\x02\x12\x1a{\x20Optional.\x20Source\x20file\x20na\
me.\x20Depending\x20on\x20the\x20runtime\x20environment,\x20this\n\x20mi\
ght\x20be\x20a\x20simple\x20name\x20or\x20a\x20fully-qualified\x20name.\
\n\n\x0f\n\x05\x04\x02\x02\0\x04\x12\x06\xa2\x01\x02\x9f\x01\x20\n\r\n\
\x05\x04\x02\x02\0\x05\x12\x04\xa2\x01\x02\x08\n\r\n\x05\x04\x02\x02\0\
\x01\x12\x04\xa2\x01\t\r\n\r\n\x05\x04\x02\x02\0\x03\x12\x04\xa2\x01\x10\
\x11\nf\n\x04\x04\x02\x02\x01\x12\x04\xa6\x01\x02\x11\x1aX\x20Optional.\
\x20Line\x20within\x20the\x20source\x20file.\x201-based;\x200\x20indicat\
es\x20no\x20line\x20number\n\x20available.\n\n\x0f\n\x05\x04\x02\x02\x01\
\x04\x12\x06\xa6\x01\x02\xa2\x01\x12\n\r\n\x05\x04\x02\x02\x01\x05\x12\
\x04\xa6\x01\x02\x07\n\r\n\x05\x04\x02\x02\x01\x01\x12\x04\xa6\x01\x08\
\x0c\n\r\n\x05\x04\x02\x02\x01\x03\x12\x04\xa6\x01\x0f\x10\n\x88\x03\n\
\x04\x04\x02\x02\x02\x12\x04\xae\x01\x02\x16\x1a\xf9\x02\x20Optional.\
\x20Human-readable\x20name\x20of\x20the\x20function\x20or\x20method\x20b\
eing\x20invoked,\x20with\n\x20optional\x20context\x20such\x20as\x20the\
\x20class\x20or\x20package\x20name.\x20This\x20information\x20may\x20be\
\n\x20used\x20in\x20contexts\x20such\x20as\x20the\x20logs\x20viewer,\x20\
where\x20a\x20file\x20and\x20line\x20number\x20are\n\x20less\x20meaningf\
ul.\x20The\x20format\x20can\x20vary\x20by\x20language.\x20For\x20example\
:\n\x20`qual.if.ied.Class.method`\x20(Java),\x20`dir/package.func`\x20(G\
o),\x20`function`\n\x20(Python).\n\n\x0f\n\x05\x04\x02\x02\x02\x04\x12\
\x06\xae\x01\x02\xa6\x01\x11\n\r\n\x05\x04\x02\x02\x02\x05\x12\x04\xae\
\x01\x02\x08\n\r\n\x05\x04\x02\x02\x02\x01\x12\x04\xae\x01\t\x11\n\r\n\
\x05\x04\x02\x02\x02\x03\x12\x04\xae\x01\x14\x15b\x06proto3\
";
static mut file_descriptor_proto_lazy: ::protobuf::lazy::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::descriptor::FileDescriptorProto,
};
fn parse_descriptor_proto() -> ::protobuf::descriptor::FileDescriptorProto {
::protobuf::parse_from_bytes(file_descriptor_proto_data).unwrap()
}
pub fn file_descriptor_proto() -> &'static ::protobuf::descriptor::FileDescriptorProto {
unsafe {
file_descriptor_proto_lazy.get(|| {
parse_descriptor_proto()
})
}
}