okta.AppUserBaseSchemaProperty
Explore with Pulumi AI
Manages an Application User Base Schema property. This resource allows you to configure a base app user schema property.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const example = new okta.AppUserBaseSchemaProperty("example", {
appId: "<app id>",
index: "customPropertyName",
title: "customPropertyName",
type: "string",
master: "OKTA",
});
import pulumi
import pulumi_okta as okta
example = okta.AppUserBaseSchemaProperty("example",
app_id="<app id>",
index="customPropertyName",
title="customPropertyName",
type="string",
master="OKTA")
package main
import (
"github.com/pulumi/pulumi-okta/sdk/v4/go/okta"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := okta.NewAppUserBaseSchemaProperty(ctx, "example", &okta.AppUserBaseSchemaPropertyArgs{
AppId: pulumi.String("<app id>"),
Index: pulumi.String("customPropertyName"),
Title: pulumi.String("customPropertyName"),
Type: pulumi.String("string"),
Master: pulumi.String("OKTA"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Okta = Pulumi.Okta;
return await Deployment.RunAsync(() =>
{
var example = new Okta.AppUserBaseSchemaProperty("example", new()
{
AppId = "<app id>",
Index = "customPropertyName",
Title = "customPropertyName",
Type = "string",
Master = "OKTA",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.okta.AppUserBaseSchemaProperty;
import com.pulumi.okta.AppUserBaseSchemaPropertyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new AppUserBaseSchemaProperty("example", AppUserBaseSchemaPropertyArgs.builder()
.appId("<app id>")
.index("customPropertyName")
.title("customPropertyName")
.type("string")
.master("OKTA")
.build());
}
}
resources:
example:
type: okta:AppUserBaseSchemaProperty
properties:
appId: <app id>
index: customPropertyName
title: customPropertyName
type: string
master: OKTA
Create AppUserBaseSchemaProperty Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppUserBaseSchemaProperty(name: string, args: AppUserBaseSchemaPropertyArgs, opts?: CustomResourceOptions);
@overload
def AppUserBaseSchemaProperty(resource_name: str,
args: AppUserBaseSchemaPropertyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AppUserBaseSchemaProperty(resource_name: str,
opts: Optional[ResourceOptions] = None,
app_id: Optional[str] = None,
index: Optional[str] = None,
title: Optional[str] = None,
type: Optional[str] = None,
master: Optional[str] = None,
pattern: Optional[str] = None,
permissions: Optional[str] = None,
required: Optional[bool] = None,
user_type: Optional[str] = None)
func NewAppUserBaseSchemaProperty(ctx *Context, name string, args AppUserBaseSchemaPropertyArgs, opts ...ResourceOption) (*AppUserBaseSchemaProperty, error)
public AppUserBaseSchemaProperty(string name, AppUserBaseSchemaPropertyArgs args, CustomResourceOptions? opts = null)
public AppUserBaseSchemaProperty(String name, AppUserBaseSchemaPropertyArgs args)
public AppUserBaseSchemaProperty(String name, AppUserBaseSchemaPropertyArgs args, CustomResourceOptions options)
type: okta:AppUserBaseSchemaProperty
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 AppUserBaseSchemaPropertyArgs
- 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 AppUserBaseSchemaPropertyArgs
- 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 AppUserBaseSchemaPropertyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppUserBaseSchemaPropertyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppUserBaseSchemaPropertyArgs
- 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 appUserBaseSchemaPropertyResource = new Okta.AppUserBaseSchemaProperty("appUserBaseSchemaPropertyResource", new()
{
AppId = "string",
Index = "string",
Title = "string",
Type = "string",
Master = "string",
Pattern = "string",
Permissions = "string",
Required = false,
UserType = "string",
});
example, err := okta.NewAppUserBaseSchemaProperty(ctx, "appUserBaseSchemaPropertyResource", &okta.AppUserBaseSchemaPropertyArgs{
AppId: pulumi.String("string"),
Index: pulumi.String("string"),
Title: pulumi.String("string"),
Type: pulumi.String("string"),
Master: pulumi.String("string"),
Pattern: pulumi.String("string"),
Permissions: pulumi.String("string"),
Required: pulumi.Bool(false),
UserType: pulumi.String("string"),
})
var appUserBaseSchemaPropertyResource = new AppUserBaseSchemaProperty("appUserBaseSchemaPropertyResource", AppUserBaseSchemaPropertyArgs.builder()
.appId("string")
.index("string")
.title("string")
.type("string")
.master("string")
.pattern("string")
.permissions("string")
.required(false)
.userType("string")
.build());
app_user_base_schema_property_resource = okta.AppUserBaseSchemaProperty("appUserBaseSchemaPropertyResource",
app_id="string",
index="string",
title="string",
type="string",
master="string",
pattern="string",
permissions="string",
required=False,
user_type="string")
const appUserBaseSchemaPropertyResource = new okta.AppUserBaseSchemaProperty("appUserBaseSchemaPropertyResource", {
appId: "string",
index: "string",
title: "string",
type: "string",
master: "string",
pattern: "string",
permissions: "string",
required: false,
userType: "string",
});
type: okta:AppUserBaseSchemaProperty
properties:
appId: string
index: string
master: string
pattern: string
permissions: string
required: false
title: string
type: string
userType: string
AppUserBaseSchemaProperty 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 AppUserBaseSchemaProperty resource accepts the following input properties:
- App
Id string - The Application's ID the user schema property should be assigned to.
- Index string
- Subschema unique string identifier
- Title string
- Subschema title (display name)
- Type string
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- Master string
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- Pattern string
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- Permissions string
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- Required bool
- Whether the subschema is required
- User
Type string - User type ID. By default, it is
default
- App
Id string - The Application's ID the user schema property should be assigned to.
- Index string
- Subschema unique string identifier
- Title string
- Subschema title (display name)
- Type string
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- Master string
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- Pattern string
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- Permissions string
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- Required bool
- Whether the subschema is required
- User
Type string - User type ID. By default, it is
default
- app
Id String - The Application's ID the user schema property should be assigned to.
- index String
- Subschema unique string identifier
- title String
- Subschema title (display name)
- type String
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- master String
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- pattern String
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- permissions String
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- required Boolean
- Whether the subschema is required
- user
Type String - User type ID. By default, it is
default
- app
Id string - The Application's ID the user schema property should be assigned to.
- index string
- Subschema unique string identifier
- title string
- Subschema title (display name)
- type string
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- master string
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- pattern string
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- permissions string
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- required boolean
- Whether the subschema is required
- user
Type string - User type ID. By default, it is
default
- app_
id str - The Application's ID the user schema property should be assigned to.
- index str
- Subschema unique string identifier
- title str
- Subschema title (display name)
- type str
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- master str
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- pattern str
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- permissions str
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- required bool
- Whether the subschema is required
- user_
type str - User type ID. By default, it is
default
- app
Id String - The Application's ID the user schema property should be assigned to.
- index String
- Subschema unique string identifier
- title String
- Subschema title (display name)
- type String
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- master String
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- pattern String
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- permissions String
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- required Boolean
- Whether the subschema is required
- user
Type String - User type ID. By default, it is
default
Outputs
All input properties are implicitly available as output properties. Additionally, the AppUserBaseSchemaProperty resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AppUserBaseSchemaProperty Resource
Get an existing AppUserBaseSchemaProperty 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?: AppUserBaseSchemaPropertyState, opts?: CustomResourceOptions): AppUserBaseSchemaProperty
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
app_id: Optional[str] = None,
index: Optional[str] = None,
master: Optional[str] = None,
pattern: Optional[str] = None,
permissions: Optional[str] = None,
required: Optional[bool] = None,
title: Optional[str] = None,
type: Optional[str] = None,
user_type: Optional[str] = None) -> AppUserBaseSchemaProperty
func GetAppUserBaseSchemaProperty(ctx *Context, name string, id IDInput, state *AppUserBaseSchemaPropertyState, opts ...ResourceOption) (*AppUserBaseSchemaProperty, error)
public static AppUserBaseSchemaProperty Get(string name, Input<string> id, AppUserBaseSchemaPropertyState? state, CustomResourceOptions? opts = null)
public static AppUserBaseSchemaProperty get(String name, Output<String> id, AppUserBaseSchemaPropertyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- App
Id string - The Application's ID the user schema property should be assigned to.
- Index string
- Subschema unique string identifier
- Master string
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- Pattern string
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- Permissions string
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- Required bool
- Whether the subschema is required
- Title string
- Subschema title (display name)
- Type string
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- User
Type string - User type ID. By default, it is
default
- App
Id string - The Application's ID the user schema property should be assigned to.
- Index string
- Subschema unique string identifier
- Master string
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- Pattern string
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- Permissions string
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- Required bool
- Whether the subschema is required
- Title string
- Subschema title (display name)
- Type string
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- User
Type string - User type ID. By default, it is
default
- app
Id String - The Application's ID the user schema property should be assigned to.
- index String
- Subschema unique string identifier
- master String
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- pattern String
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- permissions String
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- required Boolean
- Whether the subschema is required
- title String
- Subschema title (display name)
- type String
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- user
Type String - User type ID. By default, it is
default
- app
Id string - The Application's ID the user schema property should be assigned to.
- index string
- Subschema unique string identifier
- master string
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- pattern string
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- permissions string
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- required boolean
- Whether the subschema is required
- title string
- Subschema title (display name)
- type string
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- user
Type string - User type ID. By default, it is
default
- app_
id str - The Application's ID the user schema property should be assigned to.
- index str
- Subschema unique string identifier
- master str
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- pattern str
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- permissions str
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- required bool
- Whether the subschema is required
- title str
- Subschema title (display name)
- type str
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- user_
type str - User type ID. By default, it is
default
- app
Id String - The Application's ID the user schema property should be assigned to.
- index String
- Subschema unique string identifier
- master String
- Master priority for the user schema property. It can be set to
PROFILE_MASTER
orOKTA
. Default:PROFILE_MASTER
- pattern String
- The validation pattern to use for the subschema. Must be in form of '.+', or '[\n\n]+' if present.'
- permissions String
- Access control permissions for the property. It can be set to
READ_WRITE
,READ_ONLY
,HIDE
. Default:READ_ONLY
- required Boolean
- Whether the subschema is required
- title String
- Subschema title (display name)
- type String
- The type of the schema property. It can be
string
,boolean
,number
,integer
,array
, orobject
- user
Type String - User type ID. By default, it is
default
Import
$ pulumi import okta:index/appUserBaseSchemaProperty:AppUserBaseSchemaProperty example <app_id>/<property_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Okta pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
okta
Terraform Provider.