Skip to content

Class CellTrafficAutomationMaterializationResult

Namespace: Cephalon.Abstractions.Technologies
Assembly: Cephalon.Abstractions.dll

Describes one materialization result for a cell traffic automation answer.

public class CellTrafficAutomationMaterializationResult

objectCellTrafficAutomationMaterializationResult

CellTrafficAutomationProviderMaterializationResult

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()

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)

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.

Gets optional typed materialization conditions captured alongside the result.

public IReadOnlyList<CellTrafficAutomationMaterializationConditionDescriptor> Conditions { get; }

IReadOnlyList<CellTrafficAutomationMaterializationConditionDescriptor>

Gets the operator-facing error summary when the materialization failed.

public string? Error { get; }

string?

Gets optional runtime-facing metadata captured alongside the result.

public IReadOnlyDictionary<string, string> Metadata { get; }

IReadOnlyDictionary<string, string>

Gets the UTC timestamp when the result was observed.

public DateTimeOffset ObservedAtUtc { get; }

DateTimeOffset

Gets the stable materialization state.

public string State { get; }

string