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.



1952
1953
1954
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1952

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

Instance Attribute Details

#fieldString

Immutable. The unnested field (Date or Timestamp) that contains values that monotonically increase over time. Corresponds to the JSON property field

Returns:

  • (String)


1945
1946
1947
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1945

def field
  @field
end

#triggerGoogle::Apis::DataplexV1::GoogleCloudDataplexV1Trigger

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



1950
1951
1952
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1950

def trigger
  @trigger
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1957
1958
1959
1960
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1957

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