google-apis-dataplex_v1 0.93.0 → 0.94.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: de7ba8121d54a8c87b969923bf83f2ca70ccba7ab45949b3d78f5cf8e38e67ab
|
|
4
|
+
data.tar.gz: 9c5f994bd32617162edaa43af35be7913d9db5c6491e655ee2883d91843766cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bafc5b3e94e12fa07760176511fb2579b8f32731631f058f2d311ca0f0c518fd3e57336ef6c01d62cb2f5958a83deb4400741b469964146932c52718ab841e69
|
|
7
|
+
data.tar.gz: 38a6d805892bd503931bb00fe2081fe286e5809aa31a75aced298170c4f67bb09cb646ba7d8462b11984f1ffffdb4caf343eedce7e846b36afef15ddbfcb5883
|
data/CHANGELOG.md
CHANGED
|
@@ -337,6 +337,12 @@ module Google
|
|
|
337
337
|
class GoogleCloudDataplexV1ApproveChangeRequestRequest
|
|
338
338
|
include Google::Apis::Core::Hashable
|
|
339
339
|
|
|
340
|
+
# Optional. The comment or reason for approving the ChangeRequest. Maximum
|
|
341
|
+
# length is 1024 characters.
|
|
342
|
+
# Corresponds to the JSON property `comment`
|
|
343
|
+
# @return [String]
|
|
344
|
+
attr_accessor :comment
|
|
345
|
+
|
|
340
346
|
# Optional. The etag of the ChangeRequest.
|
|
341
347
|
# Corresponds to the JSON property `etag`
|
|
342
348
|
# @return [String]
|
|
@@ -348,6 +354,7 @@ module Google
|
|
|
348
354
|
|
|
349
355
|
# Update properties of this object
|
|
350
356
|
def update!(**args)
|
|
357
|
+
@comment = args[:comment] if args.key?(:comment)
|
|
351
358
|
@etag = args[:etag] if args.key?(:etag)
|
|
352
359
|
end
|
|
353
360
|
end
|
|
@@ -1396,6 +1403,12 @@ module Google
|
|
|
1396
1403
|
# @return [String]
|
|
1397
1404
|
attr_accessor :resource
|
|
1398
1405
|
|
|
1406
|
+
# Output only. The comment provided by the reviewer when approving or rejecting
|
|
1407
|
+
# the ChangeRequest. Maximum length is 1024 characters.
|
|
1408
|
+
# Corresponds to the JSON property `reviewerComment`
|
|
1409
|
+
# @return [String]
|
|
1410
|
+
attr_accessor :reviewer_comment
|
|
1411
|
+
|
|
1399
1412
|
# Output only. The current state of the ChangeRequest.
|
|
1400
1413
|
# Corresponds to the JSON property `state`
|
|
1401
1414
|
# @return [String]
|
|
@@ -1458,6 +1471,7 @@ module Google
|
|
|
1458
1471
|
@name = args[:name] if args.key?(:name)
|
|
1459
1472
|
@rejection_comment = args[:rejection_comment] if args.key?(:rejection_comment)
|
|
1460
1473
|
@resource = args[:resource] if args.key?(:resource)
|
|
1474
|
+
@reviewer_comment = args[:reviewer_comment] if args.key?(:reviewer_comment)
|
|
1461
1475
|
@state = args[:state] if args.key?(:state)
|
|
1462
1476
|
@uid = args[:uid] if args.key?(:uid)
|
|
1463
1477
|
@update_entry = args[:update_entry] if args.key?(:update_entry)
|
|
@@ -6700,6 +6714,37 @@ module Google
|
|
|
6700
6714
|
end
|
|
6701
6715
|
end
|
|
6702
6716
|
|
|
6717
|
+
# Payload associated with EntryLinkType related log events.
|
|
6718
|
+
class GoogleCloudDataplexV1EntryLinkTypeEvent
|
|
6719
|
+
include Google::Apis::Core::Hashable
|
|
6720
|
+
|
|
6721
|
+
# Name of the resource.
|
|
6722
|
+
# Corresponds to the JSON property `entryLinkTypeId`
|
|
6723
|
+
# @return [String]
|
|
6724
|
+
attr_accessor :entry_link_type_id
|
|
6725
|
+
|
|
6726
|
+
# The type of the event.
|
|
6727
|
+
# Corresponds to the JSON property `eventType`
|
|
6728
|
+
# @return [String]
|
|
6729
|
+
attr_accessor :event_type
|
|
6730
|
+
|
|
6731
|
+
# The log message.
|
|
6732
|
+
# Corresponds to the JSON property `message`
|
|
6733
|
+
# @return [String]
|
|
6734
|
+
attr_accessor :message
|
|
6735
|
+
|
|
6736
|
+
def initialize(**args)
|
|
6737
|
+
update!(**args)
|
|
6738
|
+
end
|
|
6739
|
+
|
|
6740
|
+
# Update properties of this object
|
|
6741
|
+
def update!(**args)
|
|
6742
|
+
@entry_link_type_id = args[:entry_link_type_id] if args.key?(:entry_link_type_id)
|
|
6743
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
|
6744
|
+
@message = args[:message] if args.key?(:message)
|
|
6745
|
+
end
|
|
6746
|
+
end
|
|
6747
|
+
|
|
6703
6748
|
# Information related to the source system of the data resource that is
|
|
6704
6749
|
# represented by the entry.
|
|
6705
6750
|
class GoogleCloudDataplexV1EntrySource
|
|
@@ -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.94.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260804"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -988,6 +988,12 @@ module Google
|
|
|
988
988
|
include Google::Apis::Core::JsonObjectSupport
|
|
989
989
|
end
|
|
990
990
|
|
|
991
|
+
class GoogleCloudDataplexV1EntryLinkTypeEvent
|
|
992
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
993
|
+
|
|
994
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
995
|
+
end
|
|
996
|
+
|
|
991
997
|
class GoogleCloudDataplexV1EntrySource
|
|
992
998
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
993
999
|
|
|
@@ -1919,6 +1925,7 @@ module Google
|
|
|
1919
1925
|
class GoogleCloudDataplexV1ApproveChangeRequestRequest
|
|
1920
1926
|
# @private
|
|
1921
1927
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1928
|
+
property :comment, as: 'comment'
|
|
1922
1929
|
property :etag, as: 'etag'
|
|
1923
1930
|
end
|
|
1924
1931
|
end
|
|
@@ -2207,6 +2214,7 @@ module Google
|
|
|
2207
2214
|
property :name, as: 'name'
|
|
2208
2215
|
property :rejection_comment, as: 'rejectionComment'
|
|
2209
2216
|
property :resource, as: 'resource'
|
|
2217
|
+
property :reviewer_comment, as: 'reviewerComment'
|
|
2210
2218
|
property :state, as: 'state'
|
|
2211
2219
|
property :uid, as: 'uid'
|
|
2212
2220
|
property :update_entry, as: 'updateEntry', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1UpdateEntryRequest, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1UpdateEntryRequest::Representation
|
|
@@ -3612,6 +3620,15 @@ module Google
|
|
|
3612
3620
|
end
|
|
3613
3621
|
end
|
|
3614
3622
|
|
|
3623
|
+
class GoogleCloudDataplexV1EntryLinkTypeEvent
|
|
3624
|
+
# @private
|
|
3625
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3626
|
+
property :entry_link_type_id, as: 'entryLinkTypeId'
|
|
3627
|
+
property :event_type, as: 'eventType'
|
|
3628
|
+
property :message, as: 'message'
|
|
3629
|
+
end
|
|
3630
|
+
end
|
|
3631
|
+
|
|
3615
3632
|
class GoogleCloudDataplexV1EntrySource
|
|
3616
3633
|
# @private
|
|
3617
3634
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.94.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.94.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|