akamai.IamUser
Explore with Pulumi AI
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,
last_name: Optional[str] = None,
email: Optional[str] = None,
first_name: Optional[str] = None,
auth_grants_json: Optional[str] = None,
country: Optional[str] = None,
city: Optional[str] = None,
phone: Optional[str] = None,
enable_tfa: Optional[bool] = None,
mobile_phone: Optional[str] = None,
job_title: Optional[str] = None,
zip_code: Optional[str] = None,
contact_type: Optional[str] = None,
lock: Optional[bool] = None,
password: Optional[str] = None,
enable_mfa: Optional[bool] = 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,
user_notifications: Optional[IamUserUserNotificationsArgs] = None,
address: 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var iamUserResource = new Akamai.IamUser("iamUserResource", new()
{
LastName = "string",
Email = "string",
FirstName = "string",
AuthGrantsJson = "string",
Country = "string",
City = "string",
Phone = "string",
EnableTfa = false,
MobilePhone = "string",
JobTitle = "string",
ZipCode = "string",
ContactType = "string",
Lock = false,
Password = "string",
EnableMfa = false,
PreferredLanguage = "string",
SecondaryEmail = "string",
SessionTimeout = 0,
State = "string",
TimeZone = "string",
UserNotifications = new Akamai.Inputs.IamUserUserNotificationsArgs
{
EnableEmailNotifications = false,
PasswordExpiry = false,
Proactives = new[]
{
"string",
},
Upgrades = new[]
{
"string",
},
ApiClientCredentialExpiryNotification = false,
NewUserNotification = false,
},
Address = "string",
});
example, err := akamai.NewIamUser(ctx, "iamUserResource", &akamai.IamUserArgs{
LastName: pulumi.String("string"),
Email: pulumi.String("string"),
FirstName: pulumi.String("string"),
AuthGrantsJson: pulumi.String("string"),
Country: pulumi.String("string"),
City: pulumi.String("string"),
Phone: pulumi.String("string"),
EnableTfa: pulumi.Bool(false),
MobilePhone: pulumi.String("string"),
JobTitle: pulumi.String("string"),
ZipCode: pulumi.String("string"),
ContactType: pulumi.String("string"),
Lock: pulumi.Bool(false),
Password: pulumi.String("string"),
EnableMfa: pulumi.Bool(false),
PreferredLanguage: pulumi.String("string"),
SecondaryEmail: pulumi.String("string"),
SessionTimeout: pulumi.Int(0),
State: pulumi.String("string"),
TimeZone: pulumi.String("string"),
UserNotifications: &akamai.IamUserUserNotificationsArgs{
EnableEmailNotifications: pulumi.Bool(false),
PasswordExpiry: pulumi.Bool(false),
Proactives: pulumi.StringArray{
pulumi.String("string"),
},
Upgrades: pulumi.StringArray{
pulumi.String("string"),
},
ApiClientCredentialExpiryNotification: pulumi.Bool(false),
NewUserNotification: pulumi.Bool(false),
},
Address: pulumi.String("string"),
})
var iamUserResource = new IamUser("iamUserResource", IamUserArgs.builder()
.lastName("string")
.email("string")
.firstName("string")
.authGrantsJson("string")
.country("string")
.city("string")
.phone("string")
.enableTfa(false)
.mobilePhone("string")
.jobTitle("string")
.zipCode("string")
.contactType("string")
.lock(false)
.password("string")
.enableMfa(false)
.preferredLanguage("string")
.secondaryEmail("string")
.sessionTimeout(0)
.state("string")
.timeZone("string")
.userNotifications(IamUserUserNotificationsArgs.builder()
.enableEmailNotifications(false)
.passwordExpiry(false)
.proactives("string")
.upgrades("string")
.apiClientCredentialExpiryNotification(false)
.newUserNotification(false)
.build())
.address("string")
.build());
iam_user_resource = akamai.IamUser("iamUserResource",
last_name="string",
email="string",
first_name="string",
auth_grants_json="string",
country="string",
city="string",
phone="string",
enable_tfa=False,
mobile_phone="string",
job_title="string",
zip_code="string",
contact_type="string",
lock=False,
password="string",
enable_mfa=False,
preferred_language="string",
secondary_email="string",
session_timeout=0,
state="string",
time_zone="string",
user_notifications={
"enable_email_notifications": False,
"password_expiry": False,
"proactives": ["string"],
"upgrades": ["string"],
"api_client_credential_expiry_notification": False,
"new_user_notification": False,
},
address="string")
const iamUserResource = new akamai.IamUser("iamUserResource", {
lastName: "string",
email: "string",
firstName: "string",
authGrantsJson: "string",
country: "string",
city: "string",
phone: "string",
enableTfa: false,
mobilePhone: "string",
jobTitle: "string",
zipCode: "string",
contactType: "string",
lock: false,
password: "string",
enableMfa: false,
preferredLanguage: "string",
secondaryEmail: "string",
sessionTimeout: 0,
state: "string",
timeZone: "string",
userNotifications: {
enableEmailNotifications: false,
passwordExpiry: false,
proactives: ["string"],
upgrades: ["string"],
apiClientCredentialExpiryNotification: false,
newUserNotification: false,
},
address: "string",
});
type: akamai:IamUser
properties:
address: string
authGrantsJson: string
city: string
contactType: string
country: string
email: string
enableMfa: false
enableTfa: false
firstName: string
jobTitle: string
lastName: string
lock: false
mobilePhone: string
password: string
phone: string
preferredLanguage: string
secondaryEmail: string
sessionTimeout: 0
state: string
timeZone: string
userNotifications:
apiClientCredentialExpiryNotification: false
enableEmailNotifications: false
newUserNotification: false
passwordExpiry: false
proactives:
- string
upgrades:
- 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IamUser resource accepts the following input properties:
- Auth
Grants stringJson - 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.
- First
Name string - The user's first name.
- Last
Name string - The user's surname.
- Address string
- The user's street address.
- City string
- The user's city.
- Contact
Type string - To help characterize the user, the value can be any that are available from the view-contact-types operation.
- Enable
Mfa bool - Indicates whether multi-factor authentication is allowed.
- Enable
Tfa bool - Indicates whether two-factor authentication is allowed.
- Job
Title string - The user's position at your company.
- Lock bool
- Flag to block a user account.
- Mobile
Phone string - The user's mobile phone number.
- Password string
- New password for a user.
- Phone string
- The user's main phone number.
- Preferred
Language string - The value can be any that are available from the view-languages operation.
- Secondary
Email string - 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 string
- The user's state.
- Time
Zone string - The user's time zone. The value can be any that are available from the view-time-zones operation.
- User
Notifications IamUser User Notifications - Specifies email notifications the user receives for products.
- Zip
Code string - The user's five-digit ZIP code.
- Auth
Grants stringJson - 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.
- First
Name string - The user's first name.
- Last
Name string - The user's surname.
- Address string
- The user's street address.
- City string
- The user's city.
- Contact
Type string - To help characterize the user, the value can be any that are available from the view-contact-types operation.
- Enable
Mfa bool - Indicates whether multi-factor authentication is allowed.
- Enable
Tfa bool - Indicates whether two-factor authentication is allowed.
- Job
Title string - The user's position at your company.
- Lock bool
- Flag to block a user account.
- Mobile
Phone string - The user's mobile phone number.
- Password string
- New password for a user.
- Phone string
- The user's main phone number.
- Preferred
Language string - The value can be any that are available from the view-languages operation.
- Secondary
Email string - 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 string
- The user's state.
- Time
Zone string - The user's time zone. The value can be any that are available from the view-time-zones operation.
- User
Notifications IamUser User Notifications Args - Specifies email notifications the user receives for products.
- Zip
Code string - The user's five-digit ZIP code.
- auth
Grants StringJson - 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.
- first
Name String - The user's first name.
- last
Name String - The user's surname.
- address String
- The user's street address.
- city String
- The user's city.
- contact
Type String - To help characterize the user, the value can be any that are available from the view-contact-types operation.
- enable
Mfa Boolean - Indicates whether multi-factor authentication is allowed.
- enable
Tfa Boolean - Indicates whether two-factor authentication is allowed.
- job
Title String - The user's position at your company.
- lock Boolean
- Flag to block a user account.
- mobile
Phone String - The user's mobile phone number.
- password String
- New password for a user.
- phone String
- The user's main phone number.
- preferred
Language String - The value can be any that are available from the view-languages operation.
- secondary
Email String - The user's secondary email address.
- session
Timeout 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.
- time
Zone String - The user's time zone. The value can be any that are available from the view-time-zones operation.
- user
Notifications IamUser User Notifications - Specifies email notifications the user receives for products.
- zip
Code String - The user's five-digit ZIP code.
- auth
Grants stringJson - 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.
- first
Name string - The user's first name.
- last
Name string - The user's surname.
- address string
- The user's street address.
- city string
- The user's city.
- contact
Type string - To help characterize the user, the value can be any that are available from the view-contact-types operation.
- enable
Mfa boolean - Indicates whether multi-factor authentication is allowed.
- enable
Tfa boolean - Indicates whether two-factor authentication is allowed.
- job
Title string - The user's position at your company.
- lock boolean
- Flag to block a user account.
- mobile
Phone string - The user's mobile phone number.
- password string
- New password for a user.
- phone string
- The user's main phone number.
- preferred
Language string - The value can be any that are available from the view-languages operation.
- secondary
Email string - The user's secondary email address.
- session
Timeout 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.
- time
Zone string - The user's time zone. The value can be any that are available from the view-time-zones operation.
- user
Notifications IamUser User Notifications - Specifies email notifications the user receives for products.
- zip
Code string - The user's five-digit ZIP code.
- auth_
grants_ strjson - 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.
- 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.
- enable_
mfa bool - Indicates whether multi-factor authentication is allowed.
- enable_
tfa bool - Indicates whether two-factor authentication is allowed.
- 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.
- password str
- New password for a user.
- 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.
- user_
notifications IamUser User Notifications Args - Specifies email notifications the user receives for products.
- zip_
code str - The user's five-digit ZIP code.
- auth
Grants StringJson - 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.
- first
Name String - The user's first name.
- last
Name String - The user's surname.
- address String
- The user's street address.
- city String
- The user's city.
- contact
Type String - To help characterize the user, the value can be any that are available from the view-contact-types operation.
- enable
Mfa Boolean - Indicates whether multi-factor authentication is allowed.
- enable
Tfa Boolean - Indicates whether two-factor authentication is allowed.
- job
Title String - The user's position at your company.
- lock Boolean
- Flag to block a user account.
- mobile
Phone String - The user's mobile phone number.
- password String
- New password for a user.
- phone String
- The user's main phone number.
- preferred
Language String - The value can be any that are available from the view-languages operation.
- secondary
Email String - The user's secondary email address.
- session
Timeout 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.
- time
Zone String - The user's time zone. The value can be any that are available from the view-time-zones operation.
- user
Notifications Property Map - Specifies email notifications the user receives for products.
- zip
Code 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:
- Email
Update boolPending - Indicates whether email update is pending.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Login string - ISO 8601 timestamp indicating when the user last logged in.
- Password
Expired stringAfter - The date a user's password expires.
- Tfa
Configured bool - Indicates whether two-factor authentication is configured.
- User
Name string - A user's
loginId
. Typically, a user's email address.
- Email
Update boolPending - Indicates whether email update is pending.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Login string - ISO 8601 timestamp indicating when the user last logged in.
- Password
Expired stringAfter - The date a user's password expires.
- Tfa
Configured bool - Indicates whether two-factor authentication is configured.
- User
Name string - A user's
loginId
. Typically, a user's email address.
- email
Update BooleanPending - Indicates whether email update is pending.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Login String - ISO 8601 timestamp indicating when the user last logged in.
- password
Expired StringAfter - The date a user's password expires.
- tfa
Configured Boolean - Indicates whether two-factor authentication is configured.
- user
Name String - A user's
loginId
. Typically, a user's email address.
- email
Update booleanPending - Indicates whether email update is pending.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Login string - ISO 8601 timestamp indicating when the user last logged in.
- password
Expired stringAfter - The date a user's password expires.
- tfa
Configured boolean - Indicates whether two-factor authentication is configured.
- user
Name string - A user's
loginId
. Typically, a user's email address.
- email_
update_ boolpending - 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_ strafter - 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.
- email
Update BooleanPending - Indicates whether email update is pending.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Login String - ISO 8601 timestamp indicating when the user last logged in.
- password
Expired StringAfter - The date a user's password expires.
- tfa
Configured Boolean - Indicates whether two-factor authentication is configured.
- user
Name 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_mfa: 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: 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,
user_notifications: Optional[IamUserUserNotificationsArgs] = 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)
resources: _: type: akamai:IamUser 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.
- Address string
- The user's street address.
- Auth
Grants stringJson - A user's per-group role assignments, in JSON form.
- City string
- The user's city.
- Contact
Type 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.
- Email
Update boolPending - Indicates whether email update is pending.
- Enable
Mfa bool - Indicates whether multi-factor authentication is allowed.
- Enable
Tfa bool - Indicates whether two-factor authentication is allowed.
- First
Name string - The user's first name.
- Job
Title string - The user's position at your company.
- Last
Login string - ISO 8601 timestamp indicating when the user last logged in.
- Last
Name string - The user's surname.
- Lock bool
- Flag to block a user account.
- Mobile
Phone string - The user's mobile phone number.
- Password string
- New password for a user.
- Password
Expired stringAfter - The date a user's password expires.
- Phone string
- The user's main phone number.
- Preferred
Language string - The value can be any that are available from the view-languages operation.
- Secondary
Email string - 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 string
- The user's state.
- Tfa
Configured bool - Indicates whether two-factor authentication is configured.
- Time
Zone string - The user's time zone. The value can be any that are available from the view-time-zones operation.
- User
Name string - A user's
loginId
. Typically, a user's email address. - User
Notifications IamUser User Notifications - Specifies email notifications the user receives for products.
- Zip
Code string - The user's five-digit ZIP code.
- Address string
- The user's street address.
- Auth
Grants stringJson - A user's per-group role assignments, in JSON form.
- City string
- The user's city.
- Contact
Type 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.
- Email
Update boolPending - Indicates whether email update is pending.
- Enable
Mfa bool - Indicates whether multi-factor authentication is allowed.
- Enable
Tfa bool - Indicates whether two-factor authentication is allowed.
- First
Name string - The user's first name.
- Job
Title string - The user's position at your company.
- Last
Login string - ISO 8601 timestamp indicating when the user last logged in.
- Last
Name string - The user's surname.
- Lock bool
- Flag to block a user account.
- Mobile
Phone string - The user's mobile phone number.
- Password string
- New password for a user.
- Password
Expired stringAfter - The date a user's password expires.
- Phone string
- The user's main phone number.
- Preferred
Language string - The value can be any that are available from the view-languages operation.
- Secondary
Email string - 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 string
- The user's state.
- Tfa
Configured bool - Indicates whether two-factor authentication is configured.
- Time
Zone string - The user's time zone. The value can be any that are available from the view-time-zones operation.
- User
Name string - A user's
loginId
. Typically, a user's email address. - User
Notifications IamUser User Notifications Args - Specifies email notifications the user receives for products.
- Zip
Code string - The user's five-digit ZIP code.
- address String
- The user's street address.
- auth
Grants StringJson - A user's per-group role assignments, in JSON form.
- city String
- The user's city.
- contact
Type 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.
- email
Update BooleanPending - Indicates whether email update is pending.
- enable
Mfa Boolean - Indicates whether multi-factor authentication is allowed.
- enable
Tfa Boolean - Indicates whether two-factor authentication is allowed.
- first
Name String - The user's first name.
- job
Title String - The user's position at your company.
- last
Login String - ISO 8601 timestamp indicating when the user last logged in.
- last
Name String - The user's surname.
- lock Boolean
- Flag to block a user account.
- mobile
Phone String - The user's mobile phone number.
- password String
- New password for a user.
- password
Expired StringAfter - The date a user's password expires.
- phone String
- The user's main phone number.
- preferred
Language String - The value can be any that are available from the view-languages operation.
- secondary
Email String - The user's secondary email address.
- session
Timeout 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.
- tfa
Configured Boolean - Indicates whether two-factor authentication is configured.
- time
Zone String - The user's time zone. The value can be any that are available from the view-time-zones operation.
- user
Name String - A user's
loginId
. Typically, a user's email address. - user
Notifications IamUser User Notifications - Specifies email notifications the user receives for products.
- zip
Code String - The user's five-digit ZIP code.
- address string
- The user's street address.
- auth
Grants stringJson - A user's per-group role assignments, in JSON form.
- city string
- The user's city.
- contact
Type 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.
- email
Update booleanPending - Indicates whether email update is pending.
- enable
Mfa boolean - Indicates whether multi-factor authentication is allowed.
- enable
Tfa boolean - Indicates whether two-factor authentication is allowed.
- first
Name string - The user's first name.
- job
Title string - The user's position at your company.
- last
Login string - ISO 8601 timestamp indicating when the user last logged in.
- last
Name string - The user's surname.
- lock boolean
- Flag to block a user account.
- mobile
Phone string - The user's mobile phone number.
- password string
- New password for a user.
- password
Expired stringAfter - The date a user's password expires.
- phone string
- The user's main phone number.
- preferred
Language string - The value can be any that are available from the view-languages operation.
- secondary
Email string - The user's secondary email address.
- session
Timeout 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.
- tfa
Configured boolean - Indicates whether two-factor authentication is configured.
- time
Zone string - The user's time zone. The value can be any that are available from the view-time-zones operation.
- user
Name string - A user's
loginId
. Typically, a user's email address. - user
Notifications IamUser User Notifications - Specifies email notifications the user receives for products.
- zip
Code string - The user's five-digit ZIP code.
- address str
- The user's street address.
- auth_
grants_ strjson - 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_ boolpending - Indicates whether email update is pending.
- enable_
mfa bool - Indicates whether multi-factor authentication is allowed.
- 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 str
- New password for a user.
- password_
expired_ strafter - 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. - user_
notifications IamUser User Notifications Args - Specifies email notifications the user receives for products.
- zip_
code str - The user's five-digit ZIP code.
- address String
- The user's street address.
- auth
Grants StringJson - A user's per-group role assignments, in JSON form.
- city String
- The user's city.
- contact
Type 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.
- email
Update BooleanPending - Indicates whether email update is pending.
- enable
Mfa Boolean - Indicates whether multi-factor authentication is allowed.
- enable
Tfa Boolean - Indicates whether two-factor authentication is allowed.
- first
Name String - The user's first name.
- job
Title String - The user's position at your company.
- last
Login String - ISO 8601 timestamp indicating when the user last logged in.
- last
Name String - The user's surname.
- lock Boolean
- Flag to block a user account.
- mobile
Phone String - The user's mobile phone number.
- password String
- New password for a user.
- password
Expired StringAfter - The date a user's password expires.
- phone String
- The user's main phone number.
- preferred
Language String - The value can be any that are available from the view-languages operation.
- secondary
Email String - The user's secondary email address.
- session
Timeout 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.
- tfa
Configured Boolean - Indicates whether two-factor authentication is configured.
- time
Zone String - The user's time zone. The value can be any that are available from the view-time-zones operation.
- user
Name String - A user's
loginId
. Typically, a user's email address. - user
Notifications Property Map - Specifies email notifications the user receives for products.
- zip
Code String - The user's five-digit ZIP code.
Supporting Types
IamUserUserNotifications, IamUserUserNotificationsArgs
- Enable
Email boolNotifications - Enables email notifications.
- Password
Expiry bool - Enables notifications for expiring passwords.
- Proactives List<string>
- Products for which the user gets notifications for service issues.
- Upgrades List<string>
- Products for which the user receives notifications for upgrades.
- Api
Client boolCredential Expiry Notification - Enables notifications for expiring API client credentials.
- New
User boolNotification - Enables notifications for group administrators when the user creates other new users.
- Enable
Email boolNotifications - Enables email notifications.
- Password
Expiry bool - Enables notifications for expiring passwords.
- Proactives []string
- Products for which the user gets notifications for service issues.
- Upgrades []string
- Products for which the user receives notifications for upgrades.
- Api
Client boolCredential Expiry Notification - Enables notifications for expiring API client credentials.
- New
User boolNotification - Enables notifications for group administrators when the user creates other new users.
- enable
Email BooleanNotifications - Enables email notifications.
- password
Expiry Boolean - Enables notifications for expiring passwords.
- proactives List<String>
- Products for which the user gets notifications for service issues.
- upgrades List<String>
- Products for which the user receives notifications for upgrades.
- api
Client BooleanCredential Expiry Notification - Enables notifications for expiring API client credentials.
- new
User BooleanNotification - Enables notifications for group administrators when the user creates other new users.
- enable
Email booleanNotifications - Enables email notifications.
- password
Expiry boolean - Enables notifications for expiring passwords.
- proactives string[]
- Products for which the user gets notifications for service issues.
- upgrades string[]
- Products for which the user receives notifications for upgrades.
- api
Client booleanCredential Expiry Notification - Enables notifications for expiring API client credentials.
- new
User booleanNotification - Enables notifications for group administrators when the user creates other new users.
- enable_
email_ boolnotifications - Enables email notifications.
- password_
expiry bool - Enables notifications for expiring passwords.
- proactives Sequence[str]
- Products for which the user gets notifications for service issues.
- upgrades Sequence[str]
- Products for which the user receives notifications for upgrades.
- api_
client_ boolcredential_ expiry_ notification - Enables notifications for expiring API client credentials.
- new_
user_ boolnotification - Enables notifications for group administrators when the user creates other new users.
- enable
Email BooleanNotifications - Enables email notifications.
- password
Expiry Boolean - Enables notifications for expiring passwords.
- proactives List<String>
- Products for which the user gets notifications for service issues.
- upgrades List<String>
- Products for which the user receives notifications for upgrades.
- api
Client BooleanCredential Expiry Notification - Enables notifications for expiring API client credentials.
- new
User BooleanNotification - Enables notifications for group administrators when the user creates other new users.
Package Details
- Repository
- Akamai pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
akamai
Terraform Provider.