google-cloud-dataplex-v1 2.10.0 → 2.10.1
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: 40770bba842933ac6a9a5154896ab2407fa546d408856e604d7c6de2a3c9cebd
|
|
4
|
+
data.tar.gz: 5deb45252c55b3b935761ae24737f23f84a4b167909179433349d8e90c434756
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a490bddf87e75318922399d9c44c1b42d873225164822739a134287912fd17c1106b4333cd448e7a0e4b1db5fd368f05ec0e370312e79f6b012a07ce7d43949b
|
|
7
|
+
data.tar.gz: 883dcba107ba1fabd8241bcdfbde1ab2ccf8758debad5187b2a87f734ee6410dbbb2acb379c58292eac6e6c74c5ec2b52e0348c24e07926d29ca2b83010faad0
|
|
@@ -1952,7 +1952,7 @@ module Google
|
|
|
1952
1952
|
uri_template: "/v1/{entry.name}",
|
|
1953
1953
|
body: "entry",
|
|
1954
1954
|
matches: [
|
|
1955
|
-
["entry.name", %r{^projects/[^/]+/locations/[^/]+/entryGroups/[^/]+/entries(
|
|
1955
|
+
["entry.name", %r{^projects/[^/]+/locations/[^/]+/entryGroups/[^/]+/entries(?:/(?<__wildcard__>.*))?$}, true]
|
|
1956
1956
|
]
|
|
1957
1957
|
)
|
|
1958
1958
|
transcoder.transcode request_pb
|
|
@@ -1973,7 +1973,7 @@ module Google
|
|
|
1973
1973
|
uri_method: :delete,
|
|
1974
1974
|
uri_template: "/v1/{name}",
|
|
1975
1975
|
matches: [
|
|
1976
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/entryGroups/[^/]+/entries(
|
|
1976
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/entryGroups/[^/]+/entries(?:/(?<__wildcard__>.*))?$}, true]
|
|
1977
1977
|
]
|
|
1978
1978
|
)
|
|
1979
1979
|
transcoder.transcode request_pb
|
|
@@ -2015,7 +2015,7 @@ module Google
|
|
|
2015
2015
|
uri_method: :get,
|
|
2016
2016
|
uri_template: "/v1/{name}",
|
|
2017
2017
|
matches: [
|
|
2018
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/entryGroups/[^/]+/entries(
|
|
2018
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/entryGroups/[^/]+/entries(?:/(?<__wildcard__>.*))?$}, true]
|
|
2019
2019
|
]
|
|
2020
2020
|
)
|
|
2021
2021
|
transcoder.transcode request_pb
|
|
@@ -2209,7 +2209,7 @@ module Google
|
|
|
2209
2209
|
uri_template: "/v1/{entry_link.name}",
|
|
2210
2210
|
body: "entry_link",
|
|
2211
2211
|
matches: [
|
|
2212
|
-
["entry_link.name", %r{^projects/[^/]+/locations/[^/]+/entryGroups/[^/]+/entryLinks(
|
|
2212
|
+
["entry_link.name", %r{^projects/[^/]+/locations/[^/]+/entryGroups/[^/]+/entryLinks(?:/(?<__wildcard__>.*))?$}, true]
|
|
2213
2213
|
]
|
|
2214
2214
|
)
|
|
2215
2215
|
transcoder.transcode request_pb
|
|
@@ -577,7 +577,7 @@ module Google
|
|
|
577
577
|
uri_method: :delete,
|
|
578
578
|
uri_template: "/v1/{name}",
|
|
579
579
|
matches: [
|
|
580
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/lakes/[^/]+/zones/[^/]+/entities/[^/]+/partitions(
|
|
580
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/lakes/[^/]+/zones/[^/]+/entities/[^/]+/partitions(?:/(?<__wildcard__>.*))?$}, true]
|
|
581
581
|
]
|
|
582
582
|
)
|
|
583
583
|
transcoder.transcode request_pb
|
|
@@ -598,7 +598,7 @@ module Google
|
|
|
598
598
|
uri_method: :get,
|
|
599
599
|
uri_template: "/v1/{name}",
|
|
600
600
|
matches: [
|
|
601
|
-
["name", %r{^projects/[^/]+/locations/[^/]+/lakes/[^/]+/zones/[^/]+/entities/[^/]+/partitions(
|
|
601
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/lakes/[^/]+/zones/[^/]+/entities/[^/]+/partitions(?:/(?<__wildcard__>.*))?$}, true]
|
|
602
602
|
]
|
|
603
603
|
)
|
|
604
604
|
transcoder.transcode request_pb
|
|
@@ -20,7 +20,6 @@ require "google/cloud/dataplex/v1/dataplex_service"
|
|
|
20
20
|
require "google/cloud/dataplex/v1/business_glossary_service"
|
|
21
21
|
require "google/cloud/dataplex/v1/catalog_service"
|
|
22
22
|
require "google/cloud/dataplex/v1/cmek_service"
|
|
23
|
-
require "google/cloud/dataplex/v1/content_service"
|
|
24
23
|
require "google/cloud/dataplex/v1/data_product_service"
|
|
25
24
|
require "google/cloud/dataplex/v1/data_taxonomy_service"
|
|
26
25
|
require "google/cloud/dataplex/v1/data_scan_service"
|