Skip to content

Commit c364a82

Browse files
feat: A new message DataDocumentationSpec is added representing Data Documentation Spec (#31803)
1 parent deba091 commit c364a82

16 files changed

Lines changed: 318 additions & 25 deletions

File tree

google-cloud-dataplex-v1/.owlbot-manifest.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"lib/google/cloud/dataplex/v1/content_service/rest/service_stub.rb",
6161
"lib/google/cloud/dataplex/v1/content_services_pb.rb",
6262
"lib/google/cloud/dataplex/v1/data_discovery_pb.rb",
63+
"lib/google/cloud/dataplex/v1/data_documentation_pb.rb",
6364
"lib/google/cloud/dataplex/v1/data_profile_pb.rb",
6465
"lib/google/cloud/dataplex/v1/data_quality_pb.rb",
6566
"lib/google/cloud/dataplex/v1/data_scan_service.rb",
@@ -124,6 +125,7 @@
124125
"proto_docs/google/cloud/dataplex/v1/cmek.rb",
125126
"proto_docs/google/cloud/dataplex/v1/content.rb",
126127
"proto_docs/google/cloud/dataplex/v1/data_discovery.rb",
128+
"proto_docs/google/cloud/dataplex/v1/data_documentation.rb",
127129
"proto_docs/google/cloud/dataplex/v1/data_profile.rb",
128130
"proto_docs/google/cloud/dataplex/v1/data_quality.rb",
129131
"proto_docs/google/cloud/dataplex/v1/data_taxonomy.rb",

google-cloud-dataplex-v1/lib/google/cloud/dataplex/v1/bindings_override.rb

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,14 @@ def self.configure
202202
],
203203
body: nil
204204
),
205+
Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
206+
uri_method: :get,
207+
uri_template: "/v1/{resource}:getIamPolicy",
208+
matches: [
209+
["resource", %r{^projects/[^/]+/locations/[^/]+/changeRequests/[^/]+/?$}, false]
210+
],
211+
body: nil
212+
),
205213
Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
206214
uri_method: :get,
207215
uri_template: "/v1/{resource}:getIamPolicy",
@@ -349,6 +357,14 @@ def self.configure
349357
],
350358
body: "*"
351359
),
360+
Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
361+
uri_method: :post,
362+
uri_template: "/v1/{resource}:setIamPolicy",
363+
matches: [
364+
["resource", %r{^projects/[^/]+/locations/[^/]+/changeRequests/[^/]+/?$}, false]
365+
],
366+
body: "*"
367+
),
352368
Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
353369
uri_method: :post,
354370
uri_template: "/v1/{resource}:setIamPolicy",
@@ -512,6 +528,14 @@ def self.configure
512528
],
513529
body: "*"
514530
),
531+
Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
532+
uri_method: :post,
533+
uri_template: "/v1/{resource}:testIamPermissions",
534+
matches: [
535+
["resource", %r{^projects/[^/]+/locations/[^/]+/changeRequests/[^/]+/?$}, false]
536+
],
537+
body: "*"
538+
),
515539
Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
516540
uri_method: :post,
517541
uri_template: "/v1/{resource}:testIamPermissions",

google-cloud-dataplex-v1/lib/google/cloud/dataplex/v1/catalog_pb.rb

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

google-cloud-dataplex-v1/lib/google/cloud/dataplex/v1/catalog_service/client.rb

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2121,6 +2121,11 @@ def delete_entry request, options = nil
21212121

21222122
##
21232123
# Lists Entries within an EntryGroup.
2124+
# Caution: The Vertex AI, Bigtable, Spanner, Pub/Sub, Dataform, and Dataproc
2125+
# Metastore metadata that is stored in Dataplex Universal Catalog is
2126+
# changing. For more information, see [Changes to metadata stored in
2127+
# Dataplex Universal
2128+
# Catalog](https://cloud.google.com/dataplex/docs/metadata-changes).
21242129
#
21252130
# @overload list_entries(request, options = nil)
21262131
# Pass arguments to `list_entries` via a request object, either of type
@@ -2243,6 +2248,11 @@ def list_entries request, options = nil
22432248

22442249
##
22452250
# Gets an Entry.
2251+
# Caution: The Vertex AI, Bigtable, Spanner, Pub/Sub, Dataform, and Dataproc
2252+
# Metastore metadata that is stored in Dataplex Universal Catalog is
2253+
# changing. For more information, see [Changes to metadata stored in
2254+
# Dataplex Universal
2255+
# Catalog](https://cloud.google.com/dataplex/docs/metadata-changes).
22462256
#
22472257
# @overload get_entry(request, options = nil)
22482258
# Pass arguments to `get_entry` via a request object, either of type
@@ -2338,6 +2348,11 @@ def get_entry request, options = nil
23382348

23392349
##
23402350
# Looks up an entry by name using the permission on the source system.
2351+
# Caution: The Vertex AI, Bigtable, Spanner, Pub/Sub, Dataform, and Dataproc
2352+
# Metastore metadata that is stored in Dataplex Universal Catalog is
2353+
# changing. For more information, see [Changes to metadata stored in
2354+
# Dataplex Universal
2355+
# Catalog](https://cloud.google.com/dataplex/docs/metadata-changes).
23412356
#
23422357
# @overload lookup_entry(request, options = nil)
23432358
# Pass arguments to `lookup_entry` via a request object, either of type

google-cloud-dataplex-v1/lib/google/cloud/dataplex/v1/catalog_service/rest/client.rb

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1990,6 +1990,11 @@ def delete_entry request, options = nil
19901990

19911991
##
19921992
# Lists Entries within an EntryGroup.
1993+
# Caution: The Vertex AI, Bigtable, Spanner, Pub/Sub, Dataform, and Dataproc
1994+
# Metastore metadata that is stored in Dataplex Universal Catalog is
1995+
# changing. For more information, see [Changes to metadata stored in
1996+
# Dataplex Universal
1997+
# Catalog](https://cloud.google.com/dataplex/docs/metadata-changes).
19931998
#
19941999
# @overload list_entries(request, options = nil)
19952000
# Pass arguments to `list_entries` via a request object, either of type
@@ -2105,6 +2110,11 @@ def list_entries request, options = nil
21052110

21062111
##
21072112
# Gets an Entry.
2113+
# Caution: The Vertex AI, Bigtable, Spanner, Pub/Sub, Dataform, and Dataproc
2114+
# Metastore metadata that is stored in Dataplex Universal Catalog is
2115+
# changing. For more information, see [Changes to metadata stored in
2116+
# Dataplex Universal
2117+
# Catalog](https://cloud.google.com/dataplex/docs/metadata-changes).
21082118
#
21092119
# @overload get_entry(request, options = nil)
21102120
# Pass arguments to `get_entry` via a request object, either of type
@@ -2193,6 +2203,11 @@ def get_entry request, options = nil
21932203

21942204
##
21952205
# Looks up an entry by name using the permission on the source system.
2206+
# Caution: The Vertex AI, Bigtable, Spanner, Pub/Sub, Dataform, and Dataproc
2207+
# Metastore metadata that is stored in Dataplex Universal Catalog is
2208+
# changing. For more information, see [Changes to metadata stored in
2209+
# Dataplex Universal
2210+
# Catalog](https://cloud.google.com/dataplex/docs/metadata-changes).
21962211
#
21972212
# @overload lookup_entry(request, options = nil)
21982213
# Pass arguments to `lookup_entry` via a request object, either of type

google-cloud-dataplex-v1/lib/google/cloud/dataplex/v1/catalog_services_pb.rb

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

google-cloud-dataplex-v1/lib/google/cloud/dataplex/v1/cmek_pb.rb

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)