1. Packages
  2. Libvirt Provider
  3. API Docs
  4. getNodeInfo
libvirt 0.8.3 published on Tuesday, Mar 4, 2025 by dmacvicar

libvirt.getNodeInfo

Explore with Pulumi AI

libvirt logo
libvirt 0.8.3 published on Tuesday, Mar 4, 2025 by dmacvicar

    Retrieve information about the current node

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as libvirt from "@pulumi/libvirt";
    
    const node = libvirt.getNodeInfo({});
    
    import pulumi
    import pulumi_libvirt as libvirt
    
    node = libvirt.get_node_info()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/libvirt/libvirt"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := libvirt.GetNodeInfo(ctx, &libvirt.GetNodeInfoArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Libvirt = Pulumi.Libvirt;
    
    return await Deployment.RunAsync(() => 
    {
        var node = Libvirt.GetNodeInfo.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.libvirt.LibvirtFunctions;
    import com.pulumi.libvirt.inputs.GetNodeInfoArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var node = LibvirtFunctions.getNodeInfo();
    
        }
    }
    
    variables:
      node:
        fn::invoke:
          function: libvirt:getNodeInfo
          arguments: {}
    

    Using getNodeInfo

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getNodeInfo(args: GetNodeInfoArgs, opts?: InvokeOptions): Promise<GetNodeInfoResult>
    function getNodeInfoOutput(args: GetNodeInfoOutputArgs, opts?: InvokeOptions): Output<GetNodeInfoResult>
    def get_node_info(id: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetNodeInfoResult
    def get_node_info_output(id: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetNodeInfoResult]
    func GetNodeInfo(ctx *Context, args *GetNodeInfoArgs, opts ...InvokeOption) (*GetNodeInfoResult, error)
    func GetNodeInfoOutput(ctx *Context, args *GetNodeInfoOutputArgs, opts ...InvokeOption) GetNodeInfoResultOutput

    > Note: This function is named GetNodeInfo in the Go SDK.

    public static class GetNodeInfo 
    {
        public static Task<GetNodeInfoResult> InvokeAsync(GetNodeInfoArgs args, InvokeOptions? opts = null)
        public static Output<GetNodeInfoResult> Invoke(GetNodeInfoInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetNodeInfoResult> getNodeInfo(GetNodeInfoArgs args, InvokeOptions options)
    public static Output<GetNodeInfoResult> getNodeInfo(GetNodeInfoArgs args, InvokeOptions options)
    
    fn::invoke:
      function: libvirt:index/getNodeInfo:getNodeInfo
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Id string
    id String
    id string
    id str
    id String

    getNodeInfo Result

    The following output properties are available:

    CpuCoresPerSocket double
    Number of CPU cores per each socket
    CpuCoresTotal double
    Number of CPU cores in total
    CpuModel string
    CPU Architecture, usually x86_64
    CpuSockets double
    How many CPU sockets are present
    CpuThreadsPerCore double
    How many CPU Threads are available per each CPU core
    Id string
    MemoryTotalKb double
    The amount of memory installed, in KiB
    NumaNodes double
    How many NUMA nodes/cells are available.
    CpuCoresPerSocket float64
    Number of CPU cores per each socket
    CpuCoresTotal float64
    Number of CPU cores in total
    CpuModel string
    CPU Architecture, usually x86_64
    CpuSockets float64
    How many CPU sockets are present
    CpuThreadsPerCore float64
    How many CPU Threads are available per each CPU core
    Id string
    MemoryTotalKb float64
    The amount of memory installed, in KiB
    NumaNodes float64
    How many NUMA nodes/cells are available.
    cpuCoresPerSocket Double
    Number of CPU cores per each socket
    cpuCoresTotal Double
    Number of CPU cores in total
    cpuModel String
    CPU Architecture, usually x86_64
    cpuSockets Double
    How many CPU sockets are present
    cpuThreadsPerCore Double
    How many CPU Threads are available per each CPU core
    id String
    memoryTotalKb Double
    The amount of memory installed, in KiB
    numaNodes Double
    How many NUMA nodes/cells are available.
    cpuCoresPerSocket number
    Number of CPU cores per each socket
    cpuCoresTotal number
    Number of CPU cores in total
    cpuModel string
    CPU Architecture, usually x86_64
    cpuSockets number
    How many CPU sockets are present
    cpuThreadsPerCore number
    How many CPU Threads are available per each CPU core
    id string
    memoryTotalKb number
    The amount of memory installed, in KiB
    numaNodes number
    How many NUMA nodes/cells are available.
    cpu_cores_per_socket float
    Number of CPU cores per each socket
    cpu_cores_total float
    Number of CPU cores in total
    cpu_model str
    CPU Architecture, usually x86_64
    cpu_sockets float
    How many CPU sockets are present
    cpu_threads_per_core float
    How many CPU Threads are available per each CPU core
    id str
    memory_total_kb float
    The amount of memory installed, in KiB
    numa_nodes float
    How many NUMA nodes/cells are available.
    cpuCoresPerSocket Number
    Number of CPU cores per each socket
    cpuCoresTotal Number
    Number of CPU cores in total
    cpuModel String
    CPU Architecture, usually x86_64
    cpuSockets Number
    How many CPU sockets are present
    cpuThreadsPerCore Number
    How many CPU Threads are available per each CPU core
    id String
    memoryTotalKb Number
    The amount of memory installed, in KiB
    numaNodes Number
    How many NUMA nodes/cells are available.

    Package Details

    Repository
    libvirt dmacvicar/terraform-provider-libvirt
    License
    Notes
    This Pulumi package is based on the libvirt Terraform Provider.
    libvirt logo
    libvirt 0.8.3 published on Tuesday, Mar 4, 2025 by dmacvicar