Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanExecutionSpec
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanExecutionSpec
- 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
-
#field ⇒ String
Immutable.
-
#trigger ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1Trigger
DataScan scheduling and trigger settings.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanExecutionSpec
constructor
A new instance of GoogleCloudDataplexV1DataScanExecutionSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanExecutionSpec
Returns a new instance of GoogleCloudDataplexV1DataScanExecutionSpec.
3383 3384 3385 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3383 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field ⇒ String
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
3376 3377 3378 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3376 def field @field end |
#trigger ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1Trigger
DataScan scheduling and trigger settings.
Corresponds to the JSON property trigger
3381 3382 3383 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3381 def trigger @trigger end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3388 3389 3390 3391 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3388 def update!(**args) @field = args[:field] if args.key?(:field) @trigger = args[:trigger] if args.key?(:trigger) end |