Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/pkg/driver/external/driver.pb.go
2611 views
1
// Code generated by protoc-gen-go. DO NOT EDIT.
2
// versions:
3
// protoc-gen-go [version omitted for reproducibility]
4
// protoc [version omitted for reproducibility]
5
// source: driver.proto
6
7
package external
8
9
import (
10
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
11
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
12
emptypb "google.golang.org/protobuf/types/known/emptypb"
13
reflect "reflect"
14
sync "sync"
15
unsafe "unsafe"
16
)
17
18
const (
19
// Verify that this generated code is sufficiently up-to-date.
20
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
21
// Verify that runtime/protoimpl is sufficiently up-to-date.
22
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
23
)
24
25
type BootScriptsResponse struct {
26
state protoimpl.MessageState `protogen:"open.v1"`
27
Scripts map[string][]byte `protobuf:"bytes,1,rep,name=scripts,proto3" json:"scripts,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
28
unknownFields protoimpl.UnknownFields
29
sizeCache protoimpl.SizeCache
30
}
31
32
func (x *BootScriptsResponse) Reset() {
33
*x = BootScriptsResponse{}
34
mi := &file_driver_proto_msgTypes[0]
35
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
36
ms.StoreMessageInfo(mi)
37
}
38
39
func (x *BootScriptsResponse) String() string {
40
return protoimpl.X.MessageStringOf(x)
41
}
42
43
func (*BootScriptsResponse) ProtoMessage() {}
44
45
func (x *BootScriptsResponse) ProtoReflect() protoreflect.Message {
46
mi := &file_driver_proto_msgTypes[0]
47
if x != nil {
48
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
49
if ms.LoadMessageInfo() == nil {
50
ms.StoreMessageInfo(mi)
51
}
52
return ms
53
}
54
return mi.MessageOf(x)
55
}
56
57
// Deprecated: Use BootScriptsResponse.ProtoReflect.Descriptor instead.
58
func (*BootScriptsResponse) Descriptor() ([]byte, []int) {
59
return file_driver_proto_rawDescGZIP(), []int{0}
60
}
61
62
func (x *BootScriptsResponse) GetScripts() map[string][]byte {
63
if x != nil {
64
return x.Scripts
65
}
66
return nil
67
}
68
69
type SSHAddressResponse struct {
70
state protoimpl.MessageState `protogen:"open.v1"`
71
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
72
unknownFields protoimpl.UnknownFields
73
sizeCache protoimpl.SizeCache
74
}
75
76
func (x *SSHAddressResponse) Reset() {
77
*x = SSHAddressResponse{}
78
mi := &file_driver_proto_msgTypes[1]
79
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
80
ms.StoreMessageInfo(mi)
81
}
82
83
func (x *SSHAddressResponse) String() string {
84
return protoimpl.X.MessageStringOf(x)
85
}
86
87
func (*SSHAddressResponse) ProtoMessage() {}
88
89
func (x *SSHAddressResponse) ProtoReflect() protoreflect.Message {
90
mi := &file_driver_proto_msgTypes[1]
91
if x != nil {
92
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
93
if ms.LoadMessageInfo() == nil {
94
ms.StoreMessageInfo(mi)
95
}
96
return ms
97
}
98
return mi.MessageOf(x)
99
}
100
101
// Deprecated: Use SSHAddressResponse.ProtoReflect.Descriptor instead.
102
func (*SSHAddressResponse) Descriptor() ([]byte, []int) {
103
return file_driver_proto_rawDescGZIP(), []int{1}
104
}
105
106
func (x *SSHAddressResponse) GetAddress() string {
107
if x != nil {
108
return x.Address
109
}
110
return ""
111
}
112
113
type InfoResponse struct {
114
state protoimpl.MessageState `protogen:"open.v1"`
115
InfoJson []byte `protobuf:"bytes,1,opt,name=info_json,json=infoJson,proto3" json:"info_json,omitempty"`
116
unknownFields protoimpl.UnknownFields
117
sizeCache protoimpl.SizeCache
118
}
119
120
func (x *InfoResponse) Reset() {
121
*x = InfoResponse{}
122
mi := &file_driver_proto_msgTypes[2]
123
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
124
ms.StoreMessageInfo(mi)
125
}
126
127
func (x *InfoResponse) String() string {
128
return protoimpl.X.MessageStringOf(x)
129
}
130
131
func (*InfoResponse) ProtoMessage() {}
132
133
func (x *InfoResponse) ProtoReflect() protoreflect.Message {
134
mi := &file_driver_proto_msgTypes[2]
135
if x != nil {
136
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
137
if ms.LoadMessageInfo() == nil {
138
ms.StoreMessageInfo(mi)
139
}
140
return ms
141
}
142
return mi.MessageOf(x)
143
}
144
145
// Deprecated: Use InfoResponse.ProtoReflect.Descriptor instead.
146
func (*InfoResponse) Descriptor() ([]byte, []int) {
147
return file_driver_proto_rawDescGZIP(), []int{2}
148
}
149
150
func (x *InfoResponse) GetInfoJson() []byte {
151
if x != nil {
152
return x.InfoJson
153
}
154
return nil
155
}
156
157
// StartResponse is a streamed response for Start() RPC. It tries to mimic
158
// errChan from pkg/driver/driver.go. The server sends an initial response
159
// with success=true when Start() is initiated. If errors occur, they are
160
// sent as success=false with the error field populated. When the error channel
161
// closes, a final success=true message is sent.
162
type StartResponse struct {
163
state protoimpl.MessageState `protogen:"open.v1"`
164
Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
165
Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
166
unknownFields protoimpl.UnknownFields
167
sizeCache protoimpl.SizeCache
168
}
169
170
func (x *StartResponse) Reset() {
171
*x = StartResponse{}
172
mi := &file_driver_proto_msgTypes[3]
173
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
174
ms.StoreMessageInfo(mi)
175
}
176
177
func (x *StartResponse) String() string {
178
return protoimpl.X.MessageStringOf(x)
179
}
180
181
func (*StartResponse) ProtoMessage() {}
182
183
func (x *StartResponse) ProtoReflect() protoreflect.Message {
184
mi := &file_driver_proto_msgTypes[3]
185
if x != nil {
186
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
187
if ms.LoadMessageInfo() == nil {
188
ms.StoreMessageInfo(mi)
189
}
190
return ms
191
}
192
return mi.MessageOf(x)
193
}
194
195
// Deprecated: Use StartResponse.ProtoReflect.Descriptor instead.
196
func (*StartResponse) Descriptor() ([]byte, []int) {
197
return file_driver_proto_rawDescGZIP(), []int{3}
198
}
199
200
func (x *StartResponse) GetSuccess() bool {
201
if x != nil {
202
return x.Success
203
}
204
return false
205
}
206
207
func (x *StartResponse) GetError() string {
208
if x != nil {
209
return x.Error
210
}
211
return ""
212
}
213
214
type SetConfigRequest struct {
215
state protoimpl.MessageState `protogen:"open.v1"`
216
InstanceConfigJson []byte `protobuf:"bytes,1,opt,name=instance_config_json,json=instanceConfigJson,proto3" json:"instance_config_json,omitempty"`
217
unknownFields protoimpl.UnknownFields
218
sizeCache protoimpl.SizeCache
219
}
220
221
func (x *SetConfigRequest) Reset() {
222
*x = SetConfigRequest{}
223
mi := &file_driver_proto_msgTypes[4]
224
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
225
ms.StoreMessageInfo(mi)
226
}
227
228
func (x *SetConfigRequest) String() string {
229
return protoimpl.X.MessageStringOf(x)
230
}
231
232
func (*SetConfigRequest) ProtoMessage() {}
233
234
func (x *SetConfigRequest) ProtoReflect() protoreflect.Message {
235
mi := &file_driver_proto_msgTypes[4]
236
if x != nil {
237
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
238
if ms.LoadMessageInfo() == nil {
239
ms.StoreMessageInfo(mi)
240
}
241
return ms
242
}
243
return mi.MessageOf(x)
244
}
245
246
// Deprecated: Use SetConfigRequest.ProtoReflect.Descriptor instead.
247
func (*SetConfigRequest) Descriptor() ([]byte, []int) {
248
return file_driver_proto_rawDescGZIP(), []int{4}
249
}
250
251
func (x *SetConfigRequest) GetInstanceConfigJson() []byte {
252
if x != nil {
253
return x.InstanceConfigJson
254
}
255
return nil
256
}
257
258
type ChangeDisplayPasswordRequest struct {
259
state protoimpl.MessageState `protogen:"open.v1"`
260
Password string `protobuf:"bytes,1,opt,name=password,proto3" json:"password,omitempty"`
261
unknownFields protoimpl.UnknownFields
262
sizeCache protoimpl.SizeCache
263
}
264
265
func (x *ChangeDisplayPasswordRequest) Reset() {
266
*x = ChangeDisplayPasswordRequest{}
267
mi := &file_driver_proto_msgTypes[5]
268
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
269
ms.StoreMessageInfo(mi)
270
}
271
272
func (x *ChangeDisplayPasswordRequest) String() string {
273
return protoimpl.X.MessageStringOf(x)
274
}
275
276
func (*ChangeDisplayPasswordRequest) ProtoMessage() {}
277
278
func (x *ChangeDisplayPasswordRequest) ProtoReflect() protoreflect.Message {
279
mi := &file_driver_proto_msgTypes[5]
280
if x != nil {
281
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
282
if ms.LoadMessageInfo() == nil {
283
ms.StoreMessageInfo(mi)
284
}
285
return ms
286
}
287
return mi.MessageOf(x)
288
}
289
290
// Deprecated: Use ChangeDisplayPasswordRequest.ProtoReflect.Descriptor instead.
291
func (*ChangeDisplayPasswordRequest) Descriptor() ([]byte, []int) {
292
return file_driver_proto_rawDescGZIP(), []int{5}
293
}
294
295
func (x *ChangeDisplayPasswordRequest) GetPassword() string {
296
if x != nil {
297
return x.Password
298
}
299
return ""
300
}
301
302
type GetDisplayConnectionResponse struct {
303
state protoimpl.MessageState `protogen:"open.v1"`
304
Connection string `protobuf:"bytes,1,opt,name=connection,proto3" json:"connection,omitempty"`
305
unknownFields protoimpl.UnknownFields
306
sizeCache protoimpl.SizeCache
307
}
308
309
func (x *GetDisplayConnectionResponse) Reset() {
310
*x = GetDisplayConnectionResponse{}
311
mi := &file_driver_proto_msgTypes[6]
312
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
313
ms.StoreMessageInfo(mi)
314
}
315
316
func (x *GetDisplayConnectionResponse) String() string {
317
return protoimpl.X.MessageStringOf(x)
318
}
319
320
func (*GetDisplayConnectionResponse) ProtoMessage() {}
321
322
func (x *GetDisplayConnectionResponse) ProtoReflect() protoreflect.Message {
323
mi := &file_driver_proto_msgTypes[6]
324
if x != nil {
325
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
326
if ms.LoadMessageInfo() == nil {
327
ms.StoreMessageInfo(mi)
328
}
329
return ms
330
}
331
return mi.MessageOf(x)
332
}
333
334
// Deprecated: Use GetDisplayConnectionResponse.ProtoReflect.Descriptor instead.
335
func (*GetDisplayConnectionResponse) Descriptor() ([]byte, []int) {
336
return file_driver_proto_rawDescGZIP(), []int{6}
337
}
338
339
func (x *GetDisplayConnectionResponse) GetConnection() string {
340
if x != nil {
341
return x.Connection
342
}
343
return ""
344
}
345
346
type CreateSnapshotRequest struct {
347
state protoimpl.MessageState `protogen:"open.v1"`
348
Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
349
unknownFields protoimpl.UnknownFields
350
sizeCache protoimpl.SizeCache
351
}
352
353
func (x *CreateSnapshotRequest) Reset() {
354
*x = CreateSnapshotRequest{}
355
mi := &file_driver_proto_msgTypes[7]
356
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
357
ms.StoreMessageInfo(mi)
358
}
359
360
func (x *CreateSnapshotRequest) String() string {
361
return protoimpl.X.MessageStringOf(x)
362
}
363
364
func (*CreateSnapshotRequest) ProtoMessage() {}
365
366
func (x *CreateSnapshotRequest) ProtoReflect() protoreflect.Message {
367
mi := &file_driver_proto_msgTypes[7]
368
if x != nil {
369
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
370
if ms.LoadMessageInfo() == nil {
371
ms.StoreMessageInfo(mi)
372
}
373
return ms
374
}
375
return mi.MessageOf(x)
376
}
377
378
// Deprecated: Use CreateSnapshotRequest.ProtoReflect.Descriptor instead.
379
func (*CreateSnapshotRequest) Descriptor() ([]byte, []int) {
380
return file_driver_proto_rawDescGZIP(), []int{7}
381
}
382
383
func (x *CreateSnapshotRequest) GetTag() string {
384
if x != nil {
385
return x.Tag
386
}
387
return ""
388
}
389
390
type ApplySnapshotRequest struct {
391
state protoimpl.MessageState `protogen:"open.v1"`
392
Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
393
unknownFields protoimpl.UnknownFields
394
sizeCache protoimpl.SizeCache
395
}
396
397
func (x *ApplySnapshotRequest) Reset() {
398
*x = ApplySnapshotRequest{}
399
mi := &file_driver_proto_msgTypes[8]
400
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
401
ms.StoreMessageInfo(mi)
402
}
403
404
func (x *ApplySnapshotRequest) String() string {
405
return protoimpl.X.MessageStringOf(x)
406
}
407
408
func (*ApplySnapshotRequest) ProtoMessage() {}
409
410
func (x *ApplySnapshotRequest) ProtoReflect() protoreflect.Message {
411
mi := &file_driver_proto_msgTypes[8]
412
if x != nil {
413
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
414
if ms.LoadMessageInfo() == nil {
415
ms.StoreMessageInfo(mi)
416
}
417
return ms
418
}
419
return mi.MessageOf(x)
420
}
421
422
// Deprecated: Use ApplySnapshotRequest.ProtoReflect.Descriptor instead.
423
func (*ApplySnapshotRequest) Descriptor() ([]byte, []int) {
424
return file_driver_proto_rawDescGZIP(), []int{8}
425
}
426
427
func (x *ApplySnapshotRequest) GetTag() string {
428
if x != nil {
429
return x.Tag
430
}
431
return ""
432
}
433
434
type DeleteSnapshotRequest struct {
435
state protoimpl.MessageState `protogen:"open.v1"`
436
Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
437
unknownFields protoimpl.UnknownFields
438
sizeCache protoimpl.SizeCache
439
}
440
441
func (x *DeleteSnapshotRequest) Reset() {
442
*x = DeleteSnapshotRequest{}
443
mi := &file_driver_proto_msgTypes[9]
444
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
445
ms.StoreMessageInfo(mi)
446
}
447
448
func (x *DeleteSnapshotRequest) String() string {
449
return protoimpl.X.MessageStringOf(x)
450
}
451
452
func (*DeleteSnapshotRequest) ProtoMessage() {}
453
454
func (x *DeleteSnapshotRequest) ProtoReflect() protoreflect.Message {
455
mi := &file_driver_proto_msgTypes[9]
456
if x != nil {
457
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
458
if ms.LoadMessageInfo() == nil {
459
ms.StoreMessageInfo(mi)
460
}
461
return ms
462
}
463
return mi.MessageOf(x)
464
}
465
466
// Deprecated: Use DeleteSnapshotRequest.ProtoReflect.Descriptor instead.
467
func (*DeleteSnapshotRequest) Descriptor() ([]byte, []int) {
468
return file_driver_proto_rawDescGZIP(), []int{9}
469
}
470
471
func (x *DeleteSnapshotRequest) GetTag() string {
472
if x != nil {
473
return x.Tag
474
}
475
return ""
476
}
477
478
type ListSnapshotsResponse struct {
479
state protoimpl.MessageState `protogen:"open.v1"`
480
Snapshots string `protobuf:"bytes,1,opt,name=snapshots,proto3" json:"snapshots,omitempty"`
481
unknownFields protoimpl.UnknownFields
482
sizeCache protoimpl.SizeCache
483
}
484
485
func (x *ListSnapshotsResponse) Reset() {
486
*x = ListSnapshotsResponse{}
487
mi := &file_driver_proto_msgTypes[10]
488
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
489
ms.StoreMessageInfo(mi)
490
}
491
492
func (x *ListSnapshotsResponse) String() string {
493
return protoimpl.X.MessageStringOf(x)
494
}
495
496
func (*ListSnapshotsResponse) ProtoMessage() {}
497
498
func (x *ListSnapshotsResponse) ProtoReflect() protoreflect.Message {
499
mi := &file_driver_proto_msgTypes[10]
500
if x != nil {
501
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
502
if ms.LoadMessageInfo() == nil {
503
ms.StoreMessageInfo(mi)
504
}
505
return ms
506
}
507
return mi.MessageOf(x)
508
}
509
510
// Deprecated: Use ListSnapshotsResponse.ProtoReflect.Descriptor instead.
511
func (*ListSnapshotsResponse) Descriptor() ([]byte, []int) {
512
return file_driver_proto_rawDescGZIP(), []int{10}
513
}
514
515
func (x *ListSnapshotsResponse) GetSnapshots() string {
516
if x != nil {
517
return x.Snapshots
518
}
519
return ""
520
}
521
522
type ForwardGuestAgentResponse struct {
523
state protoimpl.MessageState `protogen:"open.v1"`
524
ShouldForward bool `protobuf:"varint,1,opt,name=should_forward,json=shouldForward,proto3" json:"should_forward,omitempty"`
525
unknownFields protoimpl.UnknownFields
526
sizeCache protoimpl.SizeCache
527
}
528
529
func (x *ForwardGuestAgentResponse) Reset() {
530
*x = ForwardGuestAgentResponse{}
531
mi := &file_driver_proto_msgTypes[11]
532
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
533
ms.StoreMessageInfo(mi)
534
}
535
536
func (x *ForwardGuestAgentResponse) String() string {
537
return protoimpl.X.MessageStringOf(x)
538
}
539
540
func (*ForwardGuestAgentResponse) ProtoMessage() {}
541
542
func (x *ForwardGuestAgentResponse) ProtoReflect() protoreflect.Message {
543
mi := &file_driver_proto_msgTypes[11]
544
if x != nil {
545
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
546
if ms.LoadMessageInfo() == nil {
547
ms.StoreMessageInfo(mi)
548
}
549
return ms
550
}
551
return mi.MessageOf(x)
552
}
553
554
// Deprecated: Use ForwardGuestAgentResponse.ProtoReflect.Descriptor instead.
555
func (*ForwardGuestAgentResponse) Descriptor() ([]byte, []int) {
556
return file_driver_proto_rawDescGZIP(), []int{11}
557
}
558
559
func (x *ForwardGuestAgentResponse) GetShouldForward() bool {
560
if x != nil {
561
return x.ShouldForward
562
}
563
return false
564
}
565
566
var File_driver_proto protoreflect.FileDescriptor
567
568
const file_driver_proto_rawDesc = "" +
569
"\n" +
570
"\fdriver.proto\x1a\x1bgoogle/protobuf/empty.proto\"\x8e\x01\n" +
571
"\x13BootScriptsResponse\x12;\n" +
572
"\ascripts\x18\x01 \x03(\v2!.BootScriptsResponse.ScriptsEntryR\ascripts\x1a:\n" +
573
"\fScriptsEntry\x12\x10\n" +
574
"\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
575
"\x05value\x18\x02 \x01(\fR\x05value:\x028\x01\".\n" +
576
"\x12SSHAddressResponse\x12\x18\n" +
577
"\aaddress\x18\x01 \x01(\tR\aaddress\"+\n" +
578
"\fInfoResponse\x12\x1b\n" +
579
"\tinfo_json\x18\x01 \x01(\fR\binfoJson\"?\n" +
580
"\rStartResponse\x12\x18\n" +
581
"\asuccess\x18\x01 \x01(\bR\asuccess\x12\x14\n" +
582
"\x05error\x18\x02 \x01(\tR\x05error\"D\n" +
583
"\x10SetConfigRequest\x120\n" +
584
"\x14instance_config_json\x18\x01 \x01(\fR\x12instanceConfigJson\":\n" +
585
"\x1cChangeDisplayPasswordRequest\x12\x1a\n" +
586
"\bpassword\x18\x01 \x01(\tR\bpassword\">\n" +
587
"\x1cGetDisplayConnectionResponse\x12\x1e\n" +
588
"\n" +
589
"connection\x18\x01 \x01(\tR\n" +
590
"connection\")\n" +
591
"\x15CreateSnapshotRequest\x12\x10\n" +
592
"\x03tag\x18\x01 \x01(\tR\x03tag\"(\n" +
593
"\x14ApplySnapshotRequest\x12\x10\n" +
594
"\x03tag\x18\x01 \x01(\tR\x03tag\")\n" +
595
"\x15DeleteSnapshotRequest\x12\x10\n" +
596
"\x03tag\x18\x01 \x01(\tR\x03tag\"5\n" +
597
"\x15ListSnapshotsResponse\x12\x1c\n" +
598
"\tsnapshots\x18\x01 \x01(\tR\tsnapshots\"B\n" +
599
"\x19ForwardGuestAgentResponse\x12%\n" +
600
"\x0eshould_forward\x18\x01 \x01(\bR\rshouldForward2\xf2\t\n" +
601
"\x06Driver\x12:\n" +
602
"\bValidate\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\x128\n" +
603
"\x06Create\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\x12<\n" +
604
"\n" +
605
"CreateDisk\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\x121\n" +
606
"\x05Start\x12\x16.google.protobuf.Empty\x1a\x0e.StartResponse0\x01\x126\n" +
607
"\x04Stop\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\x128\n" +
608
"\x06Delete\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\x12;\n" +
609
"\vBootScripts\x12\x16.google.protobuf.Empty\x1a\x14.BootScriptsResponse\x128\n" +
610
"\x06RunGUI\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\x12N\n" +
611
"\x15ChangeDisplayPassword\x12\x1d.ChangeDisplayPasswordRequest\x1a\x16.google.protobuf.Empty\x12M\n" +
612
"\x14GetDisplayConnection\x12\x16.google.protobuf.Empty\x1a\x1d.GetDisplayConnectionResponse\x12@\n" +
613
"\x0eCreateSnapshot\x12\x16.CreateSnapshotRequest\x1a\x16.google.protobuf.Empty\x12>\n" +
614
"\rApplySnapshot\x12\x15.ApplySnapshotRequest\x1a\x16.google.protobuf.Empty\x12@\n" +
615
"\x0eDeleteSnapshot\x12\x16.DeleteSnapshotRequest\x1a\x16.google.protobuf.Empty\x12?\n" +
616
"\rListSnapshots\x12\x16.google.protobuf.Empty\x1a\x16.ListSnapshotsResponse\x12G\n" +
617
"\x11ForwardGuestAgent\x12\x16.google.protobuf.Empty\x1a\x1a.ForwardGuestAgentResponse\x12@\n" +
618
"\x0eGuestAgentConn\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\x126\n" +
619
"\tConfigure\x12\x11.SetConfigRequest\x1a\x16.google.protobuf.Empty\x12-\n" +
620
"\x04Info\x12\x16.google.protobuf.Empty\x1a\r.InfoResponse\x129\n" +
621
"\n" +
622
"SSHAddress\x12\x16.google.protobuf.Empty\x1a\x13.SSHAddressResponse\x12G\n" +
623
"\x15AdditionalSetupForSSH\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.EmptyB0Z.github.com/lima-vm/lima/v2/pkg/driver/externalb\x06proto3"
624
625
var (
626
file_driver_proto_rawDescOnce sync.Once
627
file_driver_proto_rawDescData []byte
628
)
629
630
func file_driver_proto_rawDescGZIP() []byte {
631
file_driver_proto_rawDescOnce.Do(func() {
632
file_driver_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_driver_proto_rawDesc), len(file_driver_proto_rawDesc)))
633
})
634
return file_driver_proto_rawDescData
635
}
636
637
var file_driver_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
638
var file_driver_proto_goTypes = []any{
639
(*BootScriptsResponse)(nil), // 0: BootScriptsResponse
640
(*SSHAddressResponse)(nil), // 1: SSHAddressResponse
641
(*InfoResponse)(nil), // 2: InfoResponse
642
(*StartResponse)(nil), // 3: StartResponse
643
(*SetConfigRequest)(nil), // 4: SetConfigRequest
644
(*ChangeDisplayPasswordRequest)(nil), // 5: ChangeDisplayPasswordRequest
645
(*GetDisplayConnectionResponse)(nil), // 6: GetDisplayConnectionResponse
646
(*CreateSnapshotRequest)(nil), // 7: CreateSnapshotRequest
647
(*ApplySnapshotRequest)(nil), // 8: ApplySnapshotRequest
648
(*DeleteSnapshotRequest)(nil), // 9: DeleteSnapshotRequest
649
(*ListSnapshotsResponse)(nil), // 10: ListSnapshotsResponse
650
(*ForwardGuestAgentResponse)(nil), // 11: ForwardGuestAgentResponse
651
nil, // 12: BootScriptsResponse.ScriptsEntry
652
(*emptypb.Empty)(nil), // 13: google.protobuf.Empty
653
}
654
var file_driver_proto_depIdxs = []int32{
655
12, // 0: BootScriptsResponse.scripts:type_name -> BootScriptsResponse.ScriptsEntry
656
13, // 1: Driver.Validate:input_type -> google.protobuf.Empty
657
13, // 2: Driver.Create:input_type -> google.protobuf.Empty
658
13, // 3: Driver.CreateDisk:input_type -> google.protobuf.Empty
659
13, // 4: Driver.Start:input_type -> google.protobuf.Empty
660
13, // 5: Driver.Stop:input_type -> google.protobuf.Empty
661
13, // 6: Driver.Delete:input_type -> google.protobuf.Empty
662
13, // 7: Driver.BootScripts:input_type -> google.protobuf.Empty
663
13, // 8: Driver.RunGUI:input_type -> google.protobuf.Empty
664
5, // 9: Driver.ChangeDisplayPassword:input_type -> ChangeDisplayPasswordRequest
665
13, // 10: Driver.GetDisplayConnection:input_type -> google.protobuf.Empty
666
7, // 11: Driver.CreateSnapshot:input_type -> CreateSnapshotRequest
667
8, // 12: Driver.ApplySnapshot:input_type -> ApplySnapshotRequest
668
9, // 13: Driver.DeleteSnapshot:input_type -> DeleteSnapshotRequest
669
13, // 14: Driver.ListSnapshots:input_type -> google.protobuf.Empty
670
13, // 15: Driver.ForwardGuestAgent:input_type -> google.protobuf.Empty
671
13, // 16: Driver.GuestAgentConn:input_type -> google.protobuf.Empty
672
4, // 17: Driver.Configure:input_type -> SetConfigRequest
673
13, // 18: Driver.Info:input_type -> google.protobuf.Empty
674
13, // 19: Driver.SSHAddress:input_type -> google.protobuf.Empty
675
13, // 20: Driver.AdditionalSetupForSSH:input_type -> google.protobuf.Empty
676
13, // 21: Driver.Validate:output_type -> google.protobuf.Empty
677
13, // 22: Driver.Create:output_type -> google.protobuf.Empty
678
13, // 23: Driver.CreateDisk:output_type -> google.protobuf.Empty
679
3, // 24: Driver.Start:output_type -> StartResponse
680
13, // 25: Driver.Stop:output_type -> google.protobuf.Empty
681
13, // 26: Driver.Delete:output_type -> google.protobuf.Empty
682
0, // 27: Driver.BootScripts:output_type -> BootScriptsResponse
683
13, // 28: Driver.RunGUI:output_type -> google.protobuf.Empty
684
13, // 29: Driver.ChangeDisplayPassword:output_type -> google.protobuf.Empty
685
6, // 30: Driver.GetDisplayConnection:output_type -> GetDisplayConnectionResponse
686
13, // 31: Driver.CreateSnapshot:output_type -> google.protobuf.Empty
687
13, // 32: Driver.ApplySnapshot:output_type -> google.protobuf.Empty
688
13, // 33: Driver.DeleteSnapshot:output_type -> google.protobuf.Empty
689
10, // 34: Driver.ListSnapshots:output_type -> ListSnapshotsResponse
690
11, // 35: Driver.ForwardGuestAgent:output_type -> ForwardGuestAgentResponse
691
13, // 36: Driver.GuestAgentConn:output_type -> google.protobuf.Empty
692
13, // 37: Driver.Configure:output_type -> google.protobuf.Empty
693
2, // 38: Driver.Info:output_type -> InfoResponse
694
1, // 39: Driver.SSHAddress:output_type -> SSHAddressResponse
695
13, // 40: Driver.AdditionalSetupForSSH:output_type -> google.protobuf.Empty
696
21, // [21:41] is the sub-list for method output_type
697
1, // [1:21] is the sub-list for method input_type
698
1, // [1:1] is the sub-list for extension type_name
699
1, // [1:1] is the sub-list for extension extendee
700
0, // [0:1] is the sub-list for field type_name
701
}
702
703
func init() { file_driver_proto_init() }
704
func file_driver_proto_init() {
705
if File_driver_proto != nil {
706
return
707
}
708
type x struct{}
709
out := protoimpl.TypeBuilder{
710
File: protoimpl.DescBuilder{
711
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
712
RawDescriptor: unsafe.Slice(unsafe.StringData(file_driver_proto_rawDesc), len(file_driver_proto_rawDesc)),
713
NumEnums: 0,
714
NumMessages: 13,
715
NumExtensions: 0,
716
NumServices: 1,
717
},
718
GoTypes: file_driver_proto_goTypes,
719
DependencyIndexes: file_driver_proto_depIdxs,
720
MessageInfos: file_driver_proto_msgTypes,
721
}.Build()
722
File_driver_proto = out.File
723
file_driver_proto_goTypes = nil
724
file_driver_proto_depIdxs = nil
725
}
726
727