Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanExecutionSpec

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

DataScan execution settings.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanExecutionSpec

Returns a new instance of GoogleCloudDataplexV1DataScanExecutionSpec.



3803
3804
3805
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3803

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

Instance Attribute Details

#fieldString

Immutable. The unnested field (of type Date or Timestamp) that contains values which monotonically increase over time.If not specified, a data scan will run for all data in the table. Corresponds to the JSON property field

Returns:

  • (String)


3796
3797
3798
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3796

def field
  @field
end

#triggerGoogle::Apis::DataplexV1::GoogleCloudDataplexV1Trigger

DataScan scheduling and trigger settings. Corresponds to the JSON property trigger



3801
3802
3803
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3801

def trigger
  @trigger
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3808
3809
3810
3811
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3808

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