Class CellTrafficAutomationMaterializationResult
Namespace: Cephalon.Abstractions.Technologies
Assembly: Cephalon.Abstractions.dll
Describes one materialization result for a cell traffic automation answer.
public class CellTrafficAutomationMaterializationResultInheritance
Section titled “Inheritance”object ← CellTrafficAutomationMaterializationResult
Derived
Section titled “Derived”CellTrafficAutomationProviderMaterializationResult
Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
Section titled “Constructors”CellTrafficAutomationMaterializationResult(string, DateTimeOffset, string?, IReadOnlyDictionary<string, string>?, IReadOnlyList<CellTrafficAutomationMaterializationConditionDescriptor>?)
Section titled “ CellTrafficAutomationMaterializationResult(string, DateTimeOffset, string?, IReadOnlyDictionary<string, string>?, IReadOnlyList<CellTrafficAutomationMaterializationConditionDescriptor>?)”Creates a materialization result.
public CellTrafficAutomationMaterializationResult(string state, DateTimeOffset observedAtUtc, string? error = null, IReadOnlyDictionary<string, string>? metadata = null, IReadOnlyList<CellTrafficAutomationMaterializationConditionDescriptor>? conditions = null)Parameters
Section titled “Parameters”state string
The stable materialization state, such as applied or failed.
observedAtUtc DateTimeOffset
The UTC timestamp when the result was observed.
error string?
The operator-facing error summary when the materialization failed.
metadata IReadOnlyDictionary<string, string>?
Optional runtime-facing metadata captured alongside the result.
conditions IReadOnlyList<CellTrafficAutomationMaterializationConditionDescriptor>?
Optional typed materialization conditions captured alongside the result.
Properties
Section titled “Properties”Conditions
Section titled “ Conditions”Gets optional typed materialization conditions captured alongside the result.
public IReadOnlyList<CellTrafficAutomationMaterializationConditionDescriptor> Conditions { get; }Property Value
Section titled “Property Value”IReadOnlyList<CellTrafficAutomationMaterializationConditionDescriptor>
Gets the operator-facing error summary when the materialization failed.
public string? Error { get; }Property Value
Section titled “Property Value”Metadata
Section titled “ Metadata”Gets optional runtime-facing metadata captured alongside the result.
public IReadOnlyDictionary<string, string> Metadata { get; }Property Value
Section titled “Property Value”IReadOnlyDictionary<string, string>
ObservedAtUtc
Section titled “ ObservedAtUtc”Gets the UTC timestamp when the result was observed.
public DateTimeOffset ObservedAtUtc { get; }Property Value
Section titled “Property Value”Gets the stable materialization state.
public string State { get; }