tailscale logo
Tailscale v0.12.0, Jan 25 23

tailscale.getDevices

Explore with Pulumi AI

The devices data source describes a list of devices in a tailnet

Example Usage

using System.Collections.Generic;
using Pulumi;
using Tailscale = Pulumi.Tailscale;

return await Deployment.RunAsync(() => 
{
    var sampleDevices = Tailscale.GetDevices.Invoke(new()
    {
        NamePrefix = "example-",
    });

});
package main

import (
	"github.com/pulumi/pulumi-tailscale/sdk/go/tailscale"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := tailscale.GetDevices(ctx, &tailscale.GetDevicesArgs{
			NamePrefix: pulumi.StringRef("example-"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tailscale.TailscaleFunctions;
import com.pulumi.tailscale.inputs.GetDevicesArgs;
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 sampleDevices = TailscaleFunctions.getDevices(GetDevicesArgs.builder()
            .namePrefix("example-")
            .build());

    }
}
import pulumi
import pulumi_tailscale as tailscale

sample_devices = tailscale.get_devices(name_prefix="example-")
import * as pulumi from "@pulumi/pulumi";
import * as tailscale from "@pulumi/tailscale";

const sampleDevices = tailscale.getDevices({
    namePrefix: "example-",
});
variables:
  sampleDevices:
    fn::invoke:
      Function: tailscale:getDevices
      Arguments:
        namePrefix: example-

Using getDevices

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 getDevices(args: GetDevicesArgs, opts?: InvokeOptions): Promise<GetDevicesResult>
function getDevicesOutput(args: GetDevicesOutputArgs, opts?: InvokeOptions): Output<GetDevicesResult>
def get_devices(name_prefix: Optional[str] = None,
                opts: Optional[InvokeOptions] = None) -> GetDevicesResult
def get_devices_output(name_prefix: Optional[pulumi.Input[str]] = None,
                opts: Optional[InvokeOptions] = None) -> Output[GetDevicesResult]
func GetDevices(ctx *Context, args *GetDevicesArgs, opts ...InvokeOption) (*GetDevicesResult, error)
func GetDevicesOutput(ctx *Context, args *GetDevicesOutputArgs, opts ...InvokeOption) GetDevicesResultOutput

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

public static class GetDevices 
{
    public static Task<GetDevicesResult> InvokeAsync(GetDevicesArgs args, InvokeOptions? opts = null)
    public static Output<GetDevicesResult> Invoke(GetDevicesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDevicesResult> getDevices(GetDevicesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: tailscale:index/getDevices:getDevices
  arguments:
    # arguments dictionary

The following arguments are supported:

NamePrefix string

Filters the device list to elements whose name has the provided prefix

NamePrefix string

Filters the device list to elements whose name has the provided prefix

namePrefix String

Filters the device list to elements whose name has the provided prefix

namePrefix string

Filters the device list to elements whose name has the provided prefix

name_prefix str

Filters the device list to elements whose name has the provided prefix

namePrefix String

Filters the device list to elements whose name has the provided prefix

getDevices Result

The following output properties are available:

Devices List<GetDevicesDevice>

The list of devices in the tailnet

Id string

The provider-assigned unique ID for this managed resource.

NamePrefix string

Filters the device list to elements whose name has the provided prefix

Devices []GetDevicesDevice

The list of devices in the tailnet

Id string

The provider-assigned unique ID for this managed resource.

NamePrefix string

Filters the device list to elements whose name has the provided prefix

devices List<GetDevicesDevice>

The list of devices in the tailnet

id String

The provider-assigned unique ID for this managed resource.

namePrefix String

Filters the device list to elements whose name has the provided prefix

devices GetDevicesDevice[]

The list of devices in the tailnet

id string

The provider-assigned unique ID for this managed resource.

namePrefix string

Filters the device list to elements whose name has the provided prefix

devices Sequence[GetDevicesDevice]

The list of devices in the tailnet

id str

The provider-assigned unique ID for this managed resource.

name_prefix str

Filters the device list to elements whose name has the provided prefix

devices List<Property Map>

The list of devices in the tailnet

id String

The provider-assigned unique ID for this managed resource.

namePrefix String

Filters the device list to elements whose name has the provided prefix

Supporting Types

GetDevicesDevice

Addresses List<string>
Id string

The ID of this resource.

Name string
Tags List<string>
User string
Addresses []string
Id string

The ID of this resource.

Name string
Tags []string
User string
addresses List<String>
id String

The ID of this resource.

name String
tags List<String>
user String
addresses string[]
id string

The ID of this resource.

name string
tags string[]
user string
addresses Sequence[str]
id str

The ID of this resource.

name str
tags Sequence[str]
user str
addresses List<String>
id String

The ID of this resource.

name String
tags List<String>
user String

Package Details

Repository
tailscale pulumi/pulumi-tailscale
License
Apache-2.0
Notes

This Pulumi package is based on the tailscale Terraform Provider.