Google Cloud Dataplex V1Data Profile Result Profile Field Profile Info Response
data class GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoResponse(val distinctRatio: Double, val doubleProfile: GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfoResponse, val integerProfile: GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfoResponse, val nullRatio: Double, val stringProfile: GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfoResponse, val topNValues: List<GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValueResponse>)
The profile information for each field type.
Constructors
Link copied to clipboard
constructor(distinctRatio: Double, doubleProfile: GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfoResponse, integerProfile: GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfoResponse, nullRatio: Double, stringProfile: GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfoResponse, topNValues: List<GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValueResponse>)
Properties
Link copied to clipboard
Ratio of rows with distinct values against total scanned rows. Not available for complex non-groupable field type RECORD and fields with REPEATABLE mode.
Link copied to clipboard
val doubleProfile: GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfoResponse
Double type field information.
Link copied to clipboard
val integerProfile: GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfoResponse
Integer type field information.
Link copied to clipboard
val stringProfile: GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfoResponse
String type field information.
Link copied to clipboard
val topNValues: List<GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValueResponse>
The list of top N non-null values and number of times 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 RECORD and fields with REPEATABLE mode.