1. Packages
  2. Vcd Provider
  3. API Docs
  4. OrgUser
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

vcd.OrgUser

Explore with Pulumi AI

vcd logo
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

    Create OrgUser Resource

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

    Constructor syntax

    new OrgUser(name: string, args: OrgUserArgs, opts?: CustomResourceOptions);
    @overload
    def OrgUser(resource_name: str,
                args: OrgUserArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def OrgUser(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                role: Optional[str] = None,
                is_locked: Optional[bool] = None,
                org_user_id: Optional[str] = None,
                enabled: Optional[bool] = None,
                full_name: Optional[str] = None,
                instant_messaging: Optional[str] = None,
                is_external: Optional[bool] = None,
                is_group_role: Optional[bool] = None,
                deployed_vm_quota: Optional[float] = None,
                email_address: Optional[str] = None,
                name: Optional[str] = None,
                org: Optional[str] = None,
                password: Optional[str] = None,
                password_file: Optional[str] = None,
                provider_type: Optional[str] = None,
                description: Optional[str] = None,
                stored_vm_quota: Optional[float] = None,
                take_ownership: Optional[bool] = None,
                telephone: Optional[str] = None)
    func NewOrgUser(ctx *Context, name string, args OrgUserArgs, opts ...ResourceOption) (*OrgUser, error)
    public OrgUser(string name, OrgUserArgs args, CustomResourceOptions? opts = null)
    public OrgUser(String name, OrgUserArgs args)
    public OrgUser(String name, OrgUserArgs args, CustomResourceOptions options)
    
    type: vcd:OrgUser
    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 OrgUserArgs
    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 OrgUserArgs
    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 OrgUserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OrgUserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OrgUserArgs
    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 orgUserResource = new Vcd.OrgUser("orgUserResource", new()
    {
        Role = "string",
        IsLocked = false,
        OrgUserId = "string",
        Enabled = false,
        FullName = "string",
        InstantMessaging = "string",
        IsExternal = false,
        IsGroupRole = false,
        DeployedVmQuota = 0,
        EmailAddress = "string",
        Name = "string",
        Org = "string",
        Password = "string",
        PasswordFile = "string",
        ProviderType = "string",
        Description = "string",
        StoredVmQuota = 0,
        TakeOwnership = false,
        Telephone = "string",
    });
    
    example, err := vcd.NewOrgUser(ctx, "orgUserResource", &vcd.OrgUserArgs{
    	Role:             pulumi.String("string"),
    	IsLocked:         pulumi.Bool(false),
    	OrgUserId:        pulumi.String("string"),
    	Enabled:          pulumi.Bool(false),
    	FullName:         pulumi.String("string"),
    	InstantMessaging: pulumi.String("string"),
    	IsExternal:       pulumi.Bool(false),
    	IsGroupRole:      pulumi.Bool(false),
    	DeployedVmQuota:  pulumi.Float64(0),
    	EmailAddress:     pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	Org:              pulumi.String("string"),
    	Password:         pulumi.String("string"),
    	PasswordFile:     pulumi.String("string"),
    	ProviderType:     pulumi.String("string"),
    	Description:      pulumi.String("string"),
    	StoredVmQuota:    pulumi.Float64(0),
    	TakeOwnership:    pulumi.Bool(false),
    	Telephone:        pulumi.String("string"),
    })
    
    var orgUserResource = new OrgUser("orgUserResource", OrgUserArgs.builder()
        .role("string")
        .isLocked(false)
        .orgUserId("string")
        .enabled(false)
        .fullName("string")
        .instantMessaging("string")
        .isExternal(false)
        .isGroupRole(false)
        .deployedVmQuota(0)
        .emailAddress("string")
        .name("string")
        .org("string")
        .password("string")
        .passwordFile("string")
        .providerType("string")
        .description("string")
        .storedVmQuota(0)
        .takeOwnership(false)
        .telephone("string")
        .build());
    
    org_user_resource = vcd.OrgUser("orgUserResource",
        role="string",
        is_locked=False,
        org_user_id="string",
        enabled=False,
        full_name="string",
        instant_messaging="string",
        is_external=False,
        is_group_role=False,
        deployed_vm_quota=0,
        email_address="string",
        name="string",
        org="string",
        password="string",
        password_file="string",
        provider_type="string",
        description="string",
        stored_vm_quota=0,
        take_ownership=False,
        telephone="string")
    
    const orgUserResource = new vcd.OrgUser("orgUserResource", {
        role: "string",
        isLocked: false,
        orgUserId: "string",
        enabled: false,
        fullName: "string",
        instantMessaging: "string",
        isExternal: false,
        isGroupRole: false,
        deployedVmQuota: 0,
        emailAddress: "string",
        name: "string",
        org: "string",
        password: "string",
        passwordFile: "string",
        providerType: "string",
        description: "string",
        storedVmQuota: 0,
        takeOwnership: false,
        telephone: "string",
    });
    
    type: vcd:OrgUser
    properties:
        deployedVmQuota: 0
        description: string
        emailAddress: string
        enabled: false
        fullName: string
        instantMessaging: string
        isExternal: false
        isGroupRole: false
        isLocked: false
        name: string
        org: string
        orgUserId: string
        password: string
        passwordFile: string
        providerType: string
        role: string
        storedVmQuota: 0
        takeOwnership: false
        telephone: string
    

    OrgUser 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 OrgUser resource accepts the following input properties:

    Role string
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    DeployedVmQuota double
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    Description string
    An optional description of the user.
    EmailAddress string
    The Org User email address. Needs to be a properly formatted email address.
    Enabled bool
    True if the user is enabled and can log in. The default is true.
    FullName string
    The full name of the user.
    InstantMessaging string
    The Org User instant messaging.
    IsExternal bool
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    IsGroupRole bool
    True if this user has a group role. The default is false.
    IsLocked bool
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    Name string
    A unique name for the user.
    Org string
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    OrgUserId string
    The ID of the Organization user
    Password string
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    PasswordFile string
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    ProviderType string
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    StoredVmQuota double
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    TakeOwnership bool
    Take ownership of user's objects on deletion.
    Telephone string
    The Org User telephone number.
    Role string
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    DeployedVmQuota float64
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    Description string
    An optional description of the user.
    EmailAddress string
    The Org User email address. Needs to be a properly formatted email address.
    Enabled bool
    True if the user is enabled and can log in. The default is true.
    FullName string
    The full name of the user.
    InstantMessaging string
    The Org User instant messaging.
    IsExternal bool
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    IsGroupRole bool
    True if this user has a group role. The default is false.
    IsLocked bool
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    Name string
    A unique name for the user.
    Org string
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    OrgUserId string
    The ID of the Organization user
    Password string
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    PasswordFile string
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    ProviderType string
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    StoredVmQuota float64
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    TakeOwnership bool
    Take ownership of user's objects on deletion.
    Telephone string
    The Org User telephone number.
    role String
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    deployedVmQuota Double
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    description String
    An optional description of the user.
    emailAddress String
    The Org User email address. Needs to be a properly formatted email address.
    enabled Boolean
    True if the user is enabled and can log in. The default is true.
    fullName String
    The full name of the user.
    instantMessaging String
    The Org User instant messaging.
    isExternal Boolean
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    isGroupRole Boolean
    True if this user has a group role. The default is false.
    isLocked Boolean
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    name String
    A unique name for the user.
    org String
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    orgUserId String
    The ID of the Organization user
    password String
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    passwordFile String
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    providerType String
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    storedVmQuota Double
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    takeOwnership Boolean
    Take ownership of user's objects on deletion.
    telephone String
    The Org User telephone number.
    role string
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    deployedVmQuota number
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    description string
    An optional description of the user.
    emailAddress string
    The Org User email address. Needs to be a properly formatted email address.
    enabled boolean
    True if the user is enabled and can log in. The default is true.
    fullName string
    The full name of the user.
    instantMessaging string
    The Org User instant messaging.
    isExternal boolean
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    isGroupRole boolean
    True if this user has a group role. The default is false.
    isLocked boolean
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    name string
    A unique name for the user.
    org string
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    orgUserId string
    The ID of the Organization user
    password string
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    passwordFile string
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    providerType string
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    storedVmQuota number
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    takeOwnership boolean
    Take ownership of user's objects on deletion.
    telephone string
    The Org User telephone number.
    role str
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    deployed_vm_quota float
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    description str
    An optional description of the user.
    email_address str
    The Org User email address. Needs to be a properly formatted email address.
    enabled bool
    True if the user is enabled and can log in. The default is true.
    full_name str
    The full name of the user.
    instant_messaging str
    The Org User instant messaging.
    is_external bool
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    is_group_role bool
    True if this user has a group role. The default is false.
    is_locked bool
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    name str
    A unique name for the user.
    org str
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    org_user_id str
    The ID of the Organization user
    password str
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    password_file str
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    provider_type str
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    stored_vm_quota float
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    take_ownership bool
    Take ownership of user's objects on deletion.
    telephone str
    The Org User telephone number.
    role String
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    deployedVmQuota Number
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    description String
    An optional description of the user.
    emailAddress String
    The Org User email address. Needs to be a properly formatted email address.
    enabled Boolean
    True if the user is enabled and can log in. The default is true.
    fullName String
    The full name of the user.
    instantMessaging String
    The Org User instant messaging.
    isExternal Boolean
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    isGroupRole Boolean
    True if this user has a group role. The default is false.
    isLocked Boolean
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    name String
    A unique name for the user.
    org String
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    orgUserId String
    The ID of the Organization user
    password String
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    passwordFile String
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    providerType String
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    storedVmQuota Number
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    takeOwnership Boolean
    Take ownership of user's objects on deletion.
    telephone String
    The Org User telephone number.

    Outputs

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

    GroupNames List<string>
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    Id string
    The provider-assigned unique ID for this managed resource.
    GroupNames []string
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    Id string
    The provider-assigned unique ID for this managed resource.
    groupNames List<String>
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    id String
    The provider-assigned unique ID for this managed resource.
    groupNames string[]
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    id string
    The provider-assigned unique ID for this managed resource.
    group_names Sequence[str]
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    id str
    The provider-assigned unique ID for this managed resource.
    groupNames List<String>
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing OrgUser Resource

    Get an existing OrgUser 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?: OrgUserState, opts?: CustomResourceOptions): OrgUser
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            deployed_vm_quota: Optional[float] = None,
            description: Optional[str] = None,
            email_address: Optional[str] = None,
            enabled: Optional[bool] = None,
            full_name: Optional[str] = None,
            group_names: Optional[Sequence[str]] = None,
            instant_messaging: Optional[str] = None,
            is_external: Optional[bool] = None,
            is_group_role: Optional[bool] = None,
            is_locked: Optional[bool] = None,
            name: Optional[str] = None,
            org: Optional[str] = None,
            org_user_id: Optional[str] = None,
            password: Optional[str] = None,
            password_file: Optional[str] = None,
            provider_type: Optional[str] = None,
            role: Optional[str] = None,
            stored_vm_quota: Optional[float] = None,
            take_ownership: Optional[bool] = None,
            telephone: Optional[str] = None) -> OrgUser
    func GetOrgUser(ctx *Context, name string, id IDInput, state *OrgUserState, opts ...ResourceOption) (*OrgUser, error)
    public static OrgUser Get(string name, Input<string> id, OrgUserState? state, CustomResourceOptions? opts = null)
    public static OrgUser get(String name, Output<String> id, OrgUserState state, CustomResourceOptions options)
    resources:  _:    type: vcd:OrgUser    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:
    DeployedVmQuota double
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    Description string
    An optional description of the user.
    EmailAddress string
    The Org User email address. Needs to be a properly formatted email address.
    Enabled bool
    True if the user is enabled and can log in. The default is true.
    FullName string
    The full name of the user.
    GroupNames List<string>
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    InstantMessaging string
    The Org User instant messaging.
    IsExternal bool
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    IsGroupRole bool
    True if this user has a group role. The default is false.
    IsLocked bool
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    Name string
    A unique name for the user.
    Org string
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    OrgUserId string
    The ID of the Organization user
    Password string
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    PasswordFile string
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    ProviderType string
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    Role string
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    StoredVmQuota double
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    TakeOwnership bool
    Take ownership of user's objects on deletion.
    Telephone string
    The Org User telephone number.
    DeployedVmQuota float64
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    Description string
    An optional description of the user.
    EmailAddress string
    The Org User email address. Needs to be a properly formatted email address.
    Enabled bool
    True if the user is enabled and can log in. The default is true.
    FullName string
    The full name of the user.
    GroupNames []string
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    InstantMessaging string
    The Org User instant messaging.
    IsExternal bool
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    IsGroupRole bool
    True if this user has a group role. The default is false.
    IsLocked bool
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    Name string
    A unique name for the user.
    Org string
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    OrgUserId string
    The ID of the Organization user
    Password string
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    PasswordFile string
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    ProviderType string
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    Role string
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    StoredVmQuota float64
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    TakeOwnership bool
    Take ownership of user's objects on deletion.
    Telephone string
    The Org User telephone number.
    deployedVmQuota Double
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    description String
    An optional description of the user.
    emailAddress String
    The Org User email address. Needs to be a properly formatted email address.
    enabled Boolean
    True if the user is enabled and can log in. The default is true.
    fullName String
    The full name of the user.
    groupNames List<String>
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    instantMessaging String
    The Org User instant messaging.
    isExternal Boolean
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    isGroupRole Boolean
    True if this user has a group role. The default is false.
    isLocked Boolean
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    name String
    A unique name for the user.
    org String
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    orgUserId String
    The ID of the Organization user
    password String
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    passwordFile String
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    providerType String
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    role String
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    storedVmQuota Double
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    takeOwnership Boolean
    Take ownership of user's objects on deletion.
    telephone String
    The Org User telephone number.
    deployedVmQuota number
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    description string
    An optional description of the user.
    emailAddress string
    The Org User email address. Needs to be a properly formatted email address.
    enabled boolean
    True if the user is enabled and can log in. The default is true.
    fullName string
    The full name of the user.
    groupNames string[]
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    instantMessaging string
    The Org User instant messaging.
    isExternal boolean
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    isGroupRole boolean
    True if this user has a group role. The default is false.
    isLocked boolean
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    name string
    A unique name for the user.
    org string
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    orgUserId string
    The ID of the Organization user
    password string
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    passwordFile string
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    providerType string
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    role string
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    storedVmQuota number
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    takeOwnership boolean
    Take ownership of user's objects on deletion.
    telephone string
    The Org User telephone number.
    deployed_vm_quota float
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    description str
    An optional description of the user.
    email_address str
    The Org User email address. Needs to be a properly formatted email address.
    enabled bool
    True if the user is enabled and can log in. The default is true.
    full_name str
    The full name of the user.
    group_names Sequence[str]
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    instant_messaging str
    The Org User instant messaging.
    is_external bool
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    is_group_role bool
    True if this user has a group role. The default is false.
    is_locked bool
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    name str
    A unique name for the user.
    org str
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    org_user_id str
    The ID of the Organization user
    password str
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    password_file str
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    provider_type str
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    role str
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    stored_vm_quota float
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    take_ownership bool
    Take ownership of user's objects on deletion.
    telephone str
    The Org User telephone number.
    deployedVmQuota Number
    Quota of vApps that this user can deploy. A value of 0 specifies an unlimited quota. The default is 0.
    description String
    An optional description of the user.
    emailAddress String
    The Org User email address. Needs to be a properly formatted email address.
    enabled Boolean
    True if the user is enabled and can log in. The default is true.
    fullName String
    The full name of the user.
    groupNames List<String>
    The set of group names to which this user belongs. It's only populated if the users are created after the group (with this user having a depends_on of the given group).
    instantMessaging String
    The Org User instant messaging.
    isExternal Boolean
    If the user account is going to be imported from an external resource, like an LDAP. In this case, password nor password_file are not required. Defaults to false.
    isGroupRole Boolean
    True if this user has a group role. The default is false.
    isLocked Boolean
    If the user account has been locked due to too many invalid login attempts, the value will change to true (only the system can lock the user). To unlock the user re-set this flag to false.
    name String
    A unique name for the user.
    org String
    The name of organization to which the user belongs. Optional if defined at provider level. If we want to create a user at provider level, use "System" as org name.
    orgUserId String
    The ID of the Organization user
    password String
    The user's password. This value is never returned on read. Either "password" or "password_file" must be included on creation unless is_external is true.
    passwordFile String
    Name of a file containing the user's password. Either "password_file" or "password" must be included on creation unless is_external is true.
    providerType String
    Identity provider type for this user. One of: INTEGRATED, SAML, OAUTH. The default is INTEGRATED.
    role String
    The role of the user. Role names can be retrieved from the organization. Both built-in roles and custom built can be used. The roles normally available are:

    • Organization Administrator
    • Catalog Author
    • vApp Author
    • vApp User
    • Console Access Only
    • Defer to Identity Provider
    storedVmQuota Number
    Quota of vApps that this user can store. A value of 0 specifies an unlimited quota. The default is 0.
    takeOwnership Boolean
    Take ownership of user's objects on deletion.
    telephone String
    The Org User telephone number.

    Package Details

    Repository
    vcd vmware/terraform-provider-vcd
    License
    Notes
    This Pulumi package is based on the vcd Terraform Provider.
    vcd logo
    vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware