#![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 CheckError {
pub code: CheckError_Code,
pub detail: ::std::string::String,
unknown_fields: ::protobuf::UnknownFields,
cached_size: ::protobuf::CachedSize,
}
impl CheckError {
pub fn new() -> CheckError {
::std::default::Default::default()
}
pub fn clear_code(&mut self) {
self.code = CheckError_Code::ERROR_CODE_UNSPECIFIED;
}
pub fn set_code(&mut self, v: CheckError_Code) {
self.code = v;
}
pub fn get_code(&self) -> CheckError_Code {
self.code
}
pub fn clear_detail(&mut self) {
self.detail.clear();
}
pub fn set_detail(&mut self, v: ::std::string::String) {
self.detail = v;
}
pub fn mut_detail(&mut self) -> &mut ::std::string::String {
&mut self.detail
}
pub fn take_detail(&mut self) -> ::std::string::String {
::std::mem::replace(&mut self.detail, ::std::string::String::new())
}
pub fn get_detail(&self) -> &str {
&self.detail
}
}
impl ::protobuf::Message for CheckError {
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_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.code, 1, &mut self.unknown_fields)?
},
2 => {
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.detail)?;
},
_ => {
::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.code != CheckError_Code::ERROR_CODE_UNSPECIFIED {
my_size += ::protobuf::rt::enum_size(1, self.code);
}
if !self.detail.is_empty() {
my_size += ::protobuf::rt::string_size(2, &self.detail);
}
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.code != CheckError_Code::ERROR_CODE_UNSPECIFIED {
os.write_enum(1, self.code.value())?;
}
if !self.detail.is_empty() {
os.write_string(2, &self.detail)?;
}
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() -> CheckError {
CheckError::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::ProtobufTypeEnum<CheckError_Code>>(
"code",
|m: &CheckError| { &m.code },
|m: &mut CheckError| { &mut m.code },
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
"detail",
|m: &CheckError| { &m.detail },
|m: &mut CheckError| { &mut m.detail },
));
::protobuf::reflect::MessageDescriptor::new::<CheckError>(
"CheckError",
fields,
file_descriptor_proto()
)
})
}
}
fn default_instance() -> &'static CheckError {
static mut instance: ::protobuf::lazy::Lazy<CheckError> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const CheckError,
};
unsafe {
instance.get(CheckError::new)
}
}
}
impl ::protobuf::Clear for CheckError {
fn clear(&mut self) {
self.clear_code();
self.clear_detail();
self.unknown_fields.clear();
}
}
impl ::std::fmt::Debug for CheckError {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
::protobuf::text_format::fmt(self, f)
}
}
impl ::protobuf::reflect::ProtobufValue for CheckError {
fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef {
::protobuf::reflect::ProtobufValueRef::Message(self)
}
}
#[derive(Clone,PartialEq,Eq,Debug,Hash)]
pub enum CheckError_Code {
ERROR_CODE_UNSPECIFIED = 0,
NOT_FOUND = 5,
PERMISSION_DENIED = 7,
RESOURCE_EXHAUSTED = 8,
SERVICE_NOT_ACTIVATED = 104,
BILLING_DISABLED = 107,
PROJECT_DELETED = 108,
PROJECT_INVALID = 114,
IP_ADDRESS_BLOCKED = 109,
REFERER_BLOCKED = 110,
CLIENT_APP_BLOCKED = 111,
API_KEY_INVALID = 105,
API_KEY_EXPIRED = 112,
API_KEY_NOT_FOUND = 113,
NAMESPACE_LOOKUP_UNAVAILABLE = 300,
SERVICE_STATUS_UNAVAILABLE = 301,
BILLING_STATUS_UNAVAILABLE = 302,
}
impl ::protobuf::ProtobufEnum for CheckError_Code {
fn value(&self) -> i32 {
*self as i32
}
fn from_i32(value: i32) -> ::std::option::Option<CheckError_Code> {
match value {
0 => ::std::option::Option::Some(CheckError_Code::ERROR_CODE_UNSPECIFIED),
5 => ::std::option::Option::Some(CheckError_Code::NOT_FOUND),
7 => ::std::option::Option::Some(CheckError_Code::PERMISSION_DENIED),
8 => ::std::option::Option::Some(CheckError_Code::RESOURCE_EXHAUSTED),
104 => ::std::option::Option::Some(CheckError_Code::SERVICE_NOT_ACTIVATED),
107 => ::std::option::Option::Some(CheckError_Code::BILLING_DISABLED),
108 => ::std::option::Option::Some(CheckError_Code::PROJECT_DELETED),
114 => ::std::option::Option::Some(CheckError_Code::PROJECT_INVALID),
109 => ::std::option::Option::Some(CheckError_Code::IP_ADDRESS_BLOCKED),
110 => ::std::option::Option::Some(CheckError_Code::REFERER_BLOCKED),
111 => ::std::option::Option::Some(CheckError_Code::CLIENT_APP_BLOCKED),
105 => ::std::option::Option::Some(CheckError_Code::API_KEY_INVALID),
112 => ::std::option::Option::Some(CheckError_Code::API_KEY_EXPIRED),
113 => ::std::option::Option::Some(CheckError_Code::API_KEY_NOT_FOUND),
300 => ::std::option::Option::Some(CheckError_Code::NAMESPACE_LOOKUP_UNAVAILABLE),
301 => ::std::option::Option::Some(CheckError_Code::SERVICE_STATUS_UNAVAILABLE),
302 => ::std::option::Option::Some(CheckError_Code::BILLING_STATUS_UNAVAILABLE),
_ => ::std::option::Option::None
}
}
fn values() -> &'static [Self] {
static values: &'static [CheckError_Code] = &[
CheckError_Code::ERROR_CODE_UNSPECIFIED,
CheckError_Code::NOT_FOUND,
CheckError_Code::PERMISSION_DENIED,
CheckError_Code::RESOURCE_EXHAUSTED,
CheckError_Code::SERVICE_NOT_ACTIVATED,
CheckError_Code::BILLING_DISABLED,
CheckError_Code::PROJECT_DELETED,
CheckError_Code::PROJECT_INVALID,
CheckError_Code::IP_ADDRESS_BLOCKED,
CheckError_Code::REFERER_BLOCKED,
CheckError_Code::CLIENT_APP_BLOCKED,
CheckError_Code::API_KEY_INVALID,
CheckError_Code::API_KEY_EXPIRED,
CheckError_Code::API_KEY_NOT_FOUND,
CheckError_Code::NAMESPACE_LOOKUP_UNAVAILABLE,
CheckError_Code::SERVICE_STATUS_UNAVAILABLE,
CheckError_Code::BILLING_STATUS_UNAVAILABLE,
];
values
}
fn enum_descriptor_static() -> &'static ::protobuf::reflect::EnumDescriptor {
static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::EnumDescriptor> = ::protobuf::lazy::Lazy {
lock: ::protobuf::lazy::ONCE_INIT,
ptr: 0 as *const ::protobuf::reflect::EnumDescriptor,
};
unsafe {
descriptor.get(|| {
::protobuf::reflect::EnumDescriptor::new("CheckError_Code", file_descriptor_proto())
})
}
}
}
impl ::std::marker::Copy for CheckError_Code {
}
impl ::std::default::Default for CheckError_Code {
fn default() -> Self {
CheckError_Code::ERROR_CODE_UNSPECIFIED
}
}
impl ::protobuf::reflect::ProtobufValue for CheckError_Code {
fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef {
::protobuf::reflect::ProtobufValueRef::Enum(self.descriptor())
}
}
static file_descriptor_proto_data: &'static [u8] = b"\
\n.google/api/servicecontrol/v1/check_error.proto\x12\x1cgoogle.api.serv\
icecontrol.v1\x1a\x1cgoogle/api/annotations.proto\"\x90\x04\n\nCheckErro\
r\x12A\n\x04code\x18\x01\x20\x01(\x0e2-.google.api.servicecontrol.v1.Che\
ckError.CodeR\x04code\x12\x16\n\x06detail\x18\x02\x20\x01(\tR\x06detail\
\"\xa6\x03\n\x04Code\x12\x1a\n\x16ERROR_CODE_UNSPECIFIED\x10\0\x12\r\n\t\
NOT_FOUND\x10\x05\x12\x15\n\x11PERMISSION_DENIED\x10\x07\x12\x16\n\x12RE\
SOURCE_EXHAUSTED\x10\x08\x12\x19\n\x15SERVICE_NOT_ACTIVATED\x10h\x12\x14\
\n\x10BILLING_DISABLED\x10k\x12\x13\n\x0fPROJECT_DELETED\x10l\x12\x13\n\
\x0fPROJECT_INVALID\x10r\x12\x16\n\x12IP_ADDRESS_BLOCKED\x10m\x12\x13\n\
\x0fREFERER_BLOCKED\x10n\x12\x16\n\x12CLIENT_APP_BLOCKED\x10o\x12\x13\n\
\x0fAPI_KEY_INVALID\x10i\x12\x13\n\x0fAPI_KEY_EXPIRED\x10p\x12\x15\n\x11\
API_KEY_NOT_FOUND\x10q\x12!\n\x1cNAMESPACE_LOOKUP_UNAVAILABLE\x10\xac\
\x02\x12\x1f\n\x1aSERVICE_STATUS_UNAVAILABLE\x10\xad\x02\x12\x1f\n\x1aBI\
LLING_STATUS_UNAVAILABLE\x10\xae\x02B\x84\x01\n\x20com.google.api.servic\
econtrol.v1B\x0fCheckErrorProtoP\x01ZJgoogle.golang.org/genproto/googlea\
pis/api/servicecontrol/v1;servicecontrol\xf8\x01\x01J\x8d\x1b\n\x06\x12\
\x04\x0e\0^\x01\n\xbd\x04\n\x01\x0c\x12\x03\x0e\0\x122\xb2\x04\x20Copyri\
ght\x202017\x20Google\x20Inc.\n\n\x20Licensed\x20under\x20the\x20Apache\
\x20License,\x20Version\x202.0\x20(the\x20\"License\");\n\x20you\x20may\
\x20not\x20use\x20this\x20file\x20except\x20in\x20compliance\x20with\x20\
the\x20License.\n\x20You\x20may\x20obtain\x20a\x20copy\x20of\x20the\x20L\
icense\x20at\n\n\x20\x20\x20\x20\x20http://www.apache.org/licenses/LICEN\
SE-2.0\n\n\x20Unless\x20required\x20by\x20applicable\x20law\x20or\x20agr\
eed\x20to\x20in\x20writing,\x20software\n\x20distributed\x20under\x20the\
\x20License\x20is\x20distributed\x20on\x20an\x20\"AS\x20IS\"\x20BASIS,\n\
\x20WITHOUT\x20WARRANTIES\x20OR\x20CONDITIONS\x20OF\x20ANY\x20KIND,\x20e\
ither\x20express\x20or\x20implied.\n\x20See\x20the\x20License\x20for\x20\
the\x20specific\x20language\x20governing\x20permissions\x20and\n\x20limi\
tations\x20under\x20the\x20License.\n\n\x08\n\x01\x02\x12\x03\x10\x08$\n\
\t\n\x02\x03\0\x12\x03\x12\x07%\n\x08\n\x01\x08\x12\x03\x14\0\x1f\n\x0b\
\n\x04\x08\xe7\x07\0\x12\x03\x14\0\x1f\n\x0c\n\x05\x08\xe7\x07\0\x02\x12\
\x03\x14\x07\x17\n\r\n\x06\x08\xe7\x07\0\x02\0\x12\x03\x14\x07\x17\n\x0e\
\n\x07\x08\xe7\x07\0\x02\0\x01\x12\x03\x14\x07\x17\n\x0c\n\x05\x08\xe7\
\x07\0\x03\x12\x03\x14\x1a\x1e\n\x08\n\x01\x08\x12\x03\x15\0a\n\x0b\n\
\x04\x08\xe7\x07\x01\x12\x03\x15\0a\n\x0c\n\x05\x08\xe7\x07\x01\x02\x12\
\x03\x15\x07\x11\n\r\n\x06\x08\xe7\x07\x01\x02\0\x12\x03\x15\x07\x11\n\
\x0e\n\x07\x08\xe7\x07\x01\x02\0\x01\x12\x03\x15\x07\x11\n\x0c\n\x05\x08\
\xe7\x07\x01\x07\x12\x03\x15\x14`\n\x08\n\x01\x08\x12\x03\x16\0\"\n\x0b\
\n\x04\x08\xe7\x07\x02\x12\x03\x16\0\"\n\x0c\n\x05\x08\xe7\x07\x02\x02\
\x12\x03\x16\x07\x1a\n\r\n\x06\x08\xe7\x07\x02\x02\0\x12\x03\x16\x07\x1a\
\n\x0e\n\x07\x08\xe7\x07\x02\x02\0\x01\x12\x03\x16\x07\x1a\n\x0c\n\x05\
\x08\xe7\x07\x02\x03\x12\x03\x16\x1d!\n\x08\n\x01\x08\x12\x03\x17\00\n\
\x0b\n\x04\x08\xe7\x07\x03\x12\x03\x17\00\n\x0c\n\x05\x08\xe7\x07\x03\
\x02\x12\x03\x17\x07\x1b\n\r\n\x06\x08\xe7\x07\x03\x02\0\x12\x03\x17\x07\
\x1b\n\x0e\n\x07\x08\xe7\x07\x03\x02\0\x01\x12\x03\x17\x07\x1b\n\x0c\n\
\x05\x08\xe7\x07\x03\x07\x12\x03\x17\x1e/\n\x08\n\x01\x08\x12\x03\x18\09\
\n\x0b\n\x04\x08\xe7\x07\x04\x12\x03\x18\09\n\x0c\n\x05\x08\xe7\x07\x04\
\x02\x12\x03\x18\x07\x13\n\r\n\x06\x08\xe7\x07\x04\x02\0\x12\x03\x18\x07\
\x13\n\x0e\n\x07\x08\xe7\x07\x04\x02\0\x01\x12\x03\x18\x07\x13\n\x0c\n\
\x05\x08\xe7\x07\x04\x07\x12\x03\x18\x168\n\xa8\x01\n\x02\x04\0\x12\x04\
\x1d\0^\x01\x1a\x9b\x01\x20Defines\x20the\x20errors\x20to\x20be\x20retur\
ned\x20in\n\x20[google.api.servicecontrol.v1.CheckResponse.check_errors]\
[google.api.servicecontrol.v1.CheckResponse.check_errors].\n\n\n\n\x03\
\x04\0\x01\x12\x03\x1d\x08\x12\n0\n\x04\x04\0\x04\0\x12\x04\x1f\x02W\x03\
\x1a\"\x20Error\x20codes\x20for\x20Check\x20responses.\n\n\x0c\n\x05\x04\
\0\x04\0\x01\x12\x03\x1f\x07\x0b\n7\n\x06\x04\0\x04\0\x02\0\x12\x03!\x04\
\x1f\x1a(\x20This\x20is\x20never\x20used\x20in\x20`CheckResponse`.\n\n\
\x0e\n\x07\x04\0\x04\0\x02\0\x01\x12\x03!\x04\x1a\n\x0e\n\x07\x04\0\x04\
\0\x02\0\x02\x12\x03!\x1d\x1e\na\n\x06\x04\0\x04\0\x02\x01\x12\x03%\x04\
\x12\x1aR\x20The\x20consumer's\x20project\x20id\x20was\x20not\x20found.\
\n\x20Same\x20as\x20[google.rpc.Code.NOT_FOUND][].\n\n\x0e\n\x07\x04\0\
\x04\0\x02\x01\x01\x12\x03%\x04\r\n\x0e\n\x07\x04\0\x04\0\x02\x01\x02\
\x12\x03%\x10\x11\n|\n\x06\x04\0\x04\0\x02\x02\x12\x03)\x04\x1a\x1am\x20\
The\x20consumer\x20doesn't\x20have\x20access\x20to\x20the\x20specified\
\x20resource.\n\x20Same\x20as\x20[google.rpc.Code.PERMISSION_DENIED][].\
\n\n\x0e\n\x07\x04\0\x04\0\x02\x02\x01\x12\x03)\x04\x15\n\x0e\n\x07\x04\
\0\x04\0\x02\x02\x02\x12\x03)\x18\x19\nT\n\x06\x04\0\x04\0\x02\x03\x12\
\x03,\x04\x1b\x1aE\x20Quota\x20check\x20failed.\x20Same\x20as\x20[google\
.rpc.Code.RESOURCE_EXHAUSTED][].\n\n\x0e\n\x07\x04\0\x04\0\x02\x03\x01\
\x12\x03,\x04\x16\n\x0e\n\x07\x04\0\x04\0\x02\x03\x02\x12\x03,\x19\x1a\n\
;\n\x06\x04\0\x04\0\x02\x04\x12\x03/\x04\x20\x1a,\x20The\x20consumer\x20\
hasn't\x20activated\x20the\x20service.\n\n\x0e\n\x07\x04\0\x04\0\x02\x04\
\x01\x12\x03/\x04\x19\n\x0e\n\x07\x04\0\x04\0\x02\x04\x02\x12\x03/\x1c\
\x1f\nT\n\x06\x04\0\x04\0\x02\x05\x12\x032\x04\x1b\x1aE\x20The\x20consum\
er\x20cannot\x20access\x20the\x20service\x20because\x20billing\x20is\x20\
disabled.\n\n\x0e\n\x07\x04\0\x04\0\x02\x05\x01\x12\x032\x04\x14\n\x0e\n\
\x07\x04\0\x04\0\x02\x05\x02\x12\x032\x17\x1a\nS\n\x06\x04\0\x04\0\x02\
\x06\x12\x035\x04\x1a\x1aD\x20The\x20consumer's\x20project\x20has\x20bee\
n\x20marked\x20as\x20deleted\x20(soft\x20deletion).\n\n\x0e\n\x07\x04\0\
\x04\0\x02\x06\x01\x12\x035\x04\x13\n\x0e\n\x07\x04\0\x04\0\x02\x06\x02\
\x12\x035\x16\x19\nX\n\x06\x04\0\x04\0\x02\x07\x12\x038\x04\x1a\x1aI\x20\
The\x20consumer's\x20project\x20number\x20or\x20id\x20does\x20not\x20rep\
resent\x20a\x20valid\x20project.\n\n\x0e\n\x07\x04\0\x04\0\x02\x07\x01\
\x12\x038\x04\x13\n\x0e\n\x07\x04\0\x04\0\x02\x07\x02\x12\x038\x16\x19\n\
^\n\x06\x04\0\x04\0\x02\x08\x12\x03<\x04\x1d\x1aO\x20The\x20IP\x20addres\
s\x20of\x20the\x20consumer\x20is\x20invalid\x20for\x20the\x20specific\
\x20consumer\n\x20project.\n\n\x0e\n\x07\x04\0\x04\0\x02\x08\x01\x12\x03\
<\x04\x16\n\x0e\n\x07\x04\0\x04\0\x02\x08\x02\x12\x03<\x19\x1c\nk\n\x06\
\x04\0\x04\0\x02\t\x12\x03@\x04\x1a\x1a\\\x20The\x20referer\x20address\
\x20of\x20the\x20consumer\x20request\x20is\x20invalid\x20for\x20the\x20s\
pecific\n\x20consumer\x20project.\n\n\x0e\n\x07\x04\0\x04\0\x02\t\x01\
\x12\x03@\x04\x13\n\x0e\n\x07\x04\0\x04\0\x02\t\x02\x12\x03@\x16\x19\nn\
\n\x06\x04\0\x04\0\x02\n\x12\x03D\x04\x1d\x1a_\x20The\x20client\x20appli\
cation\x20of\x20the\x20consumer\x20request\x20is\x20invalid\x20for\x20th\
e\n\x20specific\x20consumer\x20project.\n\n\x0e\n\x07\x04\0\x04\0\x02\n\
\x01\x12\x03D\x04\x16\n\x0e\n\x07\x04\0\x04\0\x02\n\x02\x12\x03D\x19\x1c\
\n3\n\x06\x04\0\x04\0\x02\x0b\x12\x03G\x04\x1a\x1a$\x20The\x20consumer's\
\x20API\x20key\x20is\x20invalid.\n\n\x0e\n\x07\x04\0\x04\0\x02\x0b\x01\
\x12\x03G\x04\x13\n\x0e\n\x07\x04\0\x04\0\x02\x0b\x02\x12\x03G\x16\x19\n\
4\n\x06\x04\0\x04\0\x02\x0c\x12\x03J\x04\x1a\x1a%\x20The\x20consumer's\
\x20API\x20Key\x20has\x20expired.\n\n\x0e\n\x07\x04\0\x04\0\x02\x0c\x01\
\x12\x03J\x04\x13\n\x0e\n\x07\x04\0\x04\0\x02\x0c\x02\x12\x03J\x16\x19\n\
G\n\x06\x04\0\x04\0\x02\r\x12\x03M\x04\x1c\x1a8\x20The\x20consumer's\x20\
API\x20Key\x20was\x20not\x20found\x20in\x20config\x20record.\n\n\x0e\n\
\x07\x04\0\x04\0\x02\r\x01\x12\x03M\x04\x15\n\x0e\n\x07\x04\0\x04\0\x02\
\r\x02\x12\x03M\x18\x1b\nT\n\x06\x04\0\x04\0\x02\x0e\x12\x03P\x04'\x1aE\
\x20The\x20backend\x20server\x20for\x20looking\x20up\x20project\x20id/nu\
mber\x20is\x20unavailable.\n\n\x0e\n\x07\x04\0\x04\0\x02\x0e\x01\x12\x03\
P\x04\x20\n\x0e\n\x07\x04\0\x04\0\x02\x0e\x02\x12\x03P#&\nO\n\x06\x04\0\
\x04\0\x02\x0f\x12\x03S\x04%\x1a@\x20The\x20backend\x20server\x20for\x20\
checking\x20service\x20status\x20is\x20unavailable.\n\n\x0e\n\x07\x04\0\
\x04\0\x02\x0f\x01\x12\x03S\x04\x1e\n\x0e\n\x07\x04\0\x04\0\x02\x0f\x02\
\x12\x03S!$\nO\n\x06\x04\0\x04\0\x02\x10\x12\x03V\x04%\x1a@\x20The\x20ba\
ckend\x20server\x20for\x20checking\x20billing\x20status\x20is\x20unavail\
able.\n\n\x0e\n\x07\x04\0\x04\0\x02\x10\x01\x12\x03V\x04\x1e\n\x0e\n\x07\
\x04\0\x04\0\x02\x10\x02\x12\x03V!$\n\x1e\n\x04\x04\0\x02\0\x12\x03Z\x02\
\x10\x1a\x11\x20The\x20error\x20code.\n\n\r\n\x05\x04\0\x02\0\x04\x12\
\x04Z\x02W\x03\n\x0c\n\x05\x04\0\x02\0\x06\x12\x03Z\x02\x06\n\x0c\n\x05\
\x04\0\x02\0\x01\x12\x03Z\x07\x0b\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03Z\
\x0e\x0f\nP\n\x04\x04\0\x02\x01\x12\x03]\x02\x14\x1aC\x20Free-form\x20te\
xt\x20providing\x20details\x20on\x20the\x20error\x20cause\x20of\x20the\
\x20error.\n\n\r\n\x05\x04\0\x02\x01\x04\x12\x04]\x02Z\x10\n\x0c\n\x05\
\x04\0\x02\x01\x05\x12\x03]\x02\x08\n\x0c\n\x05\x04\0\x02\x01\x01\x12\
\x03]\t\x0f\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03]\x12\x13b\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()
})
}
}