Show / Hide Table of Contents

Class RandomStringState

Inheritance
System.Object
InputArgs
ResourceArgs
RandomStringState
Inherited Members
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.Random
Assembly: Pulumi.Random.dll
Syntax
public sealed class RandomStringState : ResourceArgs

Constructors

View Source

RandomStringState()

Declaration
public RandomStringState()

Properties

View Source

Keepers

Arbitrary map of values that, when changed, will trigger a new id to be generated. See the main provider documentation for more information.

Declaration
public InputMap<object> Keepers { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

Length

The length of the string desired

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

Lower

(default true) Include lowercase alphabet characters in random string.

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

MinLower

(default 0) Minimum number of lowercase alphabet characters in random string.

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

MinNumeric

(default 0) Minimum number of numeric characters in random string.

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

MinSpecial

(default 0) Minimum number of special characters in random string.

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

MinUpper

(default 0) Minimum number of uppercase alphabet characters in random string.

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

Number

(default true) Include numeric characters in random string.

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

OverrideSpecial

Supply your own list of special characters to use for string generation. This overrides the default character list in the special argument. The special argument must still be set to true for any overwritten characters to be used in generation.

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

Result

Random string generated.

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

Special

(default true) Include special characters in random string. These are !@#$%&amp;*()-_=+[]{}&lt;>:?

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

Upper

(default true) Include uppercase alphabet characters in random string.

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