@vates/types 1.0.0

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.
@@ -0,0 +1,510 @@
1
+ declare const __brand: unique symbol;
2
+ export type Branded<TBrand extends string, TType = string> = TType & {
3
+ [__brand]: TBrand;
4
+ };
5
+ export declare const TASK_ALLOWED_OPERATIONS: {
6
+ readonly CANCEL: "cancel";
7
+ readonly DESTROY: "destroy";
8
+ };
9
+ export type TASK_ALLOWED_OPERATIONS = (typeof TASK_ALLOWED_OPERATIONS)[keyof typeof TASK_ALLOWED_OPERATIONS];
10
+ export declare const TASK_STATUS_TYPE: {
11
+ readonly CANCELLED: "cancelled";
12
+ readonly CANCELLING: "cancelling";
13
+ readonly FAILURE: "failure";
14
+ readonly PENDING: "pending";
15
+ readonly SUCCESS: "success";
16
+ };
17
+ export type TASK_STATUS_TYPE = (typeof TASK_STATUS_TYPE)[keyof typeof TASK_STATUS_TYPE];
18
+ export declare const EVENT_OPERATION: {
19
+ readonly ADD: "add";
20
+ readonly DEL: "del";
21
+ readonly MOD: "mod";
22
+ };
23
+ export type EVENT_OPERATION = (typeof EVENT_OPERATION)[keyof typeof EVENT_OPERATION];
24
+ export declare const POOL_ALLOWED_OPERATIONS: {
25
+ readonly APPLY_UPDATES: "apply_updates";
26
+ readonly CERT_REFRESH: "cert_refresh";
27
+ readonly CLUSTER_CREATE: "cluster_create";
28
+ readonly CONFIGURE_REPOSITORIES: "configure_repositories";
29
+ readonly COPY_PRIMARY_HOST_CERTS: "copy_primary_host_certs";
30
+ readonly DESIGNATE_NEW_MASTER: "designate_new_master";
31
+ readonly EJECT: "eject";
32
+ readonly EXCHANGE_CA_CERTIFICATES_ON_JOIN: "exchange_ca_certificates_on_join";
33
+ readonly EXCHANGE_CERTIFICATES_ON_JOIN: "exchange_certificates_on_join";
34
+ readonly GET_UPDATES: "get_updates";
35
+ readonly HA_DISABLE: "ha_disable";
36
+ readonly HA_ENABLE: "ha_enable";
37
+ readonly SYNC_UPDATES: "sync_updates";
38
+ readonly TLS_VERIFICATION_ENABLE: "tls_verification_enable";
39
+ };
40
+ export type POOL_ALLOWED_OPERATIONS = (typeof POOL_ALLOWED_OPERATIONS)[keyof typeof POOL_ALLOWED_OPERATIONS];
41
+ export declare const TELEMETRY_FREQUENCY: {
42
+ readonly DAILY: "daily";
43
+ readonly MONTHLY: "monthly";
44
+ readonly WEEKLY: "weekly";
45
+ };
46
+ export type TELEMETRY_FREQUENCY = (typeof TELEMETRY_FREQUENCY)[keyof typeof TELEMETRY_FREQUENCY];
47
+ export declare const UPDATE_SYNC_FREQUENCY: {
48
+ readonly DAILY: "daily";
49
+ readonly WEEKLY: "weekly";
50
+ };
51
+ export type UPDATE_SYNC_FREQUENCY = (typeof UPDATE_SYNC_FREQUENCY)[keyof typeof UPDATE_SYNC_FREQUENCY];
52
+ export declare const AFTER_APPLY_GUIDANCE: {
53
+ readonly RESTART_HOST: "restartHost";
54
+ readonly RESTART_HVM: "restartHVM";
55
+ readonly RESTART_PV: "restartPV";
56
+ readonly RESTART_XAPI: "restartXAPI";
57
+ };
58
+ export type AFTER_APPLY_GUIDANCE = (typeof AFTER_APPLY_GUIDANCE)[keyof typeof AFTER_APPLY_GUIDANCE];
59
+ export declare const UPDATE_AFTER_APPLY_GUIDANCE: {
60
+ readonly RESTART_HOST: "restartHost";
61
+ readonly RESTART_HVM: "restartHVM";
62
+ readonly RESTART_PV: "restartPV";
63
+ readonly RESTART_XAPI: "restartXAPI";
64
+ };
65
+ export type UPDATE_AFTER_APPLY_GUIDANCE = (typeof UPDATE_AFTER_APPLY_GUIDANCE)[keyof typeof UPDATE_AFTER_APPLY_GUIDANCE];
66
+ export declare const LIVEPATCH_STATUS: {
67
+ readonly OK: "ok";
68
+ readonly OK_LIVEPATCH_COMPLETE: "ok_livepatch_complete";
69
+ readonly OK_LIVEPATCH_INCOMPLETE: "ok_livepatch_incomplete";
70
+ };
71
+ export type LIVEPATCH_STATUS = (typeof LIVEPATCH_STATUS)[keyof typeof LIVEPATCH_STATUS];
72
+ export declare const VM_POWER_STATE: {
73
+ readonly HALTED: "Halted";
74
+ readonly PAUSED: "Paused";
75
+ readonly RUNNING: "Running";
76
+ readonly SUSPENDED: "Suspended";
77
+ };
78
+ export type VM_POWER_STATE = (typeof VM_POWER_STATE)[keyof typeof VM_POWER_STATE];
79
+ export declare const UPDATE_GUIDANCES: {
80
+ readonly REBOOT_HOST: "reboot_host";
81
+ readonly REBOOT_HOST_ON_KERNEL_LIVEPATCH_FAILURE: "reboot_host_on_kernel_livepatch_failure";
82
+ readonly REBOOT_HOST_ON_LIVEPATCH_FAILURE: "reboot_host_on_livepatch_failure";
83
+ readonly REBOOT_HOST_ON_XEN_LIVEPATCH_FAILURE: "reboot_host_on_xen_livepatch_failure";
84
+ readonly RESTART_DEVICE_MODEL: "restart_device_model";
85
+ readonly RESTART_TOOLSTACK: "restart_toolstack";
86
+ readonly RESTART_VM: "restart_vm";
87
+ };
88
+ export type UPDATE_GUIDANCES = (typeof UPDATE_GUIDANCES)[keyof typeof UPDATE_GUIDANCES];
89
+ export declare const ON_SOFTREBOOT_BEHAVIOR: {
90
+ readonly DESTROY: "destroy";
91
+ readonly PRESERVE: "preserve";
92
+ readonly RESTART: "restart";
93
+ readonly SOFT_REBOOT: "soft_reboot";
94
+ };
95
+ export type ON_SOFTREBOOT_BEHAVIOR = (typeof ON_SOFTREBOOT_BEHAVIOR)[keyof typeof ON_SOFTREBOOT_BEHAVIOR];
96
+ export declare const ON_NORMAL_EXIT: {
97
+ readonly DESTROY: "destroy";
98
+ readonly RESTART: "restart";
99
+ };
100
+ export type ON_NORMAL_EXIT = (typeof ON_NORMAL_EXIT)[keyof typeof ON_NORMAL_EXIT];
101
+ export declare const VM_OPERATIONS: {
102
+ readonly ASSERT_OPERATION_VALID: "assert_operation_valid";
103
+ readonly AWAITING_MEMORY_LIVE: "awaiting_memory_live";
104
+ readonly CALL_PLUGIN: "call_plugin";
105
+ readonly CHANGING_DYNAMIC_RANGE: "changing_dynamic_range";
106
+ readonly CHANGING_MEMORY_LIMITS: "changing_memory_limits";
107
+ readonly CHANGING_MEMORY_LIVE: "changing_memory_live";
108
+ readonly CHANGING_NVRAM: "changing_NVRAM";
109
+ readonly CHANGING_SHADOW_MEMORY: "changing_shadow_memory";
110
+ readonly CHANGING_SHADOW_MEMORY_LIVE: "changing_shadow_memory_live";
111
+ readonly CHANGING_STATIC_RANGE: "changing_static_range";
112
+ readonly CHANGING_VCPUS: "changing_VCPUs";
113
+ readonly CHANGING_VCPUS_LIVE: "changing_VCPUs_live";
114
+ readonly CHECKPOINT: "checkpoint";
115
+ readonly CLEAN_REBOOT: "clean_reboot";
116
+ readonly CLEAN_SHUTDOWN: "clean_shutdown";
117
+ readonly CLONE: "clone";
118
+ readonly COPY: "copy";
119
+ readonly CREATE_TEMPLATE: "create_template";
120
+ readonly CREATE_VTPM: "create_vtpm";
121
+ readonly CSVM: "csvm";
122
+ readonly DATA_SOURCE_OP: "data_source_op";
123
+ readonly DESTROY: "destroy";
124
+ readonly EXPORT: "export";
125
+ readonly GET_BOOT_RECORD: "get_boot_record";
126
+ readonly HARD_REBOOT: "hard_reboot";
127
+ readonly HARD_SHUTDOWN: "hard_shutdown";
128
+ readonly IMPORT: "import";
129
+ readonly MAKE_INTO_TEMPLATE: "make_into_template";
130
+ readonly METADATA_EXPORT: "metadata_export";
131
+ readonly MIGRATE_SEND: "migrate_send";
132
+ readonly PAUSE: "pause";
133
+ readonly POOL_MIGRATE: "pool_migrate";
134
+ readonly POWER_STATE_RESET: "power_state_reset";
135
+ readonly PROVISION: "provision";
136
+ readonly QUERY_SERVICES: "query_services";
137
+ readonly RESUME: "resume";
138
+ readonly RESUME_ON: "resume_on";
139
+ readonly REVERT: "revert";
140
+ readonly REVERTING: "reverting";
141
+ readonly SEND_SYSRQ: "send_sysrq";
142
+ readonly SEND_TRIGGER: "send_trigger";
143
+ readonly SHUTDOWN: "shutdown";
144
+ readonly SNAPSHOT: "snapshot";
145
+ readonly SNAPSHOT_WITH_QUIESCE: "snapshot_with_quiesce";
146
+ readonly START: "start";
147
+ readonly START_ON: "start_on";
148
+ readonly SUSPEND: "suspend";
149
+ readonly UNPAUSE: "unpause";
150
+ readonly UPDATE_ALLOWED_OPERATIONS: "update_allowed_operations";
151
+ };
152
+ export type VM_OPERATIONS = (typeof VM_OPERATIONS)[keyof typeof VM_OPERATIONS];
153
+ export declare const ON_CRASH_BEHAVIOUR: {
154
+ readonly COREDUMP_AND_DESTROY: "coredump_and_destroy";
155
+ readonly COREDUMP_AND_RESTART: "coredump_and_restart";
156
+ readonly DESTROY: "destroy";
157
+ readonly PRESERVE: "preserve";
158
+ readonly RENAME_RESTART: "rename_restart";
159
+ readonly RESTART: "restart";
160
+ };
161
+ export type ON_CRASH_BEHAVIOUR = (typeof ON_CRASH_BEHAVIOUR)[keyof typeof ON_CRASH_BEHAVIOUR];
162
+ export declare const DOMAIN_TYPE: {
163
+ readonly HVM: "hvm";
164
+ readonly PV: "pv";
165
+ readonly PVH: "pvh";
166
+ readonly PV_IN_PVH: "pv_in_pvh";
167
+ readonly UNSPECIFIED: "unspecified";
168
+ };
169
+ export type DOMAIN_TYPE = (typeof DOMAIN_TYPE)[keyof typeof DOMAIN_TYPE];
170
+ export declare const TRISTATE_TYPE: {
171
+ readonly NO: "no";
172
+ readonly UNSPECIFIED: "unspecified";
173
+ readonly YES: "yes";
174
+ };
175
+ export type TRISTATE_TYPE = (typeof TRISTATE_TYPE)[keyof typeof TRISTATE_TYPE];
176
+ export declare const VMPP_BACKUP_TYPE: {
177
+ readonly CHECKPOINT: "checkpoint";
178
+ readonly SNAPSHOT: "snapshot";
179
+ };
180
+ export type VMPP_BACKUP_TYPE = (typeof VMPP_BACKUP_TYPE)[keyof typeof VMPP_BACKUP_TYPE];
181
+ export declare const VMPP_BACKUP_FREQUENCY: {
182
+ readonly DAILY: "daily";
183
+ readonly HOURLY: "hourly";
184
+ readonly WEEKLY: "weekly";
185
+ };
186
+ export type VMPP_BACKUP_FREQUENCY = (typeof VMPP_BACKUP_FREQUENCY)[keyof typeof VMPP_BACKUP_FREQUENCY];
187
+ export declare const VMPP_ARCHIVE_FREQUENCY: {
188
+ readonly ALWAYS_AFTER_BACKUP: "always_after_backup";
189
+ readonly DAILY: "daily";
190
+ readonly NEVER: "never";
191
+ readonly WEEKLY: "weekly";
192
+ };
193
+ export type VMPP_ARCHIVE_FREQUENCY = (typeof VMPP_ARCHIVE_FREQUENCY)[keyof typeof VMPP_ARCHIVE_FREQUENCY];
194
+ export declare const VMPP_ARCHIVE_TARGET_TYPE: {
195
+ readonly CIFS: "cifs";
196
+ readonly NFS: "nfs";
197
+ readonly NONE: "none";
198
+ };
199
+ export type VMPP_ARCHIVE_TARGET_TYPE = (typeof VMPP_ARCHIVE_TARGET_TYPE)[keyof typeof VMPP_ARCHIVE_TARGET_TYPE];
200
+ export declare const VMSS_FREQUENCY: {
201
+ readonly DAILY: "daily";
202
+ readonly HOURLY: "hourly";
203
+ readonly WEEKLY: "weekly";
204
+ };
205
+ export type VMSS_FREQUENCY = (typeof VMSS_FREQUENCY)[keyof typeof VMSS_FREQUENCY];
206
+ export declare const VMSS_TYPE: {
207
+ readonly CHECKPOINT: "checkpoint";
208
+ readonly SNAPSHOT: "snapshot";
209
+ readonly SNAPSHOT_WITH_QUIESCE: "snapshot_with_quiesce";
210
+ };
211
+ export type VMSS_TYPE = (typeof VMSS_TYPE)[keyof typeof VMSS_TYPE];
212
+ export declare const VM_APPLIANCE_OPERATION: {
213
+ readonly CLEAN_SHUTDOWN: "clean_shutdown";
214
+ readonly HARD_SHUTDOWN: "hard_shutdown";
215
+ readonly SHUTDOWN: "shutdown";
216
+ readonly START: "start";
217
+ };
218
+ export type VM_APPLIANCE_OPERATION = (typeof VM_APPLIANCE_OPERATION)[keyof typeof VM_APPLIANCE_OPERATION];
219
+ export declare const HOST_ALLOWED_OPERATIONS: {
220
+ readonly APPLY_UPDATES: "apply_updates";
221
+ readonly ENABLE: "enable";
222
+ readonly EVACUATE: "evacuate";
223
+ readonly POWER_ON: "power_on";
224
+ readonly PROVISION: "provision";
225
+ readonly REBOOT: "reboot";
226
+ readonly SHUTDOWN: "shutdown";
227
+ readonly VM_MIGRATE: "vm_migrate";
228
+ readonly VM_RESUME: "vm_resume";
229
+ readonly VM_START: "vm_start";
230
+ };
231
+ export type HOST_ALLOWED_OPERATIONS = (typeof HOST_ALLOWED_OPERATIONS)[keyof typeof HOST_ALLOWED_OPERATIONS];
232
+ export declare const LATEST_SYNCED_UPDATES_APPLIED_STATE: {
233
+ readonly NO: "no";
234
+ readonly UNKNOWN: "unknown";
235
+ readonly YES: "yes";
236
+ };
237
+ export type LATEST_SYNCED_UPDATES_APPLIED_STATE = (typeof LATEST_SYNCED_UPDATES_APPLIED_STATE)[keyof typeof LATEST_SYNCED_UPDATES_APPLIED_STATE];
238
+ export declare const HOST_DISPLAY: {
239
+ readonly DISABLED: "disabled";
240
+ readonly DISABLE_ON_REBOOT: "disable_on_reboot";
241
+ readonly ENABLED: "enabled";
242
+ readonly ENABLE_ON_REBOOT: "enable_on_reboot";
243
+ };
244
+ export type HOST_DISPLAY = (typeof HOST_DISPLAY)[keyof typeof HOST_DISPLAY];
245
+ export declare const HOST_SCHED_GRAN: {
246
+ readonly CORE: "core";
247
+ readonly CPU: "cpu";
248
+ readonly SOCKET: "socket";
249
+ };
250
+ export type HOST_SCHED_GRAN = (typeof HOST_SCHED_GRAN)[keyof typeof HOST_SCHED_GRAN];
251
+ export declare const HOST_NUMA_AFFINITY_POLICY: {
252
+ readonly ANY: "any";
253
+ readonly BEST_EFFORT: "best_effort";
254
+ readonly DEFAULT_POLICY: "default_policy";
255
+ };
256
+ export type HOST_NUMA_AFFINITY_POLICY = (typeof HOST_NUMA_AFFINITY_POLICY)[keyof typeof HOST_NUMA_AFFINITY_POLICY];
257
+ export declare const NETWORK_OPERATIONS: {
258
+ readonly ATTACHING: "attaching";
259
+ };
260
+ export type NETWORK_OPERATIONS = (typeof NETWORK_OPERATIONS)[keyof typeof NETWORK_OPERATIONS];
261
+ export declare const NETWORK_DEFAULT_LOCKING_MODE: {
262
+ readonly DISABLED: "disabled";
263
+ readonly UNLOCKED: "unlocked";
264
+ };
265
+ export type NETWORK_DEFAULT_LOCKING_MODE = (typeof NETWORK_DEFAULT_LOCKING_MODE)[keyof typeof NETWORK_DEFAULT_LOCKING_MODE];
266
+ export declare const NETWORK_PURPOSE: {
267
+ readonly INSECURE_NBD: "insecure_nbd";
268
+ readonly NBD: "nbd";
269
+ };
270
+ export type NETWORK_PURPOSE = (typeof NETWORK_PURPOSE)[keyof typeof NETWORK_PURPOSE];
271
+ export declare const VIF_OPERATIONS: {
272
+ readonly ATTACH: "attach";
273
+ readonly PLUG: "plug";
274
+ readonly UNPLUG: "unplug";
275
+ };
276
+ export type VIF_OPERATIONS = (typeof VIF_OPERATIONS)[keyof typeof VIF_OPERATIONS];
277
+ export declare const VIF_LOCKING_MODE: {
278
+ readonly DISABLED: "disabled";
279
+ readonly LOCKED: "locked";
280
+ readonly NETWORK_DEFAULT: "network_default";
281
+ readonly UNLOCKED: "unlocked";
282
+ };
283
+ export type VIF_LOCKING_MODE = (typeof VIF_LOCKING_MODE)[keyof typeof VIF_LOCKING_MODE];
284
+ export declare const VIF_IPV4_CONFIGURATION_MODE: {
285
+ readonly NONE: "None";
286
+ readonly STATIC: "Static";
287
+ };
288
+ export type VIF_IPV4_CONFIGURATION_MODE = (typeof VIF_IPV4_CONFIGURATION_MODE)[keyof typeof VIF_IPV4_CONFIGURATION_MODE];
289
+ export declare const VIF_IPV6_CONFIGURATION_MODE: {
290
+ readonly NONE: "None";
291
+ readonly STATIC: "Static";
292
+ };
293
+ export type VIF_IPV6_CONFIGURATION_MODE = (typeof VIF_IPV6_CONFIGURATION_MODE)[keyof typeof VIF_IPV6_CONFIGURATION_MODE];
294
+ export declare const PIF_IGMP_STATUS: {
295
+ readonly DISABLED: "disabled";
296
+ readonly ENABLED: "enabled";
297
+ readonly UNKNOWN: "unknown";
298
+ };
299
+ export type PIF_IGMP_STATUS = (typeof PIF_IGMP_STATUS)[keyof typeof PIF_IGMP_STATUS];
300
+ export declare const IP_CONFIGURATION_MODE: {
301
+ readonly DHCP: "DHCP";
302
+ readonly NONE: "None";
303
+ readonly STATIC: "Static";
304
+ };
305
+ export type IP_CONFIGURATION_MODE = (typeof IP_CONFIGURATION_MODE)[keyof typeof IP_CONFIGURATION_MODE];
306
+ export declare const IPV6_CONFIGURATION_MODE: {
307
+ readonly AUTOCONF: "Autoconf";
308
+ readonly DHCP: "DHCP";
309
+ readonly NONE: "None";
310
+ readonly STATIC: "Static";
311
+ };
312
+ export type IPV6_CONFIGURATION_MODE = (typeof IPV6_CONFIGURATION_MODE)[keyof typeof IPV6_CONFIGURATION_MODE];
313
+ export declare const PRIMARY_ADDRESS_TYPE: {
314
+ readonly IPV4: "IPv4";
315
+ readonly IPV6: "IPv6";
316
+ };
317
+ export type PRIMARY_ADDRESS_TYPE = (typeof PRIMARY_ADDRESS_TYPE)[keyof typeof PRIMARY_ADDRESS_TYPE];
318
+ export declare const BOND_MODE: {
319
+ readonly ACTIVE_BACKUP: "active-backup";
320
+ readonly BALANCE_SLB: "balance-slb";
321
+ readonly LACP: "lacp";
322
+ };
323
+ export type BOND_MODE = (typeof BOND_MODE)[keyof typeof BOND_MODE];
324
+ export declare const STORAGE_OPERATIONS: {
325
+ readonly DESTROY: "destroy";
326
+ readonly FORGET: "forget";
327
+ readonly PBD_CREATE: "pbd_create";
328
+ readonly PBD_DESTROY: "pbd_destroy";
329
+ readonly PLUG: "plug";
330
+ readonly SCAN: "scan";
331
+ readonly UNPLUG: "unplug";
332
+ readonly UPDATE: "update";
333
+ readonly VDI_CLONE: "vdi_clone";
334
+ readonly VDI_CREATE: "vdi_create";
335
+ readonly VDI_DATA_DESTROY: "vdi_data_destroy";
336
+ readonly VDI_DESTROY: "vdi_destroy";
337
+ readonly VDI_DISABLE_CBT: "vdi_disable_cbt";
338
+ readonly VDI_ENABLE_CBT: "vdi_enable_cbt";
339
+ readonly VDI_INTRODUCE: "vdi_introduce";
340
+ readonly VDI_LIST_CHANGED_BLOCKS: "vdi_list_changed_blocks";
341
+ readonly VDI_MIRROR: "vdi_mirror";
342
+ readonly VDI_RESIZE: "vdi_resize";
343
+ readonly VDI_SET_ON_BOOT: "vdi_set_on_boot";
344
+ readonly VDI_SNAPSHOT: "vdi_snapshot";
345
+ };
346
+ export type STORAGE_OPERATIONS = (typeof STORAGE_OPERATIONS)[keyof typeof STORAGE_OPERATIONS];
347
+ export declare const SR_HEALTH: {
348
+ readonly HEALTHY: "healthy";
349
+ readonly RECOVERING: "recovering";
350
+ };
351
+ export type SR_HEALTH = (typeof SR_HEALTH)[keyof typeof SR_HEALTH];
352
+ export declare const VDI_OPERATIONS: {
353
+ readonly BLOCKED: "blocked";
354
+ readonly CLONE: "clone";
355
+ readonly COPY: "copy";
356
+ readonly DATA_DESTROY: "data_destroy";
357
+ readonly DESTROY: "destroy";
358
+ readonly DISABLE_CBT: "disable_cbt";
359
+ readonly ENABLE_CBT: "enable_cbt";
360
+ readonly FORCE_UNLOCK: "force_unlock";
361
+ readonly FORGET: "forget";
362
+ readonly GENERATE_CONFIG: "generate_config";
363
+ readonly LIST_CHANGED_BLOCKS: "list_changed_blocks";
364
+ readonly MIRROR: "mirror";
365
+ readonly RESIZE: "resize";
366
+ readonly RESIZE_ONLINE: "resize_online";
367
+ readonly SET_ON_BOOT: "set_on_boot";
368
+ readonly SNAPSHOT: "snapshot";
369
+ readonly UPDATE: "update";
370
+ };
371
+ export type VDI_OPERATIONS = (typeof VDI_OPERATIONS)[keyof typeof VDI_OPERATIONS];
372
+ export declare const VDI_TYPE: {
373
+ readonly CBT_METADATA: "cbt_metadata";
374
+ readonly CRASHDUMP: "crashdump";
375
+ readonly EPHEMERAL: "ephemeral";
376
+ readonly HA_STATEFILE: "ha_statefile";
377
+ readonly METADATA: "metadata";
378
+ readonly PVS_CACHE: "pvs_cache";
379
+ readonly REDO_LOG: "redo_log";
380
+ readonly RRD: "rrd";
381
+ readonly SUSPEND: "suspend";
382
+ readonly SYSTEM: "system";
383
+ readonly USER: "user";
384
+ };
385
+ export type VDI_TYPE = (typeof VDI_TYPE)[keyof typeof VDI_TYPE];
386
+ export declare const ON_BOOT: {
387
+ readonly PERSIST: "persist";
388
+ readonly RESET: "reset";
389
+ };
390
+ export type ON_BOOT = (typeof ON_BOOT)[keyof typeof ON_BOOT];
391
+ export declare const VBD_OPERATIONS: {
392
+ readonly ATTACH: "attach";
393
+ readonly EJECT: "eject";
394
+ readonly INSERT: "insert";
395
+ readonly PAUSE: "pause";
396
+ readonly PLUG: "plug";
397
+ readonly UNPAUSE: "unpause";
398
+ readonly UNPLUG: "unplug";
399
+ readonly UNPLUG_FORCE: "unplug_force";
400
+ };
401
+ export type VBD_OPERATIONS = (typeof VBD_OPERATIONS)[keyof typeof VBD_OPERATIONS];
402
+ export declare const VBD_TYPE: {
403
+ readonly CD: "CD";
404
+ readonly DISK: "Disk";
405
+ readonly FLOPPY: "Floppy";
406
+ };
407
+ export type VBD_TYPE = (typeof VBD_TYPE)[keyof typeof VBD_TYPE];
408
+ export declare const VBD_MODE: {
409
+ readonly RO: "RO";
410
+ readonly RW: "RW";
411
+ };
412
+ export type VBD_MODE = (typeof VBD_MODE)[keyof typeof VBD_MODE];
413
+ export declare const VTPM_OPERATIONS: {
414
+ readonly DESTROY: "destroy";
415
+ };
416
+ export type VTPM_OPERATIONS = (typeof VTPM_OPERATIONS)[keyof typeof VTPM_OPERATIONS];
417
+ export declare const PERSISTENCE_BACKEND: {
418
+ readonly XAPI: "xapi";
419
+ };
420
+ export type PERSISTENCE_BACKEND = (typeof PERSISTENCE_BACKEND)[keyof typeof PERSISTENCE_BACKEND];
421
+ export declare const CONSOLE_PROTOCOL: {
422
+ readonly RDP: "rdp";
423
+ readonly RFB: "rfb";
424
+ readonly VT100: "vt100";
425
+ };
426
+ export type CONSOLE_PROTOCOL = (typeof CONSOLE_PROTOCOL)[keyof typeof CONSOLE_PROTOCOL];
427
+ export declare const CLS: {
428
+ readonly CERTIFICATE: "Certificate";
429
+ readonly HOST: "Host";
430
+ readonly POOL: "Pool";
431
+ readonly PVS_PROXY: "PVS_proxy";
432
+ readonly SR: "SR";
433
+ readonly VDI: "VDI";
434
+ readonly VM: "VM";
435
+ readonly VMPP: "VMPP";
436
+ readonly VMSS: "VMSS";
437
+ };
438
+ export type CLS = (typeof CLS)[keyof typeof CLS];
439
+ export declare const TUNNEL_PROTOCOL: {
440
+ readonly GRE: "gre";
441
+ readonly VXLAN: "vxlan";
442
+ };
443
+ export type TUNNEL_PROTOCOL = (typeof TUNNEL_PROTOCOL)[keyof typeof TUNNEL_PROTOCOL];
444
+ export declare const SRIOV_CONFIGURATION_MODE: {
445
+ readonly MANUAL: "manual";
446
+ readonly MODPROBE: "modprobe";
447
+ readonly SYSFS: "sysfs";
448
+ readonly UNKNOWN: "unknown";
449
+ };
450
+ export type SRIOV_CONFIGURATION_MODE = (typeof SRIOV_CONFIGURATION_MODE)[keyof typeof SRIOV_CONFIGURATION_MODE];
451
+ export declare const PGPU_DOM0_ACCESS: {
452
+ readonly DISABLED: "disabled";
453
+ readonly DISABLE_ON_REBOOT: "disable_on_reboot";
454
+ readonly ENABLED: "enabled";
455
+ readonly ENABLE_ON_REBOOT: "enable_on_reboot";
456
+ };
457
+ export type PGPU_DOM0_ACCESS = (typeof PGPU_DOM0_ACCESS)[keyof typeof PGPU_DOM0_ACCESS];
458
+ export declare const ALLOCATION_ALGORITHM: {
459
+ readonly BREADTH_FIRST: "breadth_first";
460
+ readonly DEPTH_FIRST: "depth_first";
461
+ };
462
+ export type ALLOCATION_ALGORITHM = (typeof ALLOCATION_ALGORITHM)[keyof typeof ALLOCATION_ALGORITHM];
463
+ export declare const VGPU_TYPE_IMPLEMENTATION: {
464
+ readonly GVT_G: "gvt_g";
465
+ readonly MXGPU: "mxgpu";
466
+ readonly NVIDIA: "nvidia";
467
+ readonly NVIDIA_SRIOV: "nvidia_sriov";
468
+ readonly PASSTHROUGH: "passthrough";
469
+ };
470
+ export type VGPU_TYPE_IMPLEMENTATION = (typeof VGPU_TYPE_IMPLEMENTATION)[keyof typeof VGPU_TYPE_IMPLEMENTATION];
471
+ export declare const PVS_PROXY_STATUS: {
472
+ readonly CACHING: "caching";
473
+ readonly INCOMPATIBLE_PROTOCOL_VERSION: "incompatible_protocol_version";
474
+ readonly INCOMPATIBLE_WRITE_CACHE_MODE: "incompatible_write_cache_mode";
475
+ readonly INITIALISED: "initialised";
476
+ readonly STOPPED: "stopped";
477
+ };
478
+ export type PVS_PROXY_STATUS = (typeof PVS_PROXY_STATUS)[keyof typeof PVS_PROXY_STATUS];
479
+ export declare const SDN_CONTROLLER_PROTOCOL: {
480
+ readonly PSSL: "pssl";
481
+ readonly SSL: "ssl";
482
+ };
483
+ export type SDN_CONTROLLER_PROTOCOL = (typeof SDN_CONTROLLER_PROTOCOL)[keyof typeof SDN_CONTROLLER_PROTOCOL];
484
+ export declare const VUSB_OPERATIONS: {
485
+ readonly ATTACH: "attach";
486
+ readonly PLUG: "plug";
487
+ readonly UNPLUG: "unplug";
488
+ };
489
+ export type VUSB_OPERATIONS = (typeof VUSB_OPERATIONS)[keyof typeof VUSB_OPERATIONS];
490
+ export declare const CLUSTER_OPERATION: {
491
+ readonly ADD: "add";
492
+ readonly DESTROY: "destroy";
493
+ readonly DISABLE: "disable";
494
+ readonly ENABLE: "enable";
495
+ readonly REMOVE: "remove";
496
+ };
497
+ export type CLUSTER_OPERATION = (typeof CLUSTER_OPERATION)[keyof typeof CLUSTER_OPERATION];
498
+ export declare const CLUSTER_HOST_OPERATION: {
499
+ readonly DESTROY: "destroy";
500
+ readonly DISABLE: "disable";
501
+ readonly ENABLE: "enable";
502
+ };
503
+ export type CLUSTER_HOST_OPERATION = (typeof CLUSTER_HOST_OPERATION)[keyof typeof CLUSTER_HOST_OPERATION];
504
+ export declare const CERTIFICATE_TYPE: {
505
+ readonly CA: "ca";
506
+ readonly HOST: "host";
507
+ readonly HOST_INTERNAL: "host_internal";
508
+ };
509
+ export type CERTIFICATE_TYPE = (typeof CERTIFICATE_TYPE)[keyof typeof CERTIFICATE_TYPE];
510
+ export {};