1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package appengine
22
23 import (
24 reflect "reflect"
25 sync "sync"
26
27 _ "google.golang.org/genproto/googleapis/api/annotations"
28 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
29 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
30 )
31
32 const (
33
34 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
35
36 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
37 )
38
39
40 type LocationMetadata struct {
41 state protoimpl.MessageState
42 sizeCache protoimpl.SizeCache
43 unknownFields protoimpl.UnknownFields
44
45
46
47
48 StandardEnvironmentAvailable bool `protobuf:"varint,2,opt,name=standard_environment_available,json=standardEnvironmentAvailable,proto3" json:"standard_environment_available,omitempty"`
49
50
51
52 FlexibleEnvironmentAvailable bool `protobuf:"varint,4,opt,name=flexible_environment_available,json=flexibleEnvironmentAvailable,proto3" json:"flexible_environment_available,omitempty"`
53
54
55 SearchApiAvailable bool `protobuf:"varint,6,opt,name=search_api_available,json=searchApiAvailable,proto3" json:"search_api_available,omitempty"`
56 }
57
58 func (x *LocationMetadata) Reset() {
59 *x = LocationMetadata{}
60 if protoimpl.UnsafeEnabled {
61 mi := &file_google_appengine_v1beta_location_proto_msgTypes[0]
62 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
63 ms.StoreMessageInfo(mi)
64 }
65 }
66
67 func (x *LocationMetadata) String() string {
68 return protoimpl.X.MessageStringOf(x)
69 }
70
71 func (*LocationMetadata) ProtoMessage() {}
72
73 func (x *LocationMetadata) ProtoReflect() protoreflect.Message {
74 mi := &file_google_appengine_v1beta_location_proto_msgTypes[0]
75 if protoimpl.UnsafeEnabled && x != nil {
76 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
77 if ms.LoadMessageInfo() == nil {
78 ms.StoreMessageInfo(mi)
79 }
80 return ms
81 }
82 return mi.MessageOf(x)
83 }
84
85
86 func (*LocationMetadata) Descriptor() ([]byte, []int) {
87 return file_google_appengine_v1beta_location_proto_rawDescGZIP(), []int{0}
88 }
89
90 func (x *LocationMetadata) GetStandardEnvironmentAvailable() bool {
91 if x != nil {
92 return x.StandardEnvironmentAvailable
93 }
94 return false
95 }
96
97 func (x *LocationMetadata) GetFlexibleEnvironmentAvailable() bool {
98 if x != nil {
99 return x.FlexibleEnvironmentAvailable
100 }
101 return false
102 }
103
104 func (x *LocationMetadata) GetSearchApiAvailable() bool {
105 if x != nil {
106 return x.SearchApiAvailable
107 }
108 return false
109 }
110
111 var File_google_appengine_v1beta_location_proto protoreflect.FileDescriptor
112
113 var file_google_appengine_v1beta_location_proto_rawDesc = []byte{
114 0x0a, 0x26, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x67, 0x69,
115 0x6e, 0x65, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
116 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
117 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74,
118 0x61, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69,
119 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
120 0x74, 0x6f, 0x22, 0xd5, 0x01, 0x0a, 0x10, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d,
121 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x44, 0x0a, 0x1e, 0x73, 0x74, 0x61, 0x6e, 0x64,
122 0x61, 0x72, 0x64, 0x5f, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f,
123 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
124 0x1c, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
125 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x44, 0x0a,
126 0x1e, 0x66, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f,
127 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x18,
128 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1c, 0x66, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65, 0x45,
129 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61,
130 0x62, 0x6c, 0x65, 0x12, 0x35, 0x0a, 0x14, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x70,
131 0x69, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
132 0x08, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x70,
133 0x69, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x42, 0xd3, 0x01, 0x0a, 0x1b, 0x63,
134 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x67,
135 0x69, 0x6e, 0x65, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x42, 0x0d, 0x4c, 0x6f, 0x63, 0x61,
136 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x40, 0x67, 0x6f, 0x6f,
137 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
138 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
139 0x69, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x2f, 0x76, 0x31, 0x62,
140 0x65, 0x74, 0x61, 0x3b, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0xaa, 0x02, 0x1d,
141 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x41, 0x70, 0x70,
142 0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x2e, 0x56, 0x31, 0x42, 0x65, 0x74, 0x61, 0xca, 0x02, 0x1d,
143 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x5c, 0x41, 0x70, 0x70,
144 0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5c, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61, 0xea, 0x02, 0x20,
145 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x3a, 0x3a, 0x41,
146 0x70, 0x70, 0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x65, 0x74, 0x61,
147 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
148 }
149
150 var (
151 file_google_appengine_v1beta_location_proto_rawDescOnce sync.Once
152 file_google_appengine_v1beta_location_proto_rawDescData = file_google_appengine_v1beta_location_proto_rawDesc
153 )
154
155 func file_google_appengine_v1beta_location_proto_rawDescGZIP() []byte {
156 file_google_appengine_v1beta_location_proto_rawDescOnce.Do(func() {
157 file_google_appengine_v1beta_location_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_appengine_v1beta_location_proto_rawDescData)
158 })
159 return file_google_appengine_v1beta_location_proto_rawDescData
160 }
161
162 var file_google_appengine_v1beta_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
163 var file_google_appengine_v1beta_location_proto_goTypes = []interface{}{
164 (*LocationMetadata)(nil),
165 }
166 var file_google_appengine_v1beta_location_proto_depIdxs = []int32{
167 0,
168 0,
169 0,
170 0,
171 0,
172 }
173
174 func init() { file_google_appengine_v1beta_location_proto_init() }
175 func file_google_appengine_v1beta_location_proto_init() {
176 if File_google_appengine_v1beta_location_proto != nil {
177 return
178 }
179 if !protoimpl.UnsafeEnabled {
180 file_google_appengine_v1beta_location_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
181 switch v := v.(*LocationMetadata); i {
182 case 0:
183 return &v.state
184 case 1:
185 return &v.sizeCache
186 case 2:
187 return &v.unknownFields
188 default:
189 return nil
190 }
191 }
192 }
193 type x struct{}
194 out := protoimpl.TypeBuilder{
195 File: protoimpl.DescBuilder{
196 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
197 RawDescriptor: file_google_appengine_v1beta_location_proto_rawDesc,
198 NumEnums: 0,
199 NumMessages: 1,
200 NumExtensions: 0,
201 NumServices: 0,
202 },
203 GoTypes: file_google_appengine_v1beta_location_proto_goTypes,
204 DependencyIndexes: file_google_appengine_v1beta_location_proto_depIdxs,
205 MessageInfos: file_google_appengine_v1beta_location_proto_msgTypes,
206 }.Build()
207 File_google_appengine_v1beta_location_proto = out.File
208 file_google_appengine_v1beta_location_proto_rawDesc = nil
209 file_google_appengine_v1beta_location_proto_goTypes = nil
210 file_google_appengine_v1beta_location_proto_depIdxs = nil
211 }
212
View as plain text