1. Packages
  2. Volcengine
  3. API Docs
  4. iam
  5. Users
Volcengine v0.0.26 published on Friday, Sep 13, 2024 by Volcengine

volcengine.iam.Users

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.26 published on Friday, Sep 13, 2024 by Volcengine

    Use this data source to query detailed information of iam users

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var fooUser = new Volcengine.Iam.User("fooUser", new()
        {
            UserName = "acc-test-user",
            Description = "acc test",
            DisplayName = "name",
        });
    
        var fooUsers = Volcengine.Iam.Users.Invoke(new()
        {
            UserNames = new[]
            {
                fooUser.UserName,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/iam"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		fooUser, err := iam.NewUser(ctx, "fooUser", &iam.UserArgs{
    			UserName:    pulumi.String("acc-test-user"),
    			Description: pulumi.String("acc test"),
    			DisplayName: pulumi.String("name"),
    		})
    		if err != nil {
    			return err
    		}
    		_ = iam.UsersOutput(ctx, iam.UsersOutputArgs{
    			UserNames: pulumi.StringArray{
    				fooUser.UserName,
    			},
    		}, nil)
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.iam.User;
    import com.pulumi.volcengine.iam.UserArgs;
    import com.pulumi.volcengine.iam.IamFunctions;
    import com.pulumi.volcengine.iam.inputs.UsersArgs;
    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 fooUser = new User("fooUser", UserArgs.builder()        
                .userName("acc-test-user")
                .description("acc test")
                .displayName("name")
                .build());
    
            final var fooUsers = IamFunctions.Users(UsersArgs.builder()
                .userNames(fooUser.userName())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo_user = volcengine.iam.User("fooUser",
        user_name="acc-test-user",
        description="acc test",
        display_name="name")
    foo_users = volcengine.iam.users_output(user_names=[foo_user.user_name])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    import * as volcengine from "@volcengine/pulumi";
    
    const fooUser = new volcengine.iam.User("fooUser", {
        userName: "acc-test-user",
        description: "acc test",
        displayName: "name",
    });
    const fooUsers = volcengine.iam.UsersOutput({
        userNames: [fooUser.userName],
    });
    
    resources:
      fooUser:
        type: volcengine:iam:User
        properties:
          userName: acc-test-user
          description: acc test
          displayName: name
    variables:
      fooUsers:
        fn::invoke:
          Function: volcengine:iam:Users
          Arguments:
            userNames:
              - ${fooUser.userName}
    

    Using Users

    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 users(args: UsersArgs, opts?: InvokeOptions): Promise<UsersResult>
    function usersOutput(args: UsersOutputArgs, opts?: InvokeOptions): Output<UsersResult>
    def users(name_regex: Optional[str] = None,
              output_file: Optional[str] = None,
              user_names: Optional[Sequence[str]] = None,
              opts: Optional[InvokeOptions] = None) -> UsersResult
    def users_output(name_regex: Optional[pulumi.Input[str]] = None,
              output_file: Optional[pulumi.Input[str]] = None,
              user_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
              opts: Optional[InvokeOptions] = None) -> Output[UsersResult]
    func Users(ctx *Context, args *UsersArgs, opts ...InvokeOption) (*UsersResult, error)
    func UsersOutput(ctx *Context, args *UsersOutputArgs, opts ...InvokeOption) UsersResultOutput
    public static class Users 
    {
        public static Task<UsersResult> InvokeAsync(UsersArgs args, InvokeOptions? opts = null)
        public static Output<UsersResult> Invoke(UsersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<UsersResult> users(UsersArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: volcengine:iam:Users
      arguments:
        # arguments dictionary

    The following arguments are supported:

    NameRegex string
    A Name Regex of IAM.
    OutputFile string
    File name where to save data source results.
    UserNames List<string>
    A list of user names.
    NameRegex string
    A Name Regex of IAM.
    OutputFile string
    File name where to save data source results.
    UserNames []string
    A list of user names.
    nameRegex String
    A Name Regex of IAM.
    outputFile String
    File name where to save data source results.
    userNames List<String>
    A list of user names.
    nameRegex string
    A Name Regex of IAM.
    outputFile string
    File name where to save data source results.
    userNames string[]
    A list of user names.
    name_regex str
    A Name Regex of IAM.
    output_file str
    File name where to save data source results.
    user_names Sequence[str]
    A list of user names.
    nameRegex String
    A Name Regex of IAM.
    outputFile String
    File name where to save data source results.
    userNames List<String>
    A list of user names.

    Users Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of user query.
    Users List<UsersUser>
    The collection of user.
    NameRegex string
    OutputFile string
    UserNames List<string>
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of user query.
    Users []UsersUser
    The collection of user.
    NameRegex string
    OutputFile string
    UserNames []string
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Integer
    The total count of user query.
    users List<UsersUser>
    The collection of user.
    nameRegex String
    outputFile String
    userNames List<String>
    id string
    The provider-assigned unique ID for this managed resource.
    totalCount number
    The total count of user query.
    users UsersUser[]
    The collection of user.
    nameRegex string
    outputFile string
    userNames string[]
    id str
    The provider-assigned unique ID for this managed resource.
    total_count int
    The total count of user query.
    users Sequence[UsersUser]
    The collection of user.
    name_regex str
    output_file str
    user_names Sequence[str]
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Number
    The total count of user query.
    users List<Property Map>
    The collection of user.
    nameRegex String
    outputFile String
    userNames List<String>

    Supporting Types

    UsersUser

    AccountId string
    Main account ID to which the sub-user belongs.
    CreateDate string
    The create date of the user.
    Description string
    The description of the user.
    DisplayName string
    The display name of the user.
    Email string
    The email of the user.
    EmailIsVerify bool
    Whether the email has been verified.
    MobilePhone string
    The mobile phone of the user.
    MobilePhoneIsVerify bool
    Whether the phone number has been verified.
    Trn string
    The trn of the user.
    UpdateDate string
    The update date of the user.
    UserId string
    The id of the user.
    UserName string
    The name of the user.
    AccountId string
    Main account ID to which the sub-user belongs.
    CreateDate string
    The create date of the user.
    Description string
    The description of the user.
    DisplayName string
    The display name of the user.
    Email string
    The email of the user.
    EmailIsVerify bool
    Whether the email has been verified.
    MobilePhone string
    The mobile phone of the user.
    MobilePhoneIsVerify bool
    Whether the phone number has been verified.
    Trn string
    The trn of the user.
    UpdateDate string
    The update date of the user.
    UserId string
    The id of the user.
    UserName string
    The name of the user.
    accountId String
    Main account ID to which the sub-user belongs.
    createDate String
    The create date of the user.
    description String
    The description of the user.
    displayName String
    The display name of the user.
    email String
    The email of the user.
    emailIsVerify Boolean
    Whether the email has been verified.
    mobilePhone String
    The mobile phone of the user.
    mobilePhoneIsVerify Boolean
    Whether the phone number has been verified.
    trn String
    The trn of the user.
    updateDate String
    The update date of the user.
    userId String
    The id of the user.
    userName String
    The name of the user.
    accountId string
    Main account ID to which the sub-user belongs.
    createDate string
    The create date of the user.
    description string
    The description of the user.
    displayName string
    The display name of the user.
    email string
    The email of the user.
    emailIsVerify boolean
    Whether the email has been verified.
    mobilePhone string
    The mobile phone of the user.
    mobilePhoneIsVerify boolean
    Whether the phone number has been verified.
    trn string
    The trn of the user.
    updateDate string
    The update date of the user.
    userId string
    The id of the user.
    userName string
    The name of the user.
    account_id str
    Main account ID to which the sub-user belongs.
    create_date str
    The create date of the user.
    description str
    The description of the user.
    display_name str
    The display name of the user.
    email str
    The email of the user.
    email_is_verify bool
    Whether the email has been verified.
    mobile_phone str
    The mobile phone of the user.
    mobile_phone_is_verify bool
    Whether the phone number has been verified.
    trn str
    The trn of the user.
    update_date str
    The update date of the user.
    user_id str
    The id of the user.
    user_name str
    The name of the user.
    accountId String
    Main account ID to which the sub-user belongs.
    createDate String
    The create date of the user.
    description String
    The description of the user.
    displayName String
    The display name of the user.
    email String
    The email of the user.
    emailIsVerify Boolean
    Whether the email has been verified.
    mobilePhone String
    The mobile phone of the user.
    mobilePhoneIsVerify Boolean
    Whether the phone number has been verified.
    trn String
    The trn of the user.
    updateDate String
    The update date of the user.
    userId String
    The id of the user.
    userName String
    The name of the user.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.26 published on Friday, Sep 13, 2024 by Volcengine