...

Source file src/github.com/Microsoft/hcsshim/internal/hcs/resourcepaths/virtualmachine.go

Documentation: github.com/Microsoft/hcsshim/internal/hcs/resourcepaths

     1  package resourcepaths
     2  
     3  const (
     4  	GPUResourcePath                  string = "VirtualMachine/ComputeTopology/Gpu"
     5  	MemoryResourcePath               string = "VirtualMachine/ComputeTopology/Memory/SizeInMB"
     6  	CPUGroupResourcePath             string = "VirtualMachine/ComputeTopology/Processor/CpuGroup"
     7  	IdledResourcePath                string = "VirtualMachine/ComputeTopology/Processor/IdledProcessors"
     8  	CPUFrequencyPowerCapResourcePath string = "VirtualMachine/ComputeTopology/Processor/CpuFrequencyPowerCap"
     9  	CPULimitsResourcePath            string = "VirtualMachine/ComputeTopology/Processor/Limits"
    10  	SerialResourceFormat             string = "VirtualMachine/Devices/ComPorts/%d"
    11  	FlexibleIovResourceFormat        string = "VirtualMachine/Devices/FlexibleIov/%s"
    12  	LicensingResourcePath            string = "VirtualMachine/Devices/Licensing"
    13  	MappedPipeResourceFormat         string = "VirtualMachine/Devices/MappedPipes/%s"
    14  	NetworkResourceFormat            string = "VirtualMachine/Devices/NetworkAdapters/%s"
    15  	Plan9ShareResourcePath           string = "VirtualMachine/Devices/Plan9/Shares"
    16  	SCSIResourceFormat               string = "VirtualMachine/Devices/Scsi/%s/Attachments/%d"
    17  	SharedMemoryRegionResourcePath   string = "VirtualMachine/Devices/SharedMemory/Regions"
    18  	VirtualPCIResourceFormat         string = "VirtualMachine/Devices/VirtualPci/%s"
    19  	VPMemControllerResourceFormat    string = "VirtualMachine/Devices/VirtualPMem/Devices/%d"
    20  	VPMemDeviceResourceFormat        string = "VirtualMachine/Devices/VirtualPMem/Devices/%d/Mappings/%d"
    21  	VSMBShareResourcePath            string = "VirtualMachine/Devices/VirtualSmb/Shares"
    22  	HvSocketConfigResourceFormat     string = "VirtualMachine/Devices/HvSocket/HvSocketConfig/ServiceTable/%s"
    23  )
    24  

View as plain text