1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. eds
  5. getUsers
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.eds.getUsers

Explore with Pulumi AI

Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

This data source provides the Elastic Desktop Service (ECD) Users of the current Alibaba Cloud user.

NOTE: Available in v1.142.0+.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const _default = new alicloud.eds.User("default", {
    endUserId: "example_value",
    email: "your_email",
    phone: "your_phone",
    password: "your_password",
});
const ids = alicloud.eds.getUsers({});
export const ecdUserId1 = ids.then(ids => ids.users?.[0]?.id);
Copy
import pulumi
import pulumi_alicloud as alicloud

default = alicloud.eds.User("default",
    end_user_id="example_value",
    email="your_email",
    phone="your_phone",
    password="your_password")
ids = alicloud.eds.get_users()
pulumi.export("ecdUserId1", ids.users[0].id)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := eds.NewUser(ctx, "default", &eds.UserArgs{
			EndUserId: pulumi.String("example_value"),
			Email:     pulumi.String("your_email"),
			Phone:     pulumi.String("your_phone"),
			Password:  pulumi.String("your_password"),
		})
		if err != nil {
			return err
		}
		ids, err := eds.GetUsers(ctx, &eds.GetUsersArgs{}, nil)
		if err != nil {
			return err
		}
		ctx.Export("ecdUserId1", ids.Users[0].Id)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var @default = new AliCloud.Eds.User("default", new()
    {
        EndUserId = "example_value",
        Email = "your_email",
        Phone = "your_phone",
        Password = "your_password",
    });

    var ids = AliCloud.Eds.GetUsers.Invoke();

    return new Dictionary<string, object?>
    {
        ["ecdUserId1"] = ids.Apply(getUsersResult => getUsersResult.Users[0]?.Id),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.eds.User;
import com.pulumi.alicloud.eds.UserArgs;
import com.pulumi.alicloud.eds.EdsFunctions;
import com.pulumi.alicloud.eds.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) {
        var default_ = new User("default", UserArgs.builder()
            .endUserId("example_value")
            .email("your_email")
            .phone("your_phone")
            .password("your_password")
            .build());

        final var ids = EdsFunctions.getUsers();

        ctx.export("ecdUserId1", ids.applyValue(getUsersResult -> getUsersResult.users()[0].id()));
    }
}
Copy
resources:
  default:
    type: alicloud:eds:User
    properties:
      endUserId: example_value
      email: your_email
      phone: your_phone
      password: your_password
variables:
  ids:
    fn::invoke:
      function: alicloud:eds:getUsers
      arguments: {}
outputs:
  ecdUserId1: ${ids.users[0].id}
Copy

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>
Copy
def get_users(ids: Optional[Sequence[str]] = None,
              output_file: Optional[str] = None,
              status: Optional[str] = None,
              opts: Optional[InvokeOptions] = None) -> GetUsersResult
def get_users_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
              output_file: Optional[pulumi.Input[str]] = None,
              status: Optional[pulumi.Input[str]] = None,
              opts: Optional[InvokeOptions] = None) -> Output[GetUsersResult]
Copy
func GetUsers(ctx *Context, args *GetUsersArgs, opts ...InvokeOption) (*GetUsersResult, error)
func GetUsersOutput(ctx *Context, args *GetUsersOutputArgs, opts ...InvokeOption) GetUsersResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetUsersResult> getUsers(GetUsersArgs args, InvokeOptions options)
public static Output<GetUsersResult> getUsers(GetUsersArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: alicloud:eds/getUsers:getUsers
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Ids Changes to this property will trigger replacement. List<string>
A list of User IDs.
OutputFile string
File name where to save data source results (after running pulumi preview).
Status Changes to this property will trigger replacement. string
The status of the resource. Valid values: Unlocked, Locked.
Ids Changes to this property will trigger replacement. []string
A list of User IDs.
OutputFile string
File name where to save data source results (after running pulumi preview).
Status Changes to this property will trigger replacement. string
The status of the resource. Valid values: Unlocked, Locked.
ids Changes to this property will trigger replacement. List<String>
A list of User IDs.
outputFile String
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. String
The status of the resource. Valid values: Unlocked, Locked.
ids Changes to this property will trigger replacement. string[]
A list of User IDs.
outputFile string
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. string
The status of the resource. Valid values: Unlocked, Locked.
ids Changes to this property will trigger replacement. Sequence[str]
A list of User IDs.
output_file str
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. str
The status of the resource. Valid values: Unlocked, Locked.
ids Changes to this property will trigger replacement. List<String>
A list of User IDs.
outputFile String
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. String
The status of the resource. Valid values: Unlocked, Locked.

getUsers Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Ids List<string>
Users List<Pulumi.AliCloud.Eds.Outputs.GetUsersUser>
OutputFile string
Status string
Id string
The provider-assigned unique ID for this managed resource.
Ids []string
Users []GetUsersUser
OutputFile string
Status string
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
users List<GetUsersUser>
outputFile String
status String
id string
The provider-assigned unique ID for this managed resource.
ids string[]
users GetUsersUser[]
outputFile string
status string
id str
The provider-assigned unique ID for this managed resource.
ids Sequence[str]
users Sequence[GetUsersUser]
output_file str
status str
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
users List<Property Map>
outputFile String
status String

Supporting Types

GetUsersUser

Email This property is required. string
The email of the user email.
EndUserId This property is required. string
The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
Id This property is required. string
The ID of the user id.
Phone This property is required. string
The phone of the mobile phone number.
Status This property is required. string
The status of the resource.
Email This property is required. string
The email of the user email.
EndUserId This property is required. string
The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
Id This property is required. string
The ID of the user id.
Phone This property is required. string
The phone of the mobile phone number.
Status This property is required. string
The status of the resource.
email This property is required. String
The email of the user email.
endUserId This property is required. String
The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
id This property is required. String
The ID of the user id.
phone This property is required. String
The phone of the mobile phone number.
status This property is required. String
The status of the resource.
email This property is required. string
The email of the user email.
endUserId This property is required. string
The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
id This property is required. string
The ID of the user id.
phone This property is required. string
The phone of the mobile phone number.
status This property is required. string
The status of the resource.
email This property is required. str
The email of the user email.
end_user_id This property is required. str
The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
id This property is required. str
The ID of the user id.
phone This property is required. str
The phone of the mobile phone number.
status This property is required. str
The status of the resource.
email This property is required. String
The email of the user email.
endUserId This property is required. String
The Username. The custom setting is composed of lowercase letters, numbers and underscores, and the length is 3~24 characters.
id This property is required. String
The ID of the user id.
phone This property is required. String
The phone of the mobile phone number.
status This property is required. String
The status of the resource.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi