import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class IamUser extends pulumi.CustomResource { /** * Get an existing IamUser resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: IamUserState, opts?: pulumi.CustomResourceOptions): IamUser; /** * Returns true if the given object is an instance of IamUser. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is IamUser; /** * The user's street address. */ readonly address: pulumi.Output; /** * A user's per-group role assignments, in JSON form. */ readonly authGrantsJson: pulumi.Output; /** * The user's city. */ readonly city: pulumi.Output; /** * To help characterize the user, the value can be any that are available from the view-contact-types operation. */ readonly contactType: pulumi.Output; /** * As part of the user's location, the value can be any that are available from the view-supported-countries operation. */ readonly country: pulumi.Output; /** * The user's email address. */ readonly email: pulumi.Output; /** * Indicates whether email update is pending. */ readonly emailUpdatePending: pulumi.Output; /** * Indicates whether multi-factor authentication is allowed. */ readonly enableMfa: pulumi.Output; /** * Indicates whether two-factor authentication is allowed. */ readonly enableTfa: pulumi.Output; /** * The user's first name. */ readonly firstName: pulumi.Output; /** * The user's position at your company. */ readonly jobTitle: pulumi.Output; /** * ISO 8601 timestamp indicating when the user last logged in. */ readonly lastLogin: pulumi.Output; /** * The user's surname. */ readonly lastName: pulumi.Output; /** * Flag to block a user account. */ readonly lock: pulumi.Output; /** * The user's mobile phone number. */ readonly mobilePhone: pulumi.Output; /** * New password for a user. */ readonly password: pulumi.Output; /** * The date a user's password expires. */ readonly passwordExpiredAfter: pulumi.Output; /** * The user's main phone number. */ readonly phone: pulumi.Output; /** * The value can be any that are available from the view-languages operation. */ readonly preferredLanguage: pulumi.Output; /** * The user's secondary email address. */ readonly secondaryEmail: pulumi.Output; /** * The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity. */ readonly sessionTimeout: pulumi.Output; /** * The user's state. */ readonly state: pulumi.Output; /** * Indicates whether two-factor authentication is configured. */ readonly tfaConfigured: pulumi.Output; /** * The user's time zone. The value can be any that are available from the view-time-zones operation. */ readonly timeZone: pulumi.Output; /** * A user's `loginId`. Typically, a user's email address. */ readonly userName: pulumi.Output; /** * Specifies email notifications the user receives for products. */ readonly userNotifications: pulumi.Output; /** * The user's five-digit ZIP code. */ readonly zipCode: pulumi.Output; /** * Create a IamUser resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: IamUserArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IamUser resources. */ export interface IamUserState { /** * The user's street address. */ address?: pulumi.Input; /** * A user's per-group role assignments, in JSON form. */ authGrantsJson?: pulumi.Input; /** * The user's city. */ city?: pulumi.Input; /** * To help characterize the user, the value can be any that are available from the view-contact-types operation. */ contactType?: pulumi.Input; /** * As part of the user's location, the value can be any that are available from the view-supported-countries operation. */ country?: pulumi.Input; /** * The user's email address. */ email?: pulumi.Input; /** * Indicates whether email update is pending. */ emailUpdatePending?: pulumi.Input; /** * Indicates whether multi-factor authentication is allowed. */ enableMfa?: pulumi.Input; /** * Indicates whether two-factor authentication is allowed. */ enableTfa?: pulumi.Input; /** * The user's first name. */ firstName?: pulumi.Input; /** * The user's position at your company. */ jobTitle?: pulumi.Input; /** * ISO 8601 timestamp indicating when the user last logged in. */ lastLogin?: pulumi.Input; /** * The user's surname. */ lastName?: pulumi.Input; /** * Flag to block a user account. */ lock?: pulumi.Input; /** * The user's mobile phone number. */ mobilePhone?: pulumi.Input; /** * New password for a user. */ password?: pulumi.Input; /** * The date a user's password expires. */ passwordExpiredAfter?: pulumi.Input; /** * The user's main phone number. */ phone?: pulumi.Input; /** * The value can be any that are available from the view-languages operation. */ preferredLanguage?: pulumi.Input; /** * The user's secondary email address. */ secondaryEmail?: pulumi.Input; /** * The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity. */ sessionTimeout?: pulumi.Input; /** * The user's state. */ state?: pulumi.Input; /** * Indicates whether two-factor authentication is configured. */ tfaConfigured?: pulumi.Input; /** * The user's time zone. The value can be any that are available from the view-time-zones operation. */ timeZone?: pulumi.Input; /** * A user's `loginId`. Typically, a user's email address. */ userName?: pulumi.Input; /** * Specifies email notifications the user receives for products. */ userNotifications?: pulumi.Input; /** * The user's five-digit ZIP code. */ zipCode?: pulumi.Input; } /** * The set of arguments for constructing a IamUser resource. */ export interface IamUserArgs { /** * The user's street address. */ address?: pulumi.Input; /** * A user's per-group role assignments, in JSON form. */ authGrantsJson: pulumi.Input; /** * The user's city. */ city?: pulumi.Input; /** * To help characterize the user, the value can be any that are available from the view-contact-types operation. */ contactType?: pulumi.Input; /** * As part of the user's location, the value can be any that are available from the view-supported-countries operation. */ country: pulumi.Input; /** * The user's email address. */ email: pulumi.Input; /** * Indicates whether multi-factor authentication is allowed. */ enableMfa?: pulumi.Input; /** * Indicates whether two-factor authentication is allowed. */ enableTfa?: pulumi.Input; /** * The user's first name. */ firstName: pulumi.Input; /** * The user's position at your company. */ jobTitle?: pulumi.Input; /** * The user's surname. */ lastName: pulumi.Input; /** * Flag to block a user account. */ lock?: pulumi.Input; /** * The user's mobile phone number. */ mobilePhone?: pulumi.Input; /** * New password for a user. */ password?: pulumi.Input; /** * The user's main phone number. */ phone?: pulumi.Input; /** * The value can be any that are available from the view-languages operation. */ preferredLanguage?: pulumi.Input; /** * The user's secondary email address. */ secondaryEmail?: pulumi.Input; /** * The number of seconds it takes for the user's Control Center session to time out if there hasn't been any activity. */ sessionTimeout?: pulumi.Input; /** * The user's state. */ state?: pulumi.Input; /** * The user's time zone. The value can be any that are available from the view-time-zones operation. */ timeZone?: pulumi.Input; /** * Specifies email notifications the user receives for products. */ userNotifications?: pulumi.Input; /** * The user's five-digit ZIP code. */ zipCode?: pulumi.Input; } //# sourceMappingURL=iamUser.d.ts.map