Module user

This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-okta repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-okta repo.

Resources

Functions

Others

Resources

Resource BaseSchema

class BaseSchema extends CustomResource

Manages a User Base Schema property.

This resource allows you to configure a base user schema property.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = new okta.user.BaseSchema("example", {
    index: "customPropertyName",
    master: "OKTA",
    title: "customPropertyName",
    type: "string",
});

constructor

new BaseSchema(name: string, args: BaseSchemaArgs, opts?: pulumi.CustomResourceOptions)

Create a BaseSchema resource with the given unique name, arguments, and options.

  • name The unique name of the resource.
  • args The arguments to use to populate this resource's properties.
  • opts A bag of options that control this resource's behavior.

method get

public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: BaseSchemaState, opts?: pulumi.CustomResourceOptions): BaseSchema

Get an existing BaseSchema resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

method getProvider

getProvider(moduleMember: string): ProviderResource | undefined

method isInstance

public static isInstance(obj: any): obj is BaseSchema

Returns true if the given object is an instance of BaseSchema. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.

property id

id: Output<ID>;

id is the provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

property index

public index: pulumi.Output<string>;

The property name.

property master

public master: pulumi.Output<string | undefined>;

Master priority for the user schema property. It can be set to "PROFILE_MASTER" or "OKTA".

property permissions

public permissions: pulumi.Output<string | undefined>;

Access control permissions for the property. It can be set to "READ_WRITE", "READ_ONLY", "HIDE".

property required

public required: pulumi.Output<boolean | undefined>;

Whether the property is required for this application’s users.

property title

public title: pulumi.Output<string>;

The property display name.

property type

public type: pulumi.Output<string>;

The type of the schema property. It can be "string", "boolean", "number", "integer", "array", or "object".

property urn

urn: Output<URN>;

urn is the stable logical URN used to distinctly address a resource, both before and after deployments.

Resource Schema

class Schema extends CustomResource

Creates a User Schema property.

This resource allows you to create and configure a custom user schema property.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = new okta.user.Schema("example", {
    description: "My custom property name",
    index: "customPropertyName",
    master: "OKTA",
    scope: "SELF",
    title: "customPropertyName",
    type: "string",
});

constructor

new Schema(name: string, args: SchemaArgs, opts?: pulumi.CustomResourceOptions)

Create a Schema resource with the given unique name, arguments, and options.

  • name The unique name of the resource.
  • args The arguments to use to populate this resource's properties.
  • opts A bag of options that control this resource's behavior.

method get

public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SchemaState, opts?: pulumi.CustomResourceOptions): Schema

Get an existing Schema resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

method getProvider

getProvider(moduleMember: string): ProviderResource | undefined

method isInstance

public static isInstance(obj: any): obj is Schema

Returns true if the given object is an instance of Schema. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.

property arrayEnums

public arrayEnums: pulumi.Output<string[] | undefined>;

Array of values that an array property’s items can be set to.

property arrayOneOfs

public arrayOneOfs: pulumi.Output<SchemaArrayOneOf[] | undefined>;

Display name and value an enum array can be set to.

property arrayType

public arrayType: pulumi.Output<string | undefined>;

The type of the array elements if type is set to "array".

property description

public description: pulumi.Output<string | undefined>;

The description of the user schema property.

property enums

public enums: pulumi.Output<string[] | undefined>;

Array of values a primitive property can be set to. See arrayEnum for arrays.

property externalName

public externalName: pulumi.Output<string | undefined>;

External name of the user schema property.

property id

id: Output<ID>;

id is the provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

property index

public index: pulumi.Output<string>;

The property name.

property master

public master: pulumi.Output<string | undefined>;

Master priority for the user schema property. It can be set to "PROFILE_MASTER" or "OKTA".

property maxLength

public maxLength: pulumi.Output<number | undefined>;

The maximum length of the user property value. Only applies to type "string".

property minLength

public minLength: pulumi.Output<number | undefined>;

The minimum length of the user property value. Only applies to type "string".

property oneOfs

public oneOfs: pulumi.Output<SchemaOneOf[] | undefined>;

Array of maps containing a mapping for display name to enum value.

property permissions

public permissions: pulumi.Output<string | undefined>;

Access control permissions for the property. It can be set to "READ_WRITE", "READ_ONLY", "HIDE".

property required

public required: pulumi.Output<boolean | undefined>;

Whether the property is required for this application’s users.

property scope

public scope: pulumi.Output<string | undefined>;

determines whether an app user attribute can be set at the Individual or Group Level.

property title

public title: pulumi.Output<string>;

display name for the enum value.

property type

public type: pulumi.Output<string>;

The type of the schema property. It can be "string", "boolean", "number", "integer", "array", or "object".

property urn

urn: Output<URN>;

urn is the stable logical URN used to distinctly address a resource, both before and after deployments.

Resource User

class User extends CustomResource

Creates an Okta User.

This resource allows you to create and configure an Okta User.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = new okta.user.User("example", {
    description: "My custom property name",
    index: "customPropertyName",
    master: "OKTA",
    scope: "SELF",
    title: "customPropertyName",
    type: "string",
});

constructor

new User(name: string, args: UserArgs, opts?: pulumi.CustomResourceOptions)

Create a User resource with the given unique name, arguments, and options.

  • name The unique name of the resource.
  • args The arguments to use to populate this resource's properties.
  • opts A bag of options that control this resource's behavior.

method get

public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: UserState, opts?: pulumi.CustomResourceOptions): User

Get an existing User resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

method getProvider

getProvider(moduleMember: string): ProviderResource | undefined

method isInstance

public static isInstance(obj: any): obj is User

Returns true if the given object is an instance of User. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.

property adminRoles

public adminRoles: pulumi.Output<string[] | undefined>;

Administrator roles assigned to User.

property city

public city: pulumi.Output<string | undefined>;

User profile property.

property costCenter

public costCenter: pulumi.Output<string | undefined>;

User profile property.

property countryCode

public countryCode: pulumi.Output<string | undefined>;

User profile property.

property customProfileAttributes

public customProfileAttributes: pulumi.Output<string | undefined>;

raw JSON containing all custom profile attributes.

property department

public department: pulumi.Output<string | undefined>;

User profile property.

property displayName

public displayName: pulumi.Output<string | undefined>;

User profile property.

property division

public division: pulumi.Output<string | undefined>;

User profile property.

property email

public email: pulumi.Output<string>;

User profile property.

property employeeNumber

public employeeNumber: pulumi.Output<string | undefined>;

User profile property.

property firstName

public firstName: pulumi.Output<string>;

User’s First Name, required by default.

property groupMemberships

public groupMemberships: pulumi.Output<string[] | undefined>;

User profile property.

property honorificPrefix

public honorificPrefix: pulumi.Output<string | undefined>;

User profile property.

property honorificSuffix

public honorificSuffix: pulumi.Output<string | undefined>;

User profile property.

property id

id: Output<ID>;

id is the provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

property lastName

public lastName: pulumi.Output<string>;

User’s Last Name, required by default.

property locale

public locale: pulumi.Output<string | undefined>;

User profile property.

property login

public login: pulumi.Output<string>;

User profile property.

property manager

public manager: pulumi.Output<string | undefined>;

User profile property.

property managerId

public managerId: pulumi.Output<string | undefined>;

User profile property.

property middleName

public middleName: pulumi.Output<string | undefined>;

User profile property.

property mobilePhone

public mobilePhone: pulumi.Output<string | undefined>;

User profile property.

property nickName

public nickName: pulumi.Output<string | undefined>;

User profile property.

property organization

public organization: pulumi.Output<string | undefined>;

User profile property.

property password

public password: pulumi.Output<string | undefined>;

User password.

property postalAddress

public postalAddress: pulumi.Output<string | undefined>;

User profile property.

property preferredLanguage

public preferredLanguage: pulumi.Output<string | undefined>;

User profile property.

property primaryPhone

public primaryPhone: pulumi.Output<string | undefined>;

User profile property.

property profileUrl

public profileUrl: pulumi.Output<string | undefined>;

User profile property.

property rawStatus

public rawStatus: pulumi.Output<string>;

The raw status of the User in Okta - (status is mapped)

property recoveryAnswer

public recoveryAnswer: pulumi.Output<string | undefined>;

User password recovery answer.

property recoveryQuestion

public recoveryQuestion: pulumi.Output<string | undefined>;

User password recovery question.

property secondEmail

public secondEmail: pulumi.Output<string | undefined>;

User profile property.

property state

public state: pulumi.Output<string | undefined>;

User profile property.

property status

public status: pulumi.Output<string | undefined>;

User profile property.

property streetAddress

public streetAddress: pulumi.Output<string | undefined>;

User profile property.

property timezone

public timezone: pulumi.Output<string | undefined>;

User profile property.

property title

public title: pulumi.Output<string | undefined>;

User profile property.

property urn

urn: Output<URN>;

urn is the stable logical URN used to distinctly address a resource, both before and after deployments.

property userType

public userType: pulumi.Output<string | undefined>;

User profile property.

property zipCode

public zipCode: pulumi.Output<string | undefined>;

User profile property.

Functions

Function getUser

getUser(args: GetUserArgs, opts?: pulumi.InvokeOptions): Promise<GetUserResult>

Use this data source to retrieve a users from Okta.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = pulumi.output(okta.user.getUser({
    searches: [
        {
            name: "profile.firstName",
            value: "John",
        },
        {
            name: "profile.lastName",
            value: "Doe",
        },
    ],
}, { async: true }));

Function getUserProfileMappingSource

getUserProfileMappingSource(opts?: pulumi.InvokeOptions): Promise<GetUserProfileMappingSourceResult>

Use this data source to retrieve the base user Profile Mapping source or target from Okta.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = pulumi.output(okta.user.getUserProfileMappingSource({ async: true }));

Function getUsers

getUsers(args: GetUsersArgs, opts?: pulumi.InvokeOptions): Promise<GetUsersResult>

Use this data source to retrieve a list of users from Okta.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";

const example = pulumi.output(okta.user.getUsers({
    searches: [{
        comparison: "sw",
        name: "profile.company",
        value: "Articulate",
    }],
}, { async: true }));

Others

interface BaseSchemaArgs

interface BaseSchemaArgs

The set of arguments for constructing a BaseSchema resource.

property index

index: pulumi.Input<string>;

The property name.

property master

master?: pulumi.Input<string>;

Master priority for the user schema property. It can be set to "PROFILE_MASTER" or "OKTA".

property permissions

permissions?: pulumi.Input<string>;

Access control permissions for the property. It can be set to "READ_WRITE", "READ_ONLY", "HIDE".

property required

required?: pulumi.Input<boolean>;

Whether the property is required for this application’s users.

property title

title: pulumi.Input<string>;

The property display name.

property type

type: pulumi.Input<string>;

The type of the schema property. It can be "string", "boolean", "number", "integer", "array", or "object".

interface BaseSchemaState

interface BaseSchemaState

Input properties used for looking up and filtering BaseSchema resources.

property index

index?: pulumi.Input<string>;

The property name.

property master

master?: pulumi.Input<string>;

Master priority for the user schema property. It can be set to "PROFILE_MASTER" or "OKTA".

property permissions

permissions?: pulumi.Input<string>;

Access control permissions for the property. It can be set to "READ_WRITE", "READ_ONLY", "HIDE".

property required

required?: pulumi.Input<boolean>;

Whether the property is required for this application’s users.

property title

title?: pulumi.Input<string>;

The property display name.

property type

type?: pulumi.Input<string>;

The type of the schema property. It can be "string", "boolean", "number", "integer", "array", or "object".

interface GetUserArgs

interface GetUserArgs

A collection of arguments for invoking getUser.

property searches

searches: GetUserSearch[];

Map of search criteria. It supports the following properties.

interface GetUserProfileMappingSourceResult

interface GetUserProfileMappingSourceResult

A collection of values returned by getUserProfileMappingSource.

property id

id: string;

The provider-assigned unique ID for this managed resource.

property name

name: string;

name of source.

property type

type: string;

type of source.

interface GetUserResult

interface GetUserResult

A collection of values returned by getUser.

property adminRoles

adminRoles: string[];

Administrator roles assigned to user.

property city

city: string;

user profile property.

property costCenter

costCenter: string;

user profile property.

property countryCode

countryCode: string;

user profile property.

property customProfileAttributes

customProfileAttributes: string;

raw JSON containing all custom profile attributes.

property department

department: string;

user profile property.

property displayName

displayName: string;

user profile property.

property division

division: string;

user profile property.

property email

email: string;

user profile property.

property employeeNumber

employeeNumber: string;

user profile property.

property firstName

firstName: string;

user profile property.

property groupMemberships

groupMemberships: string[];

user profile property.

property honorificPrefix

honorificPrefix: string;

user profile property.

property honorificSuffix

honorificSuffix: string;

user profile property.

property id

id: string;

The provider-assigned unique ID for this managed resource.

property lastName

lastName: string;

user profile property.

property locale

locale: string;

user profile property.

property login

login: string;

user profile property.

property manager

manager: string;

user profile property.

property managerId

managerId: string;

user profile property.

property middleName

middleName: string;

user profile property.

property mobilePhone

mobilePhone: string;

user profile property.

property nickName

nickName: string;

user profile property.

property organization

organization: string;

user profile property.

property postalAddress

postalAddress: string;

user profile property.

property preferredLanguage

preferredLanguage: string;

user profile property.

property primaryPhone

primaryPhone: string;

user profile property.

property profileUrl

profileUrl: string;

user profile property.

property searches

searches: GetUserSearch[];

property secondEmail

secondEmail: string;

user profile property.

property state

state: string;

user profile property.

property status

status: string;

user profile property.

property streetAddress

streetAddress: string;

user profile property.

property timezone

timezone: string;

user profile property.

property title

title: string;

user profile property.

property userType

userType: string;

user profile property.

property zipCode

zipCode: string;

user profile property.

interface GetUsersArgs

interface GetUsersArgs

A collection of arguments for invoking getUsers.

property searches

searches: GetUsersSearch[];

Map of search criteria to use to find users. It supports the following properties.

property users

users?: GetUsersUser[];

collection of users retrieved from Okta with the following properties.

interface GetUsersResult

interface GetUsersResult

A collection of values returned by getUsers.

property id

id: string;

The provider-assigned unique ID for this managed resource.

property searches

searches: GetUsersSearch[];

property users

users?: GetUsersUser[];

collection of users retrieved from Okta with the following properties.

interface SchemaArgs

interface SchemaArgs

The set of arguments for constructing a Schema resource.

property arrayEnums

arrayEnums?: pulumi.Input<pulumi.Input<string>[]>;

Array of values that an array property’s items can be set to.

property arrayOneOfs

arrayOneOfs?: pulumi.Input<pulumi.Input<SchemaArrayOneOf>[]>;

Display name and value an enum array can be set to.

property arrayType

arrayType?: pulumi.Input<string>;

The type of the array elements if type is set to "array".

property description

description?: pulumi.Input<string>;

The description of the user schema property.

property enums

enums?: pulumi.Input<pulumi.Input<string>[]>;

Array of values a primitive property can be set to. See arrayEnum for arrays.

property externalName

externalName?: pulumi.Input<string>;

External name of the user schema property.

property index

index: pulumi.Input<string>;

The property name.

property master

master?: pulumi.Input<string>;

Master priority for the user schema property. It can be set to "PROFILE_MASTER" or "OKTA".

property maxLength

maxLength?: pulumi.Input<number>;

The maximum length of the user property value. Only applies to type "string".

property minLength

minLength?: pulumi.Input<number>;

The minimum length of the user property value. Only applies to type "string".

property oneOfs

oneOfs?: pulumi.Input<pulumi.Input<SchemaOneOf>[]>;

Array of maps containing a mapping for display name to enum value.

property permissions

permissions?: pulumi.Input<string>;

Access control permissions for the property. It can be set to "READ_WRITE", "READ_ONLY", "HIDE".

property required

required?: pulumi.Input<boolean>;

Whether the property is required for this application’s users.

property scope

scope?: pulumi.Input<string>;

determines whether an app user attribute can be set at the Individual or Group Level.

property title

title: pulumi.Input<string>;

display name for the enum value.

property type

type: pulumi.Input<string>;

The type of the schema property. It can be "string", "boolean", "number", "integer", "array", or "object".

interface SchemaState

interface SchemaState

Input properties used for looking up and filtering Schema resources.

property arrayEnums

arrayEnums?: pulumi.Input<pulumi.Input<string>[]>;

Array of values that an array property’s items can be set to.

property arrayOneOfs

arrayOneOfs?: pulumi.Input<pulumi.Input<SchemaArrayOneOf>[]>;

Display name and value an enum array can be set to.

property arrayType

arrayType?: pulumi.Input<string>;

The type of the array elements if type is set to "array".

property description

description?: pulumi.Input<string>;

The description of the user schema property.

property enums

enums?: pulumi.Input<pulumi.Input<string>[]>;

Array of values a primitive property can be set to. See arrayEnum for arrays.

property externalName

externalName?: pulumi.Input<string>;

External name of the user schema property.

property index

index?: pulumi.Input<string>;

The property name.

property master

master?: pulumi.Input<string>;

Master priority for the user schema property. It can be set to "PROFILE_MASTER" or "OKTA".

property maxLength

maxLength?: pulumi.Input<number>;

The maximum length of the user property value. Only applies to type "string".

property minLength

minLength?: pulumi.Input<number>;

The minimum length of the user property value. Only applies to type "string".

property oneOfs

oneOfs?: pulumi.Input<pulumi.Input<SchemaOneOf>[]>;

Array of maps containing a mapping for display name to enum value.

property permissions

permissions?: pulumi.Input<string>;

Access control permissions for the property. It can be set to "READ_WRITE", "READ_ONLY", "HIDE".

property required

required?: pulumi.Input<boolean>;

Whether the property is required for this application’s users.

property scope

scope?: pulumi.Input<string>;

determines whether an app user attribute can be set at the Individual or Group Level.

property title

title?: pulumi.Input<string>;

display name for the enum value.

property type

type?: pulumi.Input<string>;

The type of the schema property. It can be "string", "boolean", "number", "integer", "array", or "object".

interface UserArgs

interface UserArgs

The set of arguments for constructing a User resource.

property adminRoles

adminRoles?: pulumi.Input<pulumi.Input<string>[]>;

Administrator roles assigned to User.

property city

city?: pulumi.Input<string>;

User profile property.

property costCenter

costCenter?: pulumi.Input<string>;

User profile property.

property countryCode

countryCode?: pulumi.Input<string>;

User profile property.

property customProfileAttributes

customProfileAttributes?: pulumi.Input<string>;

raw JSON containing all custom profile attributes.

property department

department?: pulumi.Input<string>;

User profile property.

property displayName

displayName?: pulumi.Input<string>;

User profile property.

property division

division?: pulumi.Input<string>;

User profile property.

property email

email: pulumi.Input<string>;

User profile property.

property employeeNumber

employeeNumber?: pulumi.Input<string>;

User profile property.

property firstName

firstName: pulumi.Input<string>;

User’s First Name, required by default.

property groupMemberships

groupMemberships?: pulumi.Input<pulumi.Input<string>[]>;

User profile property.

property honorificPrefix

honorificPrefix?: pulumi.Input<string>;

User profile property.

property honorificSuffix

honorificSuffix?: pulumi.Input<string>;

User profile property.

property lastName

lastName: pulumi.Input<string>;

User’s Last Name, required by default.

property locale

locale?: pulumi.Input<string>;

User profile property.

property login

login: pulumi.Input<string>;

User profile property.

property manager

manager?: pulumi.Input<string>;

User profile property.

property managerId

managerId?: pulumi.Input<string>;

User profile property.

property middleName

middleName?: pulumi.Input<string>;

User profile property.

property mobilePhone

mobilePhone?: pulumi.Input<string>;

User profile property.

property nickName

nickName?: pulumi.Input<string>;

User profile property.

property organization

organization?: pulumi.Input<string>;

User profile property.

property password

password?: pulumi.Input<string>;

User password.

property postalAddress

postalAddress?: pulumi.Input<string>;

User profile property.

property preferredLanguage

preferredLanguage?: pulumi.Input<string>;

User profile property.

property primaryPhone

primaryPhone?: pulumi.Input<string>;

User profile property.

property profileUrl

profileUrl?: pulumi.Input<string>;

User profile property.

property recoveryAnswer

recoveryAnswer?: pulumi.Input<string>;

User password recovery answer.

property recoveryQuestion

recoveryQuestion?: pulumi.Input<string>;

User password recovery question.

property secondEmail

secondEmail?: pulumi.Input<string>;

User profile property.

property state

state?: pulumi.Input<string>;

User profile property.

property status

status?: pulumi.Input<string>;

User profile property.

property streetAddress

streetAddress?: pulumi.Input<string>;

User profile property.

property timezone

timezone?: pulumi.Input<string>;

User profile property.

property title

title?: pulumi.Input<string>;

User profile property.

property userType

userType?: pulumi.Input<string>;

User profile property.

property zipCode

zipCode?: pulumi.Input<string>;

User profile property.

interface UserState

interface UserState

Input properties used for looking up and filtering User resources.

property adminRoles

adminRoles?: pulumi.Input<pulumi.Input<string>[]>;

Administrator roles assigned to User.

property city

city?: pulumi.Input<string>;

User profile property.

property costCenter

costCenter?: pulumi.Input<string>;

User profile property.

property countryCode

countryCode?: pulumi.Input<string>;

User profile property.

property customProfileAttributes

customProfileAttributes?: pulumi.Input<string>;

raw JSON containing all custom profile attributes.

property department

department?: pulumi.Input<string>;

User profile property.

property displayName

displayName?: pulumi.Input<string>;

User profile property.

property division

division?: pulumi.Input<string>;

User profile property.

property email

email?: pulumi.Input<string>;

User profile property.

property employeeNumber

employeeNumber?: pulumi.Input<string>;

User profile property.

property firstName

firstName?: pulumi.Input<string>;

User’s First Name, required by default.

property groupMemberships

groupMemberships?: pulumi.Input<pulumi.Input<string>[]>;

User profile property.

property honorificPrefix

honorificPrefix?: pulumi.Input<string>;

User profile property.

property honorificSuffix

honorificSuffix?: pulumi.Input<string>;

User profile property.

property lastName

lastName?: pulumi.Input<string>;

User’s Last Name, required by default.

property locale

locale?: pulumi.Input<string>;

User profile property.

property login

login?: pulumi.Input<string>;

User profile property.

property manager

manager?: pulumi.Input<string>;

User profile property.

property managerId

managerId?: pulumi.Input<string>;

User profile property.

property middleName

middleName?: pulumi.Input<string>;

User profile property.

property mobilePhone

mobilePhone?: pulumi.Input<string>;

User profile property.

property nickName

nickName?: pulumi.Input<string>;

User profile property.

property organization

organization?: pulumi.Input<string>;

User profile property.

property password

password?: pulumi.Input<string>;

User password.

property postalAddress

postalAddress?: pulumi.Input<string>;

User profile property.

property preferredLanguage

preferredLanguage?: pulumi.Input<string>;

User profile property.

property primaryPhone

primaryPhone?: pulumi.Input<string>;

User profile property.

property profileUrl

profileUrl?: pulumi.Input<string>;

User profile property.

property rawStatus

rawStatus?: pulumi.Input<string>;

The raw status of the User in Okta - (status is mapped)

property recoveryAnswer

recoveryAnswer?: pulumi.Input<string>;

User password recovery answer.

property recoveryQuestion

recoveryQuestion?: pulumi.Input<string>;

User password recovery question.

property secondEmail

secondEmail?: pulumi.Input<string>;

User profile property.

property state

state?: pulumi.Input<string>;

User profile property.

property status

status?: pulumi.Input<string>;

User profile property.

property streetAddress

streetAddress?: pulumi.Input<string>;

User profile property.

property timezone

timezone?: pulumi.Input<string>;

User profile property.

property title

title?: pulumi.Input<string>;

User profile property.

property userType

userType?: pulumi.Input<string>;

User profile property.

property zipCode

zipCode?: pulumi.Input<string>;

User profile property.