google-apis-dataplex_v1 0.39.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: afe1e521c39b1e77f919de2d48888355c55d64999ea73c7d50bd1b58043a3704
4
- data.tar.gz: a90820227b5d9269fd0fea9af349c1bb2cca44549c664120d20f3bc0144847be
3
+ metadata.gz: d06452bfda868eb31dada1b4607a047b4517de1daf041b9b00252e3e1f16dcf4
4
+ data.tar.gz: '085df8dd314bb179dd3ca4977f6032ef65e83ff4bc618e808662301a4b28b795'
5
5
  SHA512:
6
- metadata.gz: a804ea7b528e9b41d0ff39d43de8dce05c40bd5cb409f0b7b4e3bf9c95baf19eab16c9b381a71dcf4a44f73493a75f370f855a5ed28951cd49ae8a5cc7fdb689
7
- data.tar.gz: 32f9fb2f5c399aef0809b9886513b56c70ae0a83f16049a7f51a7d880a3caf9e5cfa2dc430b8795e386ba3e7ca14f20049988dee96d1fea58e95a01823f5a8b6
6
+ metadata.gz: 6e75baf3fa147226083e608e1308389c4dc32a0f4b2083507e8683e5cf665629bc1b00480a2767d9c3073a5e13522ea3976ed9537c46819e10a0fbcd7e0303e3
7
+ data.tar.gz: 8a7d27b6e239d9a62410653073da09ccfe63923703e5020a63d4fe08993c9051d666f734d6cbe1fac3db8a560b3180557cab14950d618be74780095d39383daf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.39.0 (2023-10-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20230922
@@ -3593,6 +3593,64 @@ module Google
3593
3593
  end
3594
3594
  end
3595
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
+
3596
3654
  # A job represents an instance of a task.
3597
3655
  class GoogleCloudDataplexV1Job
3598
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.39.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 = "20230922"
25
+ REVISION = "20231007"
26
26
  end
27
27
  end
28
28
  end
@@ -556,6 +556,18 @@ module Google
556
556
  include Google::Apis::Core::JsonObjectSupport
557
557
  end
558
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
+
559
571
  class GoogleCloudDataplexV1Job
560
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
561
573
 
@@ -1970,6 +1982,24 @@ module Google
1970
1982
  end
1971
1983
  end
1972
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
+
1973
2003
  class GoogleCloudDataplexV1Job
1974
2004
  # @private
1975
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.39.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-10-01 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.39.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: []