Proxmox Virtual Environment (Proxmox VE) v6.18.1 published on Tuesday, Jan 7, 2025 by Daniel Muehlbachler-Pietrzykowski
proxmoxve.getNode
Explore with Pulumi AI
 
Proxmox Virtual Environment (Proxmox VE) v6.18.1 published on Tuesday, Jan 7, 2025 by Daniel Muehlbachler-Pietrzykowski
Retrieves information about node.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as proxmoxve from "@pulumi/proxmoxve";
const node = proxmoxve.getNode({});
import pulumi
import pulumi_proxmoxve as proxmoxve
node = proxmoxve.get_node()
package main
import (
	"github.com/muhlba91/pulumi-proxmoxve/sdk/v6/go/proxmoxve"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := proxmoxve.GetNode(ctx, &proxmoxve.GetNodeArgs{}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ProxmoxVE = Pulumi.ProxmoxVE;
return await Deployment.RunAsync(() => 
{
    var node = ProxmoxVE.GetNode.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.proxmoxve.ProxmoxveFunctions;
import com.pulumi.proxmoxve.inputs.GetNodeArgs;
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 = ProxmoxveFunctions.getNode();
    }
}
variables:
  node:
    fn::invoke:
      function: proxmoxve:getNode
      arguments: {}
Using getNode
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 getNode(args: GetNodeArgs, opts?: InvokeOptions): Promise<GetNodeResult>
function getNodeOutput(args: GetNodeOutputArgs, opts?: InvokeOptions): Output<GetNodeResult>def get_node(node_name: Optional[str] = None,
             opts: Optional[InvokeOptions] = None) -> GetNodeResult
def get_node_output(node_name: Optional[pulumi.Input[str]] = None,
             opts: Optional[InvokeOptions] = None) -> Output[GetNodeResult]func GetNode(ctx *Context, args *GetNodeArgs, opts ...InvokeOption) (*GetNodeResult, error)
func GetNodeOutput(ctx *Context, args *GetNodeOutputArgs, opts ...InvokeOption) GetNodeResultOutput> Note: This function is named GetNode in the Go SDK.
public static class GetNode 
{
    public static Task<GetNodeResult> InvokeAsync(GetNodeArgs args, InvokeOptions? opts = null)
    public static Output<GetNodeResult> Invoke(GetNodeInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetNodeResult> getNode(GetNodeArgs args, InvokeOptions options)
public static Output<GetNodeResult> getNode(GetNodeArgs args, InvokeOptions options)
fn::invoke:
  function: proxmoxve:index/getNode:getNode
  arguments:
    # arguments dictionaryThe following arguments are supported:
- NodeName string
- The node name.
- NodeName string
- The node name.
- nodeName String
- The node name.
- nodeName string
- The node name.
- node_name str
- The node name.
- nodeName String
- The node name.
getNode Result
The following output properties are available:
- CpuCount int
- The CPU count on the node.
- CpuModel string
- The CPU model on the node.
- CpuSockets int
- The CPU utilization on the node.
- Id string
- The provider-assigned unique ID for this managed resource.
- MemoryAvailable int
- The memory available on the node.
- MemoryTotal int
- The total memory on the node.
- MemoryUsed int
- The memory used on the node.
- NodeName string
- Uptime int
- The uptime in seconds on the node.
- CpuCount int
- The CPU count on the node.
- CpuModel string
- The CPU model on the node.
- CpuSockets int
- The CPU utilization on the node.
- Id string
- The provider-assigned unique ID for this managed resource.
- MemoryAvailable int
- The memory available on the node.
- MemoryTotal int
- The total memory on the node.
- MemoryUsed int
- The memory used on the node.
- NodeName string
- Uptime int
- The uptime in seconds on the node.
- cpuCount Integer
- The CPU count on the node.
- cpuModel String
- The CPU model on the node.
- cpuSockets Integer
- The CPU utilization on the node.
- id String
- The provider-assigned unique ID for this managed resource.
- memoryAvailable Integer
- The memory available on the node.
- memoryTotal Integer
- The total memory on the node.
- memoryUsed Integer
- The memory used on the node.
- nodeName String
- uptime Integer
- The uptime in seconds on the node.
- cpuCount number
- The CPU count on the node.
- cpuModel string
- The CPU model on the node.
- cpuSockets number
- The CPU utilization on the node.
- id string
- The provider-assigned unique ID for this managed resource.
- memoryAvailable number
- The memory available on the node.
- memoryTotal number
- The total memory on the node.
- memoryUsed number
- The memory used on the node.
- nodeName string
- uptime number
- The uptime in seconds on the node.
- cpu_count int
- The CPU count on the node.
- cpu_model str
- The CPU model on the node.
- cpu_sockets int
- The CPU utilization on the node.
- id str
- The provider-assigned unique ID for this managed resource.
- memory_available int
- The memory available on the node.
- memory_total int
- The total memory on the node.
- memory_used int
- The memory used on the node.
- node_name str
- uptime int
- The uptime in seconds on the node.
- cpuCount Number
- The CPU count on the node.
- cpuModel String
- The CPU model on the node.
- cpuSockets Number
- The CPU utilization on the node.
- id String
- The provider-assigned unique ID for this managed resource.
- memoryAvailable Number
- The memory available on the node.
- memoryTotal Number
- The total memory on the node.
- memoryUsed Number
- The memory used on the node.
- nodeName String
- uptime Number
- The uptime in seconds on the node.
Package Details
- Repository
- proxmoxve muhlba91/pulumi-proxmoxve
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the proxmoxTerraform Provider.
 
Proxmox Virtual Environment (Proxmox VE) v6.18.1 published on Tuesday, Jan 7, 2025 by Daniel Muehlbachler-Pietrzykowski