google-apis-dataplex_v1 0.39.0 → 0.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48e928f5e8d615cf4fc38e2f2a71c385173e2652411f3ca4c51d5730814d35b5
|
4
|
+
data.tar.gz: 4f4140be71ca20d8f66693a869288b386777abebfcdb5431355e8091e1023127
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 781017cebe6857b093fed8f9f86eabf0787958adf774da242d696857d4d0ab46f39340cf486e1b8bf48274ff6c617300f3c3d2bd56934f45112ffbc8ce842261
|
7
|
+
data.tar.gz: 23e2fb172f2364ef2251535056bf9bc11e6d2df763aaa5849c3bcb9f7895c2bc3bb2aa0c0a6fbccf60ec3df78f5ee6e4cd999e8bb04933b64c281235500df74d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
2
2
|
|
3
|
+
### v0.41.0 (2023-10-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231018
|
6
|
+
|
7
|
+
### v0.40.0 (2023-10-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231007
|
10
|
+
|
3
11
|
### v0.39.0 (2023-10-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230922
|
@@ -1689,7 +1689,9 @@ module Google
|
|
1689
1689
|
class GoogleCloudDataplexV1DataQualityResult
|
1690
1690
|
include Google::Apis::Core::Hashable
|
1691
1691
|
|
1692
|
-
# A list of results at the dimension level.
|
1692
|
+
# A list of results at the dimension level.A dimension will have a corresponding
|
1693
|
+
# DataQualityDimensionResult if and only if there is at least one rule with the '
|
1694
|
+
# dimension' field set to it.
|
1693
1695
|
# Corresponds to the JSON property `dimensions`
|
1694
1696
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult>]
|
1695
1697
|
attr_accessor :dimensions
|
@@ -3593,6 +3595,64 @@ module Google
|
|
3593
3595
|
end
|
3594
3596
|
end
|
3595
3597
|
|
3598
|
+
# Payload associated with Governance related log events.
|
3599
|
+
class GoogleCloudDataplexV1GovernanceEvent
|
3600
|
+
include Google::Apis::Core::Hashable
|
3601
|
+
|
3602
|
+
# Information about Entity resource that the log event is associated with.
|
3603
|
+
# Corresponds to the JSON property `entity`
|
3604
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1GovernanceEventEntity]
|
3605
|
+
attr_accessor :entity
|
3606
|
+
|
3607
|
+
# The type of the event.
|
3608
|
+
# Corresponds to the JSON property `eventType`
|
3609
|
+
# @return [String]
|
3610
|
+
attr_accessor :event_type
|
3611
|
+
|
3612
|
+
# The log message.
|
3613
|
+
# Corresponds to the JSON property `message`
|
3614
|
+
# @return [String]
|
3615
|
+
attr_accessor :message
|
3616
|
+
|
3617
|
+
def initialize(**args)
|
3618
|
+
update!(**args)
|
3619
|
+
end
|
3620
|
+
|
3621
|
+
# Update properties of this object
|
3622
|
+
def update!(**args)
|
3623
|
+
@entity = args[:entity] if args.key?(:entity)
|
3624
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
3625
|
+
@message = args[:message] if args.key?(:message)
|
3626
|
+
end
|
3627
|
+
end
|
3628
|
+
|
3629
|
+
# Information about Entity resource that the log event is associated with.
|
3630
|
+
class GoogleCloudDataplexV1GovernanceEventEntity
|
3631
|
+
include Google::Apis::Core::Hashable
|
3632
|
+
|
3633
|
+
# The Entity resource the log event is associated with. Format: projects/`
|
3634
|
+
# project_number`/locations/`location_id`/lakes/`lake_id`/zones/`zone_id`/
|
3635
|
+
# entities/`entity_id`
|
3636
|
+
# Corresponds to the JSON property `entity`
|
3637
|
+
# @return [String]
|
3638
|
+
attr_accessor :entity
|
3639
|
+
|
3640
|
+
# Type of entity.
|
3641
|
+
# Corresponds to the JSON property `entityType`
|
3642
|
+
# @return [String]
|
3643
|
+
attr_accessor :entity_type
|
3644
|
+
|
3645
|
+
def initialize(**args)
|
3646
|
+
update!(**args)
|
3647
|
+
end
|
3648
|
+
|
3649
|
+
# Update properties of this object
|
3650
|
+
def update!(**args)
|
3651
|
+
@entity = args[:entity] if args.key?(:entity)
|
3652
|
+
@entity_type = args[:entity_type] if args.key?(:entity_type)
|
3653
|
+
end
|
3654
|
+
end
|
3655
|
+
|
3596
3656
|
# A job represents an instance of a task.
|
3597
3657
|
class GoogleCloudDataplexV1Job
|
3598
3658
|
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.
|
19
|
+
GEM_VERSION = "0.41.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 = "
|
25
|
+
REVISION = "20231018"
|
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.
|
4
|
+
version: 0.41.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-
|
11
|
+
date: 2023-10-29 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.41.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: []
|