google-apis-dataplex_v1 0.38.0 → 0.40.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: 5349aff1ecc8bdec5d80e15bb9618e2b50813b5d74295232b325895059f44639
4
- data.tar.gz: 712a267137d3af30bc27f70041f18f2ec471b54979e1368a4a139bcaf4a0942d
3
+ metadata.gz: d06452bfda868eb31dada1b4607a047b4517de1daf041b9b00252e3e1f16dcf4
4
+ data.tar.gz: '085df8dd314bb179dd3ca4977f6032ef65e83ff4bc618e808662301a4b28b795'
5
5
  SHA512:
6
- metadata.gz: 5df53b813703c11669a98e253138246f0d1ccc0b4f2674ac90dddfd150db4d4c15a4685b237148fdb3ff4f367ac7b8ef1225134010ee4d106e1d4ba1287b1863
7
- data.tar.gz: 02e541c3db7017bade0287d6edf4a71198fad764a16765c0664e806306acd253e7b4905e7ed702595aa12081c397fc276d60e86568fa4a886f0a8d3f5d81f71b
6
+ metadata.gz: 6e75baf3fa147226083e608e1308389c4dc32a0f4b2083507e8683e5cf665629bc1b00480a2767d9c3073a5e13522ea3976ed9537c46819e10a0fbcd7e0303e3
7
+ data.tar.gz: 8a7d27b6e239d9a62410653073da09ccfe63923703e5020a63d4fe08993c9051d666f734d6cbe1fac3db8a560b3180557cab14950d618be74780095d39383daf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.40.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231007
6
+
7
+ ### v0.39.0 (2023-10-01)
8
+
9
+ * Regenerated from discovery document revision 20230922
10
+
3
11
  ### v0.38.0 (2023-09-03)
4
12
 
5
13
  * Regenerated from discovery document revision 20230831
@@ -1636,11 +1636,38 @@ module Google
1636
1636
  end
1637
1637
  end
1638
1638
 
1639
+ # A dimension captures data quality intent about a defined subset of the rules
1640
+ # specified.
1641
+ class GoogleCloudDataplexV1DataQualityDimension
1642
+ include Google::Apis::Core::Hashable
1643
+
1644
+ # The dimension name a rule belongs to. Supported dimensions are "COMPLETENESS",
1645
+ # "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY"
1646
+ # Corresponds to the JSON property `name`
1647
+ # @return [String]
1648
+ attr_accessor :name
1649
+
1650
+ def initialize(**args)
1651
+ update!(**args)
1652
+ end
1653
+
1654
+ # Update properties of this object
1655
+ def update!(**args)
1656
+ @name = args[:name] if args.key?(:name)
1657
+ end
1658
+ end
1659
+
1639
1660
  # DataQualityDimensionResult provides a more detailed, per-dimension view of the
1640
1661
  # results.
1641
1662
  class GoogleCloudDataplexV1DataQualityDimensionResult
1642
1663
  include Google::Apis::Core::Hashable
1643
1664
 
1665
+ # A dimension captures data quality intent about a defined subset of the rules
1666
+ # specified.
1667
+ # Corresponds to the JSON property `dimension`
1668
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension]
1669
+ attr_accessor :dimension
1670
+
1644
1671
  # Whether the dimension passed or failed.
1645
1672
  # Corresponds to the JSON property `passed`
1646
1673
  # @return [Boolean]
@@ -1653,6 +1680,7 @@ module Google
1653
1680
 
1654
1681
  # Update properties of this object
1655
1682
  def update!(**args)
1683
+ @dimension = args[:dimension] if args.key?(:dimension)
1656
1684
  @passed = args[:passed] if args.key?(:passed)
1657
1685
  end
1658
1686
  end
@@ -3565,6 +3593,64 @@ module Google
3565
3593
  end
3566
3594
  end
3567
3595
 
3596
+ # Payload associated with Governance related log events.
3597
+ class GoogleCloudDataplexV1GovernanceEvent
3598
+ include Google::Apis::Core::Hashable
3599
+
3600
+ # Information about Entity resource that the log event is associated with.
3601
+ # Corresponds to the JSON property `entity`
3602
+ # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1GovernanceEventEntity]
3603
+ attr_accessor :entity
3604
+
3605
+ # The type of the event.
3606
+ # Corresponds to the JSON property `eventType`
3607
+ # @return [String]
3608
+ attr_accessor :event_type
3609
+
3610
+ # The log message.
3611
+ # Corresponds to the JSON property `message`
3612
+ # @return [String]
3613
+ attr_accessor :message
3614
+
3615
+ def initialize(**args)
3616
+ update!(**args)
3617
+ end
3618
+
3619
+ # Update properties of this object
3620
+ def update!(**args)
3621
+ @entity = args[:entity] if args.key?(:entity)
3622
+ @event_type = args[:event_type] if args.key?(:event_type)
3623
+ @message = args[:message] if args.key?(:message)
3624
+ end
3625
+ end
3626
+
3627
+ # Information about Entity resource that the log event is associated with.
3628
+ class GoogleCloudDataplexV1GovernanceEventEntity
3629
+ include Google::Apis::Core::Hashable
3630
+
3631
+ # The Entity resource the log event is associated with. Format: projects/`
3632
+ # project_number`/locations/`location_id`/lakes/`lake_id`/zones/`zone_id`/
3633
+ # entities/`entity_id`
3634
+ # Corresponds to the JSON property `entity`
3635
+ # @return [String]
3636
+ attr_accessor :entity
3637
+
3638
+ # Type of entity.
3639
+ # Corresponds to the JSON property `entityType`
3640
+ # @return [String]
3641
+ attr_accessor :entity_type
3642
+
3643
+ def initialize(**args)
3644
+ update!(**args)
3645
+ end
3646
+
3647
+ # Update properties of this object
3648
+ def update!(**args)
3649
+ @entity = args[:entity] if args.key?(:entity)
3650
+ @entity_type = args[:entity_type] if args.key?(:entity_type)
3651
+ end
3652
+ end
3653
+
3568
3654
  # A job represents an instance of a task.
3569
3655
  class GoogleCloudDataplexV1Job
3570
3656
  include Google::Apis::Core::Hashable
@@ -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.38.0"
19
+ GEM_VERSION = "0.40.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230831"
25
+ REVISION = "20231007"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,12 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class GoogleCloudDataplexV1DataQualityDimension
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
277
283
  class GoogleCloudDataplexV1DataQualityDimensionResult
278
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
285
 
@@ -550,6 +556,18 @@ module Google
550
556
  include Google::Apis::Core::JsonObjectSupport
551
557
  end
552
558
 
559
+ class GoogleCloudDataplexV1GovernanceEvent
560
+ class Representation < Google::Apis::Core::JsonRepresentation; end
561
+
562
+ include Google::Apis::Core::JsonObjectSupport
563
+ end
564
+
565
+ class GoogleCloudDataplexV1GovernanceEventEntity
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
553
571
  class GoogleCloudDataplexV1Job
554
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
555
573
 
@@ -1429,9 +1447,18 @@ module Google
1429
1447
  end
1430
1448
  end
1431
1449
 
1450
+ class GoogleCloudDataplexV1DataQualityDimension
1451
+ # @private
1452
+ class Representation < Google::Apis::Core::JsonRepresentation
1453
+ property :name, as: 'name'
1454
+ end
1455
+ end
1456
+
1432
1457
  class GoogleCloudDataplexV1DataQualityDimensionResult
1433
1458
  # @private
1434
1459
  class Representation < Google::Apis::Core::JsonRepresentation
1460
+ property :dimension, as: 'dimension', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimension::Representation
1461
+
1435
1462
  property :passed, as: 'passed'
1436
1463
  end
1437
1464
  end
@@ -1955,6 +1982,24 @@ module Google
1955
1982
  end
1956
1983
  end
1957
1984
 
1985
+ class GoogleCloudDataplexV1GovernanceEvent
1986
+ # @private
1987
+ class Representation < Google::Apis::Core::JsonRepresentation
1988
+ property :entity, as: 'entity', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1GovernanceEventEntity, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1GovernanceEventEntity::Representation
1989
+
1990
+ property :event_type, as: 'eventType'
1991
+ property :message, as: 'message'
1992
+ end
1993
+ end
1994
+
1995
+ class GoogleCloudDataplexV1GovernanceEventEntity
1996
+ # @private
1997
+ class Representation < Google::Apis::Core::JsonRepresentation
1998
+ property :entity, as: 'entity'
1999
+ property :entity_type, as: 'entityType'
2000
+ end
2001
+ end
2002
+
1958
2003
  class GoogleCloudDataplexV1Job
1959
2004
  # @private
1960
2005
  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.38.0
4
+ version: 0.40.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: 2023-09-03 00:00:00.000000000 Z
11
+ date: 2023-10-15 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.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.40.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: []