@metal-stack/api 0.0.44 → 0.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/js/metalstack/admin/v2/machine_pb.d.ts +205 -1
  2. package/js/metalstack/admin/v2/machine_pb.js +41 -1
  3. package/js/metalstack/admin/v2/machine_pb.ts +233 -2
  4. package/js/metalstack/admin/v2/network_pb.js +1 -1
  5. package/js/metalstack/admin/v2/network_pb.ts +1 -1
  6. package/js/metalstack/admin/v2/task_pb.d.ts +396 -0
  7. package/js/metalstack/admin/v2/task_pb.js +121 -0
  8. package/js/metalstack/admin/v2/task_pb.ts +467 -0
  9. package/js/metalstack/api/v2/common_pb.d.ts +35 -0
  10. package/js/metalstack/api/v2/common_pb.js +41 -5
  11. package/js/metalstack/api/v2/common_pb.ts +47 -5
  12. package/js/metalstack/api/v2/machine_pb.d.ts +439 -16
  13. package/js/metalstack/api/v2/machine_pb.js +159 -30
  14. package/js/metalstack/api/v2/machine_pb.ts +536 -45
  15. package/js/metalstack/api/v2/method_pb.d.ts +9 -1
  16. package/js/metalstack/api/v2/method_pb.js +1 -1
  17. package/js/metalstack/api/v2/method_pb.ts +9 -2
  18. package/js/metalstack/api/v2/network_pb.js +1 -1
  19. package/js/metalstack/api/v2/network_pb.ts +1 -1
  20. package/js/metalstack/api/v2/partition_pb.js +1 -1
  21. package/js/metalstack/api/v2/partition_pb.ts +1 -1
  22. package/js/metalstack/api/v2/predefined_rules_pb.d.ts +2 -2
  23. package/js/metalstack/api/v2/predefined_rules_pb.js +3 -3
  24. package/js/metalstack/api/v2/predefined_rules_pb.ts +3 -3
  25. package/js/metalstack/api/v2/switch_pb.js +1 -1
  26. package/js/metalstack/api/v2/switch_pb.ts +1 -1
  27. package/js/metalstack/api/v2/token_pb.d.ts +28 -3
  28. package/js/metalstack/api/v2/token_pb.js +1 -1
  29. package/js/metalstack/api/v2/token_pb.ts +26 -4
  30. package/js/metalstack/infra/v2/bmc_pb.d.ts +127 -19
  31. package/js/metalstack/infra/v2/bmc_pb.js +20 -7
  32. package/js/metalstack/infra/v2/bmc_pb.ts +136 -18
  33. package/js/metalstack/infra/v2/boot_pb.d.ts +368 -0
  34. package/js/metalstack/infra/v2/boot_pb.js +80 -0
  35. package/js/metalstack/infra/v2/boot_pb.ts +435 -0
  36. package/package.json +1 -1
@@ -0,0 +1,368 @@
1
+ import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
2
+ import type { MachineAllocation, MachineBios, MachineBMC, MachineFRU, MachineHardware } from "../../api/v2/machine_pb";
3
+ import type { Message } from "@bufbuild/protobuf";
4
+ /**
5
+ * Describes the file metalstack/infra/v2/boot.proto.
6
+ */
7
+ export declare const file_metalstack_infra_v2_boot: GenFile;
8
+ /**
9
+ * BootServiceDhcpRequest is called once a machine issues a dhcp request
10
+ *
11
+ * @generated from message metalstack.infra.v2.BootServiceDhcpRequest
12
+ */
13
+ export type BootServiceDhcpRequest = Message<"metalstack.infra.v2.BootServiceDhcpRequest"> & {
14
+ /**
15
+ * UUID of the machine
16
+ *
17
+ * @generated from field: string uuid = 1;
18
+ */
19
+ uuid: string;
20
+ /**
21
+ * Partition where this machine is located
22
+ *
23
+ * @generated from field: string partition = 2;
24
+ */
25
+ partition: string;
26
+ };
27
+ /**
28
+ * Describes the message metalstack.infra.v2.BootServiceDhcpRequest.
29
+ * Use `create(BootServiceDhcpRequestSchema)` to create a new message.
30
+ */
31
+ export declare const BootServiceDhcpRequestSchema: GenMessage<BootServiceDhcpRequest>;
32
+ /**
33
+ * BootServiceDhcpResponse contains the response to a dhcp request
34
+ *
35
+ * @generated from message metalstack.infra.v2.BootServiceDhcpResponse
36
+ */
37
+ export type BootServiceDhcpResponse = Message<"metalstack.infra.v2.BootServiceDhcpResponse"> & {};
38
+ /**
39
+ * Describes the message metalstack.infra.v2.BootServiceDhcpResponse.
40
+ * Use `create(BootServiceDhcpResponseSchema)` to create a new message.
41
+ */
42
+ export declare const BootServiceDhcpResponseSchema: GenMessage<BootServiceDhcpResponse>;
43
+ /**
44
+ * BootServiceBootRequest is called to get specified parameters to boot a machine with the given mac
45
+ *
46
+ * @generated from message metalstack.infra.v2.BootServiceBootRequest
47
+ */
48
+ export type BootServiceBootRequest = Message<"metalstack.infra.v2.BootServiceBootRequest"> & {
49
+ /**
50
+ * Mac address of the machine
51
+ *
52
+ * @generated from field: string mac = 1;
53
+ */
54
+ mac: string;
55
+ /**
56
+ * Partition where this machine is located
57
+ *
58
+ * @generated from field: string partition = 2;
59
+ */
60
+ partition: string;
61
+ };
62
+ /**
63
+ * Describes the message metalstack.infra.v2.BootServiceBootRequest.
64
+ * Use `create(BootServiceBootRequestSchema)` to create a new message.
65
+ */
66
+ export declare const BootServiceBootRequestSchema: GenMessage<BootServiceBootRequest>;
67
+ /**
68
+ * BootServiceBootResponse contains additional infos which are required to boot a machine
69
+ *
70
+ * @generated from message metalstack.infra.v2.BootServiceBootResponse
71
+ */
72
+ export type BootServiceBootResponse = Message<"metalstack.infra.v2.BootServiceBootResponse"> & {
73
+ /**
74
+ * Kernel is the url to the linux kernel to boot
75
+ *
76
+ * @generated from field: string kernel = 1;
77
+ */
78
+ kernel: string;
79
+ /**
80
+ * Initial ram disk is the url to the initial ram disk to boot
81
+ *
82
+ * @generated from field: repeated string init_ram_disks = 2;
83
+ */
84
+ initRamDisks: string[];
85
+ /**
86
+ * CMDLine contains kernel command line parameters to boot
87
+ *
88
+ * @generated from field: optional string cmdline = 3;
89
+ */
90
+ cmdline?: string;
91
+ };
92
+ /**
93
+ * Describes the message metalstack.infra.v2.BootServiceBootResponse.
94
+ * Use `create(BootServiceBootResponseSchema)` to create a new message.
95
+ */
96
+ export declare const BootServiceBootResponseSchema: GenMessage<BootServiceBootResponse>;
97
+ /**
98
+ * BootServiceRegisterRequest is called from metal-hammer to register a machine with as much hardware details as possible
99
+ *
100
+ * @generated from message metalstack.infra.v2.BootServiceRegisterRequest
101
+ */
102
+ export type BootServiceRegisterRequest = Message<"metalstack.infra.v2.BootServiceRegisterRequest"> & {
103
+ /**
104
+ * UUID of this machine
105
+ *
106
+ * @generated from field: string uuid = 1;
107
+ */
108
+ uuid: string;
109
+ /**
110
+ * Hardware details of this machine
111
+ *
112
+ * @generated from field: metalstack.api.v2.MachineHardware hardware = 2;
113
+ */
114
+ hardware?: MachineHardware;
115
+ /**
116
+ * Bios details of this machine
117
+ *
118
+ * @generated from field: metalstack.api.v2.MachineBios bios = 3;
119
+ */
120
+ bios?: MachineBios;
121
+ /**
122
+ * BMC details of this machine
123
+ *
124
+ * @generated from field: metalstack.api.v2.MachineBMC bmc = 4;
125
+ */
126
+ bmc?: MachineBMC;
127
+ /**
128
+ * FRU details of this machine
129
+ *
130
+ * @generated from field: metalstack.api.v2.MachineFRU fru = 5;
131
+ */
132
+ fru?: MachineFRU;
133
+ /**
134
+ * Tags of this machine
135
+ *
136
+ * @generated from field: repeated string tags = 6;
137
+ */
138
+ tags: string[];
139
+ /**
140
+ * MetalHammer version this machine was bootet into
141
+ *
142
+ * @generated from field: string metal_hammer_version = 7;
143
+ */
144
+ metalHammerVersion: string;
145
+ /**
146
+ * Partition where this machine is located
147
+ *
148
+ * @generated from field: string partition = 8;
149
+ */
150
+ partition: string;
151
+ };
152
+ /**
153
+ * Describes the message metalstack.infra.v2.BootServiceRegisterRequest.
154
+ * Use `create(BootServiceRegisterRequestSchema)` to create a new message.
155
+ */
156
+ export declare const BootServiceRegisterRequestSchema: GenMessage<BootServiceRegisterRequest>;
157
+ /**
158
+ * BootServiceRegisterResponse response to a BootServiceRegisterResponse request
159
+ *
160
+ * @generated from message metalstack.infra.v2.BootServiceRegisterResponse
161
+ */
162
+ export type BootServiceRegisterResponse = Message<"metalstack.infra.v2.BootServiceRegisterResponse"> & {
163
+ /**
164
+ * UUID of this machine
165
+ *
166
+ * @generated from field: string uuid = 1;
167
+ */
168
+ uuid: string;
169
+ /**
170
+ * Size is the calculated size from given hardware details
171
+ *
172
+ * @generated from field: string size = 2;
173
+ */
174
+ size: string;
175
+ /**
176
+ * Partition of this machine
177
+ *
178
+ * @generated from field: string partition = 3;
179
+ */
180
+ partition: string;
181
+ };
182
+ /**
183
+ * Describes the message metalstack.infra.v2.BootServiceRegisterResponse.
184
+ * Use `create(BootServiceRegisterResponseSchema)` to create a new message.
185
+ */
186
+ export declare const BootServiceRegisterResponseSchema: GenMessage<BootServiceRegisterResponse>;
187
+ /**
188
+ * BootServiceWaitRequest is called when a machine was registered and is waiting for allocation
189
+ *
190
+ * @generated from message metalstack.infra.v2.BootServiceWaitRequest
191
+ */
192
+ export type BootServiceWaitRequest = Message<"metalstack.infra.v2.BootServiceWaitRequest"> & {
193
+ /**
194
+ * UUID of this machine
195
+ *
196
+ * @generated from field: string uuid = 1;
197
+ */
198
+ uuid: string;
199
+ };
200
+ /**
201
+ * Describes the message metalstack.infra.v2.BootServiceWaitRequest.
202
+ * Use `create(BootServiceWaitRequestSchema)` to create a new message.
203
+ */
204
+ export declare const BootServiceWaitRequestSchema: GenMessage<BootServiceWaitRequest>;
205
+ /**
206
+ * BootServiceWaitResponse response to a wait request
207
+ *
208
+ * @generated from message metalstack.infra.v2.BootServiceWaitResponse
209
+ */
210
+ export type BootServiceWaitResponse = Message<"metalstack.infra.v2.BootServiceWaitResponse"> & {
211
+ /**
212
+ * Allocation contains the machine.allocation to actually install the machine
213
+ *
214
+ * @generated from field: metalstack.api.v2.MachineAllocation allocation = 1;
215
+ */
216
+ allocation?: MachineAllocation;
217
+ };
218
+ /**
219
+ * Describes the message metalstack.infra.v2.BootServiceWaitResponse.
220
+ * Use `create(BootServiceWaitResponseSchema)` to create a new message.
221
+ */
222
+ export declare const BootServiceWaitResponseSchema: GenMessage<BootServiceWaitResponse>;
223
+ /**
224
+ * BootServiceInstallationSucceededRequest is sent from metal-hammer to the api to report the installation succeeded
225
+ *
226
+ * @generated from message metalstack.infra.v2.BootServiceInstallationSucceededRequest
227
+ */
228
+ export type BootServiceInstallationSucceededRequest = Message<"metalstack.infra.v2.BootServiceInstallationSucceededRequest"> & {
229
+ /**
230
+ * UUID of the machine to boot
231
+ *
232
+ * @generated from field: string uuid = 1;
233
+ */
234
+ uuid: string;
235
+ /**
236
+ * ConsolePassword
237
+ *
238
+ * @generated from field: string console_password = 2;
239
+ */
240
+ consolePassword: string;
241
+ };
242
+ /**
243
+ * Describes the message metalstack.infra.v2.BootServiceInstallationSucceededRequest.
244
+ * Use `create(BootServiceInstallationSucceededRequestSchema)` to create a new message.
245
+ */
246
+ export declare const BootServiceInstallationSucceededRequestSchema: GenMessage<BootServiceInstallationSucceededRequest>;
247
+ /**
248
+ * BootServiceInstallationSucceededResponse is the response to a BootServiceInstallationSucceededRequest
249
+ *
250
+ * @generated from message metalstack.infra.v2.BootServiceInstallationSucceededResponse
251
+ */
252
+ export type BootServiceInstallationSucceededResponse = Message<"metalstack.infra.v2.BootServiceInstallationSucceededResponse"> & {};
253
+ /**
254
+ * Describes the message metalstack.infra.v2.BootServiceInstallationSucceededResponse.
255
+ * Use `create(BootServiceInstallationSucceededResponseSchema)` to create a new message.
256
+ */
257
+ export declare const BootServiceInstallationSucceededResponseSchema: GenMessage<BootServiceInstallationSucceededResponse>;
258
+ /**
259
+ * BootServiceSuperUserPasswordRequest this call returns the password for the machine superuser
260
+ *
261
+ * @generated from message metalstack.infra.v2.BootServiceSuperUserPasswordRequest
262
+ */
263
+ export type BootServiceSuperUserPasswordRequest = Message<"metalstack.infra.v2.BootServiceSuperUserPasswordRequest"> & {
264
+ /**
265
+ * UUID of this machine
266
+ *
267
+ * @generated from field: string uuid = 1;
268
+ */
269
+ uuid: string;
270
+ };
271
+ /**
272
+ * Describes the message metalstack.infra.v2.BootServiceSuperUserPasswordRequest.
273
+ * Use `create(BootServiceSuperUserPasswordRequestSchema)` to create a new message.
274
+ */
275
+ export declare const BootServiceSuperUserPasswordRequestSchema: GenMessage<BootServiceSuperUserPasswordRequest>;
276
+ /**
277
+ * BootServiceSuperUserPasswordResponse the super user password is returned
278
+ *
279
+ * @generated from message metalstack.infra.v2.BootServiceSuperUserPasswordResponse
280
+ */
281
+ export type BootServiceSuperUserPasswordResponse = Message<"metalstack.infra.v2.BootServiceSuperUserPasswordResponse"> & {
282
+ /**
283
+ * FeatureDisabled on set the superuserpassword in the bmc if this feature is not disabled.
284
+ *
285
+ * @generated from field: bool feature_disabled = 1;
286
+ */
287
+ featureDisabled: boolean;
288
+ /**
289
+ * SuperUserPassword is the password of the superuser on the ipmi device
290
+ *
291
+ * @generated from field: string super_user_password = 2;
292
+ */
293
+ superUserPassword: string;
294
+ };
295
+ /**
296
+ * Describes the message metalstack.infra.v2.BootServiceSuperUserPasswordResponse.
297
+ * Use `create(BootServiceSuperUserPasswordResponseSchema)` to create a new message.
298
+ */
299
+ export declare const BootServiceSuperUserPasswordResponseSchema: GenMessage<BootServiceSuperUserPasswordResponse>;
300
+ /**
301
+ * BootService is used for all boot related requests, either pixiecore or metal-hammer
302
+ *
303
+ * Pixiecore
304
+ *
305
+ * @generated from service metalstack.infra.v2.BootService
306
+ */
307
+ export declare const BootService: GenService<{
308
+ /**
309
+ * Dhcp is the first dhcp request (option 97). A ProvisioningEventPXEBooting is fired
310
+ *
311
+ * @generated from rpc metalstack.infra.v2.BootService.Dhcp
312
+ */
313
+ dhcp: {
314
+ methodKind: "unary";
315
+ input: typeof BootServiceDhcpRequestSchema;
316
+ output: typeof BootServiceDhcpResponseSchema;
317
+ };
318
+ /**
319
+ * Boot is called from pixie once the machine got the first dhcp response and ipxie asks for subsequent kernel and initrd
320
+ *
321
+ * @generated from rpc metalstack.infra.v2.BootService.Boot
322
+ */
323
+ boot: {
324
+ methodKind: "unary";
325
+ input: typeof BootServiceBootRequestSchema;
326
+ output: typeof BootServiceBootResponseSchema;
327
+ };
328
+ /**
329
+ * SuperUserPassword metal-hammer takes the configured root password for the bmc from metal-apiserver and configure the bmc accordingly
330
+ *
331
+ * @generated from rpc metalstack.infra.v2.BootService.SuperUserPassword
332
+ */
333
+ superUserPassword: {
334
+ methodKind: "unary";
335
+ input: typeof BootServiceSuperUserPasswordRequestSchema;
336
+ output: typeof BootServiceSuperUserPasswordResponseSchema;
337
+ };
338
+ /**
339
+ * Register is called from metal-hammer after hardware inventory is finished, tells metal-apiserver all gory details about that machine
340
+ *
341
+ * @generated from rpc metalstack.infra.v2.BootService.Register
342
+ */
343
+ register: {
344
+ methodKind: "unary";
345
+ input: typeof BootServiceRegisterRequestSchema;
346
+ output: typeof BootServiceRegisterResponseSchema;
347
+ };
348
+ /**
349
+ * Wait is a hanging call that waits until the machine gets allocated by a user
350
+ *
351
+ * @generated from rpc metalstack.infra.v2.BootService.Wait
352
+ */
353
+ wait: {
354
+ methodKind: "server_streaming";
355
+ input: typeof BootServiceWaitRequestSchema;
356
+ output: typeof BootServiceWaitResponseSchema;
357
+ };
358
+ /**
359
+ * InstallationSucceeded tells metal-apiserver installation was either successful
360
+ *
361
+ * @generated from rpc metalstack.infra.v2.BootService.InstallationSucceeded
362
+ */
363
+ installationSucceeded: {
364
+ methodKind: "unary";
365
+ input: typeof BootServiceInstallationSucceededRequestSchema;
366
+ output: typeof BootServiceInstallationSucceededResponseSchema;
367
+ };
368
+ }>;
@@ -0,0 +1,80 @@
1
+ // @generated by protoc-gen-es v2.11.0 with parameter "target=ts"
2
+ // @generated from file metalstack/infra/v2/boot.proto (package metalstack.infra.v2, syntax proto3)
3
+ /* eslint-disable */
4
+ import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
5
+ import { file_buf_validate_validate } from "../../../buf/validate/validate_pb";
6
+ import { file_metalstack_api_v2_common } from "../../api/v2/common_pb";
7
+ import { file_metalstack_api_v2_machine } from "../../api/v2/machine_pb";
8
+ import { file_metalstack_api_v2_predefined_rules } from "../../api/v2/predefined_rules_pb";
9
+ /**
10
+ * Describes the file metalstack/infra/v2/boot.proto.
11
+ */
12
+ export const file_metalstack_infra_v2_boot = /*@__PURE__*/ fileDesc("Ch5tZXRhbHN0YWNrL2luZnJhL3YyL2Jvb3QucHJvdG8SE21ldGFsc3RhY2suaW5mcmEudjIiUAoWQm9vdFNlcnZpY2VEaGNwUmVxdWVzdBIWCgR1dWlkGAEgASgJQgi6SAVyA7ABARIeCglwYXJ0aXRpb24YAiABKAlCC7pICHIG0LOusQIBIhkKF0Jvb3RTZXJ2aWNlRGhjcFJlc3BvbnNlIlIKFkJvb3RTZXJ2aWNlQm9vdFJlcXVlc3QSGAoDbWFjGAEgASgJQgu6SAhyBrizrrECARIeCglwYXJ0aXRpb24YAiABKAlCC7pICHIG0LOusQIBIn0KF0Jvb3RTZXJ2aWNlQm9vdFJlc3BvbnNlEhsKBmtlcm5lbBgBIAEoCUILukgIcgbgs66xAgESFgoOaW5pdF9yYW1fZGlza3MYAiADKAkSIQoHY21kbGluZRgDIAEoCUILukgIcgbIs66xAgFIAIgBAUIKCghfY21kbGluZSLJAgoaQm9vdFNlcnZpY2VSZWdpc3RlclJlcXVlc3QSFgoEdXVpZBgBIAEoCUIIukgFcgOwAQESNAoIaGFyZHdhcmUYAiABKAsyIi5tZXRhbHN0YWNrLmFwaS52Mi5NYWNoaW5lSGFyZHdhcmUSLAoEYmlvcxgDIAEoCzIeLm1ldGFsc3RhY2suYXBpLnYyLk1hY2hpbmVCaW9zEioKA2JtYxgEIAEoCzIdLm1ldGFsc3RhY2suYXBpLnYyLk1hY2hpbmVCTUMSKgoDZnJ1GAUgASgLMh0ubWV0YWxzdGFjay5hcGkudjIuTWFjaGluZUZSVRIMCgR0YWdzGAYgAygJEikKFG1ldGFsX2hhbW1lcl92ZXJzaW9uGAcgASgJQgu6SAhyBsizrrECARIeCglwYXJ0aXRpb24YCCABKAlCC7pICHIG0LOusQIBInAKG0Jvb3RTZXJ2aWNlUmVnaXN0ZXJSZXNwb25zZRIWCgR1dWlkGAEgASgJQgi6SAVyA7ABARIZCgRzaXplGAIgASgJQgu6SAhyBsizrrECARIeCglwYXJ0aXRpb24YAyABKAlCC7pICHIG0LOusQIBIjAKFkJvb3RTZXJ2aWNlV2FpdFJlcXVlc3QSFgoEdXVpZBgBIAEoCUIIukgFcgOwAQEiUwoXQm9vdFNlcnZpY2VXYWl0UmVzcG9uc2USOAoKYWxsb2NhdGlvbhgBIAEoCzIkLm1ldGFsc3RhY2suYXBpLnYyLk1hY2hpbmVBbGxvY2F0aW9uImcKJ0Jvb3RTZXJ2aWNlSW5zdGFsbGF0aW9uU3VjY2VlZGVkUmVxdWVzdBIWCgR1dWlkGAEgASgJQgi6SAVyA7ABARIkChBjb25zb2xlX3Bhc3N3b3JkGAIgASgJQgq6SAdyBRACGIABIioKKEJvb3RTZXJ2aWNlSW5zdGFsbGF0aW9uU3VjY2VlZGVkUmVzcG9uc2UiPQojQm9vdFNlcnZpY2VTdXBlclVzZXJQYXNzd29yZFJlcXVlc3QSFgoEdXVpZBgBIAEoCUIIukgFcgOwAQEiaQokQm9vdFNlcnZpY2VTdXBlclVzZXJQYXNzd29yZFJlc3BvbnNlEhgKEGZlYXR1cmVfZGlzYWJsZWQYASABKAgSJwoTc3VwZXJfdXNlcl9wYXNzd29yZBgCIAEoCUIKukgHcgUQAhiAATKLBgoLQm9vdFNlcnZpY2USbAoERGhjcBIrLm1ldGFsc3RhY2suaW5mcmEudjIuQm9vdFNlcnZpY2VEaGNwUmVxdWVzdBosLm1ldGFsc3RhY2suaW5mcmEudjIuQm9vdFNlcnZpY2VEaGNwUmVzcG9uc2UiCeDzGALq8xgBARJsCgRCb290EisubWV0YWxzdGFjay5pbmZyYS52Mi5Cb290U2VydmljZUJvb3RSZXF1ZXN0GiwubWV0YWxzdGFjay5pbmZyYS52Mi5Cb290U2VydmljZUJvb3RSZXNwb25zZSIJ4PMYAurzGAEBEpMBChFTdXBlclVzZXJQYXNzd29yZBI4Lm1ldGFsc3RhY2suaW5mcmEudjIuQm9vdFNlcnZpY2VTdXBlclVzZXJQYXNzd29yZFJlcXVlc3QaOS5tZXRhbHN0YWNrLmluZnJhLnYyLkJvb3RTZXJ2aWNlU3VwZXJVc2VyUGFzc3dvcmRSZXNwb25zZSIJ4PMYAvLzGAEBEngKCFJlZ2lzdGVyEi8ubWV0YWxzdGFjay5pbmZyYS52Mi5Cb290U2VydmljZVJlZ2lzdGVyUmVxdWVzdBowLm1ldGFsc3RhY2suaW5mcmEudjIuQm9vdFNlcnZpY2VSZWdpc3RlclJlc3BvbnNlIgng8xgC8vMYAQESbgoEV2FpdBIrLm1ldGFsc3RhY2suaW5mcmEudjIuQm9vdFNlcnZpY2VXYWl0UmVxdWVzdBosLm1ldGFsc3RhY2suaW5mcmEudjIuQm9vdFNlcnZpY2VXYWl0UmVzcG9uc2UiCeDzGALy8xgBATABEp8BChVJbnN0YWxsYXRpb25TdWNjZWVkZWQSPC5tZXRhbHN0YWNrLmluZnJhLnYyLkJvb3RTZXJ2aWNlSW5zdGFsbGF0aW9uU3VjY2VlZGVkUmVxdWVzdBo9Lm1ldGFsc3RhY2suaW5mcmEudjIuQm9vdFNlcnZpY2VJbnN0YWxsYXRpb25TdWNjZWVkZWRSZXNwb25zZSIJ4PMYAvLzGAEBQs0BChdjb20ubWV0YWxzdGFjay5pbmZyYS52MkIJQm9vdFByb3RvUAFaOWdpdGh1Yi5jb20vbWV0YWwtc3RhY2svYXBpL2dvL21ldGFsc3RhY2svaW5mcmEvdjI7aW5mcmF2MqICA01JWKoCE01ldGFsc3RhY2suSW5mcmEuVjLKAhNNZXRhbHN0YWNrXEluZnJhXFYy4gIfTWV0YWxzdGFja1xJbmZyYVxWMlxHUEJNZXRhZGF0YeoCFU1ldGFsc3RhY2s6OkluZnJhOjpWMmIGcHJvdG8z", [file_buf_validate_validate, file_metalstack_api_v2_common, file_metalstack_api_v2_machine, file_metalstack_api_v2_predefined_rules]);
13
+ /**
14
+ * Describes the message metalstack.infra.v2.BootServiceDhcpRequest.
15
+ * Use `create(BootServiceDhcpRequestSchema)` to create a new message.
16
+ */
17
+ export const BootServiceDhcpRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 0);
18
+ /**
19
+ * Describes the message metalstack.infra.v2.BootServiceDhcpResponse.
20
+ * Use `create(BootServiceDhcpResponseSchema)` to create a new message.
21
+ */
22
+ export const BootServiceDhcpResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 1);
23
+ /**
24
+ * Describes the message metalstack.infra.v2.BootServiceBootRequest.
25
+ * Use `create(BootServiceBootRequestSchema)` to create a new message.
26
+ */
27
+ export const BootServiceBootRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 2);
28
+ /**
29
+ * Describes the message metalstack.infra.v2.BootServiceBootResponse.
30
+ * Use `create(BootServiceBootResponseSchema)` to create a new message.
31
+ */
32
+ export const BootServiceBootResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 3);
33
+ /**
34
+ * Describes the message metalstack.infra.v2.BootServiceRegisterRequest.
35
+ * Use `create(BootServiceRegisterRequestSchema)` to create a new message.
36
+ */
37
+ export const BootServiceRegisterRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 4);
38
+ /**
39
+ * Describes the message metalstack.infra.v2.BootServiceRegisterResponse.
40
+ * Use `create(BootServiceRegisterResponseSchema)` to create a new message.
41
+ */
42
+ export const BootServiceRegisterResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 5);
43
+ /**
44
+ * Describes the message metalstack.infra.v2.BootServiceWaitRequest.
45
+ * Use `create(BootServiceWaitRequestSchema)` to create a new message.
46
+ */
47
+ export const BootServiceWaitRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 6);
48
+ /**
49
+ * Describes the message metalstack.infra.v2.BootServiceWaitResponse.
50
+ * Use `create(BootServiceWaitResponseSchema)` to create a new message.
51
+ */
52
+ export const BootServiceWaitResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 7);
53
+ /**
54
+ * Describes the message metalstack.infra.v2.BootServiceInstallationSucceededRequest.
55
+ * Use `create(BootServiceInstallationSucceededRequestSchema)` to create a new message.
56
+ */
57
+ export const BootServiceInstallationSucceededRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 8);
58
+ /**
59
+ * Describes the message metalstack.infra.v2.BootServiceInstallationSucceededResponse.
60
+ * Use `create(BootServiceInstallationSucceededResponseSchema)` to create a new message.
61
+ */
62
+ export const BootServiceInstallationSucceededResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 9);
63
+ /**
64
+ * Describes the message metalstack.infra.v2.BootServiceSuperUserPasswordRequest.
65
+ * Use `create(BootServiceSuperUserPasswordRequestSchema)` to create a new message.
66
+ */
67
+ export const BootServiceSuperUserPasswordRequestSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 10);
68
+ /**
69
+ * Describes the message metalstack.infra.v2.BootServiceSuperUserPasswordResponse.
70
+ * Use `create(BootServiceSuperUserPasswordResponseSchema)` to create a new message.
71
+ */
72
+ export const BootServiceSuperUserPasswordResponseSchema = /*@__PURE__*/ messageDesc(file_metalstack_infra_v2_boot, 11);
73
+ /**
74
+ * BootService is used for all boot related requests, either pixiecore or metal-hammer
75
+ *
76
+ * Pixiecore
77
+ *
78
+ * @generated from service metalstack.infra.v2.BootService
79
+ */
80
+ export const BootService = /*@__PURE__*/ serviceDesc(file_metalstack_infra_v2_boot, 0);