google-apis-dataplex_v1 0.93.0 → 0.95.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: 17a0a2b396cadad3acff97f4eb73c0509317025fa271b9535aebc3ba39fca69b
|
|
4
|
+
data.tar.gz: 63fac501a1c058676b9f595310154333bf1c06f047a117fc2bf623cb8d0445c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a748706b4fd591e743eb1cf4f9028df59f8c14a0a81d2cc7b5310bd9d7886a73e0e8b18578a1ee0d43ad59086687aaeb40bdb2275bf8814b26a572a179a35db1
|
|
7
|
+
data.tar.gz: 4ddaf33800bcf4d4c8dd5d7e32b369d75be2a5021932b1030f99764978604d3df4a249397a81051562f3cb7e1d0623ccacbea0f9d0de790fefd0ea389f5aff83
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
|
2
2
|
|
|
3
|
+
### v0.95.0 (2026-08-30)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260823
|
|
6
|
+
|
|
7
|
+
### v0.94.0 (2026-08-09)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260804
|
|
10
|
+
|
|
3
11
|
### v0.93.0 (2026-07-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260713
|
|
@@ -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)
|
|
@@ -2520,6 +2534,11 @@ module Google
|
|
|
2520
2534
|
# @return [String]
|
|
2521
2535
|
attr_accessor :sql
|
|
2522
2536
|
|
|
2537
|
+
# Output only. The SQL dialect of the query.
|
|
2538
|
+
# Corresponds to the JSON property `sqlDialect`
|
|
2539
|
+
# @return [String]
|
|
2540
|
+
attr_accessor :sql_dialect
|
|
2541
|
+
|
|
2523
2542
|
def initialize(**args)
|
|
2524
2543
|
update!(**args)
|
|
2525
2544
|
end
|
|
@@ -2528,6 +2547,7 @@ module Google
|
|
|
2528
2547
|
def update!(**args)
|
|
2529
2548
|
@description = args[:description] if args.key?(:description)
|
|
2530
2549
|
@sql = args[:sql] if args.key?(:sql)
|
|
2550
|
+
@sql_dialect = args[:sql_dialect] if args.key?(:sql_dialect)
|
|
2531
2551
|
end
|
|
2532
2552
|
end
|
|
2533
2553
|
|
|
@@ -2674,6 +2694,12 @@ module Google
|
|
|
2674
2694
|
# @return [Array<String>]
|
|
2675
2695
|
attr_accessor :generation_scopes
|
|
2676
2696
|
|
|
2697
|
+
# Optional. The SQL dialect to use in the generated SQL queries. If not
|
|
2698
|
+
# specified, the default dialect is Google SQL.
|
|
2699
|
+
# Corresponds to the JSON property `sqlDialect`
|
|
2700
|
+
# @return [String]
|
|
2701
|
+
attr_accessor :sql_dialect
|
|
2702
|
+
|
|
2677
2703
|
def initialize(**args)
|
|
2678
2704
|
update!(**args)
|
|
2679
2705
|
end
|
|
@@ -2682,6 +2708,7 @@ module Google
|
|
|
2682
2708
|
def update!(**args)
|
|
2683
2709
|
@catalog_publishing_enabled = args[:catalog_publishing_enabled] if args.key?(:catalog_publishing_enabled)
|
|
2684
2710
|
@generation_scopes = args[:generation_scopes] if args.key?(:generation_scopes)
|
|
2711
|
+
@sql_dialect = args[:sql_dialect] if args.key?(:sql_dialect)
|
|
2685
2712
|
end
|
|
2686
2713
|
end
|
|
2687
2714
|
|
|
@@ -6700,6 +6727,37 @@ module Google
|
|
|
6700
6727
|
end
|
|
6701
6728
|
end
|
|
6702
6729
|
|
|
6730
|
+
# Payload associated with EntryLinkType related log events.
|
|
6731
|
+
class GoogleCloudDataplexV1EntryLinkTypeEvent
|
|
6732
|
+
include Google::Apis::Core::Hashable
|
|
6733
|
+
|
|
6734
|
+
# Name of the resource.
|
|
6735
|
+
# Corresponds to the JSON property `entryLinkTypeId`
|
|
6736
|
+
# @return [String]
|
|
6737
|
+
attr_accessor :entry_link_type_id
|
|
6738
|
+
|
|
6739
|
+
# The type of the event.
|
|
6740
|
+
# Corresponds to the JSON property `eventType`
|
|
6741
|
+
# @return [String]
|
|
6742
|
+
attr_accessor :event_type
|
|
6743
|
+
|
|
6744
|
+
# The log message.
|
|
6745
|
+
# Corresponds to the JSON property `message`
|
|
6746
|
+
# @return [String]
|
|
6747
|
+
attr_accessor :message
|
|
6748
|
+
|
|
6749
|
+
def initialize(**args)
|
|
6750
|
+
update!(**args)
|
|
6751
|
+
end
|
|
6752
|
+
|
|
6753
|
+
# Update properties of this object
|
|
6754
|
+
def update!(**args)
|
|
6755
|
+
@entry_link_type_id = args[:entry_link_type_id] if args.key?(:entry_link_type_id)
|
|
6756
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
|
6757
|
+
@message = args[:message] if args.key?(:message)
|
|
6758
|
+
end
|
|
6759
|
+
end
|
|
6760
|
+
|
|
6703
6761
|
# Information related to the source system of the data resource that is
|
|
6704
6762
|
# represented by the entry.
|
|
6705
6763
|
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.95.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 = "20260823"
|
|
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
|
|
@@ -2494,6 +2502,7 @@ module Google
|
|
|
2494
2502
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2495
2503
|
property :description, as: 'description'
|
|
2496
2504
|
property :sql, as: 'sql'
|
|
2505
|
+
property :sql_dialect, as: 'sqlDialect'
|
|
2497
2506
|
end
|
|
2498
2507
|
end
|
|
2499
2508
|
|
|
@@ -2542,6 +2551,7 @@ module Google
|
|
|
2542
2551
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2543
2552
|
property :catalog_publishing_enabled, as: 'catalogPublishingEnabled'
|
|
2544
2553
|
collection :generation_scopes, as: 'generationScopes'
|
|
2554
|
+
property :sql_dialect, as: 'sqlDialect'
|
|
2545
2555
|
end
|
|
2546
2556
|
end
|
|
2547
2557
|
|
|
@@ -3612,6 +3622,15 @@ module Google
|
|
|
3612
3622
|
end
|
|
3613
3623
|
end
|
|
3614
3624
|
|
|
3625
|
+
class GoogleCloudDataplexV1EntryLinkTypeEvent
|
|
3626
|
+
# @private
|
|
3627
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3628
|
+
property :entry_link_type_id, as: 'entryLinkTypeId'
|
|
3629
|
+
property :event_type, as: 'eventType'
|
|
3630
|
+
property :message, as: 'message'
|
|
3631
|
+
end
|
|
3632
|
+
end
|
|
3633
|
+
|
|
3615
3634
|
class GoogleCloudDataplexV1EntrySource
|
|
3616
3635
|
# @private
|
|
3617
3636
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -782,6 +782,10 @@ module Google
|
|
|
782
782
|
# @param [String] name
|
|
783
783
|
# Required. The project to which the request should be attributed in the
|
|
784
784
|
# following form: projects/`project`/locations/global.
|
|
785
|
+
# @param [Array<String>, String] contexts
|
|
786
|
+
# Optional. Specifies the scope of the context in which the search will be
|
|
787
|
+
# performed. This scope will also be used to perform IAM checks, which if
|
|
788
|
+
# passing, will return all resources in the scope.
|
|
785
789
|
# @param [String] order_by
|
|
786
790
|
# Optional. Specifies the ordering of results. Supported values are: relevance
|
|
787
791
|
# last_modified_timestamp last_modified_timestamp asc
|
|
@@ -820,11 +824,12 @@ module Google
|
|
|
820
824
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
821
825
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
822
826
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
823
|
-
def search_project_location_entries(name, order_by: nil, page_size: nil, page_token: nil, query: nil, scope: nil, semantic_search: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
827
|
+
def search_project_location_entries(name, contexts: nil, order_by: nil, page_size: nil, page_token: nil, query: nil, scope: nil, semantic_search: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
824
828
|
command = make_simple_command(:post, 'v1/{+name}:searchEntries', options)
|
|
825
829
|
command.response_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1SearchEntriesResponse::Representation
|
|
826
830
|
command.response_class = Google::Apis::DataplexV1::GoogleCloudDataplexV1SearchEntriesResponse
|
|
827
831
|
command.params['name'] = name unless name.nil?
|
|
832
|
+
command.query['contexts'] = contexts unless contexts.nil?
|
|
828
833
|
command.query['orderBy'] = order_by unless order_by.nil?
|
|
829
834
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
830
835
|
command.query['pageToken'] = page_token unless page_token.nil?
|
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.95.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.95.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:
|