public sealed class StatisticalTable : IMessage<StatisticalTable>, IEquatable<StatisticalTable>, IDeepCloneable<StatisticalTable>, IBufferMessage, IMessage
An auxiliary table containing statistical information on the relative frequency of different quasi-identifiers values. It has one or several quasi-identifiers columns, and one column that indicates the relative frequency of each quasi-identifier tuple. If a tuple is present in the data but not in the auxiliary table, the corresponding relative frequency is assumed to be zero (and thus, the tuple is highly reidentifiable).
Implements
IMessage<StatisticalTable>, IEquatable<StatisticalTable>, IDeepCloneable<StatisticalTable>, IBufferMessage, IMessageNamespace
Google.Cloud.Dlp.V2Assembly
Google.Cloud.Dlp.V2.dll
Constructors
StatisticalTable()
public StatisticalTable()
StatisticalTable(StatisticalTable)
public StatisticalTable(StatisticalTable other)
Parameter | |
---|---|
Name | Description |
other | StatisticalTable |
Properties
QuasiIds
public RepeatedField<StatisticalTable.Types.QuasiIdentifierField> QuasiIds { get; }
Required. Quasi-identifier columns.
Property Value | |
---|---|
Type | Description |
RepeatedField<StatisticalTable.Types.QuasiIdentifierField> |
RelativeFrequency
public FieldId RelativeFrequency { get; set; }
Required. The relative frequency column must contain a floating-point number between 0 and 1 (inclusive). Null values are assumed to be zero.
Property Value | |
---|---|
Type | Description |
FieldId |
Table
public BigQueryTable Table { get; set; }
Required. Auxiliary table location.
Property Value | |
---|---|
Type | Description |
BigQueryTable |