Class AssetStatus
- Assembly
- Azure.Iot.Operations.Services.dll
public class AssetStatus
- Inheritance
-
AssetStatus
- Inherited Members
Properties
Config
The configuration status of the asset.
[JsonPropertyName("config")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public ConfigStatus? Config { get; set; }
Property Value
Datasets
Array of dataset statuses that describe the status of each dataset.
[JsonPropertyName("datasets")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public List<AssetDatasetEventStreamStatus>? Datasets { get; set; }
Property Value
Events
Array of event statuses that describe the status of each event.
[JsonPropertyName("events")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public List<AssetDatasetEventStreamStatus>? Events { get; set; }
Property Value
ManagementGroups
Array of management group statuses that describe the status of each management group.
[JsonPropertyName("managementGroups")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public List<AssetManagementGroupStatusSchemaElementSchema>? ManagementGroups { get; set; }
Property Value
Streams
Array of stream statuses that describe the status of each stream.
[JsonPropertyName("streams")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public List<AssetDatasetEventStreamStatus>? Streams { get; set; }