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.



7623
7624
7625
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7623

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)


7615
7616
7617
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7615

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)


7621
7622
7623
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7621

def synthesis
  @synthesis
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7628
7629
7630
7631
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7628

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