1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package service
22
23 import (
24 reflect "reflect"
25 sync "sync"
26
27 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
28 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
29 timestamppb "google.golang.org/protobuf/types/known/timestamppb"
30 )
31
32 const (
33
34 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
35
36 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
37 )
38
39
40 type OperationMetadata_State int32
41
42 const (
43
44 OperationMetadata_STATE_UNSPECIFIED OperationMetadata_State = 0
45
46 OperationMetadata_PENDING OperationMetadata_State = 1
47
48 OperationMetadata_RUNNING OperationMetadata_State = 2
49
50 OperationMetadata_SUCCESSFUL OperationMetadata_State = 3
51
52 OperationMetadata_FAILED OperationMetadata_State = 4
53 )
54
55
56 var (
57 OperationMetadata_State_name = map[int32]string{
58 0: "STATE_UNSPECIFIED",
59 1: "PENDING",
60 2: "RUNNING",
61 3: "SUCCESSFUL",
62 4: "FAILED",
63 }
64 OperationMetadata_State_value = map[string]int32{
65 "STATE_UNSPECIFIED": 0,
66 "PENDING": 1,
67 "RUNNING": 2,
68 "SUCCESSFUL": 3,
69 "FAILED": 4,
70 }
71 )
72
73 func (x OperationMetadata_State) Enum() *OperationMetadata_State {
74 p := new(OperationMetadata_State)
75 *p = x
76 return p
77 }
78
79 func (x OperationMetadata_State) String() string {
80 return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
81 }
82
83 func (OperationMetadata_State) Descriptor() protoreflect.EnumDescriptor {
84 return file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_enumTypes[0].Descriptor()
85 }
86
87 func (OperationMetadata_State) Type() protoreflect.EnumType {
88 return &file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_enumTypes[0]
89 }
90
91 func (x OperationMetadata_State) Number() protoreflect.EnumNumber {
92 return protoreflect.EnumNumber(x)
93 }
94
95
96 func (OperationMetadata_State) EnumDescriptor() ([]byte, []int) {
97 return file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescGZIP(), []int{0, 0}
98 }
99
100
101 type OperationMetadata_Type int32
102
103 const (
104
105 OperationMetadata_TYPE_UNSPECIFIED OperationMetadata_Type = 0
106
107 OperationMetadata_CREATE OperationMetadata_Type = 1
108
109 OperationMetadata_DELETE OperationMetadata_Type = 2
110
111 OperationMetadata_UPDATE OperationMetadata_Type = 3
112
113 OperationMetadata_CHECK OperationMetadata_Type = 4
114
115 OperationMetadata_SAVE_SNAPSHOT OperationMetadata_Type = 5
116
117 OperationMetadata_LOAD_SNAPSHOT OperationMetadata_Type = 6
118 )
119
120
121 var (
122 OperationMetadata_Type_name = map[int32]string{
123 0: "TYPE_UNSPECIFIED",
124 1: "CREATE",
125 2: "DELETE",
126 3: "UPDATE",
127 4: "CHECK",
128 5: "SAVE_SNAPSHOT",
129 6: "LOAD_SNAPSHOT",
130 }
131 OperationMetadata_Type_value = map[string]int32{
132 "TYPE_UNSPECIFIED": 0,
133 "CREATE": 1,
134 "DELETE": 2,
135 "UPDATE": 3,
136 "CHECK": 4,
137 "SAVE_SNAPSHOT": 5,
138 "LOAD_SNAPSHOT": 6,
139 }
140 )
141
142 func (x OperationMetadata_Type) Enum() *OperationMetadata_Type {
143 p := new(OperationMetadata_Type)
144 *p = x
145 return p
146 }
147
148 func (x OperationMetadata_Type) String() string {
149 return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
150 }
151
152 func (OperationMetadata_Type) Descriptor() protoreflect.EnumDescriptor {
153 return file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_enumTypes[1].Descriptor()
154 }
155
156 func (OperationMetadata_Type) Type() protoreflect.EnumType {
157 return &file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_enumTypes[1]
158 }
159
160 func (x OperationMetadata_Type) Number() protoreflect.EnumNumber {
161 return protoreflect.EnumNumber(x)
162 }
163
164
165 func (OperationMetadata_Type) EnumDescriptor() ([]byte, []int) {
166 return file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescGZIP(), []int{0, 1}
167 }
168
169
170 type OperationMetadata struct {
171 state protoimpl.MessageState
172 sizeCache protoimpl.SizeCache
173 unknownFields protoimpl.UnknownFields
174
175
176 State OperationMetadata_State `protobuf:"varint,1,opt,name=state,proto3,enum=google.cloud.orchestration.airflow.service.v1beta1.OperationMetadata_State" json:"state,omitempty"`
177
178 OperationType OperationMetadata_Type `protobuf:"varint,2,opt,name=operation_type,json=operationType,proto3,enum=google.cloud.orchestration.airflow.service.v1beta1.OperationMetadata_Type" json:"operation_type,omitempty"`
179
180
181 Resource string `protobuf:"bytes,3,opt,name=resource,proto3" json:"resource,omitempty"`
182
183 ResourceUuid string `protobuf:"bytes,4,opt,name=resource_uuid,json=resourceUuid,proto3" json:"resource_uuid,omitempty"`
184
185 CreateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
186
187
188 EndTime *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
189 }
190
191 func (x *OperationMetadata) Reset() {
192 *x = OperationMetadata{}
193 if protoimpl.UnsafeEnabled {
194 mi := &file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_msgTypes[0]
195 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
196 ms.StoreMessageInfo(mi)
197 }
198 }
199
200 func (x *OperationMetadata) String() string {
201 return protoimpl.X.MessageStringOf(x)
202 }
203
204 func (*OperationMetadata) ProtoMessage() {}
205
206 func (x *OperationMetadata) ProtoReflect() protoreflect.Message {
207 mi := &file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_msgTypes[0]
208 if protoimpl.UnsafeEnabled && x != nil {
209 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
210 if ms.LoadMessageInfo() == nil {
211 ms.StoreMessageInfo(mi)
212 }
213 return ms
214 }
215 return mi.MessageOf(x)
216 }
217
218
219 func (*OperationMetadata) Descriptor() ([]byte, []int) {
220 return file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescGZIP(), []int{0}
221 }
222
223 func (x *OperationMetadata) GetState() OperationMetadata_State {
224 if x != nil {
225 return x.State
226 }
227 return OperationMetadata_STATE_UNSPECIFIED
228 }
229
230 func (x *OperationMetadata) GetOperationType() OperationMetadata_Type {
231 if x != nil {
232 return x.OperationType
233 }
234 return OperationMetadata_TYPE_UNSPECIFIED
235 }
236
237 func (x *OperationMetadata) GetResource() string {
238 if x != nil {
239 return x.Resource
240 }
241 return ""
242 }
243
244 func (x *OperationMetadata) GetResourceUuid() string {
245 if x != nil {
246 return x.ResourceUuid
247 }
248 return ""
249 }
250
251 func (x *OperationMetadata) GetCreateTime() *timestamppb.Timestamp {
252 if x != nil {
253 return x.CreateTime
254 }
255 return nil
256 }
257
258 func (x *OperationMetadata) GetEndTime() *timestamppb.Timestamp {
259 if x != nil {
260 return x.EndTime
261 }
262 return nil
263 }
264
265 var File_google_cloud_orchestration_airflow_service_v1beta1_operations_proto protoreflect.FileDescriptor
266
267 var file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDesc = []byte{
268 0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x6f,
269 0x72, 0x63, 0x68, 0x65, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x69, 0x72,
270 0x66, 0x6c, 0x6f, 0x77, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x76, 0x31, 0x62,
271 0x65, 0x74, 0x61, 0x31, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
272 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c,
273 0x6f, 0x75, 0x64, 0x2e, 0x6f, 0x72, 0x63, 0x68, 0x65, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f,
274 0x6e, 0x2e, 0x61, 0x69, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
275 0x65, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
276 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73,
277 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe7, 0x04, 0x0a, 0x11, 0x4f,
278 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
279 0x12, 0x61, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
280 0x4b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x6f,
281 0x72, 0x63, 0x68, 0x65, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x61, 0x69, 0x72,
282 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x62,
283 0x65, 0x74, 0x61, 0x31, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65,
284 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74,
285 0x61, 0x74, 0x65, 0x12, 0x71, 0x0a, 0x0e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
286 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f,
287 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x6f, 0x72, 0x63, 0x68, 0x65,
288 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x61, 0x69, 0x72, 0x66, 0x6c, 0x6f, 0x77,
289 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31,
290 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61,
291 0x74, 0x61, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
292 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72,
293 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72,
294 0x63, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x75,
295 0x75, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75,
296 0x72, 0x63, 0x65, 0x55, 0x75, 0x69, 0x64, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74,
297 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
298 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
299 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
300 0x54, 0x69, 0x6d, 0x65, 0x12, 0x35, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65,
301 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
302 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
303 0x6d, 0x70, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x54, 0x0a, 0x05, 0x53,
304 0x74, 0x61, 0x74, 0x65, 0x12, 0x15, 0x0a, 0x11, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e,
305 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x50,
306 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x55, 0x4e, 0x4e,
307 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x53, 0x55, 0x43, 0x43, 0x45, 0x53, 0x53,
308 0x46, 0x55, 0x4c, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10,
309 0x04, 0x22, 0x71, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x10, 0x54, 0x59, 0x50,
310 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
311 0x0a, 0x0a, 0x06, 0x43, 0x52, 0x45, 0x41, 0x54, 0x45, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x44,
312 0x45, 0x4c, 0x45, 0x54, 0x45, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x55, 0x50, 0x44, 0x41, 0x54,
313 0x45, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x43, 0x48, 0x45, 0x43, 0x4b, 0x10, 0x04, 0x12, 0x11,
314 0x0a, 0x0d, 0x53, 0x41, 0x56, 0x45, 0x5f, 0x53, 0x4e, 0x41, 0x50, 0x53, 0x48, 0x4f, 0x54, 0x10,
315 0x05, 0x12, 0x11, 0x0a, 0x0d, 0x4c, 0x4f, 0x41, 0x44, 0x5f, 0x53, 0x4e, 0x41, 0x50, 0x53, 0x48,
316 0x4f, 0x54, 0x10, 0x06, 0x42, 0xa6, 0x01, 0x0a, 0x36, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
317 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x6f, 0x72, 0x63, 0x68, 0x65, 0x73,
318 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x61, 0x69, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2e,
319 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x42,
320 0x0f, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f,
321 0x50, 0x01, 0x5a, 0x59, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
322 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
323 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f,
324 0x6f, 0x72, 0x63, 0x68, 0x65, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x69,
325 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x76, 0x31,
326 0x62, 0x65, 0x74, 0x61, 0x31, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x62, 0x06, 0x70,
327 0x72, 0x6f, 0x74, 0x6f, 0x33,
328 }
329
330 var (
331 file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescOnce sync.Once
332 file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescData = file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDesc
333 )
334
335 func file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescGZIP() []byte {
336 file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescOnce.Do(func() {
337 file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescData)
338 })
339 return file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDescData
340 }
341
342 var file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
343 var file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
344 var file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_goTypes = []interface{}{
345 (OperationMetadata_State)(0),
346 (OperationMetadata_Type)(0),
347 (*OperationMetadata)(nil),
348 (*timestamppb.Timestamp)(nil),
349 }
350 var file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_depIdxs = []int32{
351 0,
352 1,
353 3,
354 3,
355 4,
356 4,
357 4,
358 4,
359 0,
360 }
361
362 func init() { file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_init() }
363 func file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_init() {
364 if File_google_cloud_orchestration_airflow_service_v1beta1_operations_proto != nil {
365 return
366 }
367 if !protoimpl.UnsafeEnabled {
368 file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
369 switch v := v.(*OperationMetadata); i {
370 case 0:
371 return &v.state
372 case 1:
373 return &v.sizeCache
374 case 2:
375 return &v.unknownFields
376 default:
377 return nil
378 }
379 }
380 }
381 type x struct{}
382 out := protoimpl.TypeBuilder{
383 File: protoimpl.DescBuilder{
384 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
385 RawDescriptor: file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDesc,
386 NumEnums: 2,
387 NumMessages: 1,
388 NumExtensions: 0,
389 NumServices: 0,
390 },
391 GoTypes: file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_goTypes,
392 DependencyIndexes: file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_depIdxs,
393 EnumInfos: file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_enumTypes,
394 MessageInfos: file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_msgTypes,
395 }.Build()
396 File_google_cloud_orchestration_airflow_service_v1beta1_operations_proto = out.File
397 file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_rawDesc = nil
398 file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_goTypes = nil
399 file_google_cloud_orchestration_airflow_service_v1beta1_operations_proto_depIdxs = nil
400 }
401
View as plain text