Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEvent
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEvent
- 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
These messages contain information about the execution of a datascan. The monitored resource is 'DataScan'
Instance Attribute Summary collapse
-
#data_profile ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult
Data profile result for data scan job.
-
#data_quality ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataQualityResult
Data quality result for data scan job.
-
#data_source ⇒ String
The data source of the data scan Corresponds to the JSON property
dataSource. -
#end_time ⇒ String
The time when the data scan job finished.
-
#job_id ⇒ String
The identifier of the specific data scan job this log entry is for.
-
#message ⇒ String
The message describing the data scan job event.
-
#scope ⇒ String
The scope of the data scan (e.g. full, incremental).
-
#spec_version ⇒ String
A version identifier of the spec which was used to execute this job.
-
#start_time ⇒ String
The time when the data scan job started to run.
-
#state ⇒ String
The status of the data scan job.
-
#trigger ⇒ String
The trigger type of the data scan job.
-
#type ⇒ String
The type of the data scan.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanEvent
constructor
A new instance of GoogleCloudDataplexV1DataScanEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanEvent
Returns a new instance of GoogleCloudDataplexV1DataScanEvent.
2132 2133 2134 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2132 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_profile ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileResult
Data profile result for data scan job.
Corresponds to the JSON property dataProfile
2075 2076 2077 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2075 def data_profile @data_profile end |
#data_quality ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataQualityResult
Data quality result for data scan job.
Corresponds to the JSON property dataQuality
2080 2081 2082 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2080 def data_quality @data_quality end |
#data_source ⇒ String
The data source of the data scan
Corresponds to the JSON property dataSource
2085 2086 2087 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2085 def data_source @data_source end |
#end_time ⇒ String
The time when the data scan job finished.
Corresponds to the JSON property endTime
2090 2091 2092 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2090 def end_time @end_time end |
#job_id ⇒ String
The identifier of the specific data scan job this log entry is for.
Corresponds to the JSON property jobId
2095 2096 2097 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2095 def job_id @job_id end |
#message ⇒ String
The message describing the data scan job event.
Corresponds to the JSON property message
2100 2101 2102 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2100 def @message end |
#scope ⇒ String
The scope of the data scan (e.g. full, incremental).
Corresponds to the JSON property scope
2105 2106 2107 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2105 def scope @scope end |
#spec_version ⇒ String
A version identifier of the spec which was used to execute this job.
Corresponds to the JSON property specVersion
2110 2111 2112 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2110 def spec_version @spec_version end |
#start_time ⇒ String
The time when the data scan job started to run.
Corresponds to the JSON property startTime
2115 2116 2117 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2115 def start_time @start_time end |
#state ⇒ String
The status of the data scan job.
Corresponds to the JSON property state
2120 2121 2122 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2120 def state @state end |
#trigger ⇒ String
The trigger type of the data scan job.
Corresponds to the JSON property trigger
2125 2126 2127 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2125 def trigger @trigger end |
#type ⇒ String
The type of the data scan.
Corresponds to the JSON property type
2130 2131 2132 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2130 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2137 def update!(**args) @data_profile = args[:data_profile] if args.key?(:data_profile) @data_quality = args[:data_quality] if args.key?(:data_quality) @data_source = args[:data_source] if args.key?(:data_source) @end_time = args[:end_time] if args.key?(:end_time) @job_id = args[:job_id] if args.key?(:job_id) @message = args[:message] if args.key?(:message) @scope = args[:scope] if args.key?(:scope) @spec_version = args[:spec_version] if args.key?(:spec_version) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) @trigger = args[:trigger] if args.key?(:trigger) @type = args[:type] if args.key?(:type) end |