Modifier

Host Compute System Overview

Applies to: Windows Server 2019, Windows Server 2022, Azure Stack HCI 20H2, Azure Stack 21H2, Microsoft Windows 10 October 2018 Update

What is the HCS?

The Host Compute System API provides the functionality to start and control VMs and containers.

A compute system represents a VM or container that was created through the API. Operations are performed on handles to a compute system. Compute systems are ephemeral, meaning that once a VM or container stopped (e.g., a VM was shut down), the compute system is cleaned up and no further operations can be executed on existing handles to the compute system (the only exception is the ability to query the exit status of the compute system). It is the application’s responsibility to create a new compute system to start the VM or container again.

The operations supported on compute systems include creating, starting and stopping a VM or container. For VMs, additional operations such pause, resume, save and restore are supported.

For both VMs and containers, the API provides the ability to start and interact with process in the compute system. For containers, this functionality is the primary way that applications create and interact with the workload in the container.

Life Cycle Management

A client must configure the necessary resources in the host environment prior to calling the HCS APIs to create and configure the virtual machine. The HCS will not provide functionality to setup resources when creating the virtual machine.

The three main components include creating the virtual hard disk file (VHD) to act as the VM's disk, configuring the networking, and creating any Hyper-V sockets. The application configurations and properties will be stored in a JSON file which will then be passed through the HCS APIs to create the compute system. The following sections describes the necessary components and workflow.

API References

For a list of the HCS functions, please see API Reference.

JSON Schema

The overview of Schema-based configuration documents is in JSON Schema Overview

For a list of JSON Schema References, please see Schema References.

For JSON Schema file used to generate other languages and the example of generated Schema code, please see Schema Sample.

Samples

Sample codes lists the simple workflow by using HCS API to create and manage the virtual machine.

The sample code of how callback functions are used as both synchronous and asynchronous way shows in Operation Completion Samples