1. Packages
  2. Tailscale
  3. API Docs
  4. getDevices
Tailscale v0.15.0 published on Saturday, Mar 2, 2024 by Pulumi

tailscale.getDevices

Explore with Pulumi AI

tailscale logo
Tailscale v0.15.0 published on Saturday, Mar 2, 2024 by Pulumi

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

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    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>
    The list of device's IPs
    Hostname string
    The short hostname of the device
    Id string
    The unique identifier of the device
    Name string
    The full name of the device (e.g. hostname.domain.ts.net)
    Tags List<string>
    The tags applied to the device
    User string
    The user associated with the device
    Addresses []string
    The list of device's IPs
    Hostname string
    The short hostname of the device
    Id string
    The unique identifier of the device
    Name string
    The full name of the device (e.g. hostname.domain.ts.net)
    Tags []string
    The tags applied to the device
    User string
    The user associated with the device
    addresses List<String>
    The list of device's IPs
    hostname String
    The short hostname of the device
    id String
    The unique identifier of the device
    name String
    The full name of the device (e.g. hostname.domain.ts.net)
    tags List<String>
    The tags applied to the device
    user String
    The user associated with the device
    addresses string[]
    The list of device's IPs
    hostname string
    The short hostname of the device
    id string
    The unique identifier of the device
    name string
    The full name of the device (e.g. hostname.domain.ts.net)
    tags string[]
    The tags applied to the device
    user string
    The user associated with the device
    addresses Sequence[str]
    The list of device's IPs
    hostname str
    The short hostname of the device
    id str
    The unique identifier of the device
    name str
    The full name of the device (e.g. hostname.domain.ts.net)
    tags Sequence[str]
    The tags applied to the device
    user str
    The user associated with the device
    addresses List<String>
    The list of device's IPs
    hostname String
    The short hostname of the device
    id String
    The unique identifier of the device
    name String
    The full name of the device (e.g. hostname.domain.ts.net)
    tags List<String>
    The tags applied to the device
    user String
    The user associated with the device

    Package Details

    Repository
    tailscale pulumi/pulumi-tailscale
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the tailscale Terraform Provider.
    tailscale logo
    Tailscale v0.15.0 published on Saturday, Mar 2, 2024 by Pulumi