Class 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",
});
}
}
Inherited Members
Namespace: Pulumi.Okta.User
Assembly: Pulumi.Okta.dll
Syntax
public class BaseSchema : CustomResource
Constructors
View SourceBaseSchema(String, BaseSchemaArgs, CustomResourceOptions)
Create a BaseSchema resource with the given unique name, arguments, and options.
Declaration
public BaseSchema(string name, BaseSchemaArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| BaseSchemaArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceIndex
The property name.
Declaration
public Output<string> Index { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Master
Master priority for the user schema property. It can be set to "PROFILE_MASTER" or "OKTA".
Declaration
public Output<string> Master { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Permissions
Access control permissions for the property. It can be set to "READ_WRITE", "READ_ONLY", "HIDE".
Declaration
public Output<string> Permissions { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Required
Whether the property is required for this application's users.
Declaration
public Output<bool?> Required { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Nullable<System.Boolean>> |
Title
The property display name.
Declaration
public Output<string> Title { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Type
The type of the schema property. It can be "string", "boolean", "number", "integer", "array", or "object".
Declaration
public Output<string> Type { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(String, Input<String>, BaseSchemaState, CustomResourceOptions)
Get an existing BaseSchema resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static BaseSchema Get(string name, Input<string> id, BaseSchemaState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Input<System.String> | id | The unique provider ID of the resource to lookup. |
| BaseSchemaState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| BaseSchema |