25 lines
472 B
Plaintext
25 lines
472 B
Plaintext
module proxmox
|
|
|
|
import "@formae/formae.pkl"
|
|
|
|
@formae.ResourceHint {
|
|
type = "PROXMOX::Service::LXC"
|
|
identifier = "$.vmid"
|
|
}
|
|
class LXC extends formae.Resource {
|
|
fixed hidden type: String = "PROXMOX::Service::LXC"
|
|
|
|
@formae.FieldHint { createOnly = true }
|
|
vmid: String
|
|
|
|
@formae.FieldHint { createOnly = true }
|
|
ostemplate: String
|
|
|
|
@formae.FieldHint {}
|
|
hostname: String
|
|
|
|
@formae.FieldHint {}
|
|
description: String = "No description"
|
|
|
|
}
|