Class GooglePrivacyDlpV2AuxiliaryTable
An auxiliary table contains 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
Inherited Members
Namespace: Google.Apis.DLP.v2.Data
Assembly: Google.Apis.DLP.v2.dll
Syntax
public class GooglePrivacyDlpV2AuxiliaryTable : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
QuasiIds
Required. Quasi-identifier columns.
Declaration
[JsonProperty("quasiIds")]
public virtual IList<GooglePrivacyDlpV2QuasiIdField> QuasiIds { get; set; }
Property Value
Type | Description |
---|---|
IList<GooglePrivacyDlpV2QuasiIdField> |
RelativeFrequency
Required. The relative frequency column must contain a floating-point number between 0 and 1 (inclusive). Null values are assumed to be zero.
Declaration
[JsonProperty("relativeFrequency")]
public virtual GooglePrivacyDlpV2FieldId RelativeFrequency { get; set; }
Property Value
Type | Description |
---|---|
GooglePrivacyDlpV2FieldId |
Table
Required. Auxiliary table location.
Declaration
[JsonProperty("table")]
public virtual GooglePrivacyDlpV2BigQueryTable Table { get; set; }
Property Value
Type | Description |
---|---|
GooglePrivacyDlpV2BigQueryTable |