Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfileFieldExtractionHints
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfileFieldExtractionHints
- 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
Extraction hints (field-level).
Instance Attribute Summary collapse
-
#normalization ⇒ String
Output only.
-
#synthesis ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1GraphProfileFieldExtractionHints
constructor
A new instance of GoogleCloudDataplexV1GraphProfileFieldExtractionHints.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1GraphProfileFieldExtractionHints
Returns a new instance of GoogleCloudDataplexV1GraphProfileFieldExtractionHints.
7383 7384 7385 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7383 def initialize(**args) update!(**args) end |
Instance Attribute Details
#normalization ⇒ String
Output only. Standardizes extracted data (e.g., to ISO 3166-1 alpha-2).
Corresponds to the JSON property normalization
7375 7376 7377 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7375 def normalization @normalization end |
#synthesis ⇒ String
Output only. Generates value from other data instead of direct extraction (e.g.
, hashing).
Corresponds to the JSON property synthesis
7381 7382 7383 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7381 def synthesis @synthesis end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7388 7389 7390 7391 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7388 def update!(**args) @normalization = args[:normalization] if args.key?(:normalization) @synthesis = args[:synthesis] if args.key?(:synthesis) end |