1. Packages
  2. Outscale Provider
  3. API Docs
  4. getUsers
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.getUsers

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    Provides information about users.

    For more information on this resource, see the User Guide.
    For more information on this resource actions, see the API documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const users_2 = outscale.getUsers({
        filters: [{
            name: "user_ids",
            values: [
                "XXXXXXXXXXXXXXXX",
                "YYYYYYYYYY",
            ],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    users_2 = outscale.get_users(filters=[{
        "name": "user_ids",
        "values": [
            "XXXXXXXXXXXXXXXX",
            "YYYYYYYYYY",
        ],
    }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.GetUsers(ctx, &outscale.GetUsersArgs{
    			Filters: []outscale.GetUsersFilter{
    				{
    					Name: "user_ids",
    					Values: []string{
    						"XXXXXXXXXXXXXXXX",
    						"YYYYYYYYYY",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var users_2 = Outscale.GetUsers.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetUsersFilterInputArgs
                {
                    Name = "user_ids",
                    Values = new[]
                    {
                        "XXXXXXXXXXXXXXXX",
                        "YYYYYYYYYY",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.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) {
            final var users-2 = OutscaleFunctions.getUsers(GetUsersArgs.builder()
                .filters(GetUsersFilterArgs.builder()
                    .name("user_ids")
                    .values(                
                        "XXXXXXXXXXXXXXXX",
                        "YYYYYYYYYY")
                    .build())
                .build());
    
        }
    }
    
    variables:
      users-2:
        fn::invoke:
          function: outscale:getUsers
          arguments:
            filters:
              - name: user_ids
                values:
                  - XXXXXXXXXXXXXXXX
                  - YYYYYYYYYY
    

    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(filters: Optional[Sequence[GetUsersFilter]] = None,
                  id: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetUsersResult
    def get_users_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetUsersFilterArgs]]]] = None,
                  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: outscale:index/getUsers:getUsers
      arguments:
        # arguments dictionary

    The following arguments are supported:

    getUsers Result

    The following output properties are available:

    Supporting Types

    GetUsersFilter

    Name string
    Values List<string>
    Name string
    Values []string
    name String
    values List<String>
    name string
    values string[]
    name str
    values Sequence[str]
    name String
    values List<String>

    GetUsersUser

    CreationDate string
    The date and time (UTC) of creation of the EIM user.
    LastModificationDate string
    The date and time (UTC) of the last modification of the EIM user.
    Path string
    The path to the EIM user.
    UserEmail string
    The email address of the EIM user.
    UserId string
    The ID of the EIM user.
    UserName string
    The name of the EIM user.
    CreationDate string
    The date and time (UTC) of creation of the EIM user.
    LastModificationDate string
    The date and time (UTC) of the last modification of the EIM user.
    Path string
    The path to the EIM user.
    UserEmail string
    The email address of the EIM user.
    UserId string
    The ID of the EIM user.
    UserName string
    The name of the EIM user.
    creationDate String
    The date and time (UTC) of creation of the EIM user.
    lastModificationDate String
    The date and time (UTC) of the last modification of the EIM user.
    path String
    The path to the EIM user.
    userEmail String
    The email address of the EIM user.
    userId String
    The ID of the EIM user.
    userName String
    The name of the EIM user.
    creationDate string
    The date and time (UTC) of creation of the EIM user.
    lastModificationDate string
    The date and time (UTC) of the last modification of the EIM user.
    path string
    The path to the EIM user.
    userEmail string
    The email address of the EIM user.
    userId string
    The ID of the EIM user.
    userName string
    The name of the EIM user.
    creation_date str
    The date and time (UTC) of creation of the EIM user.
    last_modification_date str
    The date and time (UTC) of the last modification of the EIM user.
    path str
    The path to the EIM user.
    user_email str
    The email address of the EIM user.
    user_id str
    The ID of the EIM user.
    user_name str
    The name of the EIM user.
    creationDate String
    The date and time (UTC) of creation of the EIM user.
    lastModificationDate String
    The date and time (UTC) of the last modification of the EIM user.
    path String
    The path to the EIM user.
    userEmail String
    The email address of the EIM user.
    userId String
    The ID of the EIM user.
    userName String
    The name of the EIM user.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale