1// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: google/cloud/automl/v1beta1/operations.proto
3
4package automl
5
6import (
7	fmt "fmt"
8	math "math"
9
10	proto "github.com/golang/protobuf/proto"
11	_ "github.com/golang/protobuf/ptypes/empty"
12	timestamp "github.com/golang/protobuf/ptypes/timestamp"
13	_ "google.golang.org/genproto/googleapis/api/annotations"
14	status "google.golang.org/genproto/googleapis/rpc/status"
15)
16
17// Reference imports to suppress errors if they are not otherwise used.
18var _ = proto.Marshal
19var _ = fmt.Errorf
20var _ = math.Inf
21
22// This is a compile-time assertion to ensure that this generated file
23// is compatible with the proto package it is being compiled against.
24// A compilation error at this line likely means your copy of the
25// proto package needs to be updated.
26const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
27
28// Metadata used across all long running operations returned by AutoML API.
29type OperationMetadata struct {
30	// Ouptut only. Details of specific operation. Even if this field is empty,
31	// the presence allows to distinguish different types of operations.
32	//
33	// Types that are valid to be assigned to Details:
34	//	*OperationMetadata_DeleteDetails
35	//	*OperationMetadata_DeployModelDetails
36	//	*OperationMetadata_UndeployModelDetails
37	//	*OperationMetadata_CreateModelDetails
38	//	*OperationMetadata_ImportDataDetails
39	//	*OperationMetadata_BatchPredictDetails
40	//	*OperationMetadata_ExportDataDetails
41	//	*OperationMetadata_ExportModelDetails
42	//	*OperationMetadata_ExportEvaluatedExamplesDetails
43	Details isOperationMetadata_Details `protobuf_oneof:"details"`
44	// Output only. Progress of operation. Range: [0, 100].
45	// Not used currently.
46	ProgressPercent int32 `protobuf:"varint,13,opt,name=progress_percent,json=progressPercent,proto3" json:"progress_percent,omitempty"`
47	// Output only. Partial failures encountered.
48	// E.g. single files that couldn't be read.
49	// This field should never exceed 20 entries.
50	// Status details field will contain standard GCP error details.
51	PartialFailures []*status.Status `protobuf:"bytes,2,rep,name=partial_failures,json=partialFailures,proto3" json:"partial_failures,omitempty"`
52	// Output only. Time when the operation was created.
53	CreateTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
54	// Output only. Time when the operation was updated for the last time.
55	UpdateTime           *timestamp.Timestamp `protobuf:"bytes,4,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
56	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
57	XXX_unrecognized     []byte               `json:"-"`
58	XXX_sizecache        int32                `json:"-"`
59}
60
61func (m *OperationMetadata) Reset()         { *m = OperationMetadata{} }
62func (m *OperationMetadata) String() string { return proto.CompactTextString(m) }
63func (*OperationMetadata) ProtoMessage()    {}
64func (*OperationMetadata) Descriptor() ([]byte, []int) {
65	return fileDescriptor_07afd87baa9bfac3, []int{0}
66}
67
68func (m *OperationMetadata) XXX_Unmarshal(b []byte) error {
69	return xxx_messageInfo_OperationMetadata.Unmarshal(m, b)
70}
71func (m *OperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
72	return xxx_messageInfo_OperationMetadata.Marshal(b, m, deterministic)
73}
74func (m *OperationMetadata) XXX_Merge(src proto.Message) {
75	xxx_messageInfo_OperationMetadata.Merge(m, src)
76}
77func (m *OperationMetadata) XXX_Size() int {
78	return xxx_messageInfo_OperationMetadata.Size(m)
79}
80func (m *OperationMetadata) XXX_DiscardUnknown() {
81	xxx_messageInfo_OperationMetadata.DiscardUnknown(m)
82}
83
84var xxx_messageInfo_OperationMetadata proto.InternalMessageInfo
85
86type isOperationMetadata_Details interface {
87	isOperationMetadata_Details()
88}
89
90type OperationMetadata_DeleteDetails struct {
91	DeleteDetails *DeleteOperationMetadata `protobuf:"bytes,8,opt,name=delete_details,json=deleteDetails,proto3,oneof"`
92}
93
94type OperationMetadata_DeployModelDetails struct {
95	DeployModelDetails *DeployModelOperationMetadata `protobuf:"bytes,24,opt,name=deploy_model_details,json=deployModelDetails,proto3,oneof"`
96}
97
98type OperationMetadata_UndeployModelDetails struct {
99	UndeployModelDetails *UndeployModelOperationMetadata `protobuf:"bytes,25,opt,name=undeploy_model_details,json=undeployModelDetails,proto3,oneof"`
100}
101
102type OperationMetadata_CreateModelDetails struct {
103	CreateModelDetails *CreateModelOperationMetadata `protobuf:"bytes,10,opt,name=create_model_details,json=createModelDetails,proto3,oneof"`
104}
105
106type OperationMetadata_ImportDataDetails struct {
107	ImportDataDetails *ImportDataOperationMetadata `protobuf:"bytes,15,opt,name=import_data_details,json=importDataDetails,proto3,oneof"`
108}
109
110type OperationMetadata_BatchPredictDetails struct {
111	BatchPredictDetails *BatchPredictOperationMetadata `protobuf:"bytes,16,opt,name=batch_predict_details,json=batchPredictDetails,proto3,oneof"`
112}
113
114type OperationMetadata_ExportDataDetails struct {
115	ExportDataDetails *ExportDataOperationMetadata `protobuf:"bytes,21,opt,name=export_data_details,json=exportDataDetails,proto3,oneof"`
116}
117
118type OperationMetadata_ExportModelDetails struct {
119	ExportModelDetails *ExportModelOperationMetadata `protobuf:"bytes,22,opt,name=export_model_details,json=exportModelDetails,proto3,oneof"`
120}
121
122type OperationMetadata_ExportEvaluatedExamplesDetails struct {
123	ExportEvaluatedExamplesDetails *ExportEvaluatedExamplesOperationMetadata `protobuf:"bytes,26,opt,name=export_evaluated_examples_details,json=exportEvaluatedExamplesDetails,proto3,oneof"`
124}
125
126func (*OperationMetadata_DeleteDetails) isOperationMetadata_Details() {}
127
128func (*OperationMetadata_DeployModelDetails) isOperationMetadata_Details() {}
129
130func (*OperationMetadata_UndeployModelDetails) isOperationMetadata_Details() {}
131
132func (*OperationMetadata_CreateModelDetails) isOperationMetadata_Details() {}
133
134func (*OperationMetadata_ImportDataDetails) isOperationMetadata_Details() {}
135
136func (*OperationMetadata_BatchPredictDetails) isOperationMetadata_Details() {}
137
138func (*OperationMetadata_ExportDataDetails) isOperationMetadata_Details() {}
139
140func (*OperationMetadata_ExportModelDetails) isOperationMetadata_Details() {}
141
142func (*OperationMetadata_ExportEvaluatedExamplesDetails) isOperationMetadata_Details() {}
143
144func (m *OperationMetadata) GetDetails() isOperationMetadata_Details {
145	if m != nil {
146		return m.Details
147	}
148	return nil
149}
150
151func (m *OperationMetadata) GetDeleteDetails() *DeleteOperationMetadata {
152	if x, ok := m.GetDetails().(*OperationMetadata_DeleteDetails); ok {
153		return x.DeleteDetails
154	}
155	return nil
156}
157
158func (m *OperationMetadata) GetDeployModelDetails() *DeployModelOperationMetadata {
159	if x, ok := m.GetDetails().(*OperationMetadata_DeployModelDetails); ok {
160		return x.DeployModelDetails
161	}
162	return nil
163}
164
165func (m *OperationMetadata) GetUndeployModelDetails() *UndeployModelOperationMetadata {
166	if x, ok := m.GetDetails().(*OperationMetadata_UndeployModelDetails); ok {
167		return x.UndeployModelDetails
168	}
169	return nil
170}
171
172func (m *OperationMetadata) GetCreateModelDetails() *CreateModelOperationMetadata {
173	if x, ok := m.GetDetails().(*OperationMetadata_CreateModelDetails); ok {
174		return x.CreateModelDetails
175	}
176	return nil
177}
178
179func (m *OperationMetadata) GetImportDataDetails() *ImportDataOperationMetadata {
180	if x, ok := m.GetDetails().(*OperationMetadata_ImportDataDetails); ok {
181		return x.ImportDataDetails
182	}
183	return nil
184}
185
186func (m *OperationMetadata) GetBatchPredictDetails() *BatchPredictOperationMetadata {
187	if x, ok := m.GetDetails().(*OperationMetadata_BatchPredictDetails); ok {
188		return x.BatchPredictDetails
189	}
190	return nil
191}
192
193func (m *OperationMetadata) GetExportDataDetails() *ExportDataOperationMetadata {
194	if x, ok := m.GetDetails().(*OperationMetadata_ExportDataDetails); ok {
195		return x.ExportDataDetails
196	}
197	return nil
198}
199
200func (m *OperationMetadata) GetExportModelDetails() *ExportModelOperationMetadata {
201	if x, ok := m.GetDetails().(*OperationMetadata_ExportModelDetails); ok {
202		return x.ExportModelDetails
203	}
204	return nil
205}
206
207func (m *OperationMetadata) GetExportEvaluatedExamplesDetails() *ExportEvaluatedExamplesOperationMetadata {
208	if x, ok := m.GetDetails().(*OperationMetadata_ExportEvaluatedExamplesDetails); ok {
209		return x.ExportEvaluatedExamplesDetails
210	}
211	return nil
212}
213
214func (m *OperationMetadata) GetProgressPercent() int32 {
215	if m != nil {
216		return m.ProgressPercent
217	}
218	return 0
219}
220
221func (m *OperationMetadata) GetPartialFailures() []*status.Status {
222	if m != nil {
223		return m.PartialFailures
224	}
225	return nil
226}
227
228func (m *OperationMetadata) GetCreateTime() *timestamp.Timestamp {
229	if m != nil {
230		return m.CreateTime
231	}
232	return nil
233}
234
235func (m *OperationMetadata) GetUpdateTime() *timestamp.Timestamp {
236	if m != nil {
237		return m.UpdateTime
238	}
239	return nil
240}
241
242// XXX_OneofWrappers is for the internal use of the proto package.
243func (*OperationMetadata) XXX_OneofWrappers() []interface{} {
244	return []interface{}{
245		(*OperationMetadata_DeleteDetails)(nil),
246		(*OperationMetadata_DeployModelDetails)(nil),
247		(*OperationMetadata_UndeployModelDetails)(nil),
248		(*OperationMetadata_CreateModelDetails)(nil),
249		(*OperationMetadata_ImportDataDetails)(nil),
250		(*OperationMetadata_BatchPredictDetails)(nil),
251		(*OperationMetadata_ExportDataDetails)(nil),
252		(*OperationMetadata_ExportModelDetails)(nil),
253		(*OperationMetadata_ExportEvaluatedExamplesDetails)(nil),
254	}
255}
256
257// Details of operations that perform deletes of any entities.
258type DeleteOperationMetadata struct {
259	XXX_NoUnkeyedLiteral struct{} `json:"-"`
260	XXX_unrecognized     []byte   `json:"-"`
261	XXX_sizecache        int32    `json:"-"`
262}
263
264func (m *DeleteOperationMetadata) Reset()         { *m = DeleteOperationMetadata{} }
265func (m *DeleteOperationMetadata) String() string { return proto.CompactTextString(m) }
266func (*DeleteOperationMetadata) ProtoMessage()    {}
267func (*DeleteOperationMetadata) Descriptor() ([]byte, []int) {
268	return fileDescriptor_07afd87baa9bfac3, []int{1}
269}
270
271func (m *DeleteOperationMetadata) XXX_Unmarshal(b []byte) error {
272	return xxx_messageInfo_DeleteOperationMetadata.Unmarshal(m, b)
273}
274func (m *DeleteOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
275	return xxx_messageInfo_DeleteOperationMetadata.Marshal(b, m, deterministic)
276}
277func (m *DeleteOperationMetadata) XXX_Merge(src proto.Message) {
278	xxx_messageInfo_DeleteOperationMetadata.Merge(m, src)
279}
280func (m *DeleteOperationMetadata) XXX_Size() int {
281	return xxx_messageInfo_DeleteOperationMetadata.Size(m)
282}
283func (m *DeleteOperationMetadata) XXX_DiscardUnknown() {
284	xxx_messageInfo_DeleteOperationMetadata.DiscardUnknown(m)
285}
286
287var xxx_messageInfo_DeleteOperationMetadata proto.InternalMessageInfo
288
289// Details of DeployModel operation.
290type DeployModelOperationMetadata struct {
291	XXX_NoUnkeyedLiteral struct{} `json:"-"`
292	XXX_unrecognized     []byte   `json:"-"`
293	XXX_sizecache        int32    `json:"-"`
294}
295
296func (m *DeployModelOperationMetadata) Reset()         { *m = DeployModelOperationMetadata{} }
297func (m *DeployModelOperationMetadata) String() string { return proto.CompactTextString(m) }
298func (*DeployModelOperationMetadata) ProtoMessage()    {}
299func (*DeployModelOperationMetadata) Descriptor() ([]byte, []int) {
300	return fileDescriptor_07afd87baa9bfac3, []int{2}
301}
302
303func (m *DeployModelOperationMetadata) XXX_Unmarshal(b []byte) error {
304	return xxx_messageInfo_DeployModelOperationMetadata.Unmarshal(m, b)
305}
306func (m *DeployModelOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
307	return xxx_messageInfo_DeployModelOperationMetadata.Marshal(b, m, deterministic)
308}
309func (m *DeployModelOperationMetadata) XXX_Merge(src proto.Message) {
310	xxx_messageInfo_DeployModelOperationMetadata.Merge(m, src)
311}
312func (m *DeployModelOperationMetadata) XXX_Size() int {
313	return xxx_messageInfo_DeployModelOperationMetadata.Size(m)
314}
315func (m *DeployModelOperationMetadata) XXX_DiscardUnknown() {
316	xxx_messageInfo_DeployModelOperationMetadata.DiscardUnknown(m)
317}
318
319var xxx_messageInfo_DeployModelOperationMetadata proto.InternalMessageInfo
320
321// Details of UndeployModel operation.
322type UndeployModelOperationMetadata struct {
323	XXX_NoUnkeyedLiteral struct{} `json:"-"`
324	XXX_unrecognized     []byte   `json:"-"`
325	XXX_sizecache        int32    `json:"-"`
326}
327
328func (m *UndeployModelOperationMetadata) Reset()         { *m = UndeployModelOperationMetadata{} }
329func (m *UndeployModelOperationMetadata) String() string { return proto.CompactTextString(m) }
330func (*UndeployModelOperationMetadata) ProtoMessage()    {}
331func (*UndeployModelOperationMetadata) Descriptor() ([]byte, []int) {
332	return fileDescriptor_07afd87baa9bfac3, []int{3}
333}
334
335func (m *UndeployModelOperationMetadata) XXX_Unmarshal(b []byte) error {
336	return xxx_messageInfo_UndeployModelOperationMetadata.Unmarshal(m, b)
337}
338func (m *UndeployModelOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
339	return xxx_messageInfo_UndeployModelOperationMetadata.Marshal(b, m, deterministic)
340}
341func (m *UndeployModelOperationMetadata) XXX_Merge(src proto.Message) {
342	xxx_messageInfo_UndeployModelOperationMetadata.Merge(m, src)
343}
344func (m *UndeployModelOperationMetadata) XXX_Size() int {
345	return xxx_messageInfo_UndeployModelOperationMetadata.Size(m)
346}
347func (m *UndeployModelOperationMetadata) XXX_DiscardUnknown() {
348	xxx_messageInfo_UndeployModelOperationMetadata.DiscardUnknown(m)
349}
350
351var xxx_messageInfo_UndeployModelOperationMetadata proto.InternalMessageInfo
352
353// Details of CreateModel operation.
354type CreateModelOperationMetadata struct {
355	XXX_NoUnkeyedLiteral struct{} `json:"-"`
356	XXX_unrecognized     []byte   `json:"-"`
357	XXX_sizecache        int32    `json:"-"`
358}
359
360func (m *CreateModelOperationMetadata) Reset()         { *m = CreateModelOperationMetadata{} }
361func (m *CreateModelOperationMetadata) String() string { return proto.CompactTextString(m) }
362func (*CreateModelOperationMetadata) ProtoMessage()    {}
363func (*CreateModelOperationMetadata) Descriptor() ([]byte, []int) {
364	return fileDescriptor_07afd87baa9bfac3, []int{4}
365}
366
367func (m *CreateModelOperationMetadata) XXX_Unmarshal(b []byte) error {
368	return xxx_messageInfo_CreateModelOperationMetadata.Unmarshal(m, b)
369}
370func (m *CreateModelOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
371	return xxx_messageInfo_CreateModelOperationMetadata.Marshal(b, m, deterministic)
372}
373func (m *CreateModelOperationMetadata) XXX_Merge(src proto.Message) {
374	xxx_messageInfo_CreateModelOperationMetadata.Merge(m, src)
375}
376func (m *CreateModelOperationMetadata) XXX_Size() int {
377	return xxx_messageInfo_CreateModelOperationMetadata.Size(m)
378}
379func (m *CreateModelOperationMetadata) XXX_DiscardUnknown() {
380	xxx_messageInfo_CreateModelOperationMetadata.DiscardUnknown(m)
381}
382
383var xxx_messageInfo_CreateModelOperationMetadata proto.InternalMessageInfo
384
385// Details of ImportData operation.
386type ImportDataOperationMetadata struct {
387	XXX_NoUnkeyedLiteral struct{} `json:"-"`
388	XXX_unrecognized     []byte   `json:"-"`
389	XXX_sizecache        int32    `json:"-"`
390}
391
392func (m *ImportDataOperationMetadata) Reset()         { *m = ImportDataOperationMetadata{} }
393func (m *ImportDataOperationMetadata) String() string { return proto.CompactTextString(m) }
394func (*ImportDataOperationMetadata) ProtoMessage()    {}
395func (*ImportDataOperationMetadata) Descriptor() ([]byte, []int) {
396	return fileDescriptor_07afd87baa9bfac3, []int{5}
397}
398
399func (m *ImportDataOperationMetadata) XXX_Unmarshal(b []byte) error {
400	return xxx_messageInfo_ImportDataOperationMetadata.Unmarshal(m, b)
401}
402func (m *ImportDataOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
403	return xxx_messageInfo_ImportDataOperationMetadata.Marshal(b, m, deterministic)
404}
405func (m *ImportDataOperationMetadata) XXX_Merge(src proto.Message) {
406	xxx_messageInfo_ImportDataOperationMetadata.Merge(m, src)
407}
408func (m *ImportDataOperationMetadata) XXX_Size() int {
409	return xxx_messageInfo_ImportDataOperationMetadata.Size(m)
410}
411func (m *ImportDataOperationMetadata) XXX_DiscardUnknown() {
412	xxx_messageInfo_ImportDataOperationMetadata.DiscardUnknown(m)
413}
414
415var xxx_messageInfo_ImportDataOperationMetadata proto.InternalMessageInfo
416
417// Details of ExportData operation.
418type ExportDataOperationMetadata struct {
419	// Output only. Information further describing this export data's output.
420	OutputInfo           *ExportDataOperationMetadata_ExportDataOutputInfo `protobuf:"bytes,1,opt,name=output_info,json=outputInfo,proto3" json:"output_info,omitempty"`
421	XXX_NoUnkeyedLiteral struct{}                                          `json:"-"`
422	XXX_unrecognized     []byte                                            `json:"-"`
423	XXX_sizecache        int32                                             `json:"-"`
424}
425
426func (m *ExportDataOperationMetadata) Reset()         { *m = ExportDataOperationMetadata{} }
427func (m *ExportDataOperationMetadata) String() string { return proto.CompactTextString(m) }
428func (*ExportDataOperationMetadata) ProtoMessage()    {}
429func (*ExportDataOperationMetadata) Descriptor() ([]byte, []int) {
430	return fileDescriptor_07afd87baa9bfac3, []int{6}
431}
432
433func (m *ExportDataOperationMetadata) XXX_Unmarshal(b []byte) error {
434	return xxx_messageInfo_ExportDataOperationMetadata.Unmarshal(m, b)
435}
436func (m *ExportDataOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
437	return xxx_messageInfo_ExportDataOperationMetadata.Marshal(b, m, deterministic)
438}
439func (m *ExportDataOperationMetadata) XXX_Merge(src proto.Message) {
440	xxx_messageInfo_ExportDataOperationMetadata.Merge(m, src)
441}
442func (m *ExportDataOperationMetadata) XXX_Size() int {
443	return xxx_messageInfo_ExportDataOperationMetadata.Size(m)
444}
445func (m *ExportDataOperationMetadata) XXX_DiscardUnknown() {
446	xxx_messageInfo_ExportDataOperationMetadata.DiscardUnknown(m)
447}
448
449var xxx_messageInfo_ExportDataOperationMetadata proto.InternalMessageInfo
450
451func (m *ExportDataOperationMetadata) GetOutputInfo() *ExportDataOperationMetadata_ExportDataOutputInfo {
452	if m != nil {
453		return m.OutputInfo
454	}
455	return nil
456}
457
458// Further describes this export data's output.
459// Supplements
460// [OutputConfig][google.cloud.automl.v1beta1.OutputConfig].
461type ExportDataOperationMetadata_ExportDataOutputInfo struct {
462	// The output location to which the exported data is written.
463	//
464	// Types that are valid to be assigned to OutputLocation:
465	//	*ExportDataOperationMetadata_ExportDataOutputInfo_GcsOutputDirectory
466	//	*ExportDataOperationMetadata_ExportDataOutputInfo_BigqueryOutputDataset
467	OutputLocation       isExportDataOperationMetadata_ExportDataOutputInfo_OutputLocation `protobuf_oneof:"output_location"`
468	XXX_NoUnkeyedLiteral struct{}                                                          `json:"-"`
469	XXX_unrecognized     []byte                                                            `json:"-"`
470	XXX_sizecache        int32                                                             `json:"-"`
471}
472
473func (m *ExportDataOperationMetadata_ExportDataOutputInfo) Reset() {
474	*m = ExportDataOperationMetadata_ExportDataOutputInfo{}
475}
476func (m *ExportDataOperationMetadata_ExportDataOutputInfo) String() string {
477	return proto.CompactTextString(m)
478}
479func (*ExportDataOperationMetadata_ExportDataOutputInfo) ProtoMessage() {}
480func (*ExportDataOperationMetadata_ExportDataOutputInfo) Descriptor() ([]byte, []int) {
481	return fileDescriptor_07afd87baa9bfac3, []int{6, 0}
482}
483
484func (m *ExportDataOperationMetadata_ExportDataOutputInfo) XXX_Unmarshal(b []byte) error {
485	return xxx_messageInfo_ExportDataOperationMetadata_ExportDataOutputInfo.Unmarshal(m, b)
486}
487func (m *ExportDataOperationMetadata_ExportDataOutputInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
488	return xxx_messageInfo_ExportDataOperationMetadata_ExportDataOutputInfo.Marshal(b, m, deterministic)
489}
490func (m *ExportDataOperationMetadata_ExportDataOutputInfo) XXX_Merge(src proto.Message) {
491	xxx_messageInfo_ExportDataOperationMetadata_ExportDataOutputInfo.Merge(m, src)
492}
493func (m *ExportDataOperationMetadata_ExportDataOutputInfo) XXX_Size() int {
494	return xxx_messageInfo_ExportDataOperationMetadata_ExportDataOutputInfo.Size(m)
495}
496func (m *ExportDataOperationMetadata_ExportDataOutputInfo) XXX_DiscardUnknown() {
497	xxx_messageInfo_ExportDataOperationMetadata_ExportDataOutputInfo.DiscardUnknown(m)
498}
499
500var xxx_messageInfo_ExportDataOperationMetadata_ExportDataOutputInfo proto.InternalMessageInfo
501
502type isExportDataOperationMetadata_ExportDataOutputInfo_OutputLocation interface {
503	isExportDataOperationMetadata_ExportDataOutputInfo_OutputLocation()
504}
505
506type ExportDataOperationMetadata_ExportDataOutputInfo_GcsOutputDirectory struct {
507	GcsOutputDirectory string `protobuf:"bytes,1,opt,name=gcs_output_directory,json=gcsOutputDirectory,proto3,oneof"`
508}
509
510type ExportDataOperationMetadata_ExportDataOutputInfo_BigqueryOutputDataset struct {
511	BigqueryOutputDataset string `protobuf:"bytes,2,opt,name=bigquery_output_dataset,json=bigqueryOutputDataset,proto3,oneof"`
512}
513
514func (*ExportDataOperationMetadata_ExportDataOutputInfo_GcsOutputDirectory) isExportDataOperationMetadata_ExportDataOutputInfo_OutputLocation() {
515}
516
517func (*ExportDataOperationMetadata_ExportDataOutputInfo_BigqueryOutputDataset) isExportDataOperationMetadata_ExportDataOutputInfo_OutputLocation() {
518}
519
520func (m *ExportDataOperationMetadata_ExportDataOutputInfo) GetOutputLocation() isExportDataOperationMetadata_ExportDataOutputInfo_OutputLocation {
521	if m != nil {
522		return m.OutputLocation
523	}
524	return nil
525}
526
527func (m *ExportDataOperationMetadata_ExportDataOutputInfo) GetGcsOutputDirectory() string {
528	if x, ok := m.GetOutputLocation().(*ExportDataOperationMetadata_ExportDataOutputInfo_GcsOutputDirectory); ok {
529		return x.GcsOutputDirectory
530	}
531	return ""
532}
533
534func (m *ExportDataOperationMetadata_ExportDataOutputInfo) GetBigqueryOutputDataset() string {
535	if x, ok := m.GetOutputLocation().(*ExportDataOperationMetadata_ExportDataOutputInfo_BigqueryOutputDataset); ok {
536		return x.BigqueryOutputDataset
537	}
538	return ""
539}
540
541// XXX_OneofWrappers is for the internal use of the proto package.
542func (*ExportDataOperationMetadata_ExportDataOutputInfo) XXX_OneofWrappers() []interface{} {
543	return []interface{}{
544		(*ExportDataOperationMetadata_ExportDataOutputInfo_GcsOutputDirectory)(nil),
545		(*ExportDataOperationMetadata_ExportDataOutputInfo_BigqueryOutputDataset)(nil),
546	}
547}
548
549// Details of BatchPredict operation.
550type BatchPredictOperationMetadata struct {
551	// Output only. The input config that was given upon starting this
552	// batch predict operation.
553	InputConfig *BatchPredictInputConfig `protobuf:"bytes,1,opt,name=input_config,json=inputConfig,proto3" json:"input_config,omitempty"`
554	// Output only. Information further describing this batch predict's output.
555	OutputInfo           *BatchPredictOperationMetadata_BatchPredictOutputInfo `protobuf:"bytes,2,opt,name=output_info,json=outputInfo,proto3" json:"output_info,omitempty"`
556	XXX_NoUnkeyedLiteral struct{}                                              `json:"-"`
557	XXX_unrecognized     []byte                                                `json:"-"`
558	XXX_sizecache        int32                                                 `json:"-"`
559}
560
561func (m *BatchPredictOperationMetadata) Reset()         { *m = BatchPredictOperationMetadata{} }
562func (m *BatchPredictOperationMetadata) String() string { return proto.CompactTextString(m) }
563func (*BatchPredictOperationMetadata) ProtoMessage()    {}
564func (*BatchPredictOperationMetadata) Descriptor() ([]byte, []int) {
565	return fileDescriptor_07afd87baa9bfac3, []int{7}
566}
567
568func (m *BatchPredictOperationMetadata) XXX_Unmarshal(b []byte) error {
569	return xxx_messageInfo_BatchPredictOperationMetadata.Unmarshal(m, b)
570}
571func (m *BatchPredictOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
572	return xxx_messageInfo_BatchPredictOperationMetadata.Marshal(b, m, deterministic)
573}
574func (m *BatchPredictOperationMetadata) XXX_Merge(src proto.Message) {
575	xxx_messageInfo_BatchPredictOperationMetadata.Merge(m, src)
576}
577func (m *BatchPredictOperationMetadata) XXX_Size() int {
578	return xxx_messageInfo_BatchPredictOperationMetadata.Size(m)
579}
580func (m *BatchPredictOperationMetadata) XXX_DiscardUnknown() {
581	xxx_messageInfo_BatchPredictOperationMetadata.DiscardUnknown(m)
582}
583
584var xxx_messageInfo_BatchPredictOperationMetadata proto.InternalMessageInfo
585
586func (m *BatchPredictOperationMetadata) GetInputConfig() *BatchPredictInputConfig {
587	if m != nil {
588		return m.InputConfig
589	}
590	return nil
591}
592
593func (m *BatchPredictOperationMetadata) GetOutputInfo() *BatchPredictOperationMetadata_BatchPredictOutputInfo {
594	if m != nil {
595		return m.OutputInfo
596	}
597	return nil
598}
599
600// Further describes this batch predict's output.
601// Supplements
602//
603// [BatchPredictOutputConfig][google.cloud.automl.v1beta1.BatchPredictOutputConfig].
604type BatchPredictOperationMetadata_BatchPredictOutputInfo struct {
605	// The output location into which prediction output is written.
606	//
607	// Types that are valid to be assigned to OutputLocation:
608	//	*BatchPredictOperationMetadata_BatchPredictOutputInfo_GcsOutputDirectory
609	//	*BatchPredictOperationMetadata_BatchPredictOutputInfo_BigqueryOutputDataset
610	OutputLocation       isBatchPredictOperationMetadata_BatchPredictOutputInfo_OutputLocation `protobuf_oneof:"output_location"`
611	XXX_NoUnkeyedLiteral struct{}                                                              `json:"-"`
612	XXX_unrecognized     []byte                                                                `json:"-"`
613	XXX_sizecache        int32                                                                 `json:"-"`
614}
615
616func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) Reset() {
617	*m = BatchPredictOperationMetadata_BatchPredictOutputInfo{}
618}
619func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) String() string {
620	return proto.CompactTextString(m)
621}
622func (*BatchPredictOperationMetadata_BatchPredictOutputInfo) ProtoMessage() {}
623func (*BatchPredictOperationMetadata_BatchPredictOutputInfo) Descriptor() ([]byte, []int) {
624	return fileDescriptor_07afd87baa9bfac3, []int{7, 0}
625}
626
627func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) XXX_Unmarshal(b []byte) error {
628	return xxx_messageInfo_BatchPredictOperationMetadata_BatchPredictOutputInfo.Unmarshal(m, b)
629}
630func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
631	return xxx_messageInfo_BatchPredictOperationMetadata_BatchPredictOutputInfo.Marshal(b, m, deterministic)
632}
633func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) XXX_Merge(src proto.Message) {
634	xxx_messageInfo_BatchPredictOperationMetadata_BatchPredictOutputInfo.Merge(m, src)
635}
636func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) XXX_Size() int {
637	return xxx_messageInfo_BatchPredictOperationMetadata_BatchPredictOutputInfo.Size(m)
638}
639func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) XXX_DiscardUnknown() {
640	xxx_messageInfo_BatchPredictOperationMetadata_BatchPredictOutputInfo.DiscardUnknown(m)
641}
642
643var xxx_messageInfo_BatchPredictOperationMetadata_BatchPredictOutputInfo proto.InternalMessageInfo
644
645type isBatchPredictOperationMetadata_BatchPredictOutputInfo_OutputLocation interface {
646	isBatchPredictOperationMetadata_BatchPredictOutputInfo_OutputLocation()
647}
648
649type BatchPredictOperationMetadata_BatchPredictOutputInfo_GcsOutputDirectory struct {
650	GcsOutputDirectory string `protobuf:"bytes,1,opt,name=gcs_output_directory,json=gcsOutputDirectory,proto3,oneof"`
651}
652
653type BatchPredictOperationMetadata_BatchPredictOutputInfo_BigqueryOutputDataset struct {
654	BigqueryOutputDataset string `protobuf:"bytes,2,opt,name=bigquery_output_dataset,json=bigqueryOutputDataset,proto3,oneof"`
655}
656
657func (*BatchPredictOperationMetadata_BatchPredictOutputInfo_GcsOutputDirectory) isBatchPredictOperationMetadata_BatchPredictOutputInfo_OutputLocation() {
658}
659
660func (*BatchPredictOperationMetadata_BatchPredictOutputInfo_BigqueryOutputDataset) isBatchPredictOperationMetadata_BatchPredictOutputInfo_OutputLocation() {
661}
662
663func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) GetOutputLocation() isBatchPredictOperationMetadata_BatchPredictOutputInfo_OutputLocation {
664	if m != nil {
665		return m.OutputLocation
666	}
667	return nil
668}
669
670func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) GetGcsOutputDirectory() string {
671	if x, ok := m.GetOutputLocation().(*BatchPredictOperationMetadata_BatchPredictOutputInfo_GcsOutputDirectory); ok {
672		return x.GcsOutputDirectory
673	}
674	return ""
675}
676
677func (m *BatchPredictOperationMetadata_BatchPredictOutputInfo) GetBigqueryOutputDataset() string {
678	if x, ok := m.GetOutputLocation().(*BatchPredictOperationMetadata_BatchPredictOutputInfo_BigqueryOutputDataset); ok {
679		return x.BigqueryOutputDataset
680	}
681	return ""
682}
683
684// XXX_OneofWrappers is for the internal use of the proto package.
685func (*BatchPredictOperationMetadata_BatchPredictOutputInfo) XXX_OneofWrappers() []interface{} {
686	return []interface{}{
687		(*BatchPredictOperationMetadata_BatchPredictOutputInfo_GcsOutputDirectory)(nil),
688		(*BatchPredictOperationMetadata_BatchPredictOutputInfo_BigqueryOutputDataset)(nil),
689	}
690}
691
692// Details of ExportModel operation.
693type ExportModelOperationMetadata struct {
694	// Output only. Information further describing the output of this model
695	// export.
696	OutputInfo           *ExportModelOperationMetadata_ExportModelOutputInfo `protobuf:"bytes,2,opt,name=output_info,json=outputInfo,proto3" json:"output_info,omitempty"`
697	XXX_NoUnkeyedLiteral struct{}                                            `json:"-"`
698	XXX_unrecognized     []byte                                              `json:"-"`
699	XXX_sizecache        int32                                               `json:"-"`
700}
701
702func (m *ExportModelOperationMetadata) Reset()         { *m = ExportModelOperationMetadata{} }
703func (m *ExportModelOperationMetadata) String() string { return proto.CompactTextString(m) }
704func (*ExportModelOperationMetadata) ProtoMessage()    {}
705func (*ExportModelOperationMetadata) Descriptor() ([]byte, []int) {
706	return fileDescriptor_07afd87baa9bfac3, []int{8}
707}
708
709func (m *ExportModelOperationMetadata) XXX_Unmarshal(b []byte) error {
710	return xxx_messageInfo_ExportModelOperationMetadata.Unmarshal(m, b)
711}
712func (m *ExportModelOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
713	return xxx_messageInfo_ExportModelOperationMetadata.Marshal(b, m, deterministic)
714}
715func (m *ExportModelOperationMetadata) XXX_Merge(src proto.Message) {
716	xxx_messageInfo_ExportModelOperationMetadata.Merge(m, src)
717}
718func (m *ExportModelOperationMetadata) XXX_Size() int {
719	return xxx_messageInfo_ExportModelOperationMetadata.Size(m)
720}
721func (m *ExportModelOperationMetadata) XXX_DiscardUnknown() {
722	xxx_messageInfo_ExportModelOperationMetadata.DiscardUnknown(m)
723}
724
725var xxx_messageInfo_ExportModelOperationMetadata proto.InternalMessageInfo
726
727func (m *ExportModelOperationMetadata) GetOutputInfo() *ExportModelOperationMetadata_ExportModelOutputInfo {
728	if m != nil {
729		return m.OutputInfo
730	}
731	return nil
732}
733
734// Further describes the output of model export.
735// Supplements
736//
737// [ModelExportOutputConfig][google.cloud.automl.v1beta1.ModelExportOutputConfig].
738type ExportModelOperationMetadata_ExportModelOutputInfo struct {
739	// The full path of the Google Cloud Storage directory created, into which
740	// the model will be exported.
741	GcsOutputDirectory   string   `protobuf:"bytes,1,opt,name=gcs_output_directory,json=gcsOutputDirectory,proto3" json:"gcs_output_directory,omitempty"`
742	XXX_NoUnkeyedLiteral struct{} `json:"-"`
743	XXX_unrecognized     []byte   `json:"-"`
744	XXX_sizecache        int32    `json:"-"`
745}
746
747func (m *ExportModelOperationMetadata_ExportModelOutputInfo) Reset() {
748	*m = ExportModelOperationMetadata_ExportModelOutputInfo{}
749}
750func (m *ExportModelOperationMetadata_ExportModelOutputInfo) String() string {
751	return proto.CompactTextString(m)
752}
753func (*ExportModelOperationMetadata_ExportModelOutputInfo) ProtoMessage() {}
754func (*ExportModelOperationMetadata_ExportModelOutputInfo) Descriptor() ([]byte, []int) {
755	return fileDescriptor_07afd87baa9bfac3, []int{8, 0}
756}
757
758func (m *ExportModelOperationMetadata_ExportModelOutputInfo) XXX_Unmarshal(b []byte) error {
759	return xxx_messageInfo_ExportModelOperationMetadata_ExportModelOutputInfo.Unmarshal(m, b)
760}
761func (m *ExportModelOperationMetadata_ExportModelOutputInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
762	return xxx_messageInfo_ExportModelOperationMetadata_ExportModelOutputInfo.Marshal(b, m, deterministic)
763}
764func (m *ExportModelOperationMetadata_ExportModelOutputInfo) XXX_Merge(src proto.Message) {
765	xxx_messageInfo_ExportModelOperationMetadata_ExportModelOutputInfo.Merge(m, src)
766}
767func (m *ExportModelOperationMetadata_ExportModelOutputInfo) XXX_Size() int {
768	return xxx_messageInfo_ExportModelOperationMetadata_ExportModelOutputInfo.Size(m)
769}
770func (m *ExportModelOperationMetadata_ExportModelOutputInfo) XXX_DiscardUnknown() {
771	xxx_messageInfo_ExportModelOperationMetadata_ExportModelOutputInfo.DiscardUnknown(m)
772}
773
774var xxx_messageInfo_ExportModelOperationMetadata_ExportModelOutputInfo proto.InternalMessageInfo
775
776func (m *ExportModelOperationMetadata_ExportModelOutputInfo) GetGcsOutputDirectory() string {
777	if m != nil {
778		return m.GcsOutputDirectory
779	}
780	return ""
781}
782
783// Details of EvaluatedExamples operation.
784type ExportEvaluatedExamplesOperationMetadata struct {
785	// Output only. Information further describing the output of this evaluated
786	// examples export.
787	OutputInfo           *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo `protobuf:"bytes,2,opt,name=output_info,json=outputInfo,proto3" json:"output_info,omitempty"`
788	XXX_NoUnkeyedLiteral struct{}                                                                    `json:"-"`
789	XXX_unrecognized     []byte                                                                      `json:"-"`
790	XXX_sizecache        int32                                                                       `json:"-"`
791}
792
793func (m *ExportEvaluatedExamplesOperationMetadata) Reset() {
794	*m = ExportEvaluatedExamplesOperationMetadata{}
795}
796func (m *ExportEvaluatedExamplesOperationMetadata) String() string { return proto.CompactTextString(m) }
797func (*ExportEvaluatedExamplesOperationMetadata) ProtoMessage()    {}
798func (*ExportEvaluatedExamplesOperationMetadata) Descriptor() ([]byte, []int) {
799	return fileDescriptor_07afd87baa9bfac3, []int{9}
800}
801
802func (m *ExportEvaluatedExamplesOperationMetadata) XXX_Unmarshal(b []byte) error {
803	return xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata.Unmarshal(m, b)
804}
805func (m *ExportEvaluatedExamplesOperationMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
806	return xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata.Marshal(b, m, deterministic)
807}
808func (m *ExportEvaluatedExamplesOperationMetadata) XXX_Merge(src proto.Message) {
809	xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata.Merge(m, src)
810}
811func (m *ExportEvaluatedExamplesOperationMetadata) XXX_Size() int {
812	return xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata.Size(m)
813}
814func (m *ExportEvaluatedExamplesOperationMetadata) XXX_DiscardUnknown() {
815	xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata.DiscardUnknown(m)
816}
817
818var xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata proto.InternalMessageInfo
819
820func (m *ExportEvaluatedExamplesOperationMetadata) GetOutputInfo() *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo {
821	if m != nil {
822		return m.OutputInfo
823	}
824	return nil
825}
826
827// Further describes the output of the evaluated examples export.
828// Supplements
829//
830// [ExportEvaluatedExamplesOutputConfig][google.cloud.automl.v1beta1.ExportEvaluatedExamplesOutputConfig].
831type ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo struct {
832	// The path of the BigQuery dataset created, in bq://projectId.bqDatasetId
833	// format, into which the output of export evaluated examples is written.
834	BigqueryOutputDataset string   `protobuf:"bytes,2,opt,name=bigquery_output_dataset,json=bigqueryOutputDataset,proto3" json:"bigquery_output_dataset,omitempty"`
835	XXX_NoUnkeyedLiteral  struct{} `json:"-"`
836	XXX_unrecognized      []byte   `json:"-"`
837	XXX_sizecache         int32    `json:"-"`
838}
839
840func (m *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) Reset() {
841	*m = ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo{}
842}
843func (m *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) String() string {
844	return proto.CompactTextString(m)
845}
846func (*ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) ProtoMessage() {}
847func (*ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) Descriptor() ([]byte, []int) {
848	return fileDescriptor_07afd87baa9bfac3, []int{9, 0}
849}
850
851func (m *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) XXX_Unmarshal(b []byte) error {
852	return xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo.Unmarshal(m, b)
853}
854func (m *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
855	return xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo.Marshal(b, m, deterministic)
856}
857func (m *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) XXX_Merge(src proto.Message) {
858	xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo.Merge(m, src)
859}
860func (m *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) XXX_Size() int {
861	return xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo.Size(m)
862}
863func (m *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) XXX_DiscardUnknown() {
864	xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo.DiscardUnknown(m)
865}
866
867var xxx_messageInfo_ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo proto.InternalMessageInfo
868
869func (m *ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo) GetBigqueryOutputDataset() string {
870	if m != nil {
871		return m.BigqueryOutputDataset
872	}
873	return ""
874}
875
876func init() {
877	proto.RegisterType((*OperationMetadata)(nil), "google.cloud.automl.v1beta1.OperationMetadata")
878	proto.RegisterType((*DeleteOperationMetadata)(nil), "google.cloud.automl.v1beta1.DeleteOperationMetadata")
879	proto.RegisterType((*DeployModelOperationMetadata)(nil), "google.cloud.automl.v1beta1.DeployModelOperationMetadata")
880	proto.RegisterType((*UndeployModelOperationMetadata)(nil), "google.cloud.automl.v1beta1.UndeployModelOperationMetadata")
881	proto.RegisterType((*CreateModelOperationMetadata)(nil), "google.cloud.automl.v1beta1.CreateModelOperationMetadata")
882	proto.RegisterType((*ImportDataOperationMetadata)(nil), "google.cloud.automl.v1beta1.ImportDataOperationMetadata")
883	proto.RegisterType((*ExportDataOperationMetadata)(nil), "google.cloud.automl.v1beta1.ExportDataOperationMetadata")
884	proto.RegisterType((*ExportDataOperationMetadata_ExportDataOutputInfo)(nil), "google.cloud.automl.v1beta1.ExportDataOperationMetadata.ExportDataOutputInfo")
885	proto.RegisterType((*BatchPredictOperationMetadata)(nil), "google.cloud.automl.v1beta1.BatchPredictOperationMetadata")
886	proto.RegisterType((*BatchPredictOperationMetadata_BatchPredictOutputInfo)(nil), "google.cloud.automl.v1beta1.BatchPredictOperationMetadata.BatchPredictOutputInfo")
887	proto.RegisterType((*ExportModelOperationMetadata)(nil), "google.cloud.automl.v1beta1.ExportModelOperationMetadata")
888	proto.RegisterType((*ExportModelOperationMetadata_ExportModelOutputInfo)(nil), "google.cloud.automl.v1beta1.ExportModelOperationMetadata.ExportModelOutputInfo")
889	proto.RegisterType((*ExportEvaluatedExamplesOperationMetadata)(nil), "google.cloud.automl.v1beta1.ExportEvaluatedExamplesOperationMetadata")
890	proto.RegisterType((*ExportEvaluatedExamplesOperationMetadata_ExportEvaluatedExamplesOutputInfo)(nil), "google.cloud.automl.v1beta1.ExportEvaluatedExamplesOperationMetadata.ExportEvaluatedExamplesOutputInfo")
891}
892
893func init() {
894	proto.RegisterFile("google/cloud/automl/v1beta1/operations.proto", fileDescriptor_07afd87baa9bfac3)
895}
896
897var fileDescriptor_07afd87baa9bfac3 = []byte{
898	// 902 bytes of a gzipped FileDescriptorProto
899	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0xdd, 0x6e, 0x23, 0x35,
900	0x18, 0x65, 0x52, 0xfe, 0xf6, 0x0b, 0x4b, 0x5b, 0x6f, 0xda, 0x66, 0xd3, 0x6e, 0xb7, 0x3b, 0x42,
901	0xa2, 0x48, 0x68, 0x86, 0x2d, 0x2b, 0xb4, 0xa4, 0xe2, 0x62, 0xfb, 0x03, 0x54, 0xa2, 0xda, 0x12,
902	0xfe, 0x24, 0x28, 0x1a, 0x39, 0x33, 0xce, 0x60, 0x34, 0x33, 0x36, 0x1e, 0xcf, 0xaa, 0xbd, 0xe5,
903	0x6a, 0xaf, 0xf7, 0x06, 0xf1, 0x00, 0x88, 0x77, 0xe1, 0x15, 0x78, 0x03, 0x9e, 0x02, 0x8d, 0xed,
904	0x49, 0x93, 0xae, 0xe3, 0x44, 0x15, 0x12, 0x77, 0x19, 0x9f, 0x73, 0xbe, 0xe3, 0xef, 0xb3, 0x7d,
905	0x14, 0x78, 0x3f, 0x65, 0x2c, 0xcd, 0x48, 0x18, 0x67, 0xac, 0x4a, 0x42, 0x5c, 0x49, 0x96, 0x67,
906	0xe1, 0xb3, 0x87, 0x43, 0x22, 0xf1, 0xc3, 0x90, 0x71, 0x22, 0xb0, 0xa4, 0xac, 0x28, 0x03, 0x2e,
907	0x98, 0x64, 0x68, 0x53, 0xb3, 0x03, 0xc5, 0x0e, 0x34, 0x3b, 0x30, 0xec, 0xde, 0x3b, 0xae, 0x52,
908	0x94, 0xe9, 0x12, 0xbd, 0x77, 0x5d, 0xac, 0x9c, 0x25, 0x24, 0x33, 0xc4, 0xbd, 0xb9, 0xc4, 0x88,
909	0x3c, 0xc3, 0x59, 0xa5, 0x36, 0x68, 0x34, 0x66, 0x7f, 0xa1, 0xfa, 0x1a, 0x56, 0xa3, 0x90, 0xe4,
910	0x5c, 0x5e, 0x1a, 0xf0, 0xfe, 0x75, 0x50, 0xd2, 0x9c, 0x94, 0x12, 0xe7, 0xdc, 0x10, 0x36, 0x0c,
911	0x41, 0xf0, 0x38, 0x2c, 0x25, 0x96, 0x95, 0x69, 0xbb, 0xb7, 0x65, 0x00, 0xcc, 0x69, 0x88, 0x8b,
912	0x82, 0xc9, 0xc9, 0xa1, 0xf8, 0xbf, 0x02, 0xac, 0x3e, 0x6d, 0x26, 0x75, 0x4a, 0x24, 0x4e, 0xb0,
913	0xc4, 0xe8, 0x47, 0x78, 0x3b, 0x21, 0x19, 0x91, 0x24, 0x4a, 0x88, 0xc4, 0x34, 0x2b, 0xbb, 0x6f,
914	0xee, 0x78, 0xbb, 0xed, 0xbd, 0x47, 0x81, 0x63, 0x86, 0xc1, 0x91, 0x92, 0xbc, 0x54, 0xed, 0xf3,
915	0x57, 0x06, 0xb7, 0x75, 0xb5, 0x23, 0x5d, 0x0c, 0xe5, 0xd0, 0x49, 0x08, 0xcf, 0xd8, 0x65, 0xa4,
916	0x47, 0xd1, 0x98, 0x74, 0x95, 0xc9, 0xc7, 0x73, 0x4c, 0x6a, 0xe1, 0x69, 0xad, 0xb3, 0x39, 0xa1,
917	0xe4, 0x0a, 0x6f, 0xec, 0x4a, 0x58, 0xaf, 0x0a, 0xab, 0xe1, 0x5d, 0x65, 0xb8, 0xef, 0x34, 0xfc,
918	0xa6, 0x48, 0xdc, 0x96, 0x9d, 0xaa, 0xb0, 0x98, 0xe6, 0xd0, 0x89, 0x05, 0xc1, 0x92, 0x5c, 0xb3,
919	0x84, 0x05, 0x7a, 0x3c, 0x54, 0xc2, 0xd9, 0x3d, 0xc6, 0x57, 0x78, 0x63, 0xf7, 0x33, 0xdc, 0xa1,
920	0x39, 0x67, 0x42, 0x46, 0x35, 0x69, 0xec, 0xb6, 0xac, 0xdc, 0x1e, 0x3b, 0xdd, 0x4e, 0x94, 0xee,
921	0x08, 0x4b, 0x6c, 0x33, 0x5b, 0xa5, 0x63, 0xb8, 0xf1, 0xe2, 0xb0, 0x36, 0xc4, 0x32, 0xfe, 0x29,
922	0xe2, 0x82, 0x24, 0x34, 0x96, 0x63, 0xb7, 0x15, 0xe5, 0xd6, 0x77, 0xba, 0x1d, 0xd4, 0xca, 0x33,
923	0x2d, 0xb4, 0xf9, 0xdd, 0x19, 0x4e, 0x10, 0x26, 0xba, 0x23, 0x17, 0x2f, 0x77, 0xb7, 0xb6, 0x40,
924	0x77, 0xc7, 0x17, 0xce, 0xee, 0xc8, 0xc5, 0xf5, 0xee, 0x72, 0xe8, 0x18, 0xaf, 0xe9, 0x83, 0x5b,
925	0x5f, 0xe0, 0xe0, 0xb4, 0xd9, 0xec, 0x83, 0x23, 0x57, 0x78, 0x63, 0xf7, 0xc2, 0x83, 0x07, 0xc6,
926	0xcf, 0x24, 0x02, 0x49, 0x22, 0x72, 0x81, 0x73, 0x9e, 0x91, 0x72, 0x6c, 0xde, 0x53, 0xe6, 0xc7,
927	0x0b, 0x98, 0x1f, 0x37, 0x45, 0x8e, 0x4d, 0x0d, 0xdb, 0x46, 0xb6, 0x89, 0x9d, 0xdb, 0x6c, 0xea,
928	0x3d, 0x58, 0xe1, 0x82, 0xa5, 0x82, 0x94, 0x65, 0xc4, 0x89, 0x88, 0x49, 0x21, 0xbb, 0xb7, 0x77,
929	0xbc, 0xdd, 0xd7, 0x06, 0xcb, 0xcd, 0xfa, 0x99, 0x5e, 0x46, 0x9f, 0xc0, 0x0a, 0xc7, 0x42, 0x52,
930	0x9c, 0x45, 0x23, 0x4c, 0xb3, 0x4a, 0x90, 0xb2, 0xdb, 0xda, 0x59, 0xda, 0x6d, 0xef, 0xa1, 0x66,
931	0xb7, 0x82, 0xc7, 0xc1, 0x57, 0x2a, 0x92, 0x06, 0xcb, 0x86, 0xfb, 0xa9, 0xa1, 0xa2, 0x7d, 0x68,
932	0x9b, 0x67, 0x52, 0x07, 0x5a, 0x77, 0x49, 0xf5, 0xd9, 0x6b, 0x94, 0x4d, 0xda, 0x05, 0x5f, 0x37,
933	0x69, 0x37, 0x00, 0x4d, 0xaf, 0x17, 0x6a, 0x71, 0xc5, 0x93, 0xb1, 0xf8, 0xd5, 0xf9, 0x62, 0x4d,
934	0xaf, 0x17, 0x0e, 0x6e, 0xc1, 0x1b, 0x66, 0xba, 0xfe, 0x5d, 0xd8, 0x98, 0x91, 0x5d, 0xfe, 0x36,
935	0x6c, 0xb9, 0x12, 0xc7, 0xdf, 0x81, 0x6d, 0x77, 0x40, 0xd4, 0x15, 0x5c, 0xef, 0xd9, 0xbf, 0x07,
936	0x9b, 0x8e, 0x17, 0xe8, 0xff, 0xd9, 0x82, 0x4d, 0xc7, 0x1d, 0x46, 0x05, 0xb4, 0x59, 0x25, 0x79,
937	0x25, 0x23, 0x5a, 0x8c, 0x58, 0xd7, 0x53, 0x33, 0x38, 0xbd, 0xe9, 0x93, 0x98, 0xc4, 0x54, 0xd5,
938	0x93, 0x62, 0xc4, 0x06, 0xc0, 0xc6, 0xbf, 0x7b, 0xbf, 0x79, 0xd0, 0xb1, 0x91, 0xd0, 0x1e, 0x74,
939	0xd2, 0xb8, 0x8c, 0xcc, 0x66, 0x12, 0x2a, 0x48, 0x2c, 0x99, 0xb8, 0x54, 0x3b, 0xba, 0x55, 0x5f,
940	0xfe, 0x34, 0x2e, 0x35, 0xfd, 0xa8, 0xc1, 0xd0, 0x63, 0xd8, 0x18, 0xd2, 0xf4, 0x97, 0x8a, 0x88,
941	0xcb, 0xb1, 0x10, 0x4b, 0x5c, 0x12, 0xd9, 0x6d, 0x19, 0xd9, 0x5a, 0x43, 0x30, 0x5a, 0x0d, 0x1f,
942	0xac, 0xc2, 0xb2, 0x11, 0x64, 0x2c, 0x56, 0x2d, 0xf8, 0xcf, 0x97, 0xe0, 0x9e, 0x33, 0x5d, 0xd0,
943	0x77, 0xf0, 0x16, 0x2d, 0x6a, 0x4d, 0xcc, 0x8a, 0x11, 0x4d, 0xcd, 0xb0, 0x1e, 0x2d, 0x9c, 0x57,
944	0x27, 0xb5, 0xf8, 0x50, 0x69, 0x07, 0x6d, 0x7a, 0xf5, 0x81, 0xc4, 0xf4, 0x21, 0xb4, 0x54, 0xdd,
945	0x2f, 0x6f, 0x9e, 0x83, 0xd3, 0xa8, 0xfd, 0x20, 0x7e, 0xf7, 0x60, 0xdd, 0x4e, 0xfb, 0xff, 0x8f,
946	0xe2, 0x6f, 0x0f, 0xb6, 0x5c, 0x59, 0x88, 0xb8, 0x6d, 0x60, 0x4f, 0x6f, 0x9c, 0xad, 0x53, 0xa0,
947	0x7d, 0x5c, 0x27, 0xb0, 0x66, 0x25, 0xa1, 0x0f, 0x5c, 0xc3, 0xb2, 0x8d, 0xca, 0x7f, 0xd1, 0x82,
948	0xdd, 0x45, 0xc3, 0x16, 0x3d, 0xf7, 0x6c, 0xad, 0xa6, 0xff, 0x49, 0x92, 0xcf, 0x24, 0xda, 0x47,
949	0xf0, 0x03, 0x3c, 0x98, 0x2b, 0x40, 0x1f, 0xcd, 0xb9, 0x07, 0xb3, 0x6e, 0xc1, 0x1f, 0x1e, 0xdc,
950	0x8f, 0x59, 0xee, 0xea, 0xeb, 0xcc, 0xfb, 0xfe, 0x89, 0x81, 0x53, 0x96, 0xe1, 0x22, 0x0d, 0x98,
951	0x48, 0xc3, 0x94, 0x14, 0x2a, 0xa9, 0x43, 0x0d, 0x61, 0x4e, 0x4b, 0xeb, 0xdf, 0xe6, 0x7d, 0xfd,
952	0xf9, 0x57, 0x6b, 0xf3, 0x33, 0x45, 0x3c, 0x3f, 0xac, 0x49, 0xe7, 0x4f, 0x2a, 0xc9, 0x4e, 0xb3,
953	0xf3, 0x6f, 0x35, 0xe9, 0x9f, 0xd6, 0xb6, 0x46, 0xfb, 0x7d, 0x05, 0xf7, 0xfb, 0x0a, 0xff, 0xa2,
954	0xdf, 0x37, 0x84, 0xe1, 0xeb, 0xca, 0xec, 0xc3, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x98, 0xa6,
955	0x68, 0x05, 0x3c, 0x0c, 0x00, 0x00,
956}
957