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.



7383
7384
7385
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7383

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)


7375
7376
7377
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7375

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)


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