Cloud Dataplex v1 API - Class DataScanEvent.Types.DataQualityResult (2.12.0)

public sealed class DataScanEvent.Types.DataQualityResult : IMessage<DataScanEvent.Types.DataQualityResult>, IEquatable<DataScanEvent.Types.DataQualityResult>, IDeepCloneable<DataScanEvent.Types.DataQualityResult>, IBufferMessage, IMessage

Reference documentation and code samples for the Cloud Dataplex v1 API class DataScanEvent.Types.DataQualityResult.

Data quality result for data scan job.

Inheritance

object > DataScanEvent.Types.DataQualityResult

Namespace

Google.Cloud.Dataplex.V1

Assembly

Google.Cloud.Dataplex.V1.dll

Constructors

DataQualityResult()

public DataQualityResult()

DataQualityResult(DataQualityResult)

public DataQualityResult(DataScanEvent.Types.DataQualityResult other)
Parameter
NameDescription
otherDataScanEventTypesDataQualityResult

Properties

ColumnScore

public MapField<string, float> ColumnScore { get; }

The score of each column scanned in the data scan job. The key of the map is the name of the column. The value is the data quality score for the column.

The score ranges between [0, 100] (up to two decimal points).

Property Value
TypeDescription
MapFieldstringfloat

DimensionPassed

public MapField<string, bool> DimensionPassed { get; }

The result of each dimension for data quality result. The key of the map is the name of the dimension. The value is the bool value depicting whether the dimension result was pass or not.

Property Value
TypeDescription
MapFieldstringbool

DimensionScore

public MapField<string, float> DimensionScore { get; }

The score of each dimension for data quality result. The key of the map is the name of the dimension. The value is the data quality score for the dimension.

The score ranges between [0, 100] (up to two decimal points).

Property Value
TypeDescription
MapFieldstringfloat

Passed

public bool Passed { get; set; }

Whether the data quality result was pass or not.

Property Value
TypeDescription
bool

RowCount

public long RowCount { get; set; }

The count of rows processed in the data scan job.

Property Value
TypeDescription
long

Score

public float Score { get; set; }

The table-level data quality score for the data scan job.

The data quality score ranges between [0, 100] (up to two decimal points).

Property Value
TypeDescription
float