Class AzureSynapseAnalyticsSchema.HealthComponentProperty
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.pdw_health_component_properties (Transact-SQL)
Applies to: √ Analytics Platform System (PDW)
Stores properties that describe a device. Some properties show device status and some properties describe the device itself.
[Table(Schema = "sys", Name = "pdw_health_component_properties", IsView = true)]
public class AzureSynapseAnalyticsSchema.HealthComponentProperty
- Inheritance
-
AzureSynapseAnalyticsSchema.HealthComponentProperty
- Extension Methods
Properties
ComponentID
The ID of the component. See sys.pdw_health_components (Transact-SQL).
property_id and component_id form the key for this view.
Range: NOT NULL
[Column("component_id")]
[NotNull]
public int ComponentID { get; set; }
Property Value
IsKey
Determines whether the device instance is unique or not unique.
Range: NOT NULL
0 - Device instance is unique.
1 - Device instance is not unique.
[Column("is_key")]
[NotNull]
public bool IsKey { get; set; }
Property Value
PhysicalName
Property name as defined by the manufacturer.
Range: NOT NULL
[Column("physical_name")]
[NotNull]
public string PhysicalName { get; set; }
Property Value
PropertyID
Unique identifier of the property of a component.
property_id and component_id form the key for this view.
Range: NOT NULL
[Column("property_id")]
[NotNull]
public int PropertyID { get; set; }
Property Value
PropertyName
Name of the property.
Range: NOT NULL
[Column("property_name")]
[NotNull]
public string PropertyName { get; set; }