Namespace Pulumi.Okta.User
Classes
BaseSchema
Manages a User Base Schema property.
This resource allows you to configure a base user schema property.
Example Usage
using Pulumi;
using Okta = Pulumi.Okta;
class MyStack : Stack
{
public MyStack()
{
var example = new Okta.User.BaseSchema("example", new Okta.User.BaseSchemaArgs
{
Index = "customPropertyName",
Master = "OKTA",
Title = "customPropertyName",
Type = "string",
});
}
}
BaseSchemaArgs
BaseSchemaState
GetUser
GetUserArgs
GetUserProfileMappingSource
GetUserProfileMappingSourceResult
GetUserResult
GetUsers
GetUsersArgs
GetUsersResult
Schema
Creates a User Schema property.
This resource allows you to create and configure a custom user schema property.
Example Usage
using Pulumi;
using Okta = Pulumi.Okta;
class MyStack : Stack
{
public MyStack()
{
var example = new Okta.User.Schema("example", new Okta.User.SchemaArgs
{
Description = "My custom property name",
Index = "customPropertyName",
Master = "OKTA",
Scope = "SELF",
Title = "customPropertyName",
Type = "string",
});
}
}
SchemaArgs
SchemaState
User
Creates an Okta User.
This resource allows you to create and configure an Okta User.