google-apis-datacatalog_v1 0.57.0 → 0.59.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: 4e2bddbdd615c08393e0e6cab19ed94add1127f5c9fed1a9e735188780d0f1fa
4
- data.tar.gz: 666597323e1dc0bdbd7ac0effc9430fdac1903f972b71f798452f29f40443725
3
+ metadata.gz: e6ca633705c4542b3010b68e7e0314460d1c46c562412eadb543257c091ec628
4
+ data.tar.gz: ec256caf0e87a97b61357200113e972175da59cad873f5819d60e04dc35135b5
5
5
  SHA512:
6
- metadata.gz: 036d0a535a2b512af3c45c8655a2786336773dae42915c4de1ee32c7a9bb64aa7ad8482ab6f9c094d7a0b4e7f8690043b9fc8bd4b4c45291b4a5cd0dcdbeace4
7
- data.tar.gz: 5a9c1467842f26fba709dec7890d8c888a49afff24b2f75e027a9dc4fd22045ac9045214c6e5c8eb8045b8ea19567a6230b4c2ef9a7aa53986de1a1c83fe163d
6
+ metadata.gz: dabc029fd2e1a2c921ed7c921abd8f972c92cbaeaea81e64e68a15085b24315ce32bc56f80352d9968147f9416a3497a380fda20eabea28cb70dbb3b36d9e29a
7
+ data.tar.gz: 9c8395374c75dd32d9638d616903d5dccf9e3632c00cb599653b8afe22ae4f9ea8cc261b4e34978b6a13b9fc7efdc9446ded62808b67a2fa23ca84ad792a08bc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.59.0 (2025-05-25)
4
+
5
+ * Regenerated from discovery document revision 20250520
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.58.0 (2025-05-11)
9
+
10
+ * Regenerated from discovery document revision 20250502
11
+ * Regenerated using generator version 0.17.0
12
+
3
13
  ### v0.57.0 (2025-04-20)
4
14
 
5
15
  * Regenerated from discovery document revision 20250411
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/data-catalog/docs/) may pro
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1493,20 +1493,19 @@ module Google
1493
1493
 
1494
1494
  # Required. Patterns to identify a set of files in Google Cloud Storage. For
1495
1495
  # more information, see [Wildcard Names] (https://cloud.google.com/storage/docs/
1496
- # gsutil/addlhelp/WildcardNames). Note: Currently, bucket wildcards are not
1497
- # supported. Examples of valid `file_patterns`: * `gs://bucket_name/dir/*`:
1498
- # matches all files in `bucket_name/dir` directory * `gs://bucket_name/dir/**`:
1499
- # matches all files in `bucket_name/dir` and all subdirectories * `gs://
1500
- # bucket_name/file*`: matches files prefixed by `file` in `bucket_name` * `gs://
1501
- # bucket_name/??.txt`: matches files with two characters followed by `.txt` in `
1502
- # bucket_name` * `gs://bucket_name/[aeiou].txt`: matches files that contain a
1503
- # single vowel character followed by `.txt` in `bucket_name` * `gs://bucket_name/
1504
- # [a-m].txt`: matches files that contain `a`, `b`, ... or `m` followed by `.txt`
1505
- # in `bucket_name` * `gs://bucket_name/a/*/b`: matches all files in `bucket_name`
1506
- # that match the `a/*/b` pattern, such as `a/c/b`, `a/d/b` * `gs://
1507
- # another_bucket/a.txt`: matches `gs://another_bucket/a.txt` You can combine
1508
- # wildcards to match complex sets of files, for example: `gs://bucket_name/[a-m]?
1509
- # ?.j*g`
1496
+ # wildcards). Note: Currently, bucket wildcards are not supported. Examples of
1497
+ # valid `file_patterns`: * `gs://bucket_name/dir/*`: matches all files in `
1498
+ # bucket_name/dir` directory * `gs://bucket_name/dir/**`: matches all files in `
1499
+ # bucket_name/dir` and all subdirectories * `gs://bucket_name/file*`: matches
1500
+ # files prefixed by `file` in `bucket_name` * `gs://bucket_name/??.txt`: matches
1501
+ # files with two characters followed by `.txt` in `bucket_name` * `gs://
1502
+ # bucket_name/[aeiou].txt`: matches files that contain a single vowel character
1503
+ # followed by `.txt` in `bucket_name` * `gs://bucket_name/[a-m].txt`: matches
1504
+ # files that contain `a`, `b`, ... or `m` followed by `.txt` in `bucket_name` * `
1505
+ # gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match the `a/*
1506
+ # /b` pattern, such as `a/c/b`, `a/d/b` * `gs://another_bucket/a.txt`: matches `
1507
+ # gs://another_bucket/a.txt` You can combine wildcards to match complex sets of
1508
+ # files, for example: `gs://bucket_name/[a-m]??.j*g`
1510
1509
  # Corresponds to the JSON property `filePatterns`
1511
1510
  # @return [Array<String>]
1512
1511
  attr_accessor :file_patterns
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatacatalogV1
18
18
  # Version of the google-apis-datacatalog_v1 gem
19
- GEM_VERSION = "0.57.0"
19
+ GEM_VERSION = "0.59.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250411"
25
+ REVISION = "20250520"
26
26
  end
27
27
  end
28
28
  end
@@ -1277,7 +1277,8 @@ module Google
1277
1277
  # deletes tags not included in the input tag list. `ReconcileTags` returns a
1278
1278
  # long-running operation resource that can be queried with Operations.
1279
1279
  # GetOperation to return ReconcileTagsMetadata and a ReconcileTagsResponse
1280
- # message.
1280
+ # message. Note: SearchCatalog might return stale search results for up to 24
1281
+ # hours after the `ReconcileTags` operation completes.
1281
1282
  # @param [String] parent
1282
1283
  # Required. Name of Entry to be tagged.
1283
1284
  # @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ReconcileTagsRequest] google_cloud_datacatalog_v1_reconcile_tags_request_object
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datacatalog_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.57.0
4
+ version: 0.59.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-20 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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-datacatalog_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.57.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.59.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Google Cloud Data Catalog API V1
79
79
  test_files: []