blob: 397f09c2bcd592921c4abe9576f3a75a1fbf5df8 [file] [log] [blame] [edit]
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.21.12
// source: system_service.proto
package system
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type SystemServiceError_ErrorCode int32
const (
SystemServiceError_OK SystemServiceError_ErrorCode = 0
SystemServiceError_INTERNAL_ERROR SystemServiceError_ErrorCode = 1
SystemServiceError_BACKEND_REQUIRED SystemServiceError_ErrorCode = 2
SystemServiceError_LIMIT_REACHED SystemServiceError_ErrorCode = 3
)
// Enum value maps for SystemServiceError_ErrorCode.
var (
SystemServiceError_ErrorCode_name = map[int32]string{
0: "OK",
1: "INTERNAL_ERROR",
2: "BACKEND_REQUIRED",
3: "LIMIT_REACHED",
}
SystemServiceError_ErrorCode_value = map[string]int32{
"OK": 0,
"INTERNAL_ERROR": 1,
"BACKEND_REQUIRED": 2,
"LIMIT_REACHED": 3,
}
)
func (x SystemServiceError_ErrorCode) Enum() *SystemServiceError_ErrorCode {
p := new(SystemServiceError_ErrorCode)
*p = x
return p
}
func (x SystemServiceError_ErrorCode) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (SystemServiceError_ErrorCode) Descriptor() protoreflect.EnumDescriptor {
return file_system_service_proto_enumTypes[0].Descriptor()
}
func (SystemServiceError_ErrorCode) Type() protoreflect.EnumType {
return &file_system_service_proto_enumTypes[0]
}
func (x SystemServiceError_ErrorCode) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Do not use.
func (x *SystemServiceError_ErrorCode) UnmarshalJSON(b []byte) error {
num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
if err != nil {
return err
}
*x = SystemServiceError_ErrorCode(num)
return nil
}
// Deprecated: Use SystemServiceError_ErrorCode.Descriptor instead.
func (SystemServiceError_ErrorCode) EnumDescriptor() ([]byte, []int) {
return file_system_service_proto_rawDescGZIP(), []int{0, 0}
}
type SystemServiceError struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *SystemServiceError) Reset() {
*x = SystemServiceError{}
if protoimpl.UnsafeEnabled {
mi := &file_system_service_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SystemServiceError) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SystemServiceError) ProtoMessage() {}
func (x *SystemServiceError) ProtoReflect() protoreflect.Message {
mi := &file_system_service_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SystemServiceError.ProtoReflect.Descriptor instead.
func (*SystemServiceError) Descriptor() ([]byte, []int) {
return file_system_service_proto_rawDescGZIP(), []int{0}
}
type SystemStat struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Instaneous value of this stat.
Current *float64 `protobuf:"fixed64,1,opt,name=current" json:"current,omitempty"`
// Average over time, if this stat has an instaneous value.
Average1M *float64 `protobuf:"fixed64,3,opt,name=average1m" json:"average1m,omitempty"`
Average10M *float64 `protobuf:"fixed64,4,opt,name=average10m" json:"average10m,omitempty"`
// Total value, if the stat accumulates over time.
Total *float64 `protobuf:"fixed64,2,opt,name=total" json:"total,omitempty"`
// Rate over time, if this stat accumulates.
Rate1M *float64 `protobuf:"fixed64,5,opt,name=rate1m" json:"rate1m,omitempty"`
Rate10M *float64 `protobuf:"fixed64,6,opt,name=rate10m" json:"rate10m,omitempty"`
}
func (x *SystemStat) Reset() {
*x = SystemStat{}
if protoimpl.UnsafeEnabled {
mi := &file_system_service_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SystemStat) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SystemStat) ProtoMessage() {}
func (x *SystemStat) ProtoReflect() protoreflect.Message {
mi := &file_system_service_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SystemStat.ProtoReflect.Descriptor instead.
func (*SystemStat) Descriptor() ([]byte, []int) {
return file_system_service_proto_rawDescGZIP(), []int{1}
}
func (x *SystemStat) GetCurrent() float64 {
if x != nil && x.Current != nil {
return *x.Current
}
return 0
}
func (x *SystemStat) GetAverage1M() float64 {
if x != nil && x.Average1M != nil {
return *x.Average1M
}
return 0
}
func (x *SystemStat) GetAverage10M() float64 {
if x != nil && x.Average10M != nil {
return *x.Average10M
}
return 0
}
func (x *SystemStat) GetTotal() float64 {
if x != nil && x.Total != nil {
return *x.Total
}
return 0
}
func (x *SystemStat) GetRate1M() float64 {
if x != nil && x.Rate1M != nil {
return *x.Rate1M
}
return 0
}
func (x *SystemStat) GetRate10M() float64 {
if x != nil && x.Rate10M != nil {
return *x.Rate10M
}
return 0
}
type GetSystemStatsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *GetSystemStatsRequest) Reset() {
*x = GetSystemStatsRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_system_service_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetSystemStatsRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetSystemStatsRequest) ProtoMessage() {}
func (x *GetSystemStatsRequest) ProtoReflect() protoreflect.Message {
mi := &file_system_service_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetSystemStatsRequest.ProtoReflect.Descriptor instead.
func (*GetSystemStatsRequest) Descriptor() ([]byte, []int) {
return file_system_service_proto_rawDescGZIP(), []int{2}
}
type GetSystemStatsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// CPU used by this instance, in mcycles.
Cpu *SystemStat `protobuf:"bytes,1,opt,name=cpu" json:"cpu,omitempty"`
// Physical memory (RAM) used by this instance, in megabytes.
Memory *SystemStat `protobuf:"bytes,2,opt,name=memory" json:"memory,omitempty"`
}
func (x *GetSystemStatsResponse) Reset() {
*x = GetSystemStatsResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_system_service_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetSystemStatsResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetSystemStatsResponse) ProtoMessage() {}
func (x *GetSystemStatsResponse) ProtoReflect() protoreflect.Message {
mi := &file_system_service_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetSystemStatsResponse.ProtoReflect.Descriptor instead.
func (*GetSystemStatsResponse) Descriptor() ([]byte, []int) {
return file_system_service_proto_rawDescGZIP(), []int{3}
}
func (x *GetSystemStatsResponse) GetCpu() *SystemStat {
if x != nil {
return x.Cpu
}
return nil
}
func (x *GetSystemStatsResponse) GetMemory() *SystemStat {
if x != nil {
return x.Memory
}
return nil
}
type StartBackgroundRequestRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *StartBackgroundRequestRequest) Reset() {
*x = StartBackgroundRequestRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_system_service_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *StartBackgroundRequestRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*StartBackgroundRequestRequest) ProtoMessage() {}
func (x *StartBackgroundRequestRequest) ProtoReflect() protoreflect.Message {
mi := &file_system_service_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use StartBackgroundRequestRequest.ProtoReflect.Descriptor instead.
func (*StartBackgroundRequestRequest) Descriptor() ([]byte, []int) {
return file_system_service_proto_rawDescGZIP(), []int{4}
}
type StartBackgroundRequestResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Every /_ah/background request will have an X-AppEngine-BackgroundRequest
// header, whose value will be equal to this parameter, the request_id.
RequestId *string `protobuf:"bytes,1,opt,name=request_id,json=requestId" json:"request_id,omitempty"`
}
func (x *StartBackgroundRequestResponse) Reset() {
*x = StartBackgroundRequestResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_system_service_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *StartBackgroundRequestResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*StartBackgroundRequestResponse) ProtoMessage() {}
func (x *StartBackgroundRequestResponse) ProtoReflect() protoreflect.Message {
mi := &file_system_service_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use StartBackgroundRequestResponse.ProtoReflect.Descriptor instead.
func (*StartBackgroundRequestResponse) Descriptor() ([]byte, []int) {
return file_system_service_proto_rawDescGZIP(), []int{5}
}
func (x *StartBackgroundRequestResponse) GetRequestId() string {
if x != nil && x.RequestId != nil {
return *x.RequestId
}
return ""
}
var File_system_service_proto protoreflect.FileDescriptor
var file_system_service_proto_rawDesc = []byte{
0x0a, 0x14, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0c, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x67, 0x69, 0x6e,
0x65, 0x2e, 0x76, 0x32, 0x22, 0x66, 0x0a, 0x12, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x53, 0x65,
0x72, 0x76, 0x69, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x50, 0x0a, 0x09, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x4b, 0x10, 0x00, 0x12,
0x12, 0x0a, 0x0e, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x45, 0x52, 0x52, 0x4f,
0x52, 0x10, 0x01, 0x12, 0x14, 0x0a, 0x10, 0x42, 0x41, 0x43, 0x4b, 0x45, 0x4e, 0x44, 0x5f, 0x52,
0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0d, 0x4c, 0x49, 0x4d,
0x49, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x43, 0x48, 0x45, 0x44, 0x10, 0x03, 0x22, 0xac, 0x01, 0x0a,
0x0a, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63,
0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x75,
0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
0x31, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67,
0x65, 0x31, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x31, 0x30,
0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
0x31, 0x30, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01,
0x28, 0x01, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x61, 0x74,
0x65, 0x31, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x72, 0x61, 0x74, 0x65, 0x31,
0x6d, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x61, 0x74, 0x65, 0x31, 0x30, 0x6d, 0x18, 0x06, 0x20, 0x01,
0x28, 0x01, 0x52, 0x07, 0x72, 0x61, 0x74, 0x65, 0x31, 0x30, 0x6d, 0x22, 0x17, 0x0a, 0x15, 0x47,
0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x65, 0x71,
0x75, 0x65, 0x73, 0x74, 0x22, 0x76, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x79, 0x73, 0x74, 0x65,
0x6d, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a,
0x0a, 0x03, 0x63, 0x70, 0x75, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x61, 0x70,
0x70, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65,
0x6d, 0x53, 0x74, 0x61, 0x74, 0x52, 0x03, 0x63, 0x70, 0x75, 0x12, 0x30, 0x0a, 0x06, 0x6d, 0x65,
0x6d, 0x6f, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x61, 0x70, 0x70,
0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x2e, 0x76, 0x32, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d,
0x53, 0x74, 0x61, 0x74, 0x52, 0x06, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x22, 0x1f, 0x0a, 0x1d,
0x53, 0x74, 0x61, 0x72, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x3f, 0x0a,
0x1e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x42, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x42, 0x30,
0x5a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x2f, 0x76, 0x32,
0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d,
}
var (
file_system_service_proto_rawDescOnce sync.Once
file_system_service_proto_rawDescData = file_system_service_proto_rawDesc
)
func file_system_service_proto_rawDescGZIP() []byte {
file_system_service_proto_rawDescOnce.Do(func() {
file_system_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_system_service_proto_rawDescData)
})
return file_system_service_proto_rawDescData
}
var file_system_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
var file_system_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
var file_system_service_proto_goTypes = []interface{}{
(SystemServiceError_ErrorCode)(0), // 0: appengine.v2.SystemServiceError.ErrorCode
(*SystemServiceError)(nil), // 1: appengine.v2.SystemServiceError
(*SystemStat)(nil), // 2: appengine.v2.SystemStat
(*GetSystemStatsRequest)(nil), // 3: appengine.v2.GetSystemStatsRequest
(*GetSystemStatsResponse)(nil), // 4: appengine.v2.GetSystemStatsResponse
(*StartBackgroundRequestRequest)(nil), // 5: appengine.v2.StartBackgroundRequestRequest
(*StartBackgroundRequestResponse)(nil), // 6: appengine.v2.StartBackgroundRequestResponse
}
var file_system_service_proto_depIdxs = []int32{
2, // 0: appengine.v2.GetSystemStatsResponse.cpu:type_name -> appengine.v2.SystemStat
2, // 1: appengine.v2.GetSystemStatsResponse.memory:type_name -> appengine.v2.SystemStat
2, // [2:2] is the sub-list for method output_type
2, // [2:2] is the sub-list for method input_type
2, // [2:2] is the sub-list for extension type_name
2, // [2:2] is the sub-list for extension extendee
0, // [0:2] is the sub-list for field type_name
}
func init() { file_system_service_proto_init() }
func file_system_service_proto_init() {
if File_system_service_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_system_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SystemServiceError); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_system_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SystemStat); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_system_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetSystemStatsRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_system_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetSystemStatsResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_system_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StartBackgroundRequestRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_system_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StartBackgroundRequestResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_system_service_proto_rawDesc,
NumEnums: 1,
NumMessages: 6,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_system_service_proto_goTypes,
DependencyIndexes: file_system_service_proto_depIdxs,
EnumInfos: file_system_service_proto_enumTypes,
MessageInfos: file_system_service_proto_msgTypes,
}.Build()
File_system_service_proto = out.File
file_system_service_proto_rawDesc = nil
file_system_service_proto_goTypes = nil
file_system_service_proto_depIdxs = nil
}