1. Registry
  2. Packages
  3. BiznetGIO
  4. API Docs
  5. NeoliteVm
Viewing docs for Pulumi BiznetGIO Provider v0.1.7
published on Wednesday, Aug 19, 2026 by shirasakaren
biznetgio logo
Viewing docs for Pulumi BiznetGIO Provider v0.1.7
published on Wednesday, Aug 19, 2026 by shirasakaren

    Create NeoliteVm Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NeoliteVm(name: string, args: NeoliteVmArgs, opts?: CustomResourceOptions);
    @overload
    def NeoliteVm(resource_name: str,
                  args: NeoliteVmArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def NeoliteVm(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  console_password: Optional[str] = None,
                  cycle: Optional[str] = None,
                  ssh_and_console_user: Optional[str] = None,
                  select_os: Optional[str] = None,
                  keypair_id: Optional[int] = None,
                  product_id: Optional[int] = None,
                  pay_with_credit_card: Optional[bool] = None,
                  power_state: Optional[str] = None,
                  migrate_to_pro: Optional[str] = None,
                  promocode: Optional[str] = None,
                  rebuild_os: Optional[str] = None,
                  disk_size: Optional[int] = None,
                  description: Optional[str] = None,
                  vm_name: Optional[str] = None)
    func NewNeoliteVm(ctx *Context, name string, args NeoliteVmArgs, opts ...ResourceOption) (*NeoliteVm, error)
    public NeoliteVm(string name, NeoliteVmArgs args, CustomResourceOptions? opts = null)
    public NeoliteVm(String name, NeoliteVmArgs args)
    public NeoliteVm(String name, NeoliteVmArgs args, CustomResourceOptions options)
    
    type: biznetgio:NeoliteVm
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "biznetgio_neolite_vm" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args NeoliteVmArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NeoliteVmArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NeoliteVmArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NeoliteVmArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NeoliteVmArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var neoliteVmResource = new Biznetgio.NeoliteVm("neoliteVmResource", new()
    {
        ConsolePassword = "string",
        Cycle = "string",
        SshAndConsoleUser = "string",
        SelectOs = "string",
        KeypairId = 0,
        ProductId = 0,
        PayWithCreditCard = false,
        PowerState = "string",
        MigrateToPro = "string",
        Promocode = "string",
        RebuildOs = "string",
        DiskSize = 0,
        Description = "string",
        VmName = "string",
    });
    
    example, err := biznetgio.NewNeoliteVm(ctx, "neoliteVmResource", &biznetgio.NeoliteVmArgs{
    	ConsolePassword:   pulumi.String("string"),
    	Cycle:             pulumi.String("string"),
    	SshAndConsoleUser: pulumi.String("string"),
    	SelectOs:          pulumi.String("string"),
    	KeypairId:         pulumi.Int(0),
    	ProductId:         pulumi.Int(0),
    	PayWithCreditCard: pulumi.Bool(false),
    	PowerState:        pulumi.String("string"),
    	MigrateToPro:      pulumi.String("string"),
    	Promocode:         pulumi.String("string"),
    	RebuildOs:         pulumi.String("string"),
    	DiskSize:          pulumi.Int(0),
    	Description:       pulumi.String("string"),
    	VmName:            pulumi.String("string"),
    })
    
    resource "biznetgio_neolite_vm" "neoliteVmResource" {
      lifecycle {
        create_before_destroy = true
      }
      console_password     = "string"
      cycle                = "string"
      ssh_and_console_user = "string"
      select_os            = "string"
      keypair_id           = 0
      product_id           = 0
      pay_with_credit_card = false
      power_state          = "string"
      migrate_to_pro       = "string"
      promocode            = "string"
      rebuild_os           = "string"
      disk_size            = 0
      description          = "string"
      vm_name              = "string"
    }
    
    var neoliteVmResource = new NeoliteVm("neoliteVmResource", NeoliteVmArgs.builder()
        .consolePassword("string")
        .cycle("string")
        .sshAndConsoleUser("string")
        .selectOs("string")
        .keypairId(0)
        .productId(0)
        .payWithCreditCard(false)
        .powerState("string")
        .migrateToPro("string")
        .promocode("string")
        .rebuildOs("string")
        .diskSize(0)
        .description("string")
        .vmName("string")
        .build());
    
    neolite_vm_resource = biznetgio.NeoliteVm("neoliteVmResource",
        console_password="string",
        cycle="string",
        ssh_and_console_user="string",
        select_os="string",
        keypair_id=0,
        product_id=0,
        pay_with_credit_card=False,
        power_state="string",
        migrate_to_pro="string",
        promocode="string",
        rebuild_os="string",
        disk_size=0,
        description="string",
        vm_name="string")
    
    const neoliteVmResource = new biznetgio.NeoliteVm("neoliteVmResource", {
        consolePassword: "string",
        cycle: "string",
        sshAndConsoleUser: "string",
        selectOs: "string",
        keypairId: 0,
        productId: 0,
        payWithCreditCard: false,
        powerState: "string",
        migrateToPro: "string",
        promocode: "string",
        rebuildOs: "string",
        diskSize: 0,
        description: "string",
        vmName: "string",
    });
    
    type: biznetgio:NeoliteVm
    properties:
        consolePassword: string
        cycle: string
        description: string
        diskSize: 0
        keypairId: 0
        migrateToPro: string
        payWithCreditCard: false
        powerState: string
        productId: 0
        promocode: string
        rebuildOs: string
        selectOs: string
        sshAndConsoleUser: string
        vmName: string
    

    NeoliteVm Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The NeoliteVm resource accepts the following input properties:

    ConsolePassword string
    Console password at creation. Write-only: never re-fetched from the API.
    Cycle string
    Billing cycle: m monthly, a annual, q quarterly, s semiannual, b biennial, t triennial, p4, p5.
    KeypairId int
    Keypair id from NeoliteKeypair. Can be changed via change-keypair.
    ProductId int
    Product id from the getProducts function or the portal.
    SelectOs string
    OS installed at creation, from the getOsList function. To change OS, use rebuildOs.
    SshAndConsoleUser string
    SSH and console user set at creation.
    Description string
    VM description.
    DiskSize int
    Target disk size (GB, absolute - not an increment). Can only go up, never down.
    MigrateToPro string
    Trigger a one-shot migration to NEO Lite Pro: set the neolitepro_product_id target. Change the value again to re-trigger.
    PayWithCreditCard bool
    Pay the invoice with the registered credit card at order time. Defaults to true (auto-charge); set false to leave it unpaid in the portal until settled.
    PowerState string
    VM power state: start, stop, suspend, resume, or shutdown. Update only sends an action when the value changes.
    Promocode string
    Promo code to apply at order.
    RebuildOs string
    When changed, the VM is rebuilt (wipes the OS) with the new OS via the rebuild endpoint. Valid OS values are listed by the getOsList function.
    VmName string
    VM name. Defaults to server-name. Can be changed via change-vm-name.
    ConsolePassword string
    Console password at creation. Write-only: never re-fetched from the API.
    Cycle string
    Billing cycle: m monthly, a annual, q quarterly, s semiannual, b biennial, t triennial, p4, p5.
    KeypairId int
    Keypair id from NeoliteKeypair. Can be changed via change-keypair.
    ProductId int
    Product id from the getProducts function or the portal.
    SelectOs string
    OS installed at creation, from the getOsList function. To change OS, use rebuildOs.
    SshAndConsoleUser string
    SSH and console user set at creation.
    Description string
    VM description.
    DiskSize int
    Target disk size (GB, absolute - not an increment). Can only go up, never down.
    MigrateToPro string
    Trigger a one-shot migration to NEO Lite Pro: set the neolitepro_product_id target. Change the value again to re-trigger.
    PayWithCreditCard bool
    Pay the invoice with the registered credit card at order time. Defaults to true (auto-charge); set false to leave it unpaid in the portal until settled.
    PowerState string
    VM power state: start, stop, suspend, resume, or shutdown. Update only sends an action when the value changes.
    Promocode string
    Promo code to apply at order.
    RebuildOs string
    When changed, the VM is rebuilt (wipes the OS) with the new OS via the rebuild endpoint. Valid OS values are listed by the getOsList function.
    VmName string
    VM name. Defaults to server-name. Can be changed via change-vm-name.
    console_password string
    Console password at creation. Write-only: never re-fetched from the API.
    cycle string
    Billing cycle: m monthly, a annual, q quarterly, s semiannual, b biennial, t triennial, p4, p5.
    keypair_id number
    Keypair id from NeoliteKeypair. Can be changed via change-keypair.
    product_id number
    Product id from the getProducts function or the portal.
    select_os string
    OS installed at creation, from the getOsList function. To change OS, use rebuildOs.
    ssh_and_console_user string
    SSH and console user set at creation.
    description string
    VM description.
    disk_size number
    Target disk size (GB, absolute - not an increment). Can only go up, never down.
    migrate_to_pro string
    Trigger a one-shot migration to NEO Lite Pro: set the neolitepro_product_id target. Change the value again to re-trigger.
    pay_with_credit_card bool
    Pay the invoice with the registered credit card at order time. Defaults to true (auto-charge); set false to leave it unpaid in the portal until settled.
    power_state string
    VM power state: start, stop, suspend, resume, or shutdown. Update only sends an action when the value changes.
    promocode string
    Promo code to apply at order.
    rebuild_os string
    When changed, the VM is rebuilt (wipes the OS) with the new OS via the rebuild endpoint. Valid OS values are listed by the getOsList function.
    vm_name string
    VM name. Defaults to server-name. Can be changed via change-vm-name.
    consolePassword String
    Console password at creation. Write-only: never re-fetched from the API.
    cycle String
    Billing cycle: m monthly, a annual, q quarterly, s semiannual, b biennial, t triennial, p4, p5.
    keypairId Integer
    Keypair id from NeoliteKeypair. Can be changed via change-keypair.
    productId Integer
    Product id from the getProducts function or the portal.
    selectOs String
    OS installed at creation, from the getOsList function. To change OS, use rebuildOs.
    sshAndConsoleUser String
    SSH and console user set at creation.
    description String
    VM description.
    diskSize Integer
    Target disk size (GB, absolute - not an increment). Can only go up, never down.
    migrateToPro String
    Trigger a one-shot migration to NEO Lite Pro: set the neolitepro_product_id target. Change the value again to re-trigger.
    payWithCreditCard Boolean
    Pay the invoice with the registered credit card at order time. Defaults to true (auto-charge); set false to leave it unpaid in the portal until settled.
    powerState String
    VM power state: start, stop, suspend, resume, or shutdown. Update only sends an action when the value changes.
    promocode String
    Promo code to apply at order.
    rebuildOs String
    When changed, the VM is rebuilt (wipes the OS) with the new OS via the rebuild endpoint. Valid OS values are listed by the getOsList function.
    vmName String
    VM name. Defaults to server-name. Can be changed via change-vm-name.
    consolePassword string
    Console password at creation. Write-only: never re-fetched from the API.
    cycle string
    Billing cycle: m monthly, a annual, q quarterly, s semiannual, b biennial, t triennial, p4, p5.
    keypairId number
    Keypair id from NeoliteKeypair. Can be changed via change-keypair.
    productId number
    Product id from the getProducts function or the portal.
    selectOs string
    OS installed at creation, from the getOsList function. To change OS, use rebuildOs.
    sshAndConsoleUser string
    SSH and console user set at creation.
    description string
    VM description.
    diskSize number
    Target disk size (GB, absolute - not an increment). Can only go up, never down.
    migrateToPro string
    Trigger a one-shot migration to NEO Lite Pro: set the neolitepro_product_id target. Change the value again to re-trigger.
    payWithCreditCard boolean
    Pay the invoice with the registered credit card at order time. Defaults to true (auto-charge); set false to leave it unpaid in the portal until settled.
    powerState string
    VM power state: start, stop, suspend, resume, or shutdown. Update only sends an action when the value changes.
    promocode string
    Promo code to apply at order.
    rebuildOs string
    When changed, the VM is rebuilt (wipes the OS) with the new OS via the rebuild endpoint. Valid OS values are listed by the getOsList function.
    vmName string
    VM name. Defaults to server-name. Can be changed via change-vm-name.
    console_password str
    Console password at creation. Write-only: never re-fetched from the API.
    cycle str
    Billing cycle: m monthly, a annual, q quarterly, s semiannual, b biennial, t triennial, p4, p5.
    keypair_id int
    Keypair id from NeoliteKeypair. Can be changed via change-keypair.
    product_id int
    Product id from the getProducts function or the portal.
    select_os str
    OS installed at creation, from the getOsList function. To change OS, use rebuildOs.
    ssh_and_console_user str
    SSH and console user set at creation.
    description str
    VM description.
    disk_size int
    Target disk size (GB, absolute - not an increment). Can only go up, never down.
    migrate_to_pro str
    Trigger a one-shot migration to NEO Lite Pro: set the neolitepro_product_id target. Change the value again to re-trigger.
    pay_with_credit_card bool
    Pay the invoice with the registered credit card at order time. Defaults to true (auto-charge); set false to leave it unpaid in the portal until settled.
    power_state str
    VM power state: start, stop, suspend, resume, or shutdown. Update only sends an action when the value changes.
    promocode str
    Promo code to apply at order.
    rebuild_os str
    When changed, the VM is rebuilt (wipes the OS) with the new OS via the rebuild endpoint. Valid OS values are listed by the getOsList function.
    vm_name str
    VM name. Defaults to server-name. Can be changed via change-vm-name.
    consolePassword String
    Console password at creation. Write-only: never re-fetched from the API.
    cycle String
    Billing cycle: m monthly, a annual, q quarterly, s semiannual, b biennial, t triennial, p4, p5.
    keypairId Number
    Keypair id from NeoliteKeypair. Can be changed via change-keypair.
    productId Number
    Product id from the getProducts function or the portal.
    selectOs String
    OS installed at creation, from the getOsList function. To change OS, use rebuildOs.
    sshAndConsoleUser String
    SSH and console user set at creation.
    description String
    VM description.
    diskSize Number
    Target disk size (GB, absolute - not an increment). Can only go up, never down.
    migrateToPro String
    Trigger a one-shot migration to NEO Lite Pro: set the neolitepro_product_id target. Change the value again to re-trigger.
    payWithCreditCard Boolean
    Pay the invoice with the registered credit card at order time. Defaults to true (auto-charge); set false to leave it unpaid in the portal until settled.
    powerState String
    VM power state: start, stop, suspend, resume, or shutdown. Update only sends an action when the value changes.
    promocode String
    Promo code to apply at order.
    rebuildOs String
    When changed, the VM is rebuilt (wipes the OS) with the new OS via the rebuild endpoint. Valid OS values are listed by the getOsList function.
    vmName String
    VM name. Defaults to server-name. Can be changed via change-vm-name.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NeoliteVm resource produces the following output properties:

    Billingcycle string
    Active billing cycle.
    CiPassword string
    VM cloud-init password (sensitive).
    CiUser string
    VM cloud-init user.
    Cpus int
    Number of VM CPUs.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastInvoice NeoliteLastInvoice
    VM's last invoice.
    MaxDisk int
    Maximum VM disk size (GB).
    MaxMem int
    Maximum VM memory (MB).
    Mem int
    Memory used by the VM (MB).
    NextDue string
    Next billing due date.
    OrderId string
    Order id from the creation response.
    OsName string
    Name of the OS running on the VM.
    ProductName string
    Active product name.
    Raw string
    Raw JSON response of the last-read account, for accessing fields not yet modeled (cipassword masked).
    RecurringAmount int
    Recurring amount per cycle.
    Region string
    VM region.
    RegionLabel string
    VM region label.
    Status string
    Last known account status from the API (Active, Pending, Suspended, Terminated).
    Uptime int
    VM uptime in seconds.
    Billingcycle string
    Active billing cycle.
    CiPassword string
    VM cloud-init password (sensitive).
    CiUser string
    VM cloud-init user.
    Cpus int
    Number of VM CPUs.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastInvoice NeoliteLastInvoice
    VM's last invoice.
    MaxDisk int
    Maximum VM disk size (GB).
    MaxMem int
    Maximum VM memory (MB).
    Mem int
    Memory used by the VM (MB).
    NextDue string
    Next billing due date.
    OrderId string
    Order id from the creation response.
    OsName string
    Name of the OS running on the VM.
    ProductName string
    Active product name.
    Raw string
    Raw JSON response of the last-read account, for accessing fields not yet modeled (cipassword masked).
    RecurringAmount int
    Recurring amount per cycle.
    Region string
    VM region.
    RegionLabel string
    VM region label.
    Status string
    Last known account status from the API (Active, Pending, Suspended, Terminated).
    Uptime int
    VM uptime in seconds.
    billingcycle string
    Active billing cycle.
    ci_password string
    VM cloud-init password (sensitive).
    ci_user string
    VM cloud-init user.
    cpus number
    Number of VM CPUs.
    id string
    The provider-assigned unique ID for this managed resource.
    last_invoice object
    VM's last invoice.
    max_disk number
    Maximum VM disk size (GB).
    max_mem number
    Maximum VM memory (MB).
    mem number
    Memory used by the VM (MB).
    next_due string
    Next billing due date.
    order_id string
    Order id from the creation response.
    os_name string
    Name of the OS running on the VM.
    product_name string
    Active product name.
    raw string
    Raw JSON response of the last-read account, for accessing fields not yet modeled (cipassword masked).
    recurring_amount number
    Recurring amount per cycle.
    region string
    VM region.
    region_label string
    VM region label.
    status string
    Last known account status from the API (Active, Pending, Suspended, Terminated).
    uptime number
    VM uptime in seconds.
    billingcycle String
    Active billing cycle.
    ciPassword String
    VM cloud-init password (sensitive).
    ciUser String
    VM cloud-init user.
    cpus Integer
    Number of VM CPUs.
    id String
    The provider-assigned unique ID for this managed resource.
    lastInvoice NeoliteLastInvoice
    VM's last invoice.
    maxDisk Integer
    Maximum VM disk size (GB).
    maxMem Integer
    Maximum VM memory (MB).
    mem Integer
    Memory used by the VM (MB).
    nextDue String
    Next billing due date.
    orderId String
    Order id from the creation response.
    osName String
    Name of the OS running on the VM.
    productName String
    Active product name.
    raw String
    Raw JSON response of the last-read account, for accessing fields not yet modeled (cipassword masked).
    recurringAmount Integer
    Recurring amount per cycle.
    region String
    VM region.
    regionLabel String
    VM region label.
    status String
    Last known account status from the API (Active, Pending, Suspended, Terminated).
    uptime Integer
    VM uptime in seconds.
    billingcycle string
    Active billing cycle.
    ciPassword string
    VM cloud-init password (sensitive).
    ciUser string
    VM cloud-init user.
    cpus number
    Number of VM CPUs.
    id string
    The provider-assigned unique ID for this managed resource.
    lastInvoice NeoliteLastInvoice
    VM's last invoice.
    maxDisk number
    Maximum VM disk size (GB).
    maxMem number
    Maximum VM memory (MB).
    mem number
    Memory used by the VM (MB).
    nextDue string
    Next billing due date.
    orderId string
    Order id from the creation response.
    osName string
    Name of the OS running on the VM.
    productName string
    Active product name.
    raw string
    Raw JSON response of the last-read account, for accessing fields not yet modeled (cipassword masked).
    recurringAmount number
    Recurring amount per cycle.
    region string
    VM region.
    regionLabel string
    VM region label.
    status string
    Last known account status from the API (Active, Pending, Suspended, Terminated).
    uptime number
    VM uptime in seconds.
    billingcycle str
    Active billing cycle.
    ci_password str
    VM cloud-init password (sensitive).
    ci_user str
    VM cloud-init user.
    cpus int
    Number of VM CPUs.
    id str
    The provider-assigned unique ID for this managed resource.
    last_invoice NeoliteLastInvoice
    VM's last invoice.
    max_disk int
    Maximum VM disk size (GB).
    max_mem int
    Maximum VM memory (MB).
    mem int
    Memory used by the VM (MB).
    next_due str
    Next billing due date.
    order_id str
    Order id from the creation response.
    os_name str
    Name of the OS running on the VM.
    product_name str
    Active product name.
    raw str
    Raw JSON response of the last-read account, for accessing fields not yet modeled (cipassword masked).
    recurring_amount int
    Recurring amount per cycle.
    region str
    VM region.
    region_label str
    VM region label.
    status str
    Last known account status from the API (Active, Pending, Suspended, Terminated).
    uptime int
    VM uptime in seconds.
    billingcycle String
    Active billing cycle.
    ciPassword String
    VM cloud-init password (sensitive).
    ciUser String
    VM cloud-init user.
    cpus Number
    Number of VM CPUs.
    id String
    The provider-assigned unique ID for this managed resource.
    lastInvoice Property Map
    VM's last invoice.
    maxDisk Number
    Maximum VM disk size (GB).
    maxMem Number
    Maximum VM memory (MB).
    mem Number
    Memory used by the VM (MB).
    nextDue String
    Next billing due date.
    orderId String
    Order id from the creation response.
    osName String
    Name of the OS running on the VM.
    productName String
    Active product name.
    raw String
    Raw JSON response of the last-read account, for accessing fields not yet modeled (cipassword masked).
    recurringAmount Number
    Recurring amount per cycle.
    region String
    VM region.
    regionLabel String
    VM region label.
    status String
    Last known account status from the API (Active, Pending, Suspended, Terminated).
    uptime Number
    VM uptime in seconds.

    Supporting Types

    NeoliteLastInvoice, NeoliteLastInvoiceArgs

    Date string
    Datepaid string
    Duedate string
    Id int
    InvoiceType string
    PaidId int
    Paybefore string
    Status string
    Date string
    Datepaid string
    Duedate string
    Id int
    InvoiceType string
    PaidId int
    Paybefore string
    Status string
    date string
    datepaid string
    duedate string
    id number
    invoice_type string
    number
    paybefore string
    status string
    date String
    datepaid String
    duedate String
    id Integer
    invoiceType String
    paidId Integer
    paybefore String
    status String
    date string
    datepaid string
    duedate string
    id number
    invoiceType string
    paidId number
    paybefore string
    status string
    date String
    datepaid String
    duedate String
    id Number
    invoiceType String
    paidId Number
    paybefore String
    status String

    Package Details

    Repository
    biznetgio github.com/shirasakaren/pulumi-biznetgio
    License
    Apache-2.0
    biznetgio logo
    Viewing docs for Pulumi BiznetGIO Provider v0.1.7
    published on Wednesday, Aug 19, 2026 by shirasakaren

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial