1. Packages
  2. Avi Provider
  3. API Docs
  4. Useraccountprofile
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

avi.Useraccountprofile

Explore with Pulumi AI

avi logo
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

    <!–

    Copyright 2021 VMware, Inc.
    SPDX-License-Identifier: Mozilla Public License 2.0
    

    –>

    layout: “avi”

    page_title: “Avi: avi.Useraccountprofile” sidebar_current: “docs-avi-resource-useraccountprofile” description: |- Creates and manages Avi UserAccountProfile.

    avi.Useraccountprofile

    The UserAccountProfile resource allows the creation and management of Avi UserAccountProfile

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    resources:
      foo:
        type: avi:Useraccountprofile
        properties:
          tenantRef: /api/tenant/?name=admin
    

    Create Useraccountprofile Resource

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

    Constructor syntax

    new Useraccountprofile(name: string, args?: UseraccountprofileArgs, opts?: CustomResourceOptions);
    @overload
    def Useraccountprofile(resource_name: str,
                           args: Optional[UseraccountprofileArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def Useraccountprofile(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           account_lock_timeout: Optional[str] = None,
                           configpb_attributes: Optional[Sequence[UseraccountprofileConfigpbAttributeArgs]] = None,
                           credentials_timeout_threshold: Optional[str] = None,
                           login_failure_count_expiry_window: Optional[str] = None,
                           max_concurrent_sessions: Optional[str] = None,
                           max_login_failure_count: Optional[str] = None,
                           max_password_history_count: Optional[str] = None,
                           name: Optional[str] = None,
                           useraccountprofile_id: Optional[str] = None,
                           uuid: Optional[str] = None)
    func NewUseraccountprofile(ctx *Context, name string, args *UseraccountprofileArgs, opts ...ResourceOption) (*Useraccountprofile, error)
    public Useraccountprofile(string name, UseraccountprofileArgs? args = null, CustomResourceOptions? opts = null)
    public Useraccountprofile(String name, UseraccountprofileArgs args)
    public Useraccountprofile(String name, UseraccountprofileArgs args, CustomResourceOptions options)
    
    type: avi:Useraccountprofile
    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 UseraccountprofileArgs
    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 UseraccountprofileArgs
    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 UseraccountprofileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UseraccountprofileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UseraccountprofileArgs
    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 useraccountprofileResource = new Avi.Useraccountprofile("useraccountprofileResource", new()
    {
        AccountLockTimeout = "string",
        ConfigpbAttributes = new[]
        {
            new Avi.Inputs.UseraccountprofileConfigpbAttributeArgs
            {
                Version = "string",
            },
        },
        CredentialsTimeoutThreshold = "string",
        LoginFailureCountExpiryWindow = "string",
        MaxConcurrentSessions = "string",
        MaxLoginFailureCount = "string",
        MaxPasswordHistoryCount = "string",
        Name = "string",
        UseraccountprofileId = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewUseraccountprofile(ctx, "useraccountprofileResource", &avi.UseraccountprofileArgs{
    	AccountLockTimeout: pulumi.String("string"),
    	ConfigpbAttributes: avi.UseraccountprofileConfigpbAttributeArray{
    		&avi.UseraccountprofileConfigpbAttributeArgs{
    			Version: pulumi.String("string"),
    		},
    	},
    	CredentialsTimeoutThreshold:   pulumi.String("string"),
    	LoginFailureCountExpiryWindow: pulumi.String("string"),
    	MaxConcurrentSessions:         pulumi.String("string"),
    	MaxLoginFailureCount:          pulumi.String("string"),
    	MaxPasswordHistoryCount:       pulumi.String("string"),
    	Name:                          pulumi.String("string"),
    	UseraccountprofileId:          pulumi.String("string"),
    	Uuid:                          pulumi.String("string"),
    })
    
    var useraccountprofileResource = new Useraccountprofile("useraccountprofileResource", UseraccountprofileArgs.builder()
        .accountLockTimeout("string")
        .configpbAttributes(UseraccountprofileConfigpbAttributeArgs.builder()
            .version("string")
            .build())
        .credentialsTimeoutThreshold("string")
        .loginFailureCountExpiryWindow("string")
        .maxConcurrentSessions("string")
        .maxLoginFailureCount("string")
        .maxPasswordHistoryCount("string")
        .name("string")
        .useraccountprofileId("string")
        .uuid("string")
        .build());
    
    useraccountprofile_resource = avi.Useraccountprofile("useraccountprofileResource",
        account_lock_timeout="string",
        configpb_attributes=[{
            "version": "string",
        }],
        credentials_timeout_threshold="string",
        login_failure_count_expiry_window="string",
        max_concurrent_sessions="string",
        max_login_failure_count="string",
        max_password_history_count="string",
        name="string",
        useraccountprofile_id="string",
        uuid="string")
    
    const useraccountprofileResource = new avi.Useraccountprofile("useraccountprofileResource", {
        accountLockTimeout: "string",
        configpbAttributes: [{
            version: "string",
        }],
        credentialsTimeoutThreshold: "string",
        loginFailureCountExpiryWindow: "string",
        maxConcurrentSessions: "string",
        maxLoginFailureCount: "string",
        maxPasswordHistoryCount: "string",
        name: "string",
        useraccountprofileId: "string",
        uuid: "string",
    });
    
    type: avi:Useraccountprofile
    properties:
        accountLockTimeout: string
        configpbAttributes:
            - version: string
        credentialsTimeoutThreshold: string
        loginFailureCountExpiryWindow: string
        maxConcurrentSessions: string
        maxLoginFailureCount: string
        maxPasswordHistoryCount: string
        name: string
        useraccountprofileId: string
        uuid: string
    

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

    AccountLockTimeout string
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<UseraccountprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CredentialsTimeoutThreshold string
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    LoginFailureCountExpiryWindow string
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    MaxConcurrentSessions string
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    MaxLoginFailureCount string
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    MaxPasswordHistoryCount string
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    UseraccountprofileId string
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    AccountLockTimeout string
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []UseraccountprofileConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CredentialsTimeoutThreshold string
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    LoginFailureCountExpiryWindow string
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    MaxConcurrentSessions string
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    MaxLoginFailureCount string
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    MaxPasswordHistoryCount string
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    UseraccountprofileId string
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    accountLockTimeout String
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<UseraccountprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    credentialsTimeoutThreshold String
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    loginFailureCountExpiryWindow String
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    maxConcurrentSessions String
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxLoginFailureCount String
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxPasswordHistoryCount String
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    useraccountprofileId String
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    accountLockTimeout string
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes UseraccountprofileConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    credentialsTimeoutThreshold string
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    loginFailureCountExpiryWindow string
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    maxConcurrentSessions string
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxLoginFailureCount string
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxPasswordHistoryCount string
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    useraccountprofileId string
    uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    account_lock_timeout str
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[UseraccountprofileConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    credentials_timeout_threshold str
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    login_failure_count_expiry_window str
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    max_concurrent_sessions str
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    max_login_failure_count str
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    max_password_history_count str
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    useraccountprofile_id str
    uuid str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    accountLockTimeout String
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    credentialsTimeoutThreshold String
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    loginFailureCountExpiryWindow String
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    maxConcurrentSessions String
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxLoginFailureCount String
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxPasswordHistoryCount String
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    useraccountprofileId String
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Useraccountprofile Resource

    Get an existing Useraccountprofile 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?: UseraccountprofileState, opts?: CustomResourceOptions): Useraccountprofile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_lock_timeout: Optional[str] = None,
            configpb_attributes: Optional[Sequence[UseraccountprofileConfigpbAttributeArgs]] = None,
            credentials_timeout_threshold: Optional[str] = None,
            login_failure_count_expiry_window: Optional[str] = None,
            max_concurrent_sessions: Optional[str] = None,
            max_login_failure_count: Optional[str] = None,
            max_password_history_count: Optional[str] = None,
            name: Optional[str] = None,
            useraccountprofile_id: Optional[str] = None,
            uuid: Optional[str] = None) -> Useraccountprofile
    func GetUseraccountprofile(ctx *Context, name string, id IDInput, state *UseraccountprofileState, opts ...ResourceOption) (*Useraccountprofile, error)
    public static Useraccountprofile Get(string name, Input<string> id, UseraccountprofileState? state, CustomResourceOptions? opts = null)
    public static Useraccountprofile get(String name, Output<String> id, UseraccountprofileState state, CustomResourceOptions options)
    resources:  _:    type: avi:Useraccountprofile    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:
    AccountLockTimeout string
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<UseraccountprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CredentialsTimeoutThreshold string
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    LoginFailureCountExpiryWindow string
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    MaxConcurrentSessions string
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    MaxLoginFailureCount string
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    MaxPasswordHistoryCount string
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    UseraccountprofileId string
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    AccountLockTimeout string
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []UseraccountprofileConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CredentialsTimeoutThreshold string
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    LoginFailureCountExpiryWindow string
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    MaxConcurrentSessions string
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    MaxLoginFailureCount string
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    MaxPasswordHistoryCount string
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    UseraccountprofileId string
    Uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    accountLockTimeout String
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<UseraccountprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    credentialsTimeoutThreshold String
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    loginFailureCountExpiryWindow String
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    maxConcurrentSessions String
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxLoginFailureCount String
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxPasswordHistoryCount String
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    useraccountprofileId String
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    accountLockTimeout string
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes UseraccountprofileConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    credentialsTimeoutThreshold string
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    loginFailureCountExpiryWindow string
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    maxConcurrentSessions string
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxLoginFailureCount string
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxPasswordHistoryCount string
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    useraccountprofileId string
    uuid string
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    account_lock_timeout str
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[UseraccountprofileConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    credentials_timeout_threshold str
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    login_failure_count_expiry_window str
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    max_concurrent_sessions str
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    max_login_failure_count str
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    max_password_history_count str
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    useraccountprofile_id str
    uuid str
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    accountLockTimeout String
    Lock timeout period (in minutes). Default is 30 minutes. Unit is min. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    credentialsTimeoutThreshold String
    The time period after which credentials expire. Default is 180 days. Unit is days. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    loginFailureCountExpiryWindow String
    The configurable time window beyond which we need to pop all the login failure timestamps from the login_failure_timestamps. Special values are 0 - do not reset login_failure_counts on the basis of time. Field introduced in 22.1.1. Unit is min. Allowed with any value in enterprise, enterprise with cloud services edition.
    maxConcurrentSessions String
    Maximum number of concurrent sessions allowed. There are unlimited sessions by default. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxLoginFailureCount String
    Number of login attempts before lockout. Default is 3 attempts. Allowed values are 3-20. Special values are 0- unlimited login attempts allowed. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    maxPasswordHistoryCount String
    Maximum number of passwords to be maintained in the password history. Default is 4 passwords. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    useraccountprofileId String
    uuid String
    Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Supporting Types

    UseraccountprofileConfigpbAttribute, UseraccountprofileConfigpbAttributeArgs

    Version string
    Version string
    version String
    version string
    version String

    Package Details

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