1. Packages
  2. Proxmox Virtual Environment (Proxmox VE)
  3. API Docs
  4. Network
  5. getVersion
Proxmox Virtual Environment (Proxmox VE) v6.18.1 published on Tuesday, Jan 7, 2025 by Daniel Muehlbachler-Pietrzykowski

proxmoxve.Network.getVersion

Explore with Pulumi AI

Proxmox Virtual Environment (Proxmox VE) v6.18.1 published on Tuesday, Jan 7, 2025 by Daniel Muehlbachler-Pietrzykowski

Retrieves API version details.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as proxmoxve from "@pulumi/proxmoxve";

const example = proxmoxve.Network.getVersion({});
export const dataProxmoxVirtualEnvironmentVersion = {
    release: example.then(example => example.release),
    repository_id: example.then(example => example.repositoryId),
    version: example.then(example => example.version),
};
Copy
import pulumi
import pulumi_proxmoxve as proxmoxve

example = proxmoxve.Network.get_version()
pulumi.export("dataProxmoxVirtualEnvironmentVersion", {
    "release": example.release,
    "repository_id": example.repository_id,
    "version": example.version,
})
Copy
package main

import (
	"github.com/muhlba91/pulumi-proxmoxve/sdk/v6/go/proxmoxve/Network"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := Network.GetVersion(ctx, map[string]interface{}{}, nil)
		if err != nil {
			return err
		}
		ctx.Export("dataProxmoxVirtualEnvironmentVersion", pulumi.StringMap{
			"release":       example.Release,
			"repository_id": example.RepositoryId,
			"version":       example.Version,
		})
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ProxmoxVE = Pulumi.ProxmoxVE;

return await Deployment.RunAsync(() => 
{
    var example = ProxmoxVE.Network.GetVersion.Invoke();

    return new Dictionary<string, object?>
    {
        ["dataProxmoxVirtualEnvironmentVersion"] = 
        {
            { "release", example.Apply(getVersionResult => getVersionResult.Release) },
            { "repository_id", example.Apply(getVersionResult => getVersionResult.RepositoryId) },
            { "version", example.Apply(getVersionResult => getVersionResult.Version) },
        },
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.proxmoxve.Network.NetworkFunctions;
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 example = NetworkFunctions.getVersion();

        ctx.export("dataProxmoxVirtualEnvironmentVersion", %!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: proxmoxve:Network:getVersion
      arguments: {}
outputs:
  dataProxmoxVirtualEnvironmentVersion:
    release: ${example.release}
    repository_id: ${example.repositoryId}
    version: ${example.version}
Copy

Using getVersion

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 getVersion(opts?: InvokeOptions): Promise<GetVersionResult>
function getVersionOutput(opts?: InvokeOptions): Output<GetVersionResult>
Copy
def get_version(opts: Optional[InvokeOptions] = None) -> GetVersionResult
def get_version_output(opts: Optional[InvokeOptions] = None) -> Output[GetVersionResult]
Copy
func GetVersion(ctx *Context, opts ...InvokeOption) (*GetVersionResult, error)
func GetVersionOutput(ctx *Context, opts ...InvokeOption) GetVersionResultOutput
Copy

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

public static class GetVersion 
{
    public static Task<GetVersionResult> InvokeAsync(InvokeOptions? opts = null)
    public static Output<GetVersionResult> Invoke(InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetVersionResult> getVersion(InvokeOptions options)
public static Output<GetVersionResult> getVersion(InvokeOptions options)
Copy
fn::invoke:
  function: proxmoxve:Network/getVersion:getVersion
  arguments:
    # arguments dictionary
Copy

getVersion Result

The following output properties are available:

Id string
Placeholder identifier attribute.
Release string
The current Proxmox VE point release in x.y format.
RepositoryId string
The short git revision from which this version was build.
Version string
The full pve-manager package version of this node.
Id string
Placeholder identifier attribute.
Release string
The current Proxmox VE point release in x.y format.
RepositoryId string
The short git revision from which this version was build.
Version string
The full pve-manager package version of this node.
id String
Placeholder identifier attribute.
release String
The current Proxmox VE point release in x.y format.
repositoryId String
The short git revision from which this version was build.
version String
The full pve-manager package version of this node.
id string
Placeholder identifier attribute.
release string
The current Proxmox VE point release in x.y format.
repositoryId string
The short git revision from which this version was build.
version string
The full pve-manager package version of this node.
id str
Placeholder identifier attribute.
release str
The current Proxmox VE point release in x.y format.
repository_id str
The short git revision from which this version was build.
version str
The full pve-manager package version of this node.
id String
Placeholder identifier attribute.
release String
The current Proxmox VE point release in x.y format.
repositoryId String
The short git revision from which this version was build.
version String
The full pve-manager package version of this node.

Package Details

Repository
proxmoxve muhlba91/pulumi-proxmoxve
License
Apache-2.0
Notes
This Pulumi package is based on the proxmox Terraform Provider.
Proxmox Virtual Environment (Proxmox VE) v6.18.1 published on Tuesday, Jan 7, 2025 by Daniel Muehlbachler-Pietrzykowski