Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfileFieldExtractionHints

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

Extraction hints (field-level).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1GraphProfileFieldExtractionHints

Returns a new instance of GoogleCloudDataplexV1GraphProfileFieldExtractionHints.



7578
7579
7580
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7578

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

Instance Attribute Details

#normalizationString

Output only. Standardizes extracted data (e.g., to ISO 3166-1 alpha-2). Corresponds to the JSON property normalization

Returns:

  • (String)


7570
7571
7572
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7570

def normalization
  @normalization
end

#synthesisString

Output only. Generates value from other data instead of direct extraction (e.g. , hashing). Corresponds to the JSON property synthesis

Returns:

  • (String)


7576
7577
7578
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7576

def synthesis
  @synthesis
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7583
7584
7585
7586
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7583

def update!(**args)
  @normalization = args[:normalization] if args.key?(:normalization)
  @synthesis = args[:synthesis] if args.key?(:synthesis)
end