Class Prompt
With this resource, you can manage your Auth0 prompts, including choosing the login experience version.
Example Usage
using Pulumi;
using Auth0 = Pulumi.Auth0;
class MyStack : Stack
{
public MyStack()
{
var example = new Auth0.Prompt("example", new Auth0.PromptArgs
{
UniversalLoginExperience = "classic",
});
}
}
Inheritance
System.Object
Pulumi.Resource
Pulumi.CustomResource
Prompt
Inherited Members
Pulumi.CustomResource.Id
Pulumi.Resource.GetResourceType()
Pulumi.Resource.GetResourceName()
Pulumi.Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Auth0
Assembly: Pulumi.Auth0.dll
Syntax
public class Prompt : CustomResource
Constructors
View SourcePrompt(String, PromptArgs, CustomResourceOptions)
Create a Prompt resource with the given unique name, arguments, and options.
Declaration
public Prompt(string name, PromptArgs args = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| PromptArgs | args | The arguments used to populate this resource's properties |
| Pulumi.CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceUniversalLoginExperience
Declaration
public Output<string> UniversalLoginExperience { get; }
Property Value
| Type | Description |
|---|---|
| Pulumi.Output<System.String> |
Methods
View SourceGet(String, Input<String>, PromptState, CustomResourceOptions)
Get an existing Prompt resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static Prompt Get(string name, Input<string> id, PromptState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Pulumi.Input<System.String> | id | The unique provider ID of the resource to lookup. |
| PromptState | state | Any extra arguments used during the lookup. |
| Pulumi.CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| Prompt |