1. Packages
  2. Akamai
  3. API Docs
  4. IamUser
Akamai v7.1.0 published on Wednesday, Apr 24, 2024 by Pulumi

akamai.IamUser

Explore with Pulumi AI

akamai logo
Akamai v7.1.0 published on Wednesday, Apr 24, 2024 by Pulumi

    Create IamUser Resource

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

    Constructor syntax

    new IamUser(name: string, args: IamUserArgs, opts?: CustomResourceOptions);
    @overload
    def IamUser(resource_name: str,
                args: IamUserArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def IamUser(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                enable_tfa: Optional[bool] = None,
                auth_grants_json: Optional[str] = None,
                last_name: Optional[str] = None,
                first_name: Optional[str] = None,
                country: Optional[str] = None,
                email: Optional[str] = None,
                job_title: Optional[str] = None,
                contact_type: Optional[str] = None,
                address: Optional[str] = None,
                city: Optional[str] = None,
                lock: Optional[bool] = None,
                mobile_phone: Optional[str] = None,
                phone: Optional[str] = None,
                preferred_language: Optional[str] = None,
                secondary_email: Optional[str] = None,
                session_timeout: Optional[int] = None,
                state: Optional[str] = None,
                time_zone: Optional[str] = None,
                zip_code: Optional[str] = None)
    func NewIamUser(ctx *Context, name string, args IamUserArgs, opts ...ResourceOption) (*IamUser, error)
    public IamUser(string name, IamUserArgs args, CustomResourceOptions? opts = null)
    public IamUser(String name, IamUserArgs args)
    public IamUser(String name, IamUserArgs args, CustomResourceOptions options)
    
    type: akamai:IamUser
    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 IamUserArgs
    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 IamUserArgs
    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 IamUserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IamUserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IamUserArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var iamUserResource = new Akamai.IamUser("iamUserResource", new()
    {
        EnableTfa = false,
        AuthGrantsJson = "string",
        LastName = "string",
        FirstName = "string",
        Country = "string",
        Email = "string",
        JobTitle = "string",
        ContactType = "string",
        Address = "string",
        City = "string",
        Lock = false,
        MobilePhone = "string",
        Phone = "string",
        PreferredLanguage = "string",
        SecondaryEmail = "string",
        SessionTimeout = 0,
        State = "string",
        TimeZone = "string",
        ZipCode = "string",
    });
    
    example, err := akamai.NewIamUser(ctx, "iamUserResource", &akamai.IamUserArgs{
    	EnableTfa:         pulumi.Bool(false),
    	AuthGrantsJson:    pulumi.String("string"),
    	LastName:          pulumi.String("string"),
    	FirstName:         pulumi.String("string"),
    	Country:           pulumi.String("string"),
    	Email:             pulumi.String("string"),
    	JobTitle:          pulumi.String("string"),
    	ContactType:       pulumi.String("string"),
    	Address:           pulumi.String("string"),
    	City:              pulumi.String("string"),
    	Lock:              pulumi.Bool(false),
    	MobilePhone:       pulumi.String("string"),
    	Phone:             pulumi.String("string"),
    	PreferredLanguage: pulumi.String("string"),
    	SecondaryEmail:    pulumi.String("string"),
    	SessionTimeout:    pulumi.Int(0),
    	State:             pulumi.String("string"),
    	TimeZone:          pulumi.String("string"),
    	ZipCode:           pulumi.String("string"),
    })
    
    var iamUserResource = new IamUser("iamUserResource", IamUserArgs.builder()        
        .enableTfa(false)
        .authGrantsJson("string")
        .lastName("string")
        .firstName("string")
        .country("string")
        .email("string")
        .jobTitle("string")
        .contactType("string")
        .address("string")
        .city("string")
        .lock(false)
        .mobilePhone("string")
        .phone("string")
        .preferredLanguage("string")
        .secondaryEmail("string")
        .sessionTimeout(0)
        .state("string")
        .timeZone("string")
        .zipCode("string")
        .build());
    
    iam_user_resource = akamai.IamUser("iamUserResource",
        enable_tfa=False,
        auth_grants_json="string",
        last_name="string",
        first_name="string",
        country="string",
        email="string",
        job_title="string",
        contact_type="string",
        address="string",
        city="string",
        lock=False,
        mobile_phone="string",
        phone="string",
        preferred_language="string",
        secondary_email="string",
        session_timeout=0,
        state="string",
        time_zone="string",
        zip_code="string")
    
    const iamUserResource = new akamai.IamUser("iamUserResource", {
        enableTfa: false,
        authGrantsJson: "string",
        lastName: "string",
        firstName: "string",
        country: "string",
        email: "string",
        jobTitle: "string",
        contactType: "string",
        address: "string",
        city: "string",
        lock: false,
        mobilePhone: "string",
        phone: "string",
        preferredLanguage: "string",
        secondaryEmail: "string",
        sessionTimeout: 0,
        state: "string",
        timeZone: "string",
        zipCode: "string",
    });
    
    type: akamai:IamUser
    properties:
        address: string
        authGrantsJson: string
        city: string
        contactType: string
        country: string
        email: string
        enableTfa: false
        firstName: string
        jobTitle: string
        lastName: string
        lock: false
        mobilePhone: string
        phone: string
        preferredLanguage: string
        secondaryEmail: string
        sessionTimeout: 0
        state: string
        timeZone: string
        zipCode: string
    

    IamUser Resource Properties

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

    Inputs

    The IamUser resource accepts the following input properties:

    AuthGrantsJson string
    A user's per-group role assignments, in JSON form
    Country string
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    Email string
    The user's email address
    EnableTfa bool
    Indicates whether two-factor authentication is allowed
    FirstName string
    The user's first name
    LastName string
    The user's surname
    Address string
    The user's street address
    City string
    The user's city
    ContactType string
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    JobTitle string
    The user's position at your company
    Lock bool
    Flag to block a user account
    MobilePhone string
    The user's mobile phone number
    Phone string
    The user's main phone number
    PreferredLanguage string
    The value can be any that are available from the view-languages operation
    SecondaryEmail string
    The user's secondary email address
    SessionTimeout int
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    State string
    The user's state
    TimeZone string
    The user's time zone. The value can be any that are available from the view-time-zones operation
    ZipCode string
    The user's five-digit ZIP code
    AuthGrantsJson string
    A user's per-group role assignments, in JSON form
    Country string
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    Email string
    The user's email address
    EnableTfa bool
    Indicates whether two-factor authentication is allowed
    FirstName string
    The user's first name
    LastName string
    The user's surname
    Address string
    The user's street address
    City string
    The user's city
    ContactType string
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    JobTitle string
    The user's position at your company
    Lock bool
    Flag to block a user account
    MobilePhone string
    The user's mobile phone number
    Phone string
    The user's main phone number
    PreferredLanguage string
    The value can be any that are available from the view-languages operation
    SecondaryEmail string
    The user's secondary email address
    SessionTimeout int
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    State string
    The user's state
    TimeZone string
    The user's time zone. The value can be any that are available from the view-time-zones operation
    ZipCode string
    The user's five-digit ZIP code
    authGrantsJson String
    A user's per-group role assignments, in JSON form
    country String
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    email String
    The user's email address
    enableTfa Boolean
    Indicates whether two-factor authentication is allowed
    firstName String
    The user's first name
    lastName String
    The user's surname
    address String
    The user's street address
    city String
    The user's city
    contactType String
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    jobTitle String
    The user's position at your company
    lock Boolean
    Flag to block a user account
    mobilePhone String
    The user's mobile phone number
    phone String
    The user's main phone number
    preferredLanguage String
    The value can be any that are available from the view-languages operation
    secondaryEmail String
    The user's secondary email address
    sessionTimeout Integer
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    state String
    The user's state
    timeZone String
    The user's time zone. The value can be any that are available from the view-time-zones operation
    zipCode String
    The user's five-digit ZIP code
    authGrantsJson string
    A user's per-group role assignments, in JSON form
    country string
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    email string
    The user's email address
    enableTfa boolean
    Indicates whether two-factor authentication is allowed
    firstName string
    The user's first name
    lastName string
    The user's surname
    address string
    The user's street address
    city string
    The user's city
    contactType string
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    jobTitle string
    The user's position at your company
    lock boolean
    Flag to block a user account
    mobilePhone string
    The user's mobile phone number
    phone string
    The user's main phone number
    preferredLanguage string
    The value can be any that are available from the view-languages operation
    secondaryEmail string
    The user's secondary email address
    sessionTimeout number
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    state string
    The user's state
    timeZone string
    The user's time zone. The value can be any that are available from the view-time-zones operation
    zipCode string
    The user's five-digit ZIP code
    auth_grants_json str
    A user's per-group role assignments, in JSON form
    country str
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    email str
    The user's email address
    enable_tfa bool
    Indicates whether two-factor authentication is allowed
    first_name str
    The user's first name
    last_name str
    The user's surname
    address str
    The user's street address
    city str
    The user's city
    contact_type str
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    job_title str
    The user's position at your company
    lock bool
    Flag to block a user account
    mobile_phone str
    The user's mobile phone number
    phone str
    The user's main phone number
    preferred_language str
    The value can be any that are available from the view-languages operation
    secondary_email str
    The user's secondary email address
    session_timeout int
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    state str
    The user's state
    time_zone str
    The user's time zone. The value can be any that are available from the view-time-zones operation
    zip_code str
    The user's five-digit ZIP code
    authGrantsJson String
    A user's per-group role assignments, in JSON form
    country String
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    email String
    The user's email address
    enableTfa Boolean
    Indicates whether two-factor authentication is allowed
    firstName String
    The user's first name
    lastName String
    The user's surname
    address String
    The user's street address
    city String
    The user's city
    contactType String
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    jobTitle String
    The user's position at your company
    lock Boolean
    Flag to block a user account
    mobilePhone String
    The user's mobile phone number
    phone String
    The user's main phone number
    preferredLanguage String
    The value can be any that are available from the view-languages operation
    secondaryEmail String
    The user's secondary email address
    sessionTimeout Number
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    state String
    The user's state
    timeZone String
    The user's time zone. The value can be any that are available from the view-time-zones operation
    zipCode String
    The user's five-digit ZIP code

    Outputs

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

    EmailUpdatePending bool
    Indicates whether email update is pending
    Id string
    The provider-assigned unique ID for this managed resource.
    LastLogin string
    ISO 8601 timestamp indicating when the user last logged in
    PasswordExpiredAfter string
    The date a user's password expires
    TfaConfigured bool
    Indicates whether two-factor authentication is configured
    UserName string
    A user's loginId. Typically, a user's email address
    EmailUpdatePending bool
    Indicates whether email update is pending
    Id string
    The provider-assigned unique ID for this managed resource.
    LastLogin string
    ISO 8601 timestamp indicating when the user last logged in
    PasswordExpiredAfter string
    The date a user's password expires
    TfaConfigured bool
    Indicates whether two-factor authentication is configured
    UserName string
    A user's loginId. Typically, a user's email address
    emailUpdatePending Boolean
    Indicates whether email update is pending
    id String
    The provider-assigned unique ID for this managed resource.
    lastLogin String
    ISO 8601 timestamp indicating when the user last logged in
    passwordExpiredAfter String
    The date a user's password expires
    tfaConfigured Boolean
    Indicates whether two-factor authentication is configured
    userName String
    A user's loginId. Typically, a user's email address
    emailUpdatePending boolean
    Indicates whether email update is pending
    id string
    The provider-assigned unique ID for this managed resource.
    lastLogin string
    ISO 8601 timestamp indicating when the user last logged in
    passwordExpiredAfter string
    The date a user's password expires
    tfaConfigured boolean
    Indicates whether two-factor authentication is configured
    userName string
    A user's loginId. Typically, a user's email address
    email_update_pending bool
    Indicates whether email update is pending
    id str
    The provider-assigned unique ID for this managed resource.
    last_login str
    ISO 8601 timestamp indicating when the user last logged in
    password_expired_after str
    The date a user's password expires
    tfa_configured bool
    Indicates whether two-factor authentication is configured
    user_name str
    A user's loginId. Typically, a user's email address
    emailUpdatePending Boolean
    Indicates whether email update is pending
    id String
    The provider-assigned unique ID for this managed resource.
    lastLogin String
    ISO 8601 timestamp indicating when the user last logged in
    passwordExpiredAfter String
    The date a user's password expires
    tfaConfigured Boolean
    Indicates whether two-factor authentication is configured
    userName String
    A user's loginId. Typically, a user's email address

    Look up Existing IamUser Resource

    Get an existing IamUser 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?: IamUserState, opts?: CustomResourceOptions): IamUser
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address: Optional[str] = None,
            auth_grants_json: Optional[str] = None,
            city: Optional[str] = None,
            contact_type: Optional[str] = None,
            country: Optional[str] = None,
            email: Optional[str] = None,
            email_update_pending: Optional[bool] = None,
            enable_tfa: Optional[bool] = None,
            first_name: Optional[str] = None,
            job_title: Optional[str] = None,
            last_login: Optional[str] = None,
            last_name: Optional[str] = None,
            lock: Optional[bool] = None,
            mobile_phone: Optional[str] = None,
            password_expired_after: Optional[str] = None,
            phone: Optional[str] = None,
            preferred_language: Optional[str] = None,
            secondary_email: Optional[str] = None,
            session_timeout: Optional[int] = None,
            state: Optional[str] = None,
            tfa_configured: Optional[bool] = None,
            time_zone: Optional[str] = None,
            user_name: Optional[str] = None,
            zip_code: Optional[str] = None) -> IamUser
    func GetIamUser(ctx *Context, name string, id IDInput, state *IamUserState, opts ...ResourceOption) (*IamUser, error)
    public static IamUser Get(string name, Input<string> id, IamUserState? state, CustomResourceOptions? opts = null)
    public static IamUser get(String name, Output<String> id, IamUserState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    Address string
    The user's street address
    AuthGrantsJson string
    A user's per-group role assignments, in JSON form
    City string
    The user's city
    ContactType string
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    Country string
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    Email string
    The user's email address
    EmailUpdatePending bool
    Indicates whether email update is pending
    EnableTfa bool
    Indicates whether two-factor authentication is allowed
    FirstName string
    The user's first name
    JobTitle string
    The user's position at your company
    LastLogin string
    ISO 8601 timestamp indicating when the user last logged in
    LastName string
    The user's surname
    Lock bool
    Flag to block a user account
    MobilePhone string
    The user's mobile phone number
    PasswordExpiredAfter string
    The date a user's password expires
    Phone string
    The user's main phone number
    PreferredLanguage string
    The value can be any that are available from the view-languages operation
    SecondaryEmail string
    The user's secondary email address
    SessionTimeout int
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    State string
    The user's state
    TfaConfigured bool
    Indicates whether two-factor authentication is configured
    TimeZone string
    The user's time zone. The value can be any that are available from the view-time-zones operation
    UserName string
    A user's loginId. Typically, a user's email address
    ZipCode string
    The user's five-digit ZIP code
    Address string
    The user's street address
    AuthGrantsJson string
    A user's per-group role assignments, in JSON form
    City string
    The user's city
    ContactType string
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    Country string
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    Email string
    The user's email address
    EmailUpdatePending bool
    Indicates whether email update is pending
    EnableTfa bool
    Indicates whether two-factor authentication is allowed
    FirstName string
    The user's first name
    JobTitle string
    The user's position at your company
    LastLogin string
    ISO 8601 timestamp indicating when the user last logged in
    LastName string
    The user's surname
    Lock bool
    Flag to block a user account
    MobilePhone string
    The user's mobile phone number
    PasswordExpiredAfter string
    The date a user's password expires
    Phone string
    The user's main phone number
    PreferredLanguage string
    The value can be any that are available from the view-languages operation
    SecondaryEmail string
    The user's secondary email address
    SessionTimeout int
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    State string
    The user's state
    TfaConfigured bool
    Indicates whether two-factor authentication is configured
    TimeZone string
    The user's time zone. The value can be any that are available from the view-time-zones operation
    UserName string
    A user's loginId. Typically, a user's email address
    ZipCode string
    The user's five-digit ZIP code
    address String
    The user's street address
    authGrantsJson String
    A user's per-group role assignments, in JSON form
    city String
    The user's city
    contactType String
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    country String
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    email String
    The user's email address
    emailUpdatePending Boolean
    Indicates whether email update is pending
    enableTfa Boolean
    Indicates whether two-factor authentication is allowed
    firstName String
    The user's first name
    jobTitle String
    The user's position at your company
    lastLogin String
    ISO 8601 timestamp indicating when the user last logged in
    lastName String
    The user's surname
    lock Boolean
    Flag to block a user account
    mobilePhone String
    The user's mobile phone number
    passwordExpiredAfter String
    The date a user's password expires
    phone String
    The user's main phone number
    preferredLanguage String
    The value can be any that are available from the view-languages operation
    secondaryEmail String
    The user's secondary email address
    sessionTimeout Integer
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    state String
    The user's state
    tfaConfigured Boolean
    Indicates whether two-factor authentication is configured
    timeZone String
    The user's time zone. The value can be any that are available from the view-time-zones operation
    userName String
    A user's loginId. Typically, a user's email address
    zipCode String
    The user's five-digit ZIP code
    address string
    The user's street address
    authGrantsJson string
    A user's per-group role assignments, in JSON form
    city string
    The user's city
    contactType string
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    country string
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    email string
    The user's email address
    emailUpdatePending boolean
    Indicates whether email update is pending
    enableTfa boolean
    Indicates whether two-factor authentication is allowed
    firstName string
    The user's first name
    jobTitle string
    The user's position at your company
    lastLogin string
    ISO 8601 timestamp indicating when the user last logged in
    lastName string
    The user's surname
    lock boolean
    Flag to block a user account
    mobilePhone string
    The user's mobile phone number
    passwordExpiredAfter string
    The date a user's password expires
    phone string
    The user's main phone number
    preferredLanguage string
    The value can be any that are available from the view-languages operation
    secondaryEmail string
    The user's secondary email address
    sessionTimeout number
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    state string
    The user's state
    tfaConfigured boolean
    Indicates whether two-factor authentication is configured
    timeZone string
    The user's time zone. The value can be any that are available from the view-time-zones operation
    userName string
    A user's loginId. Typically, a user's email address
    zipCode string
    The user's five-digit ZIP code
    address str
    The user's street address
    auth_grants_json str
    A user's per-group role assignments, in JSON form
    city str
    The user's city
    contact_type str
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    country str
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    email str
    The user's email address
    email_update_pending bool
    Indicates whether email update is pending
    enable_tfa bool
    Indicates whether two-factor authentication is allowed
    first_name str
    The user's first name
    job_title str
    The user's position at your company
    last_login str
    ISO 8601 timestamp indicating when the user last logged in
    last_name str
    The user's surname
    lock bool
    Flag to block a user account
    mobile_phone str
    The user's mobile phone number
    password_expired_after str
    The date a user's password expires
    phone str
    The user's main phone number
    preferred_language str
    The value can be any that are available from the view-languages operation
    secondary_email str
    The user's secondary email address
    session_timeout int
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    state str
    The user's state
    tfa_configured bool
    Indicates whether two-factor authentication is configured
    time_zone str
    The user's time zone. The value can be any that are available from the view-time-zones operation
    user_name str
    A user's loginId. Typically, a user's email address
    zip_code str
    The user's five-digit ZIP code
    address String
    The user's street address
    authGrantsJson String
    A user's per-group role assignments, in JSON form
    city String
    The user's city
    contactType String
    To help characterize the user, the value can be any that are available from the view-contact-types operation
    country String
    As part of the user's location, the value can be any that are available from the view-supported-countries operation
    email String
    The user's email address
    emailUpdatePending Boolean
    Indicates whether email update is pending
    enableTfa Boolean
    Indicates whether two-factor authentication is allowed
    firstName String
    The user's first name
    jobTitle String
    The user's position at your company
    lastLogin String
    ISO 8601 timestamp indicating when the user last logged in
    lastName String
    The user's surname
    lock Boolean
    Flag to block a user account
    mobilePhone String
    The user's mobile phone number
    passwordExpiredAfter String
    The date a user's password expires
    phone String
    The user's main phone number
    preferredLanguage String
    The value can be any that are available from the view-languages operation
    secondaryEmail String
    The user's secondary email address
    sessionTimeout Number
    The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity
    state String
    The user's state
    tfaConfigured Boolean
    Indicates whether two-factor authentication is configured
    timeZone String
    The user's time zone. The value can be any that are available from the view-time-zones operation
    userName String
    A user's loginId. Typically, a user's email address
    zipCode String
    The user's five-digit ZIP code

    Package Details

    Repository
    Akamai pulumi/pulumi-akamai
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the akamai Terraform Provider.
    akamai logo
    Akamai v7.1.0 published on Wednesday, Apr 24, 2024 by Pulumi