lxd 2.5.0 published on Thursday, Mar 13, 2025 by terraform-lxd
lxd.getInfo
Explore with Pulumi AI
# lxd.getInfo
Provides general information about LXD remote.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as lxd from "@pulumi/lxd";
const local = lxd.getInfo({
remote: "local",
});
import pulumi
import pulumi_lxd as lxd
local = lxd.get_info(remote="local")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/lxd/v2/lxd"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lxd.GetInfo(ctx, &lxd.GetInfoArgs{
Remote: pulumi.StringRef("local"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Lxd = Pulumi.Lxd;
return await Deployment.RunAsync(() =>
{
var local = Lxd.GetInfo.Invoke(new()
{
Remote = "local",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.lxd.LxdFunctions;
import com.pulumi.lxd.inputs.GetInfoArgs;
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 local = LxdFunctions.getInfo(GetInfoArgs.builder()
.remote("local")
.build());
}
}
variables:
local:
fn::invoke:
function: lxd:getInfo
arguments:
remote: local
Using getInfo
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 getInfo(args: GetInfoArgs, opts?: InvokeOptions): Promise<GetInfoResult>
function getInfoOutput(args: GetInfoOutputArgs, opts?: InvokeOptions): Output<GetInfoResult>
def get_info(remote: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInfoResult
def get_info_output(remote: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInfoResult]
func GetInfo(ctx *Context, args *GetInfoArgs, opts ...InvokeOption) (*GetInfoResult, error)
func GetInfoOutput(ctx *Context, args *GetInfoOutputArgs, opts ...InvokeOption) GetInfoResultOutput
> Note: This function is named GetInfo
in the Go SDK.
public static class GetInfo
{
public static Task<GetInfoResult> InvokeAsync(GetInfoArgs args, InvokeOptions? opts = null)
public static Output<GetInfoResult> Invoke(GetInfoInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInfoResult> getInfo(GetInfoArgs args, InvokeOptions options)
public static Output<GetInfoResult> getInfo(GetInfoArgs args, InvokeOptions options)
fn::invoke:
function: lxd:index/getInfo:getInfo
arguments:
# arguments dictionary
The following arguments are supported:
- Remote string
- Optional - The remote to inspect. If not provided, the provider's default remote is used.
- Remote string
- Optional - The remote to inspect. If not provided, the provider's default remote is used.
- remote String
- Optional - The remote to inspect. If not provided, the provider's default remote is used.
- remote string
- Optional - The remote to inspect. If not provided, the provider's default remote is used.
- remote str
- Optional - The remote to inspect. If not provided, the provider's default remote is used.
- remote String
- Optional - The remote to inspect. If not provided, the provider's default remote is used.
getInfo Result
The following output properties are available:
- Api
Extensions List<string> - List of API extensions supported by the LXD server.
- Cluster
Members Dictionary<string, GetInfo Cluster Members> - Map of cluster members, which is empty if LXD is not clustered. The map key represents a cluster member name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Types List<string> - List of supported instance types (e.g.
virtual-machine
,container
). - Remote string
- Api
Extensions []string - List of API extensions supported by the LXD server.
- Cluster
Members map[string]GetInfo Cluster Members - Map of cluster members, which is empty if LXD is not clustered. The map key represents a cluster member name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Types []string - List of supported instance types (e.g.
virtual-machine
,container
). - Remote string
- api
Extensions List<String> - List of API extensions supported by the LXD server.
- cluster
Members Map<String,GetInfo Cluster Members> - Map of cluster members, which is empty if LXD is not clustered. The map key represents a cluster member name.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Types List<String> - List of supported instance types (e.g.
virtual-machine
,container
). - remote String
- api
Extensions string[] - List of API extensions supported by the LXD server.
- cluster
Members {[key: string]: GetInfo Cluster Members} - Map of cluster members, which is empty if LXD is not clustered. The map key represents a cluster member name.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Types string[] - List of supported instance types (e.g.
virtual-machine
,container
). - remote string
- api_
extensions Sequence[str] - List of API extensions supported by the LXD server.
- cluster_
members Mapping[str, GetInfo Cluster Members] - Map of cluster members, which is empty if LXD is not clustered. The map key represents a cluster member name.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
types Sequence[str] - List of supported instance types (e.g.
virtual-machine
,container
). - remote str
- api
Extensions List<String> - List of API extensions supported by the LXD server.
- cluster
Members Map<Property Map> - Map of cluster members, which is empty if LXD is not clustered. The map key represents a cluster member name.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Types List<String> - List of supported instance types (e.g.
virtual-machine
,container
). - remote String
Supporting Types
GetInfoClusterMembers
Package Details
- Repository
- lxd terraform-lxd/terraform-provider-lxd
- License
- Notes
- This Pulumi package is based on the
lxd
Terraform Provider.