-
Notifications
You must be signed in to change notification settings - Fork 9
/
integration.pb.go
982 lines (868 loc) · 33.9 KB
/
integration.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.27.1
// protoc (unknown)
// source: schema/integration.proto
package schema
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
anypb "google.golang.org/protobuf/types/known/anypb"
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 NodejsBuild_NodePkgMgr int32
const (
NodejsBuild_PKG_MGR_UNKNOWN NodejsBuild_NodePkgMgr = 0
NodejsBuild_NPM NodejsBuild_NodePkgMgr = 1
NodejsBuild_YARN NodejsBuild_NodePkgMgr = 2
NodejsBuild_YARN3 NodejsBuild_NodePkgMgr = 4
NodejsBuild_PNPM NodejsBuild_NodePkgMgr = 3
)
// Enum value maps for NodejsBuild_NodePkgMgr.
var (
NodejsBuild_NodePkgMgr_name = map[int32]string{
0: "PKG_MGR_UNKNOWN",
1: "NPM",
2: "YARN",
4: "YARN3",
3: "PNPM",
}
NodejsBuild_NodePkgMgr_value = map[string]int32{
"PKG_MGR_UNKNOWN": 0,
"NPM": 1,
"YARN": 2,
"YARN3": 4,
"PNPM": 3,
}
)
func (x NodejsBuild_NodePkgMgr) Enum() *NodejsBuild_NodePkgMgr {
p := new(NodejsBuild_NodePkgMgr)
*p = x
return p
}
func (x NodejsBuild_NodePkgMgr) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (NodejsBuild_NodePkgMgr) Descriptor() protoreflect.EnumDescriptor {
return file_schema_integration_proto_enumTypes[0].Descriptor()
}
func (NodejsBuild_NodePkgMgr) Type() protoreflect.EnumType {
return &file_schema_integration_proto_enumTypes[0]
}
func (x NodejsBuild_NodePkgMgr) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use NodejsBuild_NodePkgMgr.Descriptor instead.
func (NodejsBuild_NodePkgMgr) EnumDescriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{4, 0}
}
// For servers or tests.
type Integration struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Contains the integration-specific configuration, see below.
Data *anypb.Any `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
}
func (x *Integration) Reset() {
*x = Integration{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Integration) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Integration) ProtoMessage() {}
func (x *Integration) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_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 Integration.ProtoReflect.Descriptor instead.
func (*Integration) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{0}
}
func (x *Integration) GetData() *anypb.Any {
if x != nil {
return x.Data
}
return nil
}
type DockerfileIntegration struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// The Dockerfile to use.
Src string `protobuf:"bytes,1,opt,name=src,proto3" json:"src,omitempty"`
// If set, this config is used to run the container instead of the one from the image.
// Args and env come from the server definition.
WorkingDir string `protobuf:"bytes,2,opt,name=working_dir,json=workingDir,proto3" json:"working_dir,omitempty"`
Command []string `protobuf:"bytes,3,rep,name=command,proto3" json:"command,omitempty"`
}
func (x *DockerfileIntegration) Reset() {
*x = DockerfileIntegration{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DockerfileIntegration) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DockerfileIntegration) ProtoMessage() {}
func (x *DockerfileIntegration) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_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 DockerfileIntegration.ProtoReflect.Descriptor instead.
func (*DockerfileIntegration) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{1}
}
func (x *DockerfileIntegration) GetSrc() string {
if x != nil {
return x.Src
}
return ""
}
func (x *DockerfileIntegration) GetWorkingDir() string {
if x != nil {
return x.WorkingDir
}
return ""
}
func (x *DockerfileIntegration) GetCommand() []string {
if x != nil {
return x.Command
}
return nil
}
type ShellScriptIntegration struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Entrypoint string `protobuf:"bytes,1,opt,name=entrypoint,proto3" json:"entrypoint,omitempty"`
// Additional packages to install in the base image. By default, bash and curl are installed.
RequiredPackages []string `protobuf:"bytes,2,rep,name=required_packages,json=requiredPackages,proto3" json:"required_packages,omitempty"`
}
func (x *ShellScriptIntegration) Reset() {
*x = ShellScriptIntegration{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ShellScriptIntegration) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ShellScriptIntegration) ProtoMessage() {}
func (x *ShellScriptIntegration) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_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 ShellScriptIntegration.ProtoReflect.Descriptor instead.
func (*ShellScriptIntegration) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{2}
}
func (x *ShellScriptIntegration) GetEntrypoint() string {
if x != nil {
return x.Entrypoint
}
return ""
}
func (x *ShellScriptIntegration) GetRequiredPackages() []string {
if x != nil {
return x.RequiredPackages
}
return nil
}
type GoIntegration struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Pkg string `protobuf:"bytes,1,opt,name=pkg,proto3" json:"pkg,omitempty"`
}
func (x *GoIntegration) Reset() {
*x = GoIntegration{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GoIntegration) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GoIntegration) ProtoMessage() {}
func (x *GoIntegration) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_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 GoIntegration.ProtoReflect.Descriptor instead.
func (*GoIntegration) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{3}
}
func (x *GoIntegration) GetPkg() string {
if x != nil {
return x.Pkg
}
return ""
}
// Shared between "integration" and "imageFrom" for now.
type NodejsBuild struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Path to `package.json`, relative to the Namespace package. Default is "."
Pkg string `protobuf:"bytes,1,opt,name=pkg,proto3" json:"pkg,omitempty"`
// Detected Node.js package manager.
NodePkgMgr NodejsBuild_NodePkgMgr `protobuf:"varint,2,opt,name=node_pkg_mgr,json=nodePkgMgr,proto3,enum=foundation.schema.NodejsBuild_NodePkgMgr" json:"node_pkg_mgr,omitempty"`
// For Web builds. It is here because building the image for Web is done by the Node.js builder.
// This is a temporary internal API. Will be replaced with a nodejs-independent way in the future.
InternalDoNotUseBackend []*NodejsBuild_Backend `protobuf:"bytes,5,rep,name=internal_do_not_use_backend,json=internalDoNotUseBackend,proto3" json:"internal_do_not_use_backend,omitempty"`
// Entry point for the container.
RunScript string `protobuf:"bytes,6,opt,name=run_script,json=runScript,proto3" json:"run_script,omitempty"`
// Configuration for prod/test builds.
Prod *NodejsBuild_Prod `protobuf:"bytes,7,opt,name=prod,proto3" json:"prod,omitempty"`
}
func (x *NodejsBuild) Reset() {
*x = NodejsBuild{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *NodejsBuild) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*NodejsBuild) ProtoMessage() {}
func (x *NodejsBuild) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_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 NodejsBuild.ProtoReflect.Descriptor instead.
func (*NodejsBuild) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{4}
}
func (x *NodejsBuild) GetPkg() string {
if x != nil {
return x.Pkg
}
return ""
}
func (x *NodejsBuild) GetNodePkgMgr() NodejsBuild_NodePkgMgr {
if x != nil {
return x.NodePkgMgr
}
return NodejsBuild_PKG_MGR_UNKNOWN
}
func (x *NodejsBuild) GetInternalDoNotUseBackend() []*NodejsBuild_Backend {
if x != nil {
return x.InternalDoNotUseBackend
}
return nil
}
func (x *NodejsBuild) GetRunScript() string {
if x != nil {
return x.RunScript
}
return ""
}
func (x *NodejsBuild) GetProd() *NodejsBuild_Prod {
if x != nil {
return x.Prod
}
return nil
}
type WebIntegration struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Nodejs *NodejsBuild `protobuf:"bytes,1,opt,name=nodejs,proto3" json:"nodejs,omitempty"`
DevPort int32 `protobuf:"varint,4,opt,name=dev_port,json=devPort,proto3" json:"dev_port,omitempty"`
IngressHttpRoute []*WebIntegration_HttpRoute `protobuf:"bytes,5,rep,name=ingress_http_route,json=ingressHttpRoute,proto3" json:"ingress_http_route,omitempty"`
}
func (x *WebIntegration) Reset() {
*x = WebIntegration{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *WebIntegration) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*WebIntegration) ProtoMessage() {}
func (x *WebIntegration) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_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 WebIntegration.ProtoReflect.Descriptor instead.
func (*WebIntegration) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{5}
}
func (x *WebIntegration) GetNodejs() *NodejsBuild {
if x != nil {
return x.Nodejs
}
return nil
}
func (x *WebIntegration) GetDevPort() int32 {
if x != nil {
return x.DevPort
}
return 0
}
func (x *WebIntegration) GetIngressHttpRoute() []*WebIntegration_HttpRoute {
if x != nil {
return x.IngressHttpRoute
}
return nil
}
type WebBuild struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Nodejs *NodejsBuild `protobuf:"bytes,1,opt,name=nodejs,proto3" json:"nodejs,omitempty"`
// Passed to nginx
Port int32 `protobuf:"varint,3,opt,name=port,proto3" json:"port,omitempty"`
}
func (x *WebBuild) Reset() {
*x = WebBuild{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *WebBuild) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*WebBuild) ProtoMessage() {}
func (x *WebBuild) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_proto_msgTypes[6]
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 WebBuild.ProtoReflect.Descriptor instead.
func (*WebBuild) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{6}
}
func (x *WebBuild) GetNodejs() *NodejsBuild {
if x != nil {
return x.Nodejs
}
return nil
}
func (x *WebBuild) GetPort() int32 {
if x != nil {
return x.Port
}
return 0
}
type NodejsBuild_Prod struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// If set, this script from package.json is executed.
BuildScript string `protobuf:"bytes,1,opt,name=build_script,json=buildScript,proto3" json:"build_script,omitempty"`
// Relative path within the build image to copy to the prod image (to the same path).
BuildOutDir string `protobuf:"bytes,2,opt,name=build_out_dir,json=buildOutDir,proto3" json:"build_out_dir,omitempty"`
// If true, the "install" package manager command is executed in the prod image, too.
// Dev dependencies are not installed in this case.
InstallDeps bool `protobuf:"varint,3,opt,name=install_deps,json=installDeps,proto3" json:"install_deps,omitempty"`
}
func (x *NodejsBuild_Prod) Reset() {
*x = NodejsBuild_Prod{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *NodejsBuild_Prod) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*NodejsBuild_Prod) ProtoMessage() {}
func (x *NodejsBuild_Prod) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_proto_msgTypes[7]
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 NodejsBuild_Prod.ProtoReflect.Descriptor instead.
func (*NodejsBuild_Prod) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{4, 0}
}
func (x *NodejsBuild_Prod) GetBuildScript() string {
if x != nil {
return x.BuildScript
}
return ""
}
func (x *NodejsBuild_Prod) GetBuildOutDir() string {
if x != nil {
return x.BuildOutDir
}
return ""
}
func (x *NodejsBuild_Prod) GetInstallDeps() bool {
if x != nil {
return x.InstallDeps
}
return false
}
type NodejsBuild_Backend struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// The name of the backend for this particular Web build, e.g. "api".
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Service *PackageRef `protobuf:"bytes,2,opt,name=service,proto3" json:"service,omitempty"`
// For internal use. Needed to connect to transcoded gRPC endpoints.
Manager string `protobuf:"bytes,3,opt,name=manager,proto3" json:"manager,omitempty"`
}
func (x *NodejsBuild_Backend) Reset() {
*x = NodejsBuild_Backend{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *NodejsBuild_Backend) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*NodejsBuild_Backend) ProtoMessage() {}
func (x *NodejsBuild_Backend) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_proto_msgTypes[8]
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 NodejsBuild_Backend.ProtoReflect.Descriptor instead.
func (*NodejsBuild_Backend) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{4, 1}
}
func (x *NodejsBuild_Backend) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *NodejsBuild_Backend) GetService() *PackageRef {
if x != nil {
return x.Service
}
return nil
}
func (x *NodejsBuild_Backend) GetManager() string {
if x != nil {
return x.Manager
}
return ""
}
type WebIntegration_HttpRoute struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
BackendService *PackageRef `protobuf:"bytes,2,opt,name=backend_service,json=backendService,proto3" json:"backend_service,omitempty"`
}
func (x *WebIntegration_HttpRoute) Reset() {
*x = WebIntegration_HttpRoute{}
if protoimpl.UnsafeEnabled {
mi := &file_schema_integration_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *WebIntegration_HttpRoute) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*WebIntegration_HttpRoute) ProtoMessage() {}
func (x *WebIntegration_HttpRoute) ProtoReflect() protoreflect.Message {
mi := &file_schema_integration_proto_msgTypes[9]
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 WebIntegration_HttpRoute.ProtoReflect.Descriptor instead.
func (*WebIntegration_HttpRoute) Descriptor() ([]byte, []int) {
return file_schema_integration_proto_rawDescGZIP(), []int{5, 0}
}
func (x *WebIntegration_HttpRoute) GetPath() string {
if x != nil {
return x.Path
}
return ""
}
func (x *WebIntegration_HttpRoute) GetBackendService() *PackageRef {
if x != nil {
return x.BackendService
}
return nil
}
var File_schema_integration_proto protoreflect.FileDescriptor
var file_schema_integration_proto_rawDesc = []byte{
0x0a, 0x18, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x11, 0x66, 0x6f, 0x75, 0x6e,
0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x1a, 0x19, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61,
0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x14, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61,
0x2f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x37,
0x0a, 0x0b, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x0a,
0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e,
0x79, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x64, 0x0a, 0x15, 0x44, 0x6f, 0x63, 0x6b, 0x65,
0x72, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x12, 0x10, 0x0a, 0x03, 0x73, 0x72, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73,
0x72, 0x63, 0x12, 0x1f, 0x0a, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x69,
0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
0x44, 0x69, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x18, 0x03,
0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x22, 0x65, 0x0a,
0x16, 0x53, 0x68, 0x65, 0x6c, 0x6c, 0x53, 0x63, 0x72, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x65,
0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x6e, 0x74, 0x72, 0x79,
0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x6e, 0x74,
0x72, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x71, 0x75, 0x69,
0x72, 0x65, 0x64, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03,
0x28, 0x09, 0x52, 0x10, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x50, 0x61, 0x63, 0x6b,
0x61, 0x67, 0x65, 0x73, 0x22, 0x21, 0x0a, 0x0d, 0x47, 0x6f, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x6b, 0x67, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x03, 0x70, 0x6b, 0x67, 0x22, 0xe5, 0x04, 0x0a, 0x0b, 0x4e, 0x6f, 0x64, 0x65,
0x6a, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x6b, 0x67, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x6b, 0x67, 0x12, 0x4b, 0x0a, 0x0c, 0x6e, 0x6f, 0x64,
0x65, 0x5f, 0x70, 0x6b, 0x67, 0x5f, 0x6d, 0x67, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x29, 0x2e, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x63, 0x68,
0x65, 0x6d, 0x61, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x6a, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x2e,
0x4e, 0x6f, 0x64, 0x65, 0x50, 0x6b, 0x67, 0x4d, 0x67, 0x72, 0x52, 0x0a, 0x6e, 0x6f, 0x64, 0x65,
0x50, 0x6b, 0x67, 0x4d, 0x67, 0x72, 0x12, 0x64, 0x0a, 0x1b, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x5f, 0x62, 0x61,
0x63, 0x6b, 0x65, 0x6e, 0x64, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x66, 0x6f,
0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e,
0x4e, 0x6f, 0x64, 0x65, 0x6a, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x2e, 0x42, 0x61, 0x63, 0x6b,
0x65, 0x6e, 0x64, 0x52, 0x17, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x4e,
0x6f, 0x74, 0x55, 0x73, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x12, 0x1d, 0x0a, 0x0a,
0x72, 0x75, 0x6e, 0x5f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
0x52, 0x09, 0x72, 0x75, 0x6e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x74, 0x12, 0x37, 0x0a, 0x04, 0x70,
0x72, 0x6f, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x66, 0x6f, 0x75, 0x6e,
0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4e, 0x6f,
0x64, 0x65, 0x6a, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x52, 0x04,
0x70, 0x72, 0x6f, 0x64, 0x1a, 0x70, 0x0a, 0x04, 0x50, 0x72, 0x6f, 0x64, 0x12, 0x21, 0x0a, 0x0c,
0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x0b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x74, 0x12,
0x22, 0x0a, 0x0d, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x6f, 0x75, 0x74, 0x5f, 0x64, 0x69, 0x72,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x4f, 0x75, 0x74,
0x44, 0x69, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x64,
0x65, 0x70, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61,
0x6c, 0x6c, 0x44, 0x65, 0x70, 0x73, 0x1a, 0x70, 0x0a, 0x07, 0x42, 0x61, 0x63, 0x6b, 0x65, 0x6e,
0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x37, 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x50, 0x61, 0x63, 0x6b, 0x61,
0x67, 0x65, 0x52, 0x65, 0x66, 0x52, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x18,
0x0a, 0x07, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
0x07, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x22, 0x49, 0x0a, 0x0a, 0x4e, 0x6f, 0x64, 0x65,
0x50, 0x6b, 0x67, 0x4d, 0x67, 0x72, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x4b, 0x47, 0x5f, 0x4d, 0x47,
0x52, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x4e,
0x50, 0x4d, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x59, 0x41, 0x52, 0x4e, 0x10, 0x02, 0x12, 0x09,
0x0a, 0x05, 0x59, 0x41, 0x52, 0x4e, 0x33, 0x10, 0x04, 0x12, 0x08, 0x0a, 0x04, 0x50, 0x4e, 0x50,
0x4d, 0x10, 0x03, 0x4a, 0x04, 0x08, 0x03, 0x10, 0x04, 0x4a, 0x04, 0x08, 0x04, 0x10, 0x05, 0x22,
0xb3, 0x02, 0x0a, 0x0e, 0x57, 0x65, 0x62, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x12, 0x36, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x6a, 0x73, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x6a, 0x73, 0x42, 0x75, 0x69,
0x6c, 0x64, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x6a, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x64, 0x65,
0x76, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x64, 0x65,
0x76, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x59, 0x0a, 0x12, 0x69, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73,
0x5f, 0x68, 0x74, 0x74, 0x70, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x2b, 0x2e, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73,
0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x57, 0x65, 0x62, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x52, 0x10,
0x69, 0x6e, 0x67, 0x72, 0x65, 0x73, 0x73, 0x48, 0x74, 0x74, 0x70, 0x52, 0x6f, 0x75, 0x74, 0x65,
0x1a, 0x67, 0x0a, 0x09, 0x48, 0x74, 0x74, 0x70, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x12, 0x12, 0x0a,
0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74,
0x68, 0x12, 0x46, 0x0a, 0x0f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x73, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x66, 0x6f, 0x75,
0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x50,
0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x52, 0x65, 0x66, 0x52, 0x0e, 0x62, 0x61, 0x63, 0x6b, 0x65,
0x6e, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a,
0x04, 0x08, 0x03, 0x10, 0x04, 0x22, 0x56, 0x0a, 0x08, 0x57, 0x65, 0x62, 0x42, 0x75, 0x69, 0x6c,
0x64, 0x12, 0x36, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x6a, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x1e, 0x2e, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73,
0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x6a, 0x73, 0x42, 0x75, 0x69, 0x6c,
0x64, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x6a, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, 0x72,
0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x42, 0x25, 0x5a,
0x23, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x6c, 0x61, 0x62, 0x73, 0x2e, 0x64,
0x65, 0x76, 0x2f, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x63,
0x68, 0x65, 0x6d, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_schema_integration_proto_rawDescOnce sync.Once
file_schema_integration_proto_rawDescData = file_schema_integration_proto_rawDesc
)
func file_schema_integration_proto_rawDescGZIP() []byte {
file_schema_integration_proto_rawDescOnce.Do(func() {
file_schema_integration_proto_rawDescData = protoimpl.X.CompressGZIP(file_schema_integration_proto_rawDescData)
})
return file_schema_integration_proto_rawDescData
}
var file_schema_integration_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
var file_schema_integration_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
var file_schema_integration_proto_goTypes = []interface{}{
(NodejsBuild_NodePkgMgr)(0), // 0: foundation.schema.NodejsBuild.NodePkgMgr
(*Integration)(nil), // 1: foundation.schema.Integration
(*DockerfileIntegration)(nil), // 2: foundation.schema.DockerfileIntegration
(*ShellScriptIntegration)(nil), // 3: foundation.schema.ShellScriptIntegration
(*GoIntegration)(nil), // 4: foundation.schema.GoIntegration
(*NodejsBuild)(nil), // 5: foundation.schema.NodejsBuild
(*WebIntegration)(nil), // 6: foundation.schema.WebIntegration
(*WebBuild)(nil), // 7: foundation.schema.WebBuild
(*NodejsBuild_Prod)(nil), // 8: foundation.schema.NodejsBuild.Prod
(*NodejsBuild_Backend)(nil), // 9: foundation.schema.NodejsBuild.Backend
(*WebIntegration_HttpRoute)(nil), // 10: foundation.schema.WebIntegration.HttpRoute
(*anypb.Any)(nil), // 11: google.protobuf.Any
(*PackageRef)(nil), // 12: foundation.schema.PackageRef
}
var file_schema_integration_proto_depIdxs = []int32{
11, // 0: foundation.schema.Integration.data:type_name -> google.protobuf.Any
0, // 1: foundation.schema.NodejsBuild.node_pkg_mgr:type_name -> foundation.schema.NodejsBuild.NodePkgMgr
9, // 2: foundation.schema.NodejsBuild.internal_do_not_use_backend:type_name -> foundation.schema.NodejsBuild.Backend
8, // 3: foundation.schema.NodejsBuild.prod:type_name -> foundation.schema.NodejsBuild.Prod
5, // 4: foundation.schema.WebIntegration.nodejs:type_name -> foundation.schema.NodejsBuild
10, // 5: foundation.schema.WebIntegration.ingress_http_route:type_name -> foundation.schema.WebIntegration.HttpRoute
5, // 6: foundation.schema.WebBuild.nodejs:type_name -> foundation.schema.NodejsBuild
12, // 7: foundation.schema.NodejsBuild.Backend.service:type_name -> foundation.schema.PackageRef
12, // 8: foundation.schema.WebIntegration.HttpRoute.backend_service:type_name -> foundation.schema.PackageRef
9, // [9:9] is the sub-list for method output_type
9, // [9:9] is the sub-list for method input_type
9, // [9:9] is the sub-list for extension type_name
9, // [9:9] is the sub-list for extension extendee
0, // [0:9] is the sub-list for field type_name
}
func init() { file_schema_integration_proto_init() }
func file_schema_integration_proto_init() {
if File_schema_integration_proto != nil {
return
}
file_schema_package_proto_init()
if !protoimpl.UnsafeEnabled {
file_schema_integration_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Integration); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_schema_integration_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DockerfileIntegration); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_schema_integration_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ShellScriptIntegration); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_schema_integration_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GoIntegration); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_schema_integration_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NodejsBuild); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_schema_integration_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebIntegration); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_schema_integration_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebBuild); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_schema_integration_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NodejsBuild_Prod); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_schema_integration_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NodejsBuild_Backend); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_schema_integration_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebIntegration_HttpRoute); 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_schema_integration_proto_rawDesc,
NumEnums: 1,
NumMessages: 10,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_schema_integration_proto_goTypes,
DependencyIndexes: file_schema_integration_proto_depIdxs,
EnumInfos: file_schema_integration_proto_enumTypes,
MessageInfos: file_schema_integration_proto_msgTypes,
}.Build()
File_schema_integration_proto = out.File
file_schema_integration_proto_rawDesc = nil
file_schema_integration_proto_goTypes = nil
file_schema_integration_proto_depIdxs = nil
}