Class GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfo
The profile information for each field type.
Implements
Inherited Members
Namespace: Google.Apis.CloudDataplex.v1.Data
Assembly: Google.Apis.CloudDataplex.v1.dll
Syntax
public class GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfo : IDirectResponseSchema
Properties
DistinctRatio
Ratio of rows with distinct values against total scanned rows. Not available for complex non-groupable field type, including RECORD, ARRAY, GEOGRAPHY, and JSON, as well as fields with REPEATABLE mode.
Declaration
[JsonProperty("distinctRatio")]
public virtual double? DistinctRatio { get; set; }
Property Value
Type | Description |
---|---|
double? |
DoubleProfile
Double type field information.
Declaration
[JsonProperty("doubleProfile")]
public virtual GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfo DoubleProfile { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfo |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
IntegerProfile
Integer type field information.
Declaration
[JsonProperty("integerProfile")]
public virtual GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo IntegerProfile { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo |
NullRatio
Ratio of rows with null value against total scanned rows.
Declaration
[JsonProperty("nullRatio")]
public virtual double? NullRatio { get; set; }
Property Value
Type | Description |
---|---|
double? |
StringProfile
String type field information.
Declaration
[JsonProperty("stringProfile")]
public virtual GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo StringProfile { get; set; }
Property Value
Type | Description |
---|---|
GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo |
TopNValues
The list of top N non-null values, frequency and ratio with which they occur in the scanned data. N is 10 or equal to the number of distinct values in the field, whichever is smaller. Not available for complex non-groupable field type, including RECORD, ARRAY, GEOGRAPHY, and JSON, as well as fields with REPEATABLE mode.
Declaration
[JsonProperty("topNValues")]
public virtual IList<GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue> TopNValues { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue> |