1. Packages
  2. Wavefront Provider
  3. API Docs
  4. getUsers
wavefront 5.1.0 published on Wednesday, Jan 21, 2026 by vmware
wavefront logo
wavefront 5.1.0 published on Wednesday, Jan 21, 2026 by vmware

    Use this data source to get all users in Wavefront.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as wavefront from "@pulumi/wavefront";
    
    // Get all users
    const users = wavefront.getUsers({});
    
    import pulumi
    import pulumi_wavefront as wavefront
    
    # Get all users
    users = wavefront.get_users()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/wavefront/v5/wavefront"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Get all users
    		_, err := wavefront.GetUsers(ctx, &wavefront.GetUsersArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Wavefront = Pulumi.Wavefront;
    
    return await Deployment.RunAsync(() => 
    {
        // Get all users
        var users = Wavefront.GetUsers.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.wavefront.WavefrontFunctions;
    import com.pulumi.wavefront.inputs.GetUsersArgs;
    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) {
            // Get all users
            final var users = WavefrontFunctions.getUsers(GetUsersArgs.builder()
                .build());
    
        }
    }
    
    variables:
      # Get all users
      users:
        fn::invoke:
          function: wavefront:getUsers
          arguments: {}
    

    Using getUsers

    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 getUsers(args: GetUsersArgs, opts?: InvokeOptions): Promise<GetUsersResult>
    function getUsersOutput(args: GetUsersOutputArgs, opts?: InvokeOptions): Output<GetUsersResult>
    def get_users(id: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetUsersResult
    def get_users_output(id: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetUsersResult]
    func GetUsers(ctx *Context, args *GetUsersArgs, opts ...InvokeOption) (*GetUsersResult, error)
    func GetUsersOutput(ctx *Context, args *GetUsersOutputArgs, opts ...InvokeOption) GetUsersResultOutput

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

    public static class GetUsers 
    {
        public static Task<GetUsersResult> InvokeAsync(GetUsersArgs args, InvokeOptions? opts = null)
        public static Output<GetUsersResult> Invoke(GetUsersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetUsersResult> getUsers(GetUsersArgs args, InvokeOptions options)
    public static Output<GetUsersResult> getUsers(GetUsersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: wavefront:index/getUsers:getUsers
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Id string
    id String
    id string
    id str
    id String

    getUsers Result

    The following output properties are available:

    Id string
    Users List<GetUsersUser>
    List of all users in Wavefront.
    Id string
    Users []GetUsersUser
    List of all users in Wavefront.
    id String
    users List<GetUsersUser>
    List of all users in Wavefront.
    id string
    users GetUsersUser[]
    List of all users in Wavefront.
    id str
    users Sequence[GetUsersUser]
    List of all users in Wavefront.
    id String
    users List<Property Map>
    List of all users in Wavefront.

    Supporting Types

    GetUsersUser

    Customer string
    The customer the user is associated with.
    Email string
    LastSuccessfulLogin double
    When the user last logged in to Wavefront.
    Permissions List<string>
    List of permissions granted to a user.
    UserGroupIds List<string>
    List of User Group Ids the user is a member of.
    Customer string
    The customer the user is associated with.
    Email string
    LastSuccessfulLogin float64
    When the user last logged in to Wavefront.
    Permissions []string
    List of permissions granted to a user.
    UserGroupIds []string
    List of User Group Ids the user is a member of.
    customer String
    The customer the user is associated with.
    email String
    lastSuccessfulLogin Double
    When the user last logged in to Wavefront.
    permissions List<String>
    List of permissions granted to a user.
    userGroupIds List<String>
    List of User Group Ids the user is a member of.
    customer string
    The customer the user is associated with.
    email string
    lastSuccessfulLogin number
    When the user last logged in to Wavefront.
    permissions string[]
    List of permissions granted to a user.
    userGroupIds string[]
    List of User Group Ids the user is a member of.
    customer str
    The customer the user is associated with.
    email str
    last_successful_login float
    When the user last logged in to Wavefront.
    permissions Sequence[str]
    List of permissions granted to a user.
    user_group_ids Sequence[str]
    List of User Group Ids the user is a member of.
    customer String
    The customer the user is associated with.
    email String
    lastSuccessfulLogin Number
    When the user last logged in to Wavefront.
    permissions List<String>
    List of permissions granted to a user.
    userGroupIds List<String>
    List of User Group Ids the user is a member of.

    Package Details

    Repository
    Wavefront vmware/terraform-provider-wavefront
    License
    Notes
    This Pulumi package is based on the wavefront Terraform Provider.
    wavefront logo
    wavefront 5.1.0 published on Wednesday, Jan 21, 2026 by vmware
      Meet Neo: Your AI Platform Teammate