Class Value
Value
Implements
Inherited Members
Namespace: Pulumi.Esc.Sdk.Model
Assembly: Pulumi.Esc.Sdk.dll
Syntax
public class Value : IValidatableObject
Constructors
View SourceValue(Trace, Option<bool?>, Option<bool?>, object?)
Initializes a new instance of the Value class.
Declaration
[JsonConstructor]
public Value(Trace trace, Option<bool?> secret = default, Option<bool?> unknown = default, object? varValue = null)
Parameters
| Type | Name | Description |
|---|---|---|
| Trace | trace | trace |
| Option<bool?> | secret | secret |
| Option<bool?> | unknown | unknown |
| object | varValue | varValue |
Properties
View SourceSecret
Gets or Sets Secret
Declaration
[JsonPropertyName("secret")]
public bool? Secret { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Trace
Gets or Sets Trace
Declaration
[JsonPropertyName("trace")]
public Trace Trace { get; set; }
Property Value
| Type | Description |
|---|---|
| Trace |
Unknown
Gets or Sets Unknown
Declaration
[JsonPropertyName("unknown")]
public bool? Unknown { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
VarValue
Gets or Sets VarValue
Declaration
[JsonPropertyName("value")]
public object? VarValue { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
Methods
View SourceToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | String presentation of the object |