Class RandomIntegerArgs
Inherited Members
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 RandomIntegerArgs : ResourceArgs
Constructors
View SourceRandomIntegerArgs()
Declaration
public RandomIntegerArgs()
Properties
View SourceKeepers
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> |
Max
The maximum inclusive value of the range.
Declaration
public Input<int> Max { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Min
The minimum inclusive value of the range.
Declaration
public Input<int> Min { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Seed
A custom seed to always produce the same value.
Declaration
public Input<string> Seed { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |