Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb

Overview

DataProfileResult defines the output of DataProfileScan. Each field of the table will have field type specific profile result.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataProfileResult

Returns a new instance of GoogleCloudDataplexV1DataProfileResult.



1175
1176
1177
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1175

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#profileGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfile

Contains name, type, mode and field type specific profile information. Corresponds to the JSON property profile



1163
1164
1165
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1163

def profile
  @profile
end

#row_countFixnum

The count of rows scanned. Corresponds to the JSON property rowCount

Returns:

  • (Fixnum)


1168
1169
1170
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1168

def row_count
  @row_count
end

#scanned_dataGoogle::Apis::DataplexV1::GoogleCloudDataplexV1ScannedData

The data scanned during processing (e.g. in incremental DataScan) Corresponds to the JSON property scannedData



1173
1174
1175
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1173

def scanned_data
  @scanned_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1180
1181
1182
1183
1184
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1180

def update!(**args)
  @profile = args[:profile] if args.key?(:profile)
  @row_count = args[:row_count] if args.key?(:row_count)
  @scanned_data = args[:scanned_data] if args.key?(:scanned_data)
end