Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpec
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpec
- 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
DataQualityScan related setting.
Instance Attribute Summary collapse
-
#catalog_publishing_enabled ⇒ Boolean
(also: #catalog_publishing_enabled?)
Optional.
-
#post_scan_actions ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions
The configuration of post scan actions of DataQualityScan.
-
#row_filter ⇒ String
Optional.
-
#rules ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRule>
Required.
-
#sampling_percent ⇒ Float
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualitySpec
constructor
A new instance of GoogleCloudDataplexV1DataQualitySpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualitySpec
Returns a new instance of GoogleCloudDataplexV1DataQualitySpec.
3190 3191 3192 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3190 def initialize(**args) update!(**args) end |
Instance Attribute Details
#catalog_publishing_enabled ⇒ Boolean Also known as: catalog_publishing_enabled?
Optional. If set, the latest DataScan job result will be published as Dataplex
Universal Catalog metadata.
Corresponds to the JSON property catalogPublishingEnabled
3160 3161 3162 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3160 def catalog_publishing_enabled @catalog_publishing_enabled end |
#post_scan_actions ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions
The configuration of post scan actions of DataQualityScan.
Corresponds to the JSON property postScanActions
3166 3167 3168 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3166 def post_scan_actions @post_scan_actions end |
#row_filter ⇒ String
Optional. A filter applied to all rows in a single DataScan job. The filter
needs to be a valid SQL expression for a WHERE clause in GoogleSQL syntax (
https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax#
where_clause).Example: col1 >= 0 AND col2 < 10
Corresponds to the JSON property rowFilter
3174 3175 3176 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3174 def row_filter @row_filter end |
#rules ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRule>
Required. The list of rules to evaluate against a data source. At least one
rule is required.
Corresponds to the JSON property rules
3180 3181 3182 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3180 def rules @rules end |
#sampling_percent ⇒ Float
Optional. The percentage of the records to be selected from the dataset for
DataScan. Value can range between 0.0 and 100.0 with up to 3 significant
decimal digits. Sampling is not applied if sampling_percent is not specified,
0 or 100.
Corresponds to the JSON property samplingPercent
3188 3189 3190 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3188 def sampling_percent @sampling_percent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3195 3196 3197 3198 3199 3200 3201 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3195 def update!(**args) @catalog_publishing_enabled = args[:catalog_publishing_enabled] if args.key?(:catalog_publishing_enabled) @post_scan_actions = args[:post_scan_actions] if args.key?(:post_scan_actions) @row_filter = args[:row_filter] if args.key?(:row_filter) @rules = args[:rules] if args.key?(:rules) @sampling_percent = args[:sampling_percent] if args.key?(:sampling_percent) end |