Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.1.0
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.1.0
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
Retrieves information about all Replications in Proxmox.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
// List all Replications
const all = proxmoxve.getReplications({});
export const dataProxmoxReplicationsAll = {
replications: all.then(all => all.replications),
};
import pulumi
import pulumi_proxmoxve as proxmoxve
# List all Replications
all = proxmoxve.get_replications()
pulumi.export("dataProxmoxReplicationsAll", {
"replications": all.replications,
})
package main
import (
"github.com/muhlba91/pulumi-proxmoxve/sdk/v8/go/proxmoxve"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// List all Replications
all, err := proxmoxve.GetReplications(ctx, map[string]interface{}{}, nil)
if err != nil {
return err
}
ctx.Export("dataProxmoxReplicationsAll", []proxmoxve.GetReplicationsReplicationMap{
"replications": all.Replications,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ProxmoxVE = Pulumi.ProxmoxVE;
return await Deployment.RunAsync(() =>
{
// List all Replications
var all = ProxmoxVE.Index.GetReplications.Invoke();
return new Dictionary<string, object?>
{
["dataProxmoxReplicationsAll"] =
{
{ "replications", all.Apply(getReplicationsResult => getReplicationsResult.Replications) },
},
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.proxmoxve.ProxmoxveFunctions;
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) {
// List all Replications
final var all = ProxmoxveFunctions.getReplications(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);
ctx.export("dataProxmoxReplicationsAll", Map.of("replications", all.replications()));
}
}
variables:
# List all Replications
all:
fn::invoke:
function: proxmoxve:getReplications
arguments: {}
outputs:
dataProxmoxReplicationsAll:
replications: ${all.replications}
Using getReplications
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 getReplications(opts?: InvokeOptions): Promise<GetReplicationsResult>
function getReplicationsOutput(opts?: InvokeOptions): Output<GetReplicationsResult>def get_replications(opts: Optional[InvokeOptions] = None) -> GetReplicationsResult
def get_replications_output(opts: Optional[InvokeOptions] = None) -> Output[GetReplicationsResult]func GetReplications(ctx *Context, opts ...InvokeOption) (*GetReplicationsResult, error)
func GetReplicationsOutput(ctx *Context, opts ...InvokeOption) GetReplicationsResultOutput> Note: This function is named GetReplications in the Go SDK.
public static class GetReplications
{
public static Task<GetReplicationsResult> InvokeAsync(InvokeOptions? opts = null)
public static Output<GetReplicationsResult> Invoke(InvokeOptions? opts = null)
}public static CompletableFuture<GetReplicationsResult> getReplications(InvokeOptions options)
public static Output<GetReplicationsResult> getReplications(InvokeOptions options)
fn::invoke:
function: proxmoxve:index/getReplications:getReplications
arguments:
# arguments dictionarygetReplications Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Replications
List<Pulumi.
Proxmox VE. Outputs. Get Replications Replication> - List of Replications.
- Id string
- The provider-assigned unique ID for this managed resource.
- Replications
[]Get
Replications Replication - List of Replications.
- id String
- The provider-assigned unique ID for this managed resource.
- replications
List<Get
Replications Replication> - List of Replications.
- id string
- The provider-assigned unique ID for this managed resource.
- replications
Get
Replications Replication[] - List of Replications.
- id str
- The provider-assigned unique ID for this managed resource.
- replications
Sequence[Get
Replications Replication] - List of Replications.
- id String
- The provider-assigned unique ID for this managed resource.
- replications List<Property Map>
- List of Replications.
Supporting Types
GetReplicationsReplication
Package Details
- Repository
- proxmoxve muhlba91/pulumi-proxmoxve
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
proxmoxTerraform Provider.
Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.1.0
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
