forked from ubuntu/zsys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzsys.pb.go
2826 lines (2447 loc) · 87.2 KB
/
zsys.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
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: zsys.proto
package zsys
import (
context "context"
fmt "fmt"
proto "github.com/golang/protobuf/proto"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
type Empty struct {
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Empty) Reset() { *m = Empty{} }
func (m *Empty) String() string { return proto.CompactTextString(m) }
func (*Empty) ProtoMessage() {}
func (*Empty) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{0}
}
func (m *Empty) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Empty.Unmarshal(m, b)
}
func (m *Empty) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Empty.Marshal(b, m, deterministic)
}
func (m *Empty) XXX_Merge(src proto.Message) {
xxx_messageInfo_Empty.Merge(m, src)
}
func (m *Empty) XXX_Size() int {
return xxx_messageInfo_Empty.Size(m)
}
func (m *Empty) XXX_DiscardUnknown() {
xxx_messageInfo_Empty.DiscardUnknown(m)
}
var xxx_messageInfo_Empty proto.InternalMessageInfo
type LogResponse struct {
Log string `protobuf:"bytes,1,opt,name=log,proto3" json:"log,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LogResponse) Reset() { *m = LogResponse{} }
func (m *LogResponse) String() string { return proto.CompactTextString(m) }
func (*LogResponse) ProtoMessage() {}
func (*LogResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{1}
}
func (m *LogResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LogResponse.Unmarshal(m, b)
}
func (m *LogResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LogResponse.Marshal(b, m, deterministic)
}
func (m *LogResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_LogResponse.Merge(m, src)
}
func (m *LogResponse) XXX_Size() int {
return xxx_messageInfo_LogResponse.Size(m)
}
func (m *LogResponse) XXX_DiscardUnknown() {
xxx_messageInfo_LogResponse.DiscardUnknown(m)
}
var xxx_messageInfo_LogResponse proto.InternalMessageInfo
func (m *LogResponse) GetLog() string {
if m != nil {
return m.Log
}
return ""
}
type VersionResponse struct {
// Types that are valid to be assigned to Reply:
// *VersionResponse_Log
// *VersionResponse_Version
Reply isVersionResponse_Reply `protobuf_oneof:"reply"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *VersionResponse) Reset() { *m = VersionResponse{} }
func (m *VersionResponse) String() string { return proto.CompactTextString(m) }
func (*VersionResponse) ProtoMessage() {}
func (*VersionResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{2}
}
func (m *VersionResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_VersionResponse.Unmarshal(m, b)
}
func (m *VersionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_VersionResponse.Marshal(b, m, deterministic)
}
func (m *VersionResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_VersionResponse.Merge(m, src)
}
func (m *VersionResponse) XXX_Size() int {
return xxx_messageInfo_VersionResponse.Size(m)
}
func (m *VersionResponse) XXX_DiscardUnknown() {
xxx_messageInfo_VersionResponse.DiscardUnknown(m)
}
var xxx_messageInfo_VersionResponse proto.InternalMessageInfo
type isVersionResponse_Reply interface {
isVersionResponse_Reply()
}
type VersionResponse_Log struct {
Log string `protobuf:"bytes,1,opt,name=log,proto3,oneof"`
}
type VersionResponse_Version struct {
Version string `protobuf:"bytes,2,opt,name=version,proto3,oneof"`
}
func (*VersionResponse_Log) isVersionResponse_Reply() {}
func (*VersionResponse_Version) isVersionResponse_Reply() {}
func (m *VersionResponse) GetReply() isVersionResponse_Reply {
if m != nil {
return m.Reply
}
return nil
}
func (m *VersionResponse) GetLog() string {
if x, ok := m.GetReply().(*VersionResponse_Log); ok {
return x.Log
}
return ""
}
func (m *VersionResponse) GetVersion() string {
if x, ok := m.GetReply().(*VersionResponse_Version); ok {
return x.Version
}
return ""
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*VersionResponse) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*VersionResponse_Log)(nil),
(*VersionResponse_Version)(nil),
}
}
type CreateUserDataRequest struct {
User string `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
Homepath string `protobuf:"bytes,2,opt,name=homepath,proto3" json:"homepath,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateUserDataRequest) Reset() { *m = CreateUserDataRequest{} }
func (m *CreateUserDataRequest) String() string { return proto.CompactTextString(m) }
func (*CreateUserDataRequest) ProtoMessage() {}
func (*CreateUserDataRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{3}
}
func (m *CreateUserDataRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateUserDataRequest.Unmarshal(m, b)
}
func (m *CreateUserDataRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateUserDataRequest.Marshal(b, m, deterministic)
}
func (m *CreateUserDataRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateUserDataRequest.Merge(m, src)
}
func (m *CreateUserDataRequest) XXX_Size() int {
return xxx_messageInfo_CreateUserDataRequest.Size(m)
}
func (m *CreateUserDataRequest) XXX_DiscardUnknown() {
xxx_messageInfo_CreateUserDataRequest.DiscardUnknown(m)
}
var xxx_messageInfo_CreateUserDataRequest proto.InternalMessageInfo
func (m *CreateUserDataRequest) GetUser() string {
if m != nil {
return m.User
}
return ""
}
func (m *CreateUserDataRequest) GetHomepath() string {
if m != nil {
return m.Homepath
}
return ""
}
type ChangeHomeOnUserDataRequest struct {
Home string `protobuf:"bytes,1,opt,name=home,proto3" json:"home,omitempty"`
NewHome string `protobuf:"bytes,2,opt,name=newHome,proto3" json:"newHome,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ChangeHomeOnUserDataRequest) Reset() { *m = ChangeHomeOnUserDataRequest{} }
func (m *ChangeHomeOnUserDataRequest) String() string { return proto.CompactTextString(m) }
func (*ChangeHomeOnUserDataRequest) ProtoMessage() {}
func (*ChangeHomeOnUserDataRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{4}
}
func (m *ChangeHomeOnUserDataRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ChangeHomeOnUserDataRequest.Unmarshal(m, b)
}
func (m *ChangeHomeOnUserDataRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ChangeHomeOnUserDataRequest.Marshal(b, m, deterministic)
}
func (m *ChangeHomeOnUserDataRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ChangeHomeOnUserDataRequest.Merge(m, src)
}
func (m *ChangeHomeOnUserDataRequest) XXX_Size() int {
return xxx_messageInfo_ChangeHomeOnUserDataRequest.Size(m)
}
func (m *ChangeHomeOnUserDataRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ChangeHomeOnUserDataRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ChangeHomeOnUserDataRequest proto.InternalMessageInfo
func (m *ChangeHomeOnUserDataRequest) GetHome() string {
if m != nil {
return m.Home
}
return ""
}
func (m *ChangeHomeOnUserDataRequest) GetNewHome() string {
if m != nil {
return m.NewHome
}
return ""
}
type DissociateUserRequest struct {
User string `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
RemoveHome bool `protobuf:"varint,2,opt,name=removeHome,proto3" json:"removeHome,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DissociateUserRequest) Reset() { *m = DissociateUserRequest{} }
func (m *DissociateUserRequest) String() string { return proto.CompactTextString(m) }
func (*DissociateUserRequest) ProtoMessage() {}
func (*DissociateUserRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{5}
}
func (m *DissociateUserRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DissociateUserRequest.Unmarshal(m, b)
}
func (m *DissociateUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DissociateUserRequest.Marshal(b, m, deterministic)
}
func (m *DissociateUserRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DissociateUserRequest.Merge(m, src)
}
func (m *DissociateUserRequest) XXX_Size() int {
return xxx_messageInfo_DissociateUserRequest.Size(m)
}
func (m *DissociateUserRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DissociateUserRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DissociateUserRequest proto.InternalMessageInfo
func (m *DissociateUserRequest) GetUser() string {
if m != nil {
return m.User
}
return ""
}
func (m *DissociateUserRequest) GetRemoveHome() bool {
if m != nil {
return m.RemoveHome
}
return false
}
type PrepareBootResponse struct {
// Types that are valid to be assigned to Reply:
// *PrepareBootResponse_Log
// *PrepareBootResponse_Changed
Reply isPrepareBootResponse_Reply `protobuf_oneof:"reply"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PrepareBootResponse) Reset() { *m = PrepareBootResponse{} }
func (m *PrepareBootResponse) String() string { return proto.CompactTextString(m) }
func (*PrepareBootResponse) ProtoMessage() {}
func (*PrepareBootResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{6}
}
func (m *PrepareBootResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PrepareBootResponse.Unmarshal(m, b)
}
func (m *PrepareBootResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PrepareBootResponse.Marshal(b, m, deterministic)
}
func (m *PrepareBootResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_PrepareBootResponse.Merge(m, src)
}
func (m *PrepareBootResponse) XXX_Size() int {
return xxx_messageInfo_PrepareBootResponse.Size(m)
}
func (m *PrepareBootResponse) XXX_DiscardUnknown() {
xxx_messageInfo_PrepareBootResponse.DiscardUnknown(m)
}
var xxx_messageInfo_PrepareBootResponse proto.InternalMessageInfo
type isPrepareBootResponse_Reply interface {
isPrepareBootResponse_Reply()
}
type PrepareBootResponse_Log struct {
Log string `protobuf:"bytes,1,opt,name=log,proto3,oneof"`
}
type PrepareBootResponse_Changed struct {
Changed bool `protobuf:"varint,2,opt,name=changed,proto3,oneof"`
}
func (*PrepareBootResponse_Log) isPrepareBootResponse_Reply() {}
func (*PrepareBootResponse_Changed) isPrepareBootResponse_Reply() {}
func (m *PrepareBootResponse) GetReply() isPrepareBootResponse_Reply {
if m != nil {
return m.Reply
}
return nil
}
func (m *PrepareBootResponse) GetLog() string {
if x, ok := m.GetReply().(*PrepareBootResponse_Log); ok {
return x.Log
}
return ""
}
func (m *PrepareBootResponse) GetChanged() bool {
if x, ok := m.GetReply().(*PrepareBootResponse_Changed); ok {
return x.Changed
}
return false
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*PrepareBootResponse) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*PrepareBootResponse_Log)(nil),
(*PrepareBootResponse_Changed)(nil),
}
}
type CommitBootResponse struct {
// Types that are valid to be assigned to Reply:
// *CommitBootResponse_Log
// *CommitBootResponse_Changed
Reply isCommitBootResponse_Reply `protobuf_oneof:"reply"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommitBootResponse) Reset() { *m = CommitBootResponse{} }
func (m *CommitBootResponse) String() string { return proto.CompactTextString(m) }
func (*CommitBootResponse) ProtoMessage() {}
func (*CommitBootResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{7}
}
func (m *CommitBootResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitBootResponse.Unmarshal(m, b)
}
func (m *CommitBootResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommitBootResponse.Marshal(b, m, deterministic)
}
func (m *CommitBootResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommitBootResponse.Merge(m, src)
}
func (m *CommitBootResponse) XXX_Size() int {
return xxx_messageInfo_CommitBootResponse.Size(m)
}
func (m *CommitBootResponse) XXX_DiscardUnknown() {
xxx_messageInfo_CommitBootResponse.DiscardUnknown(m)
}
var xxx_messageInfo_CommitBootResponse proto.InternalMessageInfo
type isCommitBootResponse_Reply interface {
isCommitBootResponse_Reply()
}
type CommitBootResponse_Log struct {
Log string `protobuf:"bytes,1,opt,name=log,proto3,oneof"`
}
type CommitBootResponse_Changed struct {
Changed bool `protobuf:"varint,2,opt,name=changed,proto3,oneof"`
}
func (*CommitBootResponse_Log) isCommitBootResponse_Reply() {}
func (*CommitBootResponse_Changed) isCommitBootResponse_Reply() {}
func (m *CommitBootResponse) GetReply() isCommitBootResponse_Reply {
if m != nil {
return m.Reply
}
return nil
}
func (m *CommitBootResponse) GetLog() string {
if x, ok := m.GetReply().(*CommitBootResponse_Log); ok {
return x.Log
}
return ""
}
func (m *CommitBootResponse) GetChanged() bool {
if x, ok := m.GetReply().(*CommitBootResponse_Changed); ok {
return x.Changed
}
return false
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*CommitBootResponse) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*CommitBootResponse_Log)(nil),
(*CommitBootResponse_Changed)(nil),
}
}
type UpdateBootMenuRequest struct {
Auto bool `protobuf:"varint,1,opt,name=auto,proto3" json:"auto,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateBootMenuRequest) Reset() { *m = UpdateBootMenuRequest{} }
func (m *UpdateBootMenuRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateBootMenuRequest) ProtoMessage() {}
func (*UpdateBootMenuRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{8}
}
func (m *UpdateBootMenuRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateBootMenuRequest.Unmarshal(m, b)
}
func (m *UpdateBootMenuRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateBootMenuRequest.Marshal(b, m, deterministic)
}
func (m *UpdateBootMenuRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateBootMenuRequest.Merge(m, src)
}
func (m *UpdateBootMenuRequest) XXX_Size() int {
return xxx_messageInfo_UpdateBootMenuRequest.Size(m)
}
func (m *UpdateBootMenuRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateBootMenuRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateBootMenuRequest proto.InternalMessageInfo
func (m *UpdateBootMenuRequest) GetAuto() bool {
if m != nil {
return m.Auto
}
return false
}
type SaveSystemStateRequest struct {
StateName string `protobuf:"bytes,1,opt,name=stateName,proto3" json:"stateName,omitempty"`
UpdateBootMenu bool `protobuf:"varint,2,opt,name=updateBootMenu,proto3" json:"updateBootMenu,omitempty"`
Autosave bool `protobuf:"varint,3,opt,name=autosave,proto3" json:"autosave,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SaveSystemStateRequest) Reset() { *m = SaveSystemStateRequest{} }
func (m *SaveSystemStateRequest) String() string { return proto.CompactTextString(m) }
func (*SaveSystemStateRequest) ProtoMessage() {}
func (*SaveSystemStateRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{9}
}
func (m *SaveSystemStateRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SaveSystemStateRequest.Unmarshal(m, b)
}
func (m *SaveSystemStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SaveSystemStateRequest.Marshal(b, m, deterministic)
}
func (m *SaveSystemStateRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SaveSystemStateRequest.Merge(m, src)
}
func (m *SaveSystemStateRequest) XXX_Size() int {
return xxx_messageInfo_SaveSystemStateRequest.Size(m)
}
func (m *SaveSystemStateRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SaveSystemStateRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SaveSystemStateRequest proto.InternalMessageInfo
func (m *SaveSystemStateRequest) GetStateName() string {
if m != nil {
return m.StateName
}
return ""
}
func (m *SaveSystemStateRequest) GetUpdateBootMenu() bool {
if m != nil {
return m.UpdateBootMenu
}
return false
}
func (m *SaveSystemStateRequest) GetAutosave() bool {
if m != nil {
return m.Autosave
}
return false
}
type SaveUserStateRequest struct {
UserName string `protobuf:"bytes,1,opt,name=userName,proto3" json:"userName,omitempty"`
StateName string `protobuf:"bytes,2,opt,name=stateName,proto3" json:"stateName,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SaveUserStateRequest) Reset() { *m = SaveUserStateRequest{} }
func (m *SaveUserStateRequest) String() string { return proto.CompactTextString(m) }
func (*SaveUserStateRequest) ProtoMessage() {}
func (*SaveUserStateRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{10}
}
func (m *SaveUserStateRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SaveUserStateRequest.Unmarshal(m, b)
}
func (m *SaveUserStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SaveUserStateRequest.Marshal(b, m, deterministic)
}
func (m *SaveUserStateRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SaveUserStateRequest.Merge(m, src)
}
func (m *SaveUserStateRequest) XXX_Size() int {
return xxx_messageInfo_SaveUserStateRequest.Size(m)
}
func (m *SaveUserStateRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SaveUserStateRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SaveUserStateRequest proto.InternalMessageInfo
func (m *SaveUserStateRequest) GetUserName() string {
if m != nil {
return m.UserName
}
return ""
}
func (m *SaveUserStateRequest) GetStateName() string {
if m != nil {
return m.StateName
}
return ""
}
type CreateSaveStateResponse struct {
// Types that are valid to be assigned to Reply:
// *CreateSaveStateResponse_Log
// *CreateSaveStateResponse_StateName
Reply isCreateSaveStateResponse_Reply `protobuf_oneof:"reply"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CreateSaveStateResponse) Reset() { *m = CreateSaveStateResponse{} }
func (m *CreateSaveStateResponse) String() string { return proto.CompactTextString(m) }
func (*CreateSaveStateResponse) ProtoMessage() {}
func (*CreateSaveStateResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{11}
}
func (m *CreateSaveStateResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateSaveStateResponse.Unmarshal(m, b)
}
func (m *CreateSaveStateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CreateSaveStateResponse.Marshal(b, m, deterministic)
}
func (m *CreateSaveStateResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_CreateSaveStateResponse.Merge(m, src)
}
func (m *CreateSaveStateResponse) XXX_Size() int {
return xxx_messageInfo_CreateSaveStateResponse.Size(m)
}
func (m *CreateSaveStateResponse) XXX_DiscardUnknown() {
xxx_messageInfo_CreateSaveStateResponse.DiscardUnknown(m)
}
var xxx_messageInfo_CreateSaveStateResponse proto.InternalMessageInfo
type isCreateSaveStateResponse_Reply interface {
isCreateSaveStateResponse_Reply()
}
type CreateSaveStateResponse_Log struct {
Log string `protobuf:"bytes,1,opt,name=log,proto3,oneof"`
}
type CreateSaveStateResponse_StateName struct {
StateName string `protobuf:"bytes,2,opt,name=stateName,proto3,oneof"`
}
func (*CreateSaveStateResponse_Log) isCreateSaveStateResponse_Reply() {}
func (*CreateSaveStateResponse_StateName) isCreateSaveStateResponse_Reply() {}
func (m *CreateSaveStateResponse) GetReply() isCreateSaveStateResponse_Reply {
if m != nil {
return m.Reply
}
return nil
}
func (m *CreateSaveStateResponse) GetLog() string {
if x, ok := m.GetReply().(*CreateSaveStateResponse_Log); ok {
return x.Log
}
return ""
}
func (m *CreateSaveStateResponse) GetStateName() string {
if x, ok := m.GetReply().(*CreateSaveStateResponse_StateName); ok {
return x.StateName
}
return ""
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*CreateSaveStateResponse) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*CreateSaveStateResponse_Log)(nil),
(*CreateSaveStateResponse_StateName)(nil),
}
}
type RemoveSystemStateRequest struct {
StateName string `protobuf:"bytes,1,opt,name=stateName,proto3" json:"stateName,omitempty"`
Force bool `protobuf:"varint,2,opt,name=force,proto3" json:"force,omitempty"`
Dryrun bool `protobuf:"varint,3,opt,name=dryrun,proto3" json:"dryrun,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RemoveSystemStateRequest) Reset() { *m = RemoveSystemStateRequest{} }
func (m *RemoveSystemStateRequest) String() string { return proto.CompactTextString(m) }
func (*RemoveSystemStateRequest) ProtoMessage() {}
func (*RemoveSystemStateRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{12}
}
func (m *RemoveSystemStateRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoveSystemStateRequest.Unmarshal(m, b)
}
func (m *RemoveSystemStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemoveSystemStateRequest.Marshal(b, m, deterministic)
}
func (m *RemoveSystemStateRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemoveSystemStateRequest.Merge(m, src)
}
func (m *RemoveSystemStateRequest) XXX_Size() int {
return xxx_messageInfo_RemoveSystemStateRequest.Size(m)
}
func (m *RemoveSystemStateRequest) XXX_DiscardUnknown() {
xxx_messageInfo_RemoveSystemStateRequest.DiscardUnknown(m)
}
var xxx_messageInfo_RemoveSystemStateRequest proto.InternalMessageInfo
func (m *RemoveSystemStateRequest) GetStateName() string {
if m != nil {
return m.StateName
}
return ""
}
func (m *RemoveSystemStateRequest) GetForce() bool {
if m != nil {
return m.Force
}
return false
}
func (m *RemoveSystemStateRequest) GetDryrun() bool {
if m != nil {
return m.Dryrun
}
return false
}
type RemoveUserStateRequest struct {
UserName string `protobuf:"bytes,1,opt,name=userName,proto3" json:"userName,omitempty"`
StateName string `protobuf:"bytes,2,opt,name=stateName,proto3" json:"stateName,omitempty"`
Force bool `protobuf:"varint,3,opt,name=force,proto3" json:"force,omitempty"`
Dryrun bool `protobuf:"varint,4,opt,name=dryrun,proto3" json:"dryrun,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RemoveUserStateRequest) Reset() { *m = RemoveUserStateRequest{} }
func (m *RemoveUserStateRequest) String() string { return proto.CompactTextString(m) }
func (*RemoveUserStateRequest) ProtoMessage() {}
func (*RemoveUserStateRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{13}
}
func (m *RemoveUserStateRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoveUserStateRequest.Unmarshal(m, b)
}
func (m *RemoveUserStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemoveUserStateRequest.Marshal(b, m, deterministic)
}
func (m *RemoveUserStateRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemoveUserStateRequest.Merge(m, src)
}
func (m *RemoveUserStateRequest) XXX_Size() int {
return xxx_messageInfo_RemoveUserStateRequest.Size(m)
}
func (m *RemoveUserStateRequest) XXX_DiscardUnknown() {
xxx_messageInfo_RemoveUserStateRequest.DiscardUnknown(m)
}
var xxx_messageInfo_RemoveUserStateRequest proto.InternalMessageInfo
func (m *RemoveUserStateRequest) GetUserName() string {
if m != nil {
return m.UserName
}
return ""
}
func (m *RemoveUserStateRequest) GetStateName() string {
if m != nil {
return m.StateName
}
return ""
}
func (m *RemoveUserStateRequest) GetForce() bool {
if m != nil {
return m.Force
}
return false
}
func (m *RemoveUserStateRequest) GetDryrun() bool {
if m != nil {
return m.Dryrun
}
return false
}
type DumpStatesResponse struct {
// Types that are valid to be assigned to Reply:
// *DumpStatesResponse_Log
// *DumpStatesResponse_States
Reply isDumpStatesResponse_Reply `protobuf_oneof:"reply"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DumpStatesResponse) Reset() { *m = DumpStatesResponse{} }
func (m *DumpStatesResponse) String() string { return proto.CompactTextString(m) }
func (*DumpStatesResponse) ProtoMessage() {}
func (*DumpStatesResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{14}
}
func (m *DumpStatesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DumpStatesResponse.Unmarshal(m, b)
}
func (m *DumpStatesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DumpStatesResponse.Marshal(b, m, deterministic)
}
func (m *DumpStatesResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DumpStatesResponse.Merge(m, src)
}
func (m *DumpStatesResponse) XXX_Size() int {
return xxx_messageInfo_DumpStatesResponse.Size(m)
}
func (m *DumpStatesResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DumpStatesResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DumpStatesResponse proto.InternalMessageInfo
type isDumpStatesResponse_Reply interface {
isDumpStatesResponse_Reply()
}
type DumpStatesResponse_Log struct {
Log string `protobuf:"bytes,1,opt,name=log,proto3,oneof"`
}
type DumpStatesResponse_States struct {
States string `protobuf:"bytes,2,opt,name=states,proto3,oneof"`
}
func (*DumpStatesResponse_Log) isDumpStatesResponse_Reply() {}
func (*DumpStatesResponse_States) isDumpStatesResponse_Reply() {}
func (m *DumpStatesResponse) GetReply() isDumpStatesResponse_Reply {
if m != nil {
return m.Reply
}
return nil
}
func (m *DumpStatesResponse) GetLog() string {
if x, ok := m.GetReply().(*DumpStatesResponse_Log); ok {
return x.Log
}
return ""
}
func (m *DumpStatesResponse) GetStates() string {
if x, ok := m.GetReply().(*DumpStatesResponse_States); ok {
return x.States
}
return ""
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*DumpStatesResponse) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*DumpStatesResponse_Log)(nil),
(*DumpStatesResponse_States)(nil),
}
}
type LoggingLevelRequest struct {
Logginglevel int32 `protobuf:"varint,1,opt,name=logginglevel,proto3" json:"logginglevel,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LoggingLevelRequest) Reset() { *m = LoggingLevelRequest{} }
func (m *LoggingLevelRequest) String() string { return proto.CompactTextString(m) }
func (*LoggingLevelRequest) ProtoMessage() {}
func (*LoggingLevelRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{15}
}
func (m *LoggingLevelRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LoggingLevelRequest.Unmarshal(m, b)
}
func (m *LoggingLevelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LoggingLevelRequest.Marshal(b, m, deterministic)
}
func (m *LoggingLevelRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_LoggingLevelRequest.Merge(m, src)
}
func (m *LoggingLevelRequest) XXX_Size() int {
return xxx_messageInfo_LoggingLevelRequest.Size(m)
}
func (m *LoggingLevelRequest) XXX_DiscardUnknown() {
xxx_messageInfo_LoggingLevelRequest.DiscardUnknown(m)
}
var xxx_messageInfo_LoggingLevelRequest proto.InternalMessageInfo
func (m *LoggingLevelRequest) GetLogginglevel() int32 {
if m != nil {
return m.Logginglevel
}
return 0
}
type TraceRequest struct {
Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
Duration int32 `protobuf:"varint,2,opt,name=duration,proto3" json:"duration,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TraceRequest) Reset() { *m = TraceRequest{} }
func (m *TraceRequest) String() string { return proto.CompactTextString(m) }
func (*TraceRequest) ProtoMessage() {}
func (*TraceRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{16}
}
func (m *TraceRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TraceRequest.Unmarshal(m, b)
}
func (m *TraceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TraceRequest.Marshal(b, m, deterministic)
}
func (m *TraceRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_TraceRequest.Merge(m, src)
}
func (m *TraceRequest) XXX_Size() int {
return xxx_messageInfo_TraceRequest.Size(m)
}
func (m *TraceRequest) XXX_DiscardUnknown() {
xxx_messageInfo_TraceRequest.DiscardUnknown(m)
}
var xxx_messageInfo_TraceRequest proto.InternalMessageInfo
func (m *TraceRequest) GetType() string {
if m != nil {
return m.Type
}
return ""
}
func (m *TraceRequest) GetDuration() int32 {
if m != nil {
return m.Duration
}
return 0
}
type TraceResponse struct {
// Types that are valid to be assigned to Reply:
// *TraceResponse_Log
// *TraceResponse_Trace
Reply isTraceResponse_Reply `protobuf_oneof:"reply"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TraceResponse) Reset() { *m = TraceResponse{} }
func (m *TraceResponse) String() string { return proto.CompactTextString(m) }
func (*TraceResponse) ProtoMessage() {}
func (*TraceResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_05865bfaed6eea5d, []int{17}
}
func (m *TraceResponse) XXX_Unmarshal(b []byte) error {