Show / Hide Table of Contents

Class RuleArgs

Inheritance
System.Object
Pulumi.InputArgs
Pulumi.ResourceArgs
RuleArgs
Inherited Members
Pulumi.ResourceArgs.Empty
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 sealed class RuleArgs : ResourceArgs

Constructors

View Source

RuleArgs()

Declaration
public RuleArgs()

Properties

View Source

Enabled

Boolean. Indicates whether the rule is enabled.

Declaration
public Input<bool> Enabled { get; set; }
Property Value
Type Description
Pulumi.Input<System.Boolean>
View Source

Name

String. Name of the rule. May only contain alphanumeric characters, spaces, and hyphens. May neither start nor end with hyphens or spaces.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

Order

Integer. Order in which the rule executes relative to other rules. Lower-valued rules execute first.

Declaration
public Input<int> Order { get; set; }
Property Value
Type Description
Pulumi.Input<System.Int32>
View Source

Script

String. Code to be executed when the rule runs.

Declaration
public Input<string> Script { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.