Class ModelEnvironment
ModelEnvironment
Implements
Inherited Members
Namespace: Pulumi.Esc.Sdk.Model
Assembly: Pulumi.Esc.Sdk.dll
Syntax
public class ModelEnvironment : IValidatableObject
Constructors
View SourceModelEnvironment(Option<EvaluatedExecutionContext?>, Option<Dictionary<string, Expr>?>, Option<Dictionary<string, Value>?>, Option<object?>)
Initializes a new instance of the ModelEnvironment class.
Declaration
[JsonConstructor]
public ModelEnvironment(Option<EvaluatedExecutionContext?> executionContext = default, Option<Dictionary<string, Expr>?> exprs = default, Option<Dictionary<string, Value>?> properties = default, Option<object?> schema = default)
Parameters
| Type | Name | Description |
|---|---|---|
| Option<EvaluatedExecutionContext> | executionContext | executionContext |
| Option<Dictionary<string, Expr>> | exprs | exprs |
| Option<Dictionary<string, Value>> | properties | properties |
| Option<object> | schema | schema |
Properties
View SourceExecutionContext
Gets or Sets ExecutionContext
Declaration
[JsonPropertyName("executionContext")]
public EvaluatedExecutionContext? ExecutionContext { get; set; }
Property Value
| Type | Description |
|---|---|
| EvaluatedExecutionContext |
Exprs
Gets or Sets Exprs
Declaration
[JsonPropertyName("exprs")]
public Dictionary<string, Expr>? Exprs { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<string, Expr> |
Properties
Gets or Sets Properties
Declaration
[JsonPropertyName("properties")]
public Dictionary<string, Value>? Properties { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<string, Value> |
Schema
Gets or Sets Schema
Declaration
[JsonPropertyName("schema")]
public object? Schema { 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 |