#![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 Service {
pub config_version: ::protobuf::SingularPtrField<::protobuf::well_known_types::UInt32Value>,
pub name: ::std::string::String,
pub id: ::std::string::String,
pub title: ::std::string::String,
pub producer_project_id: ::std::string::String,
pub apis: ::protobuf::RepeatedField<::protobuf::well_known_types::Api>,
pub types: ::protobuf::RepeatedField<::protobuf::well_known_types::Type>,
pub enums: ::protobuf::RepeatedField<::protobuf::well_known_types::Enum>,
pub documentation: ::protobuf::SingularPtrField<super::documentation::Documentation>,
pub backend: ::protobuf::SingularPtrField<super::backend::Backend>,
pub http: ::protobuf::SingularPtrField<super::http::Http>,
pub quota: ::protobuf::SingularPtrField<super::quota::Quota>,
pub authentication: ::protobuf::SingularPtrField<super::auth::Authentication>,
pub context: ::protobuf::SingularPtrField<super::context::Context>,
pub usage: ::protobuf::SingularPtrField<super::usage::Usage>,
pub endpoints: ::protobuf::RepeatedField<super::endpoint::Endpoint>,
pub control: ::protobuf::SingularPtrField<super::control::Control>,
pub logs: ::protobuf::RepeatedField<super::log::LogDescriptor>,
pub metrics: ::protobuf::RepeatedField<super::metric::MetricDescriptor>,
pub monitored_resources: ::protobuf::RepeatedField<super::monitored_resource::MonitoredResourceDescriptor>,
pub billing: ::protobuf::SingularPtrField<super::billing::Billing>,
pub logging: ::protobuf::SingularPtrField<super::logging::Logging>,
pub monitoring: ::protobuf::SingularPtrField<super::monitoring::Monitoring>,
pub system_parameters: ::protobuf::SingularPtrField<super::system_parameter::SystemParameters>,
pub source_info: ::protobuf::SingularPtrField<super::source_info::SourceInfo>,
pub experimental: ::protobuf::SingularPtrField<super::experimental::Experimental>,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::protobuf::CachedSize,
}
impl Service {
pub fn new() -> Service {
::std::default::Default::default()
}
pub fn clear_config_version(&mut self) {
self.config_version.clear();
}
pub fn has_config_version(&self) -> bool {
self.config_version.is_some()
}
pub fn set_config_version(&mut self, v: ::protobuf::well_known_types::UInt32Value) {
self.config_version = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_config_version(&mut self) -> &mut ::protobuf::well_known_types::UInt32Value {
if self.config_version.is_none() {
self.config_version.set_default();
}
self.config_version.as_mut().unwrap()
}
pub fn take_config_version(&mut self) -> ::protobuf::well_known_types::UInt32Value {
self.config_version.take().unwrap_or_else(|| ::protobuf::well_known_types::UInt32Value::new())
}
pub fn get_config_version(&self) -> &::protobuf::well_known_types::UInt32Value {
self.config_version.as_ref().unwrap_or_else(|| ::protobuf::well_known_types::UInt32Value::default_instance())
}
pub fn clear_name(&mut self) {
self.name.clear();
}
pub fn set_name(&mut self, v: ::std::string::String) {
self.name = v;
}
pub fn mut_name(&mut self) -> &mut ::std::string::String {
&mut self.name
}
pub fn take_name(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.name, ::std::string::String::new())
}
pub fn get_name(&self) -> &str {
&self.name
}
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_title(&mut self) {
self.title.clear();
}
pub fn set_title(&mut self, v: ::std::string::String) {
self.title = v;
}
pub fn mut_title(&mut self) -> &mut ::std::string::String {
&mut self.title
}
pub fn take_title(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.title, ::std::string::String::new())
}
pub fn get_title(&self) -> &str {
&self.title
}
pub fn clear_producer_project_id(&mut self) {
self.producer_project_id.clear();
}
pub fn set_producer_project_id(&mut self, v: ::std::string::String) {
self.producer_project_id = v;
}
pub fn mut_producer_project_id(&mut self) -> &mut ::std::string::String {
&mut self.producer_project_id
}
pub fn take_producer_project_id(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.producer_project_id, ::std::string::String::new())
}
pub fn get_producer_project_id(&self) -> &str {
&self.producer_project_id
}
pub fn clear_apis(&mut self) {
self.apis.clear();
}
pub fn set_apis(&mut self, v: ::protobuf::RepeatedField<::protobuf::well_known_types::Api>) {
self.apis = v;
}
pub fn mut_apis(&mut self) -> &mut ::protobuf::RepeatedField<::protobuf::well_known_types::Api> {
&mut self.apis
}
pub fn take_apis(&mut self) -> ::protobuf::RepeatedField<::protobuf::well_known_types::Api> {
::std::mem::replace(&mut self.apis, ::protobuf::RepeatedField::new())
}
pub fn get_apis(&self) -> &[::protobuf::well_known_types::Api] {
&self.apis
}
pub fn clear_types(&mut self) {
self.types.clear();
}
pub fn set_types(&mut self, v: ::protobuf::RepeatedField<::protobuf::well_known_types::Type>) {
self.types = v;
}
pub fn mut_types(&mut self) -> &mut ::protobuf::RepeatedField<::protobuf::well_known_types::Type> {
&mut self.types
}
pub fn take_types(&mut self) -> ::protobuf::RepeatedField<::protobuf::well_known_types::Type> {
::std::mem::replace(&mut self.types, ::protobuf::RepeatedField::new())
}
pub fn get_types(&self) -> &[::protobuf::well_known_types::Type] {
&self.types
}
pub fn clear_enums(&mut self) {
self.enums.clear();
}
pub fn set_enums(&mut self, v: ::protobuf::RepeatedField<::protobuf::well_known_types::Enum>) {
self.enums = v;
}
pub fn mut_enums(&mut self) -> &mut ::protobuf::RepeatedField<::protobuf::well_known_types::Enum> {
&mut self.enums
}
pub fn take_enums(&mut self) -> ::protobuf::RepeatedField<::protobuf::well_known_types::Enum> {
::std::mem::replace(&mut self.enums, ::protobuf::RepeatedField::new())
}
pub fn get_enums(&self) -> &[::protobuf::well_known_types::Enum] {
&self.enums
}
pub fn clear_documentation(&mut self) {
self.documentation.clear();
}
pub fn has_documentation(&self) -> bool {
self.documentation.is_some()
}
pub fn set_documentation(&mut self, v: super::documentation::Documentation) {
self.documentation = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_documentation(&mut self) -> &mut super::documentation::Documentation {
if self.documentation.is_none() {
self.documentation.set_default();
}
self.documentation.as_mut().unwrap()
}
pub fn take_documentation(&mut self) -> super::documentation::Documentation {
self.documentation.take().unwrap_or_else(|| super::documentation::Documentation::new())
}
pub fn get_documentation(&self) -> &super::documentation::Documentation {
self.documentation.as_ref().unwrap_or_else(|| super::documentation::Documentation::default_instance())
}
pub fn clear_backend(&mut self) {
self.backend.clear();
}
pub fn has_backend(&self) -> bool {
self.backend.is_some()
}
pub fn set_backend(&mut self, v: super::backend::Backend) {
self.backend = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_backend(&mut self) -> &mut super::backend::Backend {
if self.backend.is_none() {
self.backend.set_default();
}
self.backend.as_mut().unwrap()
}
pub fn take_backend(&mut self) -> super::backend::Backend {
self.backend.take().unwrap_or_else(|| super::backend::Backend::new())
}
pub fn get_backend(&self) -> &super::backend::Backend {
self.backend.as_ref().unwrap_or_else(|| super::backend::Backend::default_instance())
}
pub fn clear_http(&mut self) {
self.http.clear();
}
pub fn has_http(&self) -> bool {
self.http.is_some()
}
pub fn set_http(&mut self, v: super::http::Http) {
self.http = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_http(&mut self) -> &mut super::http::Http {
if self.http.is_none() {
self.http.set_default();
}
self.http.as_mut().unwrap()
}
pub fn take_http(&mut self) -> super::http::Http {
self.http.take().unwrap_or_else(|| super::http::Http::new())
}
pub fn get_http(&self) -> &super::http::Http {
self.http.as_ref().unwrap_or_else(|| super::http::Http::default_instance())
}
pub fn clear_quota(&mut self) {
self.quota.clear();
}
pub fn has_quota(&self) -> bool {
self.quota.is_some()
}
pub fn set_quota(&mut self, v: super::quota::Quota) {
self.quota = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_quota(&mut self) -> &mut super::quota::Quota {
if self.quota.is_none() {
self.quota.set_default();
}
self.quota.as_mut().unwrap()
}
pub fn take_quota(&mut self) -> super::quota::Quota {
self.quota.take().unwrap_or_else(|| super::quota::Quota::new())
}
pub fn get_quota(&self) -> &super::quota::Quota {
self.quota.as_ref().unwrap_or_else(|| super::quota::Quota::default_instance())
}
pub fn clear_authentication(&mut self) {
self.authentication.clear();
}
pub fn has_authentication(&self) -> bool {
self.authentication.is_some()
}
pub fn set_authentication(&mut self, v: super::auth::Authentication) {
self.authentication = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_authentication(&mut self) -> &mut super::auth::Authentication {
if self.authentication.is_none() {
self.authentication.set_default();
}
self.authentication.as_mut().unwrap()
}
pub fn take_authentication(&mut self) -> super::auth::Authentication {
self.authentication.take().unwrap_or_else(|| super::auth::Authentication::new())
}
pub fn get_authentication(&self) -> &super::auth::Authentication {
self.authentication.as_ref().unwrap_or_else(|| super::auth::Authentication::default_instance())
}
pub fn clear_context(&mut self) {
self.context.clear();
}
pub fn has_context(&self) -> bool {
self.context.is_some()
}
pub fn set_context(&mut self, v: super::context::Context) {
self.context = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_context(&mut self) -> &mut super::context::Context {
if self.context.is_none() {
self.context.set_default();
}
self.context.as_mut().unwrap()
}
pub fn take_context(&mut self) -> super::context::Context {
self.context.take().unwrap_or_else(|| super::context::Context::new())
}
pub fn get_context(&self) -> &super::context::Context {
self.context.as_ref().unwrap_or_else(|| super::context::Context::default_instance())
}
pub fn clear_usage(&mut self) {
self.usage.clear();
}
pub fn has_usage(&self) -> bool {
self.usage.is_some()
}
pub fn set_usage(&mut self, v: super::usage::Usage) {
self.usage = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_usage(&mut self) -> &mut super::usage::Usage {
if self.usage.is_none() {
self.usage.set_default();
}
self.usage.as_mut().unwrap()
}
pub fn take_usage(&mut self) -> super::usage::Usage {
self.usage.take().unwrap_or_else(|| super::usage::Usage::new())
}
pub fn get_usage(&self) -> &super::usage::Usage {
self.usage.as_ref().unwrap_or_else(|| super::usage::Usage::default_instance())
}
pub fn clear_endpoints(&mut self) {
self.endpoints.clear();
}
pub fn set_endpoints(&mut self, v: ::protobuf::RepeatedField<super::endpoint::Endpoint>) {
self.endpoints = v;
}
pub fn mut_endpoints(&mut self) -> &mut ::protobuf::RepeatedField<super::endpoint::Endpoint> {
&mut self.endpoints
}
pub fn take_endpoints(&mut self) -> ::protobuf::RepeatedField<super::endpoint::Endpoint> {
::std::mem::replace(&mut self.endpoints, ::protobuf::RepeatedField::new())
}
pub fn get_endpoints(&self) -> &[super::endpoint::Endpoint] {
&self.endpoints
}
pub fn clear_control(&mut self) {
self.control.clear();
}
pub fn has_control(&self) -> bool {
self.control.is_some()
}
pub fn set_control(&mut self, v: super::control::Control) {
self.control = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_control(&mut self) -> &mut super::control::Control {
if self.control.is_none() {
self.control.set_default();
}
self.control.as_mut().unwrap()
}
pub fn take_control(&mut self) -> super::control::Control {
self.control.take().unwrap_or_else(|| super::control::Control::new())
}
pub fn get_control(&self) -> &super::control::Control {
self.control.as_ref().unwrap_or_else(|| super::control::Control::default_instance())
}
pub fn clear_logs(&mut self) {
self.logs.clear();
}
pub fn set_logs(&mut self, v: ::protobuf::RepeatedField<super::log::LogDescriptor>) {
self.logs = v;
}
pub fn mut_logs(&mut self) -> &mut ::protobuf::RepeatedField<super::log::LogDescriptor> {
&mut self.logs
}
pub fn take_logs(&mut self) -> ::protobuf::RepeatedField<super::log::LogDescriptor> {
::std::mem::replace(&mut self.logs, ::protobuf::RepeatedField::new())
}
pub fn get_logs(&self) -> &[super::log::LogDescriptor] {
&self.logs
}
pub fn clear_metrics(&mut self) {
self.metrics.clear();
}
pub fn set_metrics(&mut self, v: ::protobuf::RepeatedField<super::metric::MetricDescriptor>) {
self.metrics = v;
}
pub fn mut_metrics(&mut self) -> &mut ::protobuf::RepeatedField<super::metric::MetricDescriptor> {
&mut self.metrics
}
pub fn take_metrics(&mut self) -> ::protobuf::RepeatedField<super::metric::MetricDescriptor> {
::std::mem::replace(&mut self.metrics, ::protobuf::RepeatedField::new())
}
pub fn get_metrics(&self) -> &[super::metric::MetricDescriptor] {
&self.metrics
}
pub fn clear_monitored_resources(&mut self) {
self.monitored_resources.clear();
}
pub fn set_monitored_resources(&mut self, v: ::protobuf::RepeatedField<super::monitored_resource::MonitoredResourceDescriptor>) {
self.monitored_resources = v;
}
pub fn mut_monitored_resources(&mut self) -> &mut ::protobuf::RepeatedField<super::monitored_resource::MonitoredResourceDescriptor> {
&mut self.monitored_resources
}
pub fn take_monitored_resources(&mut self) -> ::protobuf::RepeatedField<super::monitored_resource::MonitoredResourceDescriptor> {
::std::mem::replace(&mut self.monitored_resources, ::protobuf::RepeatedField::new())
}
pub fn get_monitored_resources(&self) -> &[super::monitored_resource::MonitoredResourceDescriptor] {
&self.monitored_resources
}
pub fn clear_billing(&mut self) {
self.billing.clear();
}
pub fn has_billing(&self) -> bool {
self.billing.is_some()
}
pub fn set_billing(&mut self, v: super::billing::Billing) {
self.billing = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_billing(&mut self) -> &mut super::billing::Billing {
if self.billing.is_none() {
self.billing.set_default();
}
self.billing.as_mut().unwrap()
}
pub fn take_billing(&mut self) -> super::billing::Billing {
self.billing.take().unwrap_or_else(|| super::billing::Billing::new())
}
pub fn get_billing(&self) -> &super::billing::Billing {
self.billing.as_ref().unwrap_or_else(|| super::billing::Billing::default_instance())
}
pub fn clear_logging(&mut self) {
self.logging.clear();
}
pub fn has_logging(&self) -> bool {
self.logging.is_some()
}
pub fn set_logging(&mut self, v: super::logging::Logging) {
self.logging = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_logging(&mut self) -> &mut super::logging::Logging {
if self.logging.is_none() {
self.logging.set_default();
}
self.logging.as_mut().unwrap()
}
pub fn take_logging(&mut self) -> super::logging::Logging {
self.logging.take().unwrap_or_else(|| super::logging::Logging::new())
}
pub fn get_logging(&self) -> &super::logging::Logging {
self.logging.as_ref().unwrap_or_else(|| super::logging::Logging::default_instance())
}
pub fn clear_monitoring(&mut self) {
self.monitoring.clear();
}
pub fn has_monitoring(&self) -> bool {
self.monitoring.is_some()
}
pub fn set_monitoring(&mut self, v: super::monitoring::Monitoring) {
self.monitoring = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_monitoring(&mut self) -> &mut super::monitoring::Monitoring {
if self.monitoring.is_none() {
self.monitoring.set_default();
}
self.monitoring.as_mut().unwrap()
}
pub fn take_monitoring(&mut self) -> super::monitoring::Monitoring {
self.monitoring.take().unwrap_or_else(|| super::monitoring::Monitoring::new())
}
pub fn get_monitoring(&self) -> &super::monitoring::Monitoring {
self.monitoring.as_ref().unwrap_or_else(|| super::monitoring::Monitoring::default_instance())
}
pub fn clear_system_parameters(&mut self) {
self.system_parameters.clear();
}
pub fn has_system_parameters(&self) -> bool {
self.system_parameters.is_some()
}
pub fn set_system_parameters(&mut self, v: super::system_parameter::SystemParameters) {
self.system_parameters = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_system_parameters(&mut self) -> &mut super::system_parameter::SystemParameters {
if self.system_parameters.is_none() {
self.system_parameters.set_default();
}
self.system_parameters.as_mut().unwrap()
}
pub fn take_system_parameters(&mut self) -> super::system_parameter::SystemParameters {
self.system_parameters.take().unwrap_or_else(|| super::system_parameter::SystemParameters::new())
}
pub fn get_system_parameters(&self) -> &super::system_parameter::SystemParameters {
self.system_parameters.as_ref().unwrap_or_else(|| super::system_parameter::SystemParameters::default_instance())
}
pub fn clear_source_info(&mut self) {
self.source_info.clear();
}
pub fn has_source_info(&self) -> bool {
self.source_info.is_some()
}
pub fn set_source_info(&mut self, v: super::source_info::SourceInfo) {
self.source_info = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_source_info(&mut self) -> &mut super::source_info::SourceInfo {
if self.source_info.is_none() {
self.source_info.set_default();
}
self.source_info.as_mut().unwrap()
}
pub fn take_source_info(&mut self) -> super::source_info::SourceInfo {
self.source_info.take().unwrap_or_else(|| super::source_info::SourceInfo::new())
}
pub fn get_source_info(&self) -> &super::source_info::SourceInfo {
self.source_info.as_ref().unwrap_or_else(|| super::source_info::SourceInfo::default_instance())
}
pub fn clear_experimental(&mut self) {
self.experimental.clear();
}
pub fn has_experimental(&self) -> bool {
self.experimental.is_some()
}
pub fn set_experimental(&mut self, v: super::experimental::Experimental) {
self.experimental = ::protobuf::SingularPtrField::some(v);
}
pub fn mut_experimental(&mut self) -> &mut super::experimental::Experimental {
if self.experimental.is_none() {
self.experimental.set_default();
}
self.experimental.as_mut().unwrap()
}
pub fn take_experimental(&mut self) -> super::experimental::Experimental {
self.experimental.take().unwrap_or_else(|| super::experimental::Experimental::new())
}
pub fn get_experimental(&self) -> &super::experimental::Experimental {
self.experimental.as_ref().unwrap_or_else(|| super::experimental::Experimental::default_instance())
}
}
impl ::protobuf::Message for Service {
fn is_initialized(&self) -> bool {
for v in &self.config_version {
if !v.is_initialized() {
return false;
}
};
for v in &self.apis {
if !v.is_initialized() {
return false;
}
};
for v in &self.types {
if !v.is_initialized() {
return false;
}
};
for v in &self.enums {
if !v.is_initialized() {
return false;
}
};
for v in &self.documentation {
if !v.is_initialized() {
return false;
}
};
for v in &self.backend {
if !v.is_initialized() {
return false;
}
};
for v in &self.http {
if !v.is_initialized() {
return false;
}
};
for v in &self.quota {
if !v.is_initialized() {
return false;
}
};
for v in &self.authentication {
if !v.is_initialized() {
return false;
}
};
for v in &self.context {
if !v.is_initialized() {
return false;
}
};
for v in &self.usage {
if !v.is_initialized() {
return false;
}
};
for v in &self.endpoints {
if !v.is_initialized() {
return false;
}
};
for v in &self.control {
if !v.is_initialized() {
return false;
}
};
for v in &self.logs {
if !v.is_initialized() {
return false;
}
};
for v in &self.metrics {
if !v.is_initialized() {
return false;
}
};
for v in &self.monitored_resources {
if !v.is_initialized() {
return false;
}
};
for v in &self.billing {
if !v.is_initialized() {
return false;
}
};
for v in &self.logging {
if !v.is_initialized() {
return false;
}
};
for v in &self.monitoring {
if !v.is_initialized() {
return false;
}
};
for v in &self.system_parameters {
if !v.is_initialized() {
return false;
}
};
for v in &self.source_info {
if !v.is_initialized() {
return false;
}
};
for v in &self.experimental {
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 {
20 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.config_version)?;
},
1 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.name)?;
},
33 => {
::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.title)?;
},
22 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.producer_project_id)?;
},
3 => {
::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.apis)?;
},
4 => {
::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.types)?;
},
5 => {
::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.enums)?;
},
6 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.documentation)?;
},
8 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.backend)?;
},
9 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.http)?;
},
10 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.quota)?;
},
11 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.authentication)?;
},
12 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.context)?;
},
15 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.usage)?;
},
18 => {
::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.endpoints)?;
},
21 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.control)?;
},
23 => {
::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.logs)?;
},
24 => {
::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.metrics)?;
},
25 => {
::protobuf::rt::read_repeated_message_into(wire_type, is, &mut self.monitored_resources)?;
},
26 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.billing)?;
},
27 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.logging)?;
},
28 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.monitoring)?;
},
29 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.system_parameters)?;
},
37 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.source_info)?;
},
101 => {
::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.experimental)?;
},
_ => {
::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 let Some(ref v) = self.config_version.as_ref() {
let len = v.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if !self.name.is_empty() {
my_size += ::protobuf::rt::string_size(1, &self.name);
}
if !self.id.is_empty() {
my_size += ::protobuf::rt::string_size(33, &self.id);
}
if !self.title.is_empty() {
my_size += ::protobuf::rt::string_size(2, &self.title);
}
if !self.producer_project_id.is_empty() {
my_size += ::protobuf::rt::string_size(22, &self.producer_project_id);
}
for value in &self.apis {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in &self.types {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in &self.enums {
let len = value.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
if let Some(ref v) = self.documentation.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.backend.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.http.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.quota.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.authentication.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.context.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.usage.as_ref() {
let len = v.compute_size();
my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
for value in &self.endpoints {
let len = value.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
if let Some(ref v) = self.control.as_ref() {
let len = v.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
for value in &self.logs {
let len = value.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in &self.metrics {
let len = value.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
for value in &self.monitored_resources {
let len = value.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
};
if let Some(ref v) = self.billing.as_ref() {
let len = v.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.logging.as_ref() {
let len = v.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.monitoring.as_ref() {
let len = v.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.system_parameters.as_ref() {
let len = v.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.source_info.as_ref() {
let len = v.compute_size();
my_size += 2 + ::protobuf::rt::compute_raw_varint32_size(len) + len;
}
if let Some(ref v) = self.experimental.as_ref() {
let len = v.compute_size();
my_size += 2 + ::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 let Some(ref v) = self.config_version.as_ref() {
os.write_tag(20, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
}
if !self.name.is_empty() {
os.write_string(1, &self.name)?;
}
if !self.id.is_empty() {
os.write_string(33, &self.id)?;
}
if !self.title.is_empty() {
os.write_string(2, &self.title)?;
}
if !self.producer_project_id.is_empty() {
os.write_string(22, &self.producer_project_id)?;
}
for v in &self.apis {
os.write_tag(3, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
};
for v in &self.types {
os.write_tag(4, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
};
for v in &self.enums {
os.write_tag(5, ::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.documentation.as_ref() {
os.write_tag(6, ::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.backend.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.http.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.quota.as_ref() {
os.write_tag(10, ::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.authentication.as_ref() {
os.write_tag(11, ::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.context.as_ref() {
os.write_tag(12, ::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.usage.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)?;
}
for v in &self.endpoints {
os.write_tag(18, ::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.control.as_ref() {
os.write_tag(21, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
}
for v in &self.logs {
os.write_tag(23, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
};
for v in &self.metrics {
os.write_tag(24, ::protobuf::wire_format::WireTypeLengthDelimited)?;
os.write_raw_varint32(v.get_cached_size())?;
v.write_to_with_cached_sizes(os)?;
};
for v in &self.monitored_resources {
os.write_tag(25, ::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.billing.as_ref() {
os.write_tag(26, ::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.logging.as_ref() {
os.write_tag(27, ::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.monitoring.as_ref() {
os.write_tag(28, ::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.system_parameters.as_ref() {
os.write_tag(29, ::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.source_info.as_ref() {
os.write_tag(37, ::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.experimental.as_ref() {
os.write_tag(101, ::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() -> Service {
Service::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_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::UInt32Value>>(
"config_version",
|m: &Service| { &m.config_version },
|m: &mut Service| { &mut m.config_version },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"name",
|m: &Service| { &m.name },
|m: &mut Service| { &mut m.name },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"id",
|m: &Service| { &m.id },
|m: &mut Service| { &mut m.id },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"title",
|m: &Service| { &m.title },
|m: &mut Service| { &mut m.title },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"producer_project_id",
|m: &Service| { &m.producer_project_id },
|m: &mut Service| { &mut m.producer_project_id },
));
fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Api>>(
"apis",
|m: &Service| { &m.apis },
|m: &mut Service| { &mut m.apis },
));
fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Type>>(
"types",
|m: &Service| { &m.types },
|m: &mut Service| { &mut m.types },
));
fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<::protobuf::well_known_types::Enum>>(
"enums",
|m: &Service| { &m.enums },
|m: &mut Service| { &mut m.enums },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::documentation::Documentation>>(
"documentation",
|m: &Service| { &m.documentation },
|m: &mut Service| { &mut m.documentation },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::backend::Backend>>(
"backend",
|m: &Service| { &m.backend },
|m: &mut Service| { &mut m.backend },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::http::Http>>(
"http",
|m: &Service| { &m.http },
|m: &mut Service| { &mut m.http },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::quota::Quota>>(
"quota",
|m: &Service| { &m.quota },
|m: &mut Service| { &mut m.quota },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::auth::Authentication>>(
"authentication",
|m: &Service| { &m.authentication },
|m: &mut Service| { &mut m.authentication },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::context::Context>>(
"context",
|m: &Service| { &m.context },
|m: &mut Service| { &mut m.context },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::usage::Usage>>(
"usage",
|m: &Service| { &m.usage },
|m: &mut Service| { &mut m.usage },
));
fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::endpoint::Endpoint>>(
"endpoints",
|m: &Service| { &m.endpoints },
|m: &mut Service| { &mut m.endpoints },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::control::Control>>(
"control",
|m: &Service| { &m.control },
|m: &mut Service| { &mut m.control },
));
fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::log::LogDescriptor>>(
"logs",
|m: &Service| { &m.logs },
|m: &mut Service| { &mut m.logs },
));
fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::metric::MetricDescriptor>>(
"metrics",
|m: &Service| { &m.metrics },
|m: &mut Service| { &mut m.metrics },
));
fields.push(::protobuf::reflect::accessor::make_repeated_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::monitored_resource::MonitoredResourceDescriptor>>(
"monitored_resources",
|m: &Service| { &m.monitored_resources },
|m: &mut Service| { &mut m.monitored_resources },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::billing::Billing>>(
"billing",
|m: &Service| { &m.billing },
|m: &mut Service| { &mut m.billing },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::logging::Logging>>(
"logging",
|m: &Service| { &m.logging },
|m: &mut Service| { &mut m.logging },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::monitoring::Monitoring>>(
"monitoring",
|m: &Service| { &m.monitoring },
|m: &mut Service| { &mut m.monitoring },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::system_parameter::SystemParameters>>(
"system_parameters",
|m: &Service| { &m.system_parameters },
|m: &mut Service| { &mut m.system_parameters },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::source_info::SourceInfo>>(
"source_info",
|m: &Service| { &m.source_info },
|m: &mut Service| { &mut m.source_info },
));
fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage<super::experimental::Experimental>>(
"experimental",
|m: &Service| { &m.experimental },
|m: &mut Service| { &mut m.experimental },
));
::protobuf::reflect::MessageDescriptor::new::<Service>(
"Service",
fields,
file_descriptor_proto()
)
})
}
}
fn default_instance() -> &'static Service {
static mut instance: ::protobuf::lazy::Lazy<Service> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const Service,
};
unsafe {
instance.get(Service::new)
}
}
}
impl ::protobuf::Clear for Service {
fn clear(&mut self) {
self.clear_config_version();
self.clear_name();
self.clear_id();
self.clear_title();
self.clear_producer_project_id();
self.clear_apis();
self.clear_types();
self.clear_enums();
self.clear_documentation();
self.clear_backend();
self.clear_http();
self.clear_quota();
self.clear_authentication();
self.clear_context();
self.clear_usage();
self.clear_endpoints();
self.clear_control();
self.clear_logs();
self.clear_metrics();
self.clear_monitored_resources();
self.clear_billing();
self.clear_logging();
self.clear_monitoring();
self.clear_system_parameters();
self.clear_source_info();
self.clear_experimental();
self.unknown_fields.clear();
}
}
impl ::std::fmt::Debug for Service {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for Service {
fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef {
::protobuf::reflect::ProtobufValueRef::Message(self)
}
}
static file_descriptor_proto_data: &'static [u8] = b"\
\n\x18google/api/service.proto\x12\ngoogle.api\x1a\x1cgoogle/api/annotat\
ions.proto\x1a\x15google/api/auth.proto\x1a\x18google/api/backend.proto\
\x1a\x18google/api/billing.proto\x1a\x18google/api/context.proto\x1a\x18\
google/api/control.proto\x1a\x1egoogle/api/documentation.proto\x1a\x19go\
ogle/api/endpoint.proto\x1a*google/api/experimental/experimental.proto\
\x1a\x15google/api/http.proto\x1a\x16google/api/label.proto\x1a\x14googl\
e/api/log.proto\x1a\x18google/api/logging.proto\x1a\x17google/api/metric\
.proto\x1a#google/api/monitored_resource.proto\x1a\x1bgoogle/api/monitor\
ing.proto\x1a\x16google/api/quota.proto\x1a\x1cgoogle/api/source_info.pr\
oto\x1a!google/api/system_parameter.proto\x1a\x16google/api/usage.proto\
\x1a\x19google/protobuf/any.proto\x1a\x19google/protobuf/api.proto\x1a\
\x1agoogle/protobuf/type.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\
\x93\n\n\x07Service\x12C\n\x0econfig_version\x18\x14\x20\x01(\x0b2\x1c.g\
oogle.protobuf.UInt32ValueR\rconfigVersion\x12\x12\n\x04name\x18\x01\x20\
\x01(\tR\x04name\x12\x0e\n\x02id\x18!\x20\x01(\tR\x02id\x12\x14\n\x05tit\
le\x18\x02\x20\x01(\tR\x05title\x12.\n\x13producer_project_id\x18\x16\
\x20\x01(\tR\x11producerProjectId\x12(\n\x04apis\x18\x03\x20\x03(\x0b2\
\x14.google.protobuf.ApiR\x04apis\x12+\n\x05types\x18\x04\x20\x03(\x0b2\
\x15.google.protobuf.TypeR\x05types\x12+\n\x05enums\x18\x05\x20\x03(\x0b\
2\x15.google.protobuf.EnumR\x05enums\x12?\n\rdocumentation\x18\x06\x20\
\x01(\x0b2\x19.google.api.DocumentationR\rdocumentation\x12-\n\x07backen\
d\x18\x08\x20\x01(\x0b2\x13.google.api.BackendR\x07backend\x12$\n\x04htt\
p\x18\t\x20\x01(\x0b2\x10.google.api.HttpR\x04http\x12'\n\x05quota\x18\n\
\x20\x01(\x0b2\x11.google.api.QuotaR\x05quota\x12B\n\x0eauthentication\
\x18\x0b\x20\x01(\x0b2\x1a.google.api.AuthenticationR\x0eauthentication\
\x12-\n\x07context\x18\x0c\x20\x01(\x0b2\x13.google.api.ContextR\x07cont\
ext\x12'\n\x05usage\x18\x0f\x20\x01(\x0b2\x11.google.api.UsageR\x05usage\
\x122\n\tendpoints\x18\x12\x20\x03(\x0b2\x14.google.api.EndpointR\tendpo\
ints\x12-\n\x07control\x18\x15\x20\x01(\x0b2\x13.google.api.ControlR\x07\
control\x12-\n\x04logs\x18\x17\x20\x03(\x0b2\x19.google.api.LogDescripto\
rR\x04logs\x126\n\x07metrics\x18\x18\x20\x03(\x0b2\x1c.google.api.Metric\
DescriptorR\x07metrics\x12X\n\x13monitored_resources\x18\x19\x20\x03(\
\x0b2'.google.api.MonitoredResourceDescriptorR\x12monitoredResources\x12\
-\n\x07billing\x18\x1a\x20\x01(\x0b2\x13.google.api.BillingR\x07billing\
\x12-\n\x07logging\x18\x1b\x20\x01(\x0b2\x13.google.api.LoggingR\x07logg\
ing\x126\n\nmonitoring\x18\x1c\x20\x01(\x0b2\x16.google.api.MonitoringR\
\nmonitoring\x12I\n\x11system_parameters\x18\x1d\x20\x01(\x0b2\x1c.googl\
e.api.SystemParametersR\x10systemParameters\x127\n\x0bsource_info\x18%\
\x20\x01(\x0b2\x16.google.api.SourceInfoR\nsourceInfo\x12<\n\x0cexperime\
ntal\x18e\x20\x01(\x0b2\x18.google.api.ExperimentalR\x0cexperimentalBn\n\
\x0ecom.google.apiB\x0cServiceProtoP\x01ZEgoogle.golang.org/genproto/goo\
gleapis/api/serviceconfig;serviceconfig\xa2\x02\x04GAPIJ\xc93\n\x07\x12\
\x05\x0e\0\xb1\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\x12\n\t\n\x02\x03\0\x12\x03\x12\x07%\n\t\n\x02\x03\x01\
\x12\x03\x13\x07\x1e\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\t\n\x02\x03\
\x07\x12\x03\x19\x07\"\n\t\n\x02\x03\x08\x12\x03\x1a\x073\n\t\n\x02\x03\
\t\x12\x03\x1b\x07\x1e\n\t\n\x02\x03\n\x12\x03\x1c\x07\x1f\n\t\n\x02\x03\
\x0b\x12\x03\x1d\x07\x1d\n\t\n\x02\x03\x0c\x12\x03\x1e\x07!\n\t\n\x02\
\x03\r\x12\x03\x1f\x07\x20\n\t\n\x02\x03\x0e\x12\x03\x20\x07,\n\t\n\x02\
\x03\x0f\x12\x03!\x07$\n\t\n\x02\x03\x10\x12\x03\"\x07\x1f\n\t\n\x02\x03\
\x11\x12\x03#\x07%\n\t\n\x02\x03\x12\x12\x03$\x07*\n\t\n\x02\x03\x13\x12\
\x03%\x07\x1f\n\t\n\x02\x03\x14\x12\x03&\x07\"\n\t\n\x02\x03\x15\x12\x03\
'\x07\"\n\t\n\x02\x03\x16\x12\x03(\x07#\n\t\n\x02\x03\x17\x12\x03)\x07'\
\n\x08\n\x01\x08\x12\x03+\0\\\n\x0b\n\x04\x08\xe7\x07\0\x12\x03+\0\\\n\
\x0c\n\x05\x08\xe7\x07\0\x02\x12\x03+\x07\x11\n\r\n\x06\x08\xe7\x07\0\
\x02\0\x12\x03+\x07\x11\n\x0e\n\x07\x08\xe7\x07\0\x02\0\x01\x12\x03+\x07\
\x11\n\x0c\n\x05\x08\xe7\x07\0\x07\x12\x03+\x14[\n\x08\n\x01\x08\x12\x03\
,\0\"\n\x0b\n\x04\x08\xe7\x07\x01\x12\x03,\0\"\n\x0c\n\x05\x08\xe7\x07\
\x01\x02\x12\x03,\x07\x1a\n\r\n\x06\x08\xe7\x07\x01\x02\0\x12\x03,\x07\
\x1a\n\x0e\n\x07\x08\xe7\x07\x01\x02\0\x01\x12\x03,\x07\x1a\n\x0c\n\x05\
\x08\xe7\x07\x01\x03\x12\x03,\x1d!\n\x08\n\x01\x08\x12\x03-\0-\n\x0b\n\
\x04\x08\xe7\x07\x02\x12\x03-\0-\n\x0c\n\x05\x08\xe7\x07\x02\x02\x12\x03\
-\x07\x1b\n\r\n\x06\x08\xe7\x07\x02\x02\0\x12\x03-\x07\x1b\n\x0e\n\x07\
\x08\xe7\x07\x02\x02\0\x01\x12\x03-\x07\x1b\n\x0c\n\x05\x08\xe7\x07\x02\
\x07\x12\x03-\x1e,\n\x08\n\x01\x08\x12\x03.\0'\n\x0b\n\x04\x08\xe7\x07\
\x03\x12\x03.\0'\n\x0c\n\x05\x08\xe7\x07\x03\x02\x12\x03.\x07\x13\n\r\n\
\x06\x08\xe7\x07\x03\x02\0\x12\x03.\x07\x13\n\x0e\n\x07\x08\xe7\x07\x03\
\x02\0\x01\x12\x03.\x07\x13\n\x0c\n\x05\x08\xe7\x07\x03\x07\x12\x03.\x16\
&\n\x08\n\x01\x08\x12\x03/\0\"\n\x0b\n\x04\x08\xe7\x07\x04\x12\x03/\0\"\
\n\x0c\n\x05\x08\xe7\x07\x04\x02\x12\x03/\x07\x18\n\r\n\x06\x08\xe7\x07\
\x04\x02\0\x12\x03/\x07\x18\n\x0e\n\x07\x08\xe7\x07\x04\x02\0\x01\x12\
\x03/\x07\x18\n\x0c\n\x05\x08\xe7\x07\x04\x07\x12\x03/\x1b!\n\xd4\x06\n\
\x02\x04\0\x12\x05I\0\xb1\x01\x01\x1a\xc6\x06\x20`Service`\x20is\x20the\
\x20root\x20object\x20of\x20Google\x20service\x20configuration\x20schema\
.\x20It\n\x20describes\x20basic\x20information\x20about\x20a\x20service,\
\x20such\x20as\x20the\x20name\x20and\x20the\n\x20title,\x20and\x20delega\
tes\x20other\x20aspects\x20to\x20sub-sections.\x20Each\x20sub-section\
\x20is\n\x20either\x20a\x20proto\x20message\x20or\x20a\x20repeated\x20pr\
oto\x20message\x20that\x20configures\x20a\n\x20specific\x20aspect,\x20su\
ch\x20as\x20auth.\x20See\x20each\x20proto\x20message\x20definition\x20fo\
r\x20details.\n\n\x20Example:\n\n\x20\x20\x20\x20\x20type:\x20google.api\
.Service\n\x20\x20\x20\x20\x20config_version:\x203\n\x20\x20\x20\x20\x20\
name:\x20calendar.googleapis.com\n\x20\x20\x20\x20\x20title:\x20Google\
\x20Calendar\x20API\n\x20\x20\x20\x20\x20apis:\n\x20\x20\x20\x20\x20-\
\x20name:\x20google.calendar.v3.Calendar\n\x20\x20\x20\x20\x20authentica\
tion:\n\x20\x20\x20\x20\x20\x20\x20providers:\n\x20\x20\x20\x20\x20\x20\
\x20-\x20id:\x20google_calendar_auth\n\x20\x20\x20\x20\x20\x20\x20\x20\
\x20jwks_uri:\x20https://www.googleapis.com/oauth2/v1/certs\n\x20\x20\
\x20\x20\x20\x20\x20\x20\x20issuer:\x20https://securetoken.google.com\n\
\x20\x20\x20\x20\x20\x20\x20rules:\n\x20\x20\x20\x20\x20\x20\x20-\x20sel\
ector:\x20\"*\"\n\x20\x20\x20\x20\x20\x20\x20\x20\x20requirements:\n\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20provider_id:\x20google_calendar_\
auth\n\n\n\n\x03\x04\0\x01\x12\x03I\x08\x0f\n\x85\x02\n\x04\x04\0\x02\0\
\x12\x03N\x022\x1a\xf7\x01\x20The\x20semantic\x20version\x20of\x20the\
\x20service\x20configuration.\x20The\x20config\x20version\n\x20affects\
\x20the\x20interpretation\x20of\x20the\x20service\x20configuration.\x20F\
or\x20example,\n\x20certain\x20features\x20are\x20enabled\x20by\x20defau\
lt\x20for\x20certain\x20config\x20versions.\n\x20The\x20latest\x20config\
\x20version\x20is\x20`3`.\n\n\r\n\x05\x04\0\x02\0\x04\x12\x04N\x02I\x11\
\n\x0c\n\x05\x04\0\x02\0\x06\x12\x03N\x02\x1d\n\x0c\n\x05\x04\0\x02\0\
\x01\x12\x03N\x1e,\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03N/1\nc\n\x04\x04\0\
\x02\x01\x12\x03R\x02\x12\x1aV\x20The\x20DNS\x20address\x20at\x20which\
\x20this\x20service\x20is\x20available,\n\x20e.g.\x20`calendar.googleapi\
s.com`.\n\n\r\n\x05\x04\0\x02\x01\x04\x12\x04R\x02N2\n\x0c\n\x05\x04\0\
\x02\x01\x05\x12\x03R\x02\x08\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03R\t\r\
\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03R\x10\x11\n\xb6\x01\n\x04\x04\0\
\x02\x02\x12\x03W\x02\x11\x1a\xa8\x01\x20A\x20unique\x20ID\x20for\x20a\
\x20specific\x20instance\x20of\x20this\x20message,\x20typically\x20assig\
ned\n\x20by\x20the\x20client\x20for\x20tracking\x20purpose.\x20If\x20emp\
ty,\x20the\x20server\x20may\x20choose\x20to\n\x20generate\x20one\x20inst\
ead.\n\n\r\n\x05\x04\0\x02\x02\x04\x12\x04W\x02R\x12\n\x0c\n\x05\x04\0\
\x02\x02\x05\x12\x03W\x02\x08\n\x0c\n\x05\x04\0\x02\x02\x01\x12\x03W\t\
\x0b\n\x0c\n\x05\x04\0\x02\x02\x03\x12\x03W\x0e\x10\n2\n\x04\x04\0\x02\
\x03\x12\x03Z\x02\x13\x1a%\x20The\x20product\x20title\x20for\x20this\x20\
service.\n\n\r\n\x05\x04\0\x02\x03\x04\x12\x04Z\x02W\x11\n\x0c\n\x05\x04\
\0\x02\x03\x05\x12\x03Z\x02\x08\n\x0c\n\x05\x04\0\x02\x03\x01\x12\x03Z\t\
\x0e\n\x0c\n\x05\x04\0\x02\x03\x03\x12\x03Z\x11\x12\n9\n\x04\x04\0\x02\
\x04\x12\x03]\x02\"\x1a,\x20The\x20Google\x20project\x20that\x20owns\x20\
this\x20service.\n\n\r\n\x05\x04\0\x02\x04\x04\x12\x04]\x02Z\x13\n\x0c\n\
\x05\x04\0\x02\x04\x05\x12\x03]\x02\x08\n\x0c\n\x05\x04\0\x02\x04\x01\
\x12\x03]\t\x1c\n\x0c\n\x05\x04\0\x02\x04\x03\x12\x03]\x1f!\n\x82\x03\n\
\x04\x04\0\x02\x05\x12\x03d\x02(\x1a\xf4\x02\x20A\x20list\x20of\x20API\
\x20interfaces\x20exported\x20by\x20this\x20service.\x20Only\x20the\x20`\
name`\x20field\n\x20of\x20the\x20[google.protobuf.Api][google.protobuf.A\
pi]\x20needs\x20to\x20be\x20provided\x20by\x20the\x20configuration\n\x20\
author,\x20as\x20the\x20remaining\x20fields\x20will\x20be\x20derived\x20\
from\x20the\x20IDL\x20during\x20the\n\x20normalization\x20process.\x20It\
\x20is\x20an\x20error\x20to\x20specify\x20an\x20API\x20interface\x20here\
\n\x20which\x20cannot\x20be\x20resolved\x20against\x20the\x20associated\
\x20IDL\x20files.\n\n\x0c\n\x05\x04\0\x02\x05\x04\x12\x03d\x02\n\n\x0c\n\
\x05\x04\0\x02\x05\x06\x12\x03d\x0b\x1e\n\x0c\n\x05\x04\0\x02\x05\x01\
\x12\x03d\x1f#\n\x0c\n\x05\x04\0\x02\x05\x03\x12\x03d&'\n\xed\x02\n\x04\
\x04\0\x02\x06\x12\x03n\x02*\x1a\xdf\x02\x20A\x20list\x20of\x20all\x20pr\
oto\x20message\x20types\x20included\x20in\x20this\x20API\x20service.\n\
\x20Types\x20referenced\x20directly\x20or\x20indirectly\x20by\x20the\x20\
`apis`\x20are\n\x20automatically\x20included.\x20\x20Messages\x20which\
\x20are\x20not\x20referenced\x20but\n\x20shall\x20be\x20included,\x20suc\
h\x20as\x20types\x20used\x20by\x20the\x20`google.protobuf.Any`\x20type,\
\n\x20should\x20be\x20listed\x20here\x20by\x20name.\x20Example:\n\n\x20\
\x20\x20\x20\x20types:\n\x20\x20\x20\x20\x20-\x20name:\x20google.protobu\
f.Int32\n\n\x0c\n\x05\x04\0\x02\x06\x04\x12\x03n\x02\n\n\x0c\n\x05\x04\0\
\x02\x06\x06\x12\x03n\x0b\x1f\n\x0c\n\x05\x04\0\x02\x06\x01\x12\x03n\x20\
%\n\x0c\n\x05\x04\0\x02\x06\x03\x12\x03n()\n\xaf\x02\n\x04\x04\0\x02\x07\
\x12\x03w\x02*\x1a\xa1\x02\x20A\x20list\x20of\x20all\x20enum\x20types\
\x20included\x20in\x20this\x20API\x20service.\x20\x20Enums\n\x20referenc\
ed\x20directly\x20or\x20indirectly\x20by\x20the\x20`apis`\x20are\x20auto\
matically\n\x20included.\x20\x20Enums\x20which\x20are\x20not\x20referenc\
ed\x20but\x20shall\x20be\x20included\n\x20should\x20be\x20listed\x20here\
\x20by\x20name.\x20Example:\n\n\x20\x20\x20\x20\x20enums:\n\x20\x20\x20\
\x20\x20-\x20name:\x20google.someapi.v1.SomeEnum\n\n\x0c\n\x05\x04\0\x02\
\x07\x04\x12\x03w\x02\n\n\x0c\n\x05\x04\0\x02\x07\x06\x12\x03w\x0b\x1f\n\
\x0c\n\x05\x04\0\x02\x07\x01\x12\x03w\x20%\n\x0c\n\x05\x04\0\x02\x07\x03\
\x12\x03w()\n,\n\x04\x04\0\x02\x08\x12\x03z\x02\"\x1a\x1f\x20Additional\
\x20API\x20documentation.\n\n\r\n\x05\x04\0\x02\x08\x04\x12\x04z\x02w*\n\
\x0c\n\x05\x04\0\x02\x08\x06\x12\x03z\x02\x0f\n\x0c\n\x05\x04\0\x02\x08\
\x01\x12\x03z\x10\x1d\n\x0c\n\x05\x04\0\x02\x08\x03\x12\x03z\x20!\n)\n\
\x04\x04\0\x02\t\x12\x03}\x02\x16\x1a\x1c\x20API\x20backend\x20configura\
tion.\n\n\r\n\x05\x04\0\x02\t\x04\x12\x04}\x02z\"\n\x0c\n\x05\x04\0\x02\
\t\x06\x12\x03}\x02\t\n\x0c\n\x05\x04\0\x02\t\x01\x12\x03}\n\x11\n\x0c\n\
\x05\x04\0\x02\t\x03\x12\x03}\x14\x15\n#\n\x04\x04\0\x02\n\x12\x04\x80\
\x01\x02\x10\x1a\x15\x20HTTP\x20configuration.\n\n\x0e\n\x05\x04\0\x02\n\
\x04\x12\x05\x80\x01\x02}\x16\n\r\n\x05\x04\0\x02\n\x06\x12\x04\x80\x01\
\x02\x06\n\r\n\x05\x04\0\x02\n\x01\x12\x04\x80\x01\x07\x0b\n\r\n\x05\x04\
\0\x02\n\x03\x12\x04\x80\x01\x0e\x0f\n$\n\x04\x04\0\x02\x0b\x12\x04\x83\
\x01\x02\x13\x1a\x16\x20Quota\x20configuration.\n\n\x0f\n\x05\x04\0\x02\
\x0b\x04\x12\x06\x83\x01\x02\x80\x01\x10\n\r\n\x05\x04\0\x02\x0b\x06\x12\
\x04\x83\x01\x02\x07\n\r\n\x05\x04\0\x02\x0b\x01\x12\x04\x83\x01\x08\r\n\
\r\n\x05\x04\0\x02\x0b\x03\x12\x04\x83\x01\x10\x12\n#\n\x04\x04\0\x02\
\x0c\x12\x04\x86\x01\x02%\x1a\x15\x20Auth\x20configuration.\n\n\x0f\n\
\x05\x04\0\x02\x0c\x04\x12\x06\x86\x01\x02\x83\x01\x13\n\r\n\x05\x04\0\
\x02\x0c\x06\x12\x04\x86\x01\x02\x10\n\r\n\x05\x04\0\x02\x0c\x01\x12\x04\
\x86\x01\x11\x1f\n\r\n\x05\x04\0\x02\x0c\x03\x12\x04\x86\x01\"$\n&\n\x04\
\x04\0\x02\r\x12\x04\x89\x01\x02\x17\x1a\x18\x20Context\x20configuration\
.\n\n\x0f\n\x05\x04\0\x02\r\x04\x12\x06\x89\x01\x02\x86\x01%\n\r\n\x05\
\x04\0\x02\r\x06\x12\x04\x89\x01\x02\t\n\r\n\x05\x04\0\x02\r\x01\x12\x04\
\x89\x01\n\x11\n\r\n\x05\x04\0\x02\r\x03\x12\x04\x89\x01\x14\x16\n@\n\
\x04\x04\0\x02\x0e\x12\x04\x8c\x01\x02\x13\x1a2\x20Configuration\x20cont\
rolling\x20usage\x20of\x20this\x20service.\n\n\x0f\n\x05\x04\0\x02\x0e\
\x04\x12\x06\x8c\x01\x02\x89\x01\x17\n\r\n\x05\x04\0\x02\x0e\x06\x12\x04\
\x8c\x01\x02\x07\n\r\n\x05\x04\0\x02\x0e\x01\x12\x04\x8c\x01\x08\r\n\r\n\
\x05\x04\0\x02\x0e\x03\x12\x04\x8c\x01\x10\x12\n\xb5\x01\n\x04\x04\0\x02\
\x0f\x12\x04\x91\x01\x02#\x1a\xa6\x01\x20Configuration\x20for\x20network\
\x20endpoints.\x20\x20If\x20this\x20is\x20empty,\x20then\x20an\x20endpoi\
nt\n\x20with\x20the\x20same\x20name\x20as\x20the\x20service\x20is\x20aut\
omatically\x20generated\x20to\x20service\x20all\n\x20defined\x20APIs.\n\
\n\r\n\x05\x04\0\x02\x0f\x04\x12\x04\x91\x01\x02\n\n\r\n\x05\x04\0\x02\
\x0f\x06\x12\x04\x91\x01\x0b\x13\n\r\n\x05\x04\0\x02\x0f\x01\x12\x04\x91\
\x01\x14\x1d\n\r\n\x05\x04\0\x02\x0f\x03\x12\x04\x91\x01\x20\"\n<\n\x04\
\x04\0\x02\x10\x12\x04\x94\x01\x02\x17\x1a.\x20Configuration\x20for\x20t\
he\x20service\x20control\x20plane.\n\n\x0f\n\x05\x04\0\x02\x10\x04\x12\
\x06\x94\x01\x02\x91\x01#\n\r\n\x05\x04\0\x02\x10\x06\x12\x04\x94\x01\
\x02\t\n\r\n\x05\x04\0\x02\x10\x01\x12\x04\x94\x01\n\x11\n\r\n\x05\x04\0\
\x02\x10\x03\x12\x04\x94\x01\x14\x16\n6\n\x04\x04\0\x02\x11\x12\x04\x97\
\x01\x02#\x1a(\x20Defines\x20the\x20logs\x20used\x20by\x20this\x20servic\
e.\n\n\r\n\x05\x04\0\x02\x11\x04\x12\x04\x97\x01\x02\n\n\r\n\x05\x04\0\
\x02\x11\x06\x12\x04\x97\x01\x0b\x18\n\r\n\x05\x04\0\x02\x11\x01\x12\x04\
\x97\x01\x19\x1d\n\r\n\x05\x04\0\x02\x11\x03\x12\x04\x97\x01\x20\"\n9\n\
\x04\x04\0\x02\x12\x12\x04\x9a\x01\x02)\x1a+\x20Defines\x20the\x20metric\
s\x20used\x20by\x20this\x20service.\n\n\r\n\x05\x04\0\x02\x12\x04\x12\
\x04\x9a\x01\x02\n\n\r\n\x05\x04\0\x02\x12\x06\x12\x04\x9a\x01\x0b\x1b\n\
\r\n\x05\x04\0\x02\x12\x01\x12\x04\x9a\x01\x1c#\n\r\n\x05\x04\0\x02\x12\
\x03\x12\x04\x9a\x01&(\n\xd5\x01\n\x04\x04\0\x02\x13\x12\x04\x9e\x01\x02\
@\x1a\xc6\x01\x20Defines\x20the\x20monitored\x20resources\x20used\x20by\
\x20this\x20service.\x20This\x20is\x20required\n\x20by\x20the\x20[Servic\
e.monitoring][google.api.Service.monitoring]\x20and\x20[Service.logging]\
[google.api.Service.logging]\x20configurations.\n\n\r\n\x05\x04\0\x02\
\x13\x04\x12\x04\x9e\x01\x02\n\n\r\n\x05\x04\0\x02\x13\x06\x12\x04\x9e\
\x01\x0b&\n\r\n\x05\x04\0\x02\x13\x01\x12\x04\x9e\x01':\n\r\n\x05\x04\0\
\x02\x13\x03\x12\x04\x9e\x01=?\n&\n\x04\x04\0\x02\x14\x12\x04\xa1\x01\
\x02\x17\x1a\x18\x20Billing\x20configuration.\n\n\x0f\n\x05\x04\0\x02\
\x14\x04\x12\x06\xa1\x01\x02\x9e\x01@\n\r\n\x05\x04\0\x02\x14\x06\x12\
\x04\xa1\x01\x02\t\n\r\n\x05\x04\0\x02\x14\x01\x12\x04\xa1\x01\n\x11\n\r\
\n\x05\x04\0\x02\x14\x03\x12\x04\xa1\x01\x14\x16\n&\n\x04\x04\0\x02\x15\
\x12\x04\xa4\x01\x02\x17\x1a\x18\x20Logging\x20configuration.\n\n\x0f\n\
\x05\x04\0\x02\x15\x04\x12\x06\xa4\x01\x02\xa1\x01\x17\n\r\n\x05\x04\0\
\x02\x15\x06\x12\x04\xa4\x01\x02\t\n\r\n\x05\x04\0\x02\x15\x01\x12\x04\
\xa4\x01\n\x11\n\r\n\x05\x04\0\x02\x15\x03\x12\x04\xa4\x01\x14\x16\n)\n\
\x04\x04\0\x02\x16\x12\x04\xa7\x01\x02\x1d\x1a\x1b\x20Monitoring\x20conf\
iguration.\n\n\x0f\n\x05\x04\0\x02\x16\x04\x12\x06\xa7\x01\x02\xa4\x01\
\x17\n\r\n\x05\x04\0\x02\x16\x06\x12\x04\xa7\x01\x02\x0c\n\r\n\x05\x04\0\
\x02\x16\x01\x12\x04\xa7\x01\r\x17\n\r\n\x05\x04\0\x02\x16\x03\x12\x04\
\xa7\x01\x1a\x1c\n/\n\x04\x04\0\x02\x17\x12\x04\xaa\x01\x02*\x1a!\x20Sys\
tem\x20parameter\x20configuration.\n\n\x0f\n\x05\x04\0\x02\x17\x04\x12\
\x06\xaa\x01\x02\xa7\x01\x1d\n\r\n\x05\x04\0\x02\x17\x06\x12\x04\xaa\x01\
\x02\x12\n\r\n\x05\x04\0\x02\x17\x01\x12\x04\xaa\x01\x13$\n\r\n\x05\x04\
\0\x02\x17\x03\x12\x04\xaa\x01')\nX\n\x04\x04\0\x02\x18\x12\x04\xad\x01\
\x02\x1e\x1aJ\x20Output\x20only.\x20The\x20source\x20information\x20for\
\x20this\x20configuration\x20if\x20available.\n\n\x0f\n\x05\x04\0\x02\
\x18\x04\x12\x06\xad\x01\x02\xaa\x01*\n\r\n\x05\x04\0\x02\x18\x06\x12\
\x04\xad\x01\x02\x0c\n\r\n\x05\x04\0\x02\x18\x01\x12\x04\xad\x01\r\x18\n\
\r\n\x05\x04\0\x02\x18\x03\x12\x04\xad\x01\x1b\x1d\n+\n\x04\x04\0\x02\
\x19\x12\x04\xb0\x01\x02\"\x1a\x1d\x20Experimental\x20configuration.\n\n\
\x0f\n\x05\x04\0\x02\x19\x04\x12\x06\xb0\x01\x02\xad\x01\x1e\n\r\n\x05\
\x04\0\x02\x19\x06\x12\x04\xb0\x01\x02\x0e\n\r\n\x05\x04\0\x02\x19\x01\
\x12\x04\xb0\x01\x0f\x1b\n\r\n\x05\x04\0\x02\x19\x03\x12\x04\xb0\x01\x1e\
!b\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()
})
}
}