google-apis-dataplex_v1 0.49.0 → 0.50.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ac43533df9c0c43e212f43080d0517ce0543f311c27b4350bfb6933b2e0c7ecc
4
- data.tar.gz: c2962c3ccede44b6dfb4b8978433c979c742babf9930778edcc4724f7d5038a8
3
+ metadata.gz: f3029e4ed0e900f947e96a10430b1026a614d8f38ce9fedf45db2b60e218b0ea
4
+ data.tar.gz: b9a456a1044ae53f17d391f41bb4cf488a6ac95beb562d7e252b10aaec7d175d
5
5
  SHA512:
6
- metadata.gz: 2184e9881ad34041f131e3dd0d183b1a6cc13fa43fd50c06f194443dffcfb8f0aa1781c414e1fb279c4d153ba234f63f89bc29334ef44d0e4907d0e39bb27a79
7
- data.tar.gz: cb1eac7e41545eae046f2e8bbb458459f8a3a68f46e8ff6e65348e229d2bdca5a54c891e9327468646f34aa9c572ce87c3902b32ec0daf4545f65af26ec7b987
6
+ metadata.gz: b772ab65228e3ff3fbae87d8cb56eb37e9fc07dff093388babfa1bf26e73ab9894c0b096d8c840fd6322e15592632babf3824a3a410759a081e4c02d848f9ad3
7
+ data.tar.gz: 11bbd109f42870a2bc5a7b44f8ec6e22b1051ac43f084e9b8e34568a7a3c2394bbdd65c8cd6a8311ec475792bfcf765dc7d8fdb28d69059b8f64b321cd18aece
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.50.0 (2024-03-10)
4
+
5
+ * Regenerated from discovery document revision 20240304
6
+
3
7
  ### v0.49.0 (2024-02-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20240214
@@ -2349,6 +2349,11 @@ module Google
2349
2349
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport]
2350
2350
  attr_accessor :bigquery_export
2351
2351
 
2352
+ # The configuration of notification report post scan action.
2353
+ # Corresponds to the JSON property `notificationReport`
2354
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport]
2355
+ attr_accessor :notification_report
2356
+
2352
2357
  def initialize(**args)
2353
2358
  update!(**args)
2354
2359
  end
@@ -2356,6 +2361,7 @@ module Google
2356
2361
  # Update properties of this object
2357
2362
  def update!(**args)
2358
2363
  @bigquery_export = args[:bigquery_export] if args.key?(:bigquery_export)
2364
+ @notification_report = args[:notification_report] if args.key?(:notification_report)
2359
2365
  end
2360
2366
  end
2361
2367
 
@@ -2380,6 +2386,116 @@ module Google
2380
2386
  end
2381
2387
  end
2382
2388
 
2389
+ # This trigger is triggered whenever a scan job run ends, regardless of the
2390
+ # result.
2391
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobEndTrigger
2392
+ include Google::Apis::Core::Hashable
2393
+
2394
+ def initialize(**args)
2395
+ update!(**args)
2396
+ end
2397
+
2398
+ # Update properties of this object
2399
+ def update!(**args)
2400
+ end
2401
+ end
2402
+
2403
+ # This trigger is triggered when the scan job itself fails, regardless of the
2404
+ # result.
2405
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobFailureTrigger
2406
+ include Google::Apis::Core::Hashable
2407
+
2408
+ def initialize(**args)
2409
+ update!(**args)
2410
+ end
2411
+
2412
+ # Update properties of this object
2413
+ def update!(**args)
2414
+ end
2415
+ end
2416
+
2417
+ # The configuration of notification report post scan action.
2418
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport
2419
+ include Google::Apis::Core::Hashable
2420
+
2421
+ # This trigger is triggered whenever a scan job run ends, regardless of the
2422
+ # result.
2423
+ # Corresponds to the JSON property `jobEndTrigger`
2424
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobEndTrigger]
2425
+ attr_accessor :job_end_trigger
2426
+
2427
+ # This trigger is triggered when the scan job itself fails, regardless of the
2428
+ # result.
2429
+ # Corresponds to the JSON property `jobFailureTrigger`
2430
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobFailureTrigger]
2431
+ attr_accessor :job_failure_trigger
2432
+
2433
+ # The individuals or groups who are designated to receive notifications upon
2434
+ # triggers.
2435
+ # Corresponds to the JSON property `recipients`
2436
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsRecipients]
2437
+ attr_accessor :recipients
2438
+
2439
+ # This trigger is triggered when the DQ score in the job result is less than a
2440
+ # specified input score.
2441
+ # Corresponds to the JSON property `scoreThresholdTrigger`
2442
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsScoreThresholdTrigger]
2443
+ attr_accessor :score_threshold_trigger
2444
+
2445
+ def initialize(**args)
2446
+ update!(**args)
2447
+ end
2448
+
2449
+ # Update properties of this object
2450
+ def update!(**args)
2451
+ @job_end_trigger = args[:job_end_trigger] if args.key?(:job_end_trigger)
2452
+ @job_failure_trigger = args[:job_failure_trigger] if args.key?(:job_failure_trigger)
2453
+ @recipients = args[:recipients] if args.key?(:recipients)
2454
+ @score_threshold_trigger = args[:score_threshold_trigger] if args.key?(:score_threshold_trigger)
2455
+ end
2456
+ end
2457
+
2458
+ # The individuals or groups who are designated to receive notifications upon
2459
+ # triggers.
2460
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsRecipients
2461
+ include Google::Apis::Core::Hashable
2462
+
2463
+ # Optional. The email recipients who will receive the DataQualityScan results
2464
+ # report.
2465
+ # Corresponds to the JSON property `emails`
2466
+ # @return [Array<String>]
2467
+ attr_accessor :emails
2468
+
2469
+ def initialize(**args)
2470
+ update!(**args)
2471
+ end
2472
+
2473
+ # Update properties of this object
2474
+ def update!(**args)
2475
+ @emails = args[:emails] if args.key?(:emails)
2476
+ end
2477
+ end
2478
+
2479
+ # This trigger is triggered when the DQ score in the job result is less than a
2480
+ # specified input score.
2481
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsScoreThresholdTrigger
2482
+ include Google::Apis::Core::Hashable
2483
+
2484
+ # Optional. The score range is in 0,100.
2485
+ # Corresponds to the JSON property `scoreThreshold`
2486
+ # @return [Float]
2487
+ attr_accessor :score_threshold
2488
+
2489
+ def initialize(**args)
2490
+ update!(**args)
2491
+ end
2492
+
2493
+ # Update properties of this object
2494
+ def update!(**args)
2495
+ @score_threshold = args[:score_threshold] if args.key?(:score_threshold)
2496
+ end
2497
+ end
2498
+
2383
2499
  # Represents a user-visible job which provides the insights for the related data
2384
2500
  # source.For example: Data Quality: generates queries based on the rules and
2385
2501
  # runs against the data to get data quality check results. Data Profile:
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataplexV1
18
18
  # Version of the google-apis-dataplex_v1 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.50.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240214"
25
+ REVISION = "20240304"
26
26
  end
27
27
  end
28
28
  end
@@ -394,6 +394,36 @@ module Google
394
394
  include Google::Apis::Core::JsonObjectSupport
395
395
  end
396
396
 
397
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobEndTrigger
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
403
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobFailureTrigger
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
409
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
415
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsRecipients
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
421
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsScoreThresholdTrigger
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
397
427
  class GoogleCloudDataplexV1DataScan
398
428
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
429
 
@@ -1651,6 +1681,8 @@ module Google
1651
1681
  class Representation < Google::Apis::Core::JsonRepresentation
1652
1682
  property :bigquery_export, as: 'bigqueryExport', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport::Representation
1653
1683
 
1684
+ property :notification_report, as: 'notificationReport', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport::Representation
1685
+
1654
1686
  end
1655
1687
  end
1656
1688
 
@@ -1661,6 +1693,46 @@ module Google
1661
1693
  end
1662
1694
  end
1663
1695
 
1696
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobEndTrigger
1697
+ # @private
1698
+ class Representation < Google::Apis::Core::JsonRepresentation
1699
+ end
1700
+ end
1701
+
1702
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobFailureTrigger
1703
+ # @private
1704
+ class Representation < Google::Apis::Core::JsonRepresentation
1705
+ end
1706
+ end
1707
+
1708
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport
1709
+ # @private
1710
+ class Representation < Google::Apis::Core::JsonRepresentation
1711
+ property :job_end_trigger, as: 'jobEndTrigger', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobEndTrigger, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobEndTrigger::Representation
1712
+
1713
+ property :job_failure_trigger, as: 'jobFailureTrigger', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobFailureTrigger, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobFailureTrigger::Representation
1714
+
1715
+ property :recipients, as: 'recipients', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsRecipients, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsRecipients::Representation
1716
+
1717
+ property :score_threshold_trigger, as: 'scoreThresholdTrigger', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsScoreThresholdTrigger, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsScoreThresholdTrigger::Representation
1718
+
1719
+ end
1720
+ end
1721
+
1722
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsRecipients
1723
+ # @private
1724
+ class Representation < Google::Apis::Core::JsonRepresentation
1725
+ collection :emails, as: 'emails'
1726
+ end
1727
+ end
1728
+
1729
+ class GoogleCloudDataplexV1DataQualitySpecPostScanActionsScoreThresholdTrigger
1730
+ # @private
1731
+ class Representation < Google::Apis::Core::JsonRepresentation
1732
+ property :score_threshold, as: 'scoreThreshold'
1733
+ end
1734
+ end
1735
+
1664
1736
  class GoogleCloudDataplexV1DataScan
1665
1737
  # @private
1666
1738
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataplex_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.49.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.50.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
63
63
  post_install_message:
64
64
  rdoc_options: []