1. Packages
  2. Nutanix
  3. API Docs
  4. UsersV2
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

nutanix.UsersV2

Explore with Pulumi AI

nutanix logo
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

    Provides Nutanix resource to Create a User.

    Create UsersV2 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new UsersV2(name: string, args: UsersV2Args, opts?: CustomResourceOptions);
    @overload
    def UsersV2(resource_name: str,
                args: UsersV2Args,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def UsersV2(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                user_type: Optional[str] = None,
                username: Optional[str] = None,
                last_name: Optional[str] = None,
                first_name: Optional[str] = None,
                force_reset_password: Optional[bool] = None,
                idp_id: Optional[str] = None,
                additional_attributes: Optional[Sequence[UsersV2AdditionalAttributeArgs]] = None,
                locale: Optional[str] = None,
                middle_initial: Optional[str] = None,
                password: Optional[str] = None,
                region: Optional[str] = None,
                status: Optional[str] = None,
                email_id: Optional[str] = None,
                display_name: Optional[str] = None)
    func NewUsersV2(ctx *Context, name string, args UsersV2Args, opts ...ResourceOption) (*UsersV2, error)
    public UsersV2(string name, UsersV2Args args, CustomResourceOptions? opts = null)
    public UsersV2(String name, UsersV2Args args)
    public UsersV2(String name, UsersV2Args args, CustomResourceOptions options)
    
    type: nutanix:UsersV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args UsersV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args UsersV2Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args UsersV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UsersV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UsersV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var usersV2Resource = new Nutanix.UsersV2("usersV2Resource", new()
    {
        UserType = "string",
        Username = "string",
        LastName = "string",
        FirstName = "string",
        ForceResetPassword = false,
        IdpId = "string",
        AdditionalAttributes = new[]
        {
            new Nutanix.Inputs.UsersV2AdditionalAttributeArgs
            {
                Name = "string",
                Value = 0,
            },
        },
        Locale = "string",
        MiddleInitial = "string",
        Password = "string",
        Region = "string",
        Status = "string",
        EmailId = "string",
        DisplayName = "string",
    });
    
    example, err := nutanix.NewUsersV2(ctx, "usersV2Resource", &nutanix.UsersV2Args{
    	UserType:           pulumi.String("string"),
    	Username:           pulumi.String("string"),
    	LastName:           pulumi.String("string"),
    	FirstName:          pulumi.String("string"),
    	ForceResetPassword: pulumi.Bool(false),
    	IdpId:              pulumi.String("string"),
    	AdditionalAttributes: nutanix.UsersV2AdditionalAttributeArray{
    		&nutanix.UsersV2AdditionalAttributeArgs{
    			Name:  pulumi.String("string"),
    			Value: pulumi.Int(0),
    		},
    	},
    	Locale:        pulumi.String("string"),
    	MiddleInitial: pulumi.String("string"),
    	Password:      pulumi.String("string"),
    	Region:        pulumi.String("string"),
    	Status:        pulumi.String("string"),
    	EmailId:       pulumi.String("string"),
    	DisplayName:   pulumi.String("string"),
    })
    
    var usersV2Resource = new UsersV2("usersV2Resource", UsersV2Args.builder()
        .userType("string")
        .username("string")
        .lastName("string")
        .firstName("string")
        .forceResetPassword(false)
        .idpId("string")
        .additionalAttributes(UsersV2AdditionalAttributeArgs.builder()
            .name("string")
            .value(0)
            .build())
        .locale("string")
        .middleInitial("string")
        .password("string")
        .region("string")
        .status("string")
        .emailId("string")
        .displayName("string")
        .build());
    
    users_v2_resource = nutanix.UsersV2("usersV2Resource",
        user_type="string",
        username="string",
        last_name="string",
        first_name="string",
        force_reset_password=False,
        idp_id="string",
        additional_attributes=[{
            "name": "string",
            "value": 0,
        }],
        locale="string",
        middle_initial="string",
        password="string",
        region="string",
        status="string",
        email_id="string",
        display_name="string")
    
    const usersV2Resource = new nutanix.UsersV2("usersV2Resource", {
        userType: "string",
        username: "string",
        lastName: "string",
        firstName: "string",
        forceResetPassword: false,
        idpId: "string",
        additionalAttributes: [{
            name: "string",
            value: 0,
        }],
        locale: "string",
        middleInitial: "string",
        password: "string",
        region: "string",
        status: "string",
        emailId: "string",
        displayName: "string",
    });
    
    type: nutanix:UsersV2
    properties:
        additionalAttributes:
            - name: string
              value: 0
        displayName: string
        emailId: string
        firstName: string
        forceResetPassword: false
        idpId: string
        lastName: string
        locale: string
        middleInitial: string
        password: string
        region: string
        status: string
        userType: string
        username: string
    

    UsersV2 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The UsersV2 resource accepts the following input properties:

    UserType string
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    Username string
    • Identifier for the User in the form an email address.
    AdditionalAttributes List<PiersKarsenbarg.Nutanix.Inputs.UsersV2AdditionalAttribute>
    • Any additional attribute for the User.
    DisplayName string
    • Display name for the User.
    EmailId string
    • Email Id for the User.
    FirstName string
    • First name for the User.
    ForceResetPassword bool
    IdpId string
    • Identifier of the IDP for the User.
    LastName string
    • Last name for the User.
    Locale string
    • Default locale for the User.
    MiddleInitial string
    • Middle name for the User.
    Password string
    Region string
    • Default Region for the User.
    Status string
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    UserType string
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    Username string
    • Identifier for the User in the form an email address.
    AdditionalAttributes []UsersV2AdditionalAttributeArgs
    • Any additional attribute for the User.
    DisplayName string
    • Display name for the User.
    EmailId string
    • Email Id for the User.
    FirstName string
    • First name for the User.
    ForceResetPassword bool
    IdpId string
    • Identifier of the IDP for the User.
    LastName string
    • Last name for the User.
    Locale string
    • Default locale for the User.
    MiddleInitial string
    • Middle name for the User.
    Password string
    Region string
    • Default Region for the User.
    Status string
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    userType String
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username String
    • Identifier for the User in the form an email address.
    additionalAttributes List<UsersV2AdditionalAttribute>
    • Any additional attribute for the User.
    displayName String
    • Display name for the User.
    emailId String
    • Email Id for the User.
    firstName String
    • First name for the User.
    forceResetPassword Boolean
    idpId String
    • Identifier of the IDP for the User.
    lastName String
    • Last name for the User.
    locale String
    • Default locale for the User.
    middleInitial String
    • Middle name for the User.
    password String
    region String
    • Default Region for the User.
    status String
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    userType string
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username string
    • Identifier for the User in the form an email address.
    additionalAttributes UsersV2AdditionalAttribute[]
    • Any additional attribute for the User.
    displayName string
    • Display name for the User.
    emailId string
    • Email Id for the User.
    firstName string
    • First name for the User.
    forceResetPassword boolean
    idpId string
    • Identifier of the IDP for the User.
    lastName string
    • Last name for the User.
    locale string
    • Default locale for the User.
    middleInitial string
    • Middle name for the User.
    password string
    region string
    • Default Region for the User.
    status string
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    user_type str
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username str
    • Identifier for the User in the form an email address.
    additional_attributes Sequence[UsersV2AdditionalAttributeArgs]
    • Any additional attribute for the User.
    display_name str
    • Display name for the User.
    email_id str
    • Email Id for the User.
    first_name str
    • First name for the User.
    force_reset_password bool
    idp_id str
    • Identifier of the IDP for the User.
    last_name str
    • Last name for the User.
    locale str
    • Default locale for the User.
    middle_initial str
    • Middle name for the User.
    password str
    region str
    • Default Region for the User.
    status str
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    userType String
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username String
    • Identifier for the User in the form an email address.
    additionalAttributes List<Property Map>
    • Any additional attribute for the User.
    displayName String
    • Display name for the User.
    emailId String
    • Email Id for the User.
    firstName String
    • First name for the User.
    forceResetPassword Boolean
    idpId String
    • Identifier of the IDP for the User.
    lastName String
    • Last name for the User.
    locale String
    • Default locale for the User.
    middleInitial String
    • Middle name for the User.
    password String
    region String
    • Default Region for the User.
    status String
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the UsersV2 resource produces the following output properties:

    BucketsAccessKeys List<PiersKarsenbarg.Nutanix.Outputs.UsersV2BucketsAccessKey>
    • Bucket Access Keys for the User.
    CreatedBy string
    • User or Service who created the User.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastLoginTime string
    • Last successful logged in time for the User.
    LastUpdatedTime string
    • Last updated time of the User.
    Links List<PiersKarsenbarg.Nutanix.Outputs.UsersV2Link>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    BucketsAccessKeys []UsersV2BucketsAccessKey
    • Bucket Access Keys for the User.
    CreatedBy string
    • User or Service who created the User.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastLoginTime string
    • Last successful logged in time for the User.
    LastUpdatedTime string
    • Last updated time of the User.
    Links []UsersV2Link
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    bucketsAccessKeys List<UsersV2BucketsAccessKey>
    • Bucket Access Keys for the User.
    createdBy String
    • User or Service who created the User.
    createdTime String
    • Creation time for the Bucket Access Key.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    id String
    The provider-assigned unique ID for this managed resource.
    lastLoginTime String
    • Last successful logged in time for the User.
    lastUpdatedTime String
    • Last updated time of the User.
    links List<UsersV2Link>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    bucketsAccessKeys UsersV2BucketsAccessKey[]
    • Bucket Access Keys for the User.
    createdBy string
    • User or Service who created the User.
    createdTime string
    • Creation time for the Bucket Access Key.
    extId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    id string
    The provider-assigned unique ID for this managed resource.
    lastLoginTime string
    • Last successful logged in time for the User.
    lastUpdatedTime string
    • Last updated time of the User.
    links UsersV2Link[]
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    buckets_access_keys Sequence[UsersV2BucketsAccessKey]
    • Bucket Access Keys for the User.
    created_by str
    • User or Service who created the User.
    created_time str
    • Creation time for the Bucket Access Key.
    ext_id str
    • A globally unique identifier of an instance that is suitable for external consumption.
    id str
    The provider-assigned unique ID for this managed resource.
    last_login_time str
    • Last successful logged in time for the User.
    last_updated_time str
    • Last updated time of the User.
    links Sequence[UsersV2Link]
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    bucketsAccessKeys List<Property Map>
    • Bucket Access Keys for the User.
    createdBy String
    • User or Service who created the User.
    createdTime String
    • Creation time for the Bucket Access Key.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    id String
    The provider-assigned unique ID for this managed resource.
    lastLoginTime String
    • Last successful logged in time for the User.
    lastUpdatedTime String
    • Last updated time of the User.
    links List<Property Map>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.

    Look up Existing UsersV2 Resource

    Get an existing UsersV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: UsersV2State, opts?: CustomResourceOptions): UsersV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_attributes: Optional[Sequence[UsersV2AdditionalAttributeArgs]] = None,
            buckets_access_keys: Optional[Sequence[UsersV2BucketsAccessKeyArgs]] = None,
            created_by: Optional[str] = None,
            created_time: Optional[str] = None,
            display_name: Optional[str] = None,
            email_id: Optional[str] = None,
            ext_id: Optional[str] = None,
            first_name: Optional[str] = None,
            force_reset_password: Optional[bool] = None,
            idp_id: Optional[str] = None,
            last_login_time: Optional[str] = None,
            last_name: Optional[str] = None,
            last_updated_time: Optional[str] = None,
            links: Optional[Sequence[UsersV2LinkArgs]] = None,
            locale: Optional[str] = None,
            middle_initial: Optional[str] = None,
            password: Optional[str] = None,
            region: Optional[str] = None,
            status: Optional[str] = None,
            user_type: Optional[str] = None,
            username: Optional[str] = None) -> UsersV2
    func GetUsersV2(ctx *Context, name string, id IDInput, state *UsersV2State, opts ...ResourceOption) (*UsersV2, error)
    public static UsersV2 Get(string name, Input<string> id, UsersV2State? state, CustomResourceOptions? opts = null)
    public static UsersV2 get(String name, Output<String> id, UsersV2State state, CustomResourceOptions options)
    resources:  _:    type: nutanix:UsersV2    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AdditionalAttributes List<PiersKarsenbarg.Nutanix.Inputs.UsersV2AdditionalAttribute>
    • Any additional attribute for the User.
    BucketsAccessKeys List<PiersKarsenbarg.Nutanix.Inputs.UsersV2BucketsAccessKey>
    • Bucket Access Keys for the User.
    CreatedBy string
    • User or Service who created the User.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    DisplayName string
    • Display name for the User.
    EmailId string
    • Email Id for the User.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    FirstName string
    • First name for the User.
    ForceResetPassword bool
    IdpId string
    • Identifier of the IDP for the User.
    LastLoginTime string
    • Last successful logged in time for the User.
    LastName string
    • Last name for the User.
    LastUpdatedTime string
    • Last updated time of the User.
    Links List<PiersKarsenbarg.Nutanix.Inputs.UsersV2Link>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    Locale string
    • Default locale for the User.
    MiddleInitial string
    • Middle name for the User.
    Password string
    Region string
    • Default Region for the User.
    Status string
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    UserType string
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    Username string
    • Identifier for the User in the form an email address.
    AdditionalAttributes []UsersV2AdditionalAttributeArgs
    • Any additional attribute for the User.
    BucketsAccessKeys []UsersV2BucketsAccessKeyArgs
    • Bucket Access Keys for the User.
    CreatedBy string
    • User or Service who created the User.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    DisplayName string
    • Display name for the User.
    EmailId string
    • Email Id for the User.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    FirstName string
    • First name for the User.
    ForceResetPassword bool
    IdpId string
    • Identifier of the IDP for the User.
    LastLoginTime string
    • Last successful logged in time for the User.
    LastName string
    • Last name for the User.
    LastUpdatedTime string
    • Last updated time of the User.
    Links []UsersV2LinkArgs
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    Locale string
    • Default locale for the User.
    MiddleInitial string
    • Middle name for the User.
    Password string
    Region string
    • Default Region for the User.
    Status string
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    UserType string
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    Username string
    • Identifier for the User in the form an email address.
    additionalAttributes List<UsersV2AdditionalAttribute>
    • Any additional attribute for the User.
    bucketsAccessKeys List<UsersV2BucketsAccessKey>
    • Bucket Access Keys for the User.
    createdBy String
    • User or Service who created the User.
    createdTime String
    • Creation time for the Bucket Access Key.
    displayName String
    • Display name for the User.
    emailId String
    • Email Id for the User.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    firstName String
    • First name for the User.
    forceResetPassword Boolean
    idpId String
    • Identifier of the IDP for the User.
    lastLoginTime String
    • Last successful logged in time for the User.
    lastName String
    • Last name for the User.
    lastUpdatedTime String
    • Last updated time of the User.
    links List<UsersV2Link>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    locale String
    • Default locale for the User.
    middleInitial String
    • Middle name for the User.
    password String
    region String
    • Default Region for the User.
    status String
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    userType String
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username String
    • Identifier for the User in the form an email address.
    additionalAttributes UsersV2AdditionalAttribute[]
    • Any additional attribute for the User.
    bucketsAccessKeys UsersV2BucketsAccessKey[]
    • Bucket Access Keys for the User.
    createdBy string
    • User or Service who created the User.
    createdTime string
    • Creation time for the Bucket Access Key.
    displayName string
    • Display name for the User.
    emailId string
    • Email Id for the User.
    extId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    firstName string
    • First name for the User.
    forceResetPassword boolean
    idpId string
    • Identifier of the IDP for the User.
    lastLoginTime string
    • Last successful logged in time for the User.
    lastName string
    • Last name for the User.
    lastUpdatedTime string
    • Last updated time of the User.
    links UsersV2Link[]
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    locale string
    • Default locale for the User.
    middleInitial string
    • Middle name for the User.
    password string
    region string
    • Default Region for the User.
    status string
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    userType string
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username string
    • Identifier for the User in the form an email address.
    additional_attributes Sequence[UsersV2AdditionalAttributeArgs]
    • Any additional attribute for the User.
    buckets_access_keys Sequence[UsersV2BucketsAccessKeyArgs]
    • Bucket Access Keys for the User.
    created_by str
    • User or Service who created the User.
    created_time str
    • Creation time for the Bucket Access Key.
    display_name str
    • Display name for the User.
    email_id str
    • Email Id for the User.
    ext_id str
    • A globally unique identifier of an instance that is suitable for external consumption.
    first_name str
    • First name for the User.
    force_reset_password bool
    idp_id str
    • Identifier of the IDP for the User.
    last_login_time str
    • Last successful logged in time for the User.
    last_name str
    • Last name for the User.
    last_updated_time str
    • Last updated time of the User.
    links Sequence[UsersV2LinkArgs]
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    locale str
    • Default locale for the User.
    middle_initial str
    • Middle name for the User.
    password str
    region str
    • Default Region for the User.
    status str
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    user_type str
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username str
    • Identifier for the User in the form an email address.
    additionalAttributes List<Property Map>
    • Any additional attribute for the User.
    bucketsAccessKeys List<Property Map>
    • Bucket Access Keys for the User.
    createdBy String
    • User or Service who created the User.
    createdTime String
    • Creation time for the Bucket Access Key.
    displayName String
    • Display name for the User.
    emailId String
    • Email Id for the User.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    firstName String
    • First name for the User.
    forceResetPassword Boolean
    idpId String
    • Identifier of the IDP for the User.
    lastLoginTime String
    • Last successful logged in time for the User.
    lastName String
    • Last name for the User.
    lastUpdatedTime String
    • Last updated time of the User.
    links List<Property Map>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    locale String
    • Default locale for the User.
    middleInitial String
    • Middle name for the User.
    password String
    region String
    • Default Region for the User.
    status String
    • Status of the User. ACTIVE: Denotes that the local User is active. INACTIVE: Denotes that the local User is inactive and needs to be reactivated.
    userType String
    • Enum: $UNKNOWN $REDACTED LOCAL SAML LDAP EXTERNAL Type of the User.
    username String
    • Identifier for the User in the form an email address.

    Supporting Types

    UsersV2AdditionalAttribute, UsersV2AdditionalAttributeArgs

    Name string
    • The URL at which the entity described by the link can be accessed.
    Value int
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    Name string
    • The URL at which the entity described by the link can be accessed.
    Value int
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    name String
    • The URL at which the entity described by the link can be accessed.
    value Integer
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    name string
    • The URL at which the entity described by the link can be accessed.
    value number
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    name str
    • The URL at which the entity described by the link can be accessed.
    value int
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    name String
    • The URL at which the entity described by the link can be accessed.
    value Number
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.

    UsersV2BucketsAccessKey, UsersV2BucketsAccessKeyArgs

    AccessKeyName string
    • Name of the Bucket Access Key.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    Links List<PiersKarsenbarg.Nutanix.Inputs.UsersV2BucketsAccessKeyLink>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    SecretAccessKey string
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    UserId string
    • User Identifier who owns the Bucket Access Key.
    AccessKeyName string
    • Name of the Bucket Access Key.
    CreatedTime string
    • Creation time for the Bucket Access Key.
    ExtId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    Links []UsersV2BucketsAccessKeyLink
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    SecretAccessKey string
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    UserId string
    • User Identifier who owns the Bucket Access Key.
    accessKeyName String
    • Name of the Bucket Access Key.
    createdTime String
    • Creation time for the Bucket Access Key.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    links List<UsersV2BucketsAccessKeyLink>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    secretAccessKey String
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    userId String
    • User Identifier who owns the Bucket Access Key.
    accessKeyName string
    • Name of the Bucket Access Key.
    createdTime string
    • Creation time for the Bucket Access Key.
    extId string
    • A globally unique identifier of an instance that is suitable for external consumption.
    links UsersV2BucketsAccessKeyLink[]
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    secretAccessKey string
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    userId string
    • User Identifier who owns the Bucket Access Key.
    access_key_name str
    • Name of the Bucket Access Key.
    created_time str
    • Creation time for the Bucket Access Key.
    ext_id str
    • A globally unique identifier of an instance that is suitable for external consumption.
    links Sequence[UsersV2BucketsAccessKeyLink]
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    secret_access_key str
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    user_id str
    • User Identifier who owns the Bucket Access Key.
    accessKeyName String
    • Name of the Bucket Access Key.
    createdTime String
    • Creation time for the Bucket Access Key.
    extId String
    • A globally unique identifier of an instance that is suitable for external consumption.
    links List<Property Map>
    • A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
    secretAccessKey String
    • Secret Access Key, it will be returned only during Bucket Access Key creation.
    userId String
    • User Identifier who owns the Bucket Access Key.
    Href string
    • The URL at which the entity described by the link can be accessed.
    Rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    Href string
    • The URL at which the entity described by the link can be accessed.
    Rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href String
    • The URL at which the entity described by the link can be accessed.
    rel String
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href string
    • The URL at which the entity described by the link can be accessed.
    rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href str
    • The URL at which the entity described by the link can be accessed.
    rel str
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href String
    • The URL at which the entity described by the link can be accessed.
    rel String
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    Href string
    • The URL at which the entity described by the link can be accessed.
    Rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    Href string
    • The URL at which the entity described by the link can be accessed.
    Rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href String
    • The URL at which the entity described by the link can be accessed.
    rel String
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href string
    • The URL at which the entity described by the link can be accessed.
    rel string
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href str
    • The URL at which the entity described by the link can be accessed.
    rel str
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.
    href String
    • The URL at which the entity described by the link can be accessed.
    rel String
    • A name that identifies the relationship of the link to the object that is returned by the URL. The unique value of "self" identifies the URL for the object.

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg