Show / Hide Table of Contents

Class Value

Value

Inheritance
object
Value
Implements
IValidatableObject
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: Pulumi.Esc.Sdk.Model
Assembly: Pulumi.Esc.Sdk.dll
Syntax
public class Value : IValidatableObject

Constructors

View Source

Value(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 Source

Secret

Gets or Sets Secret

Declaration
[JsonPropertyName("secret")]
public bool? Secret { get; set; }
Property Value
Type Description
bool?
View Source

Trace

Gets or Sets Trace

Declaration
[JsonPropertyName("trace")]
public Trace Trace { get; set; }
Property Value
Type Description
Trace
View Source

Unknown

Gets or Sets Unknown

Declaration
[JsonPropertyName("unknown")]
public bool? Unknown { get; set; }
Property Value
Type Description
bool?
View Source

VarValue

Gets or Sets VarValue

Declaration
[JsonPropertyName("value")]
public object? VarValue { get; set; }
Property Value
Type Description
object

Methods

View Source

ToString()

Returns the string presentation of the object

Declaration
public override string ToString()
Returns
Type Description
string

String presentation of the object

Overrides
object.ToString()

Implements

IValidatableObject

Version 0.13.1

  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.