google-apis-datacatalog_v1beta1 0.49.0 → 0.50.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: 7f9302a1da328fe97851c38607080dbce6bce7415d6f0b4bd241611b872d365f
4
- data.tar.gz: 4fea896406ccc1d32d483078e3b6da376f93fdc1ac16a1d75d7706d7960bc03b
3
+ metadata.gz: 66df86f88808b4ccba0d964f7f0a109dc090c6bcdd618e98d0d70a356f491ccf
4
+ data.tar.gz: 5f8fd90773d845ee36907a9e7fb642502faa0e9e3161288ef5245eb5001ef41b
5
5
  SHA512:
6
- metadata.gz: 8e8d7a46e62b1a3893d40171f482aed5ece462010a0e30c86c43c3354d9affca16739d02c9382731043a84f3c5781edf8af13cd05e9d8cc0e066928aca58c508
7
- data.tar.gz: 96c43eace597b43f26ef11b1acb4602420bd0fca19d4cac9c94c4091bf64dd3475421db7094c447cc0480389cbd64fce36dcb06fe5ede3387fef89e6cbfa8f38
6
+ metadata.gz: cd8b7d6620dcfe5bc0d3cc7847e163df3dc7a73eb1b6e64bfa9a498ec91d1075429902adc3f5194bda002245d769510ea3fc3b55fb3baaee6ad4f98ba0c34f34
7
+ data.tar.gz: dd87e13549ea62180396ae4ef29537d0a4e0495979b9defa212ae4df9a8d70c68fde7a8274fff625d63ce648da06e996182147cb0c02516e62ec2d6539d8fe66
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-datacatalog_v1beta1
2
2
 
3
+ ### v0.50.0 (2025-05-18)
4
+
5
+ * Regenerated from discovery document revision 20250502
6
+ * Regenerated using generator version 0.17.0
7
+
3
8
  ### v0.49.0 (2025-03-23)
4
9
 
5
10
  * Regenerated from discovery document revision 20250314
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
 
@@ -1331,20 +1331,19 @@ module Google
1331
1331
 
1332
1332
  # Required. Patterns to identify a set of files in Google Cloud Storage. For
1333
1333
  # more information, see [Wildcard Names] (https://cloud.google.com/storage/docs/
1334
- # gsutil/addlhelp/WildcardNames). Note: Currently, bucket wildcards are not
1335
- # supported. Examples of valid `file_patterns`: * `gs://bucket_name/dir/*`:
1336
- # matches all files in `bucket_name/dir` directory * `gs://bucket_name/dir/**`:
1337
- # matches all files in `bucket_name/dir` and all subdirectories * `gs://
1338
- # bucket_name/file*`: matches files prefixed by `file` in `bucket_name` * `gs://
1339
- # bucket_name/??.txt`: matches files with two characters followed by `.txt` in `
1340
- # bucket_name` * `gs://bucket_name/[aeiou].txt`: matches files that contain a
1341
- # single vowel character followed by `.txt` in `bucket_name` * `gs://bucket_name/
1342
- # [a-m].txt`: matches files that contain `a`, `b`, ... or `m` followed by `.txt`
1343
- # in `bucket_name` * `gs://bucket_name/a/*/b`: matches all files in `bucket_name`
1344
- # that match the `a/*/b` pattern, such as `a/c/b`, `a/d/b` * `gs://
1345
- # another_bucket/a.txt`: matches `gs://another_bucket/a.txt` You can combine
1346
- # wildcards to match complex sets of files, for example: `gs://bucket_name/[a-m]?
1347
- # ?.j*g`
1334
+ # wildcards). Note: Currently, bucket wildcards are not supported. Examples of
1335
+ # valid `file_patterns`: * `gs://bucket_name/dir/*`: matches all files in `
1336
+ # bucket_name/dir` directory * `gs://bucket_name/dir/**`: matches all files in `
1337
+ # bucket_name/dir` and all subdirectories * `gs://bucket_name/file*`: matches
1338
+ # files prefixed by `file` in `bucket_name` * `gs://bucket_name/??.txt`: matches
1339
+ # files with two characters followed by `.txt` in `bucket_name` * `gs://
1340
+ # bucket_name/[aeiou].txt`: matches files that contain a single vowel character
1341
+ # followed by `.txt` in `bucket_name` * `gs://bucket_name/[a-m].txt`: matches
1342
+ # files that contain `a`, `b`, ... or `m` followed by `.txt` in `bucket_name` * `
1343
+ # gs://bucket_name/a/*/b`: matches all files in `bucket_name` that match the `a/*
1344
+ # /b` pattern, such as `a/c/b`, `a/d/b` * `gs://another_bucket/a.txt`: matches `
1345
+ # gs://another_bucket/a.txt` You can combine wildcards to match complex sets of
1346
+ # files, for example: `gs://bucket_name/[a-m]??.j*g`
1348
1347
  # Corresponds to the JSON property `filePatterns`
1349
1348
  # @return [Array<String>]
1350
1349
  attr_accessor :file_patterns
@@ -2762,21 +2761,20 @@ module Google
2762
2761
  include Google::Apis::Core::Hashable
2763
2762
 
2764
2763
  # Required. Patterns to identify a set of files in Google Cloud Storage. See [
2765
- # Cloud Storage documentation](https://cloud.google.com/storage/docs/gsutil/
2766
- # addlhelp/WildcardNames) for more information. Note that bucket wildcards are
2767
- # currently not supported. Examples of valid file_patterns: * `gs://bucket_name/
2768
- # dir/*`: matches all files within `bucket_name/dir` directory. * `gs://
2769
- # bucket_name/dir/**`: matches all files in `bucket_name/dir` spanning all
2770
- # subdirectories. * `gs://bucket_name/file*`: matches files prefixed by `file`
2771
- # in `bucket_name` * `gs://bucket_name/??.txt`: matches files with two
2772
- # characters followed by `.txt` in `bucket_name` * `gs://bucket_name/[aeiou].txt`
2773
- # : matches files that contain a single vowel character followed by `.txt` in `
2774
- # bucket_name` * `gs://bucket_name/[a-m].txt`: matches files that contain `a`, `
2775
- # b`, ... or `m` followed by `.txt` in `bucket_name` * `gs://bucket_name/a/*/b`:
2776
- # matches all files in `bucket_name` that match `a/*/b` pattern, such as `a/c/b`,
2777
- # `a/d/b` * `gs://another_bucket/a.txt`: matches `gs://another_bucket/a.txt`
2778
- # You can combine wildcards to provide more powerful matches, for example: * `gs:
2779
- # //bucket_name/[a-m]??.j*g`
2764
+ # Cloud Storage documentation](https://cloud.google.com/storage/docs/wildcards)
2765
+ # for more information. Note that bucket wildcards are currently not supported.
2766
+ # Examples of valid file_patterns: * `gs://bucket_name/dir/*`: matches all files
2767
+ # within `bucket_name/dir` directory. * `gs://bucket_name/dir/**`: matches all
2768
+ # files in `bucket_name/dir` spanning all subdirectories. * `gs://bucket_name/
2769
+ # file*`: matches files prefixed by `file` in `bucket_name` * `gs://bucket_name/?
2770
+ # ?.txt`: matches files with two characters followed by `.txt` in `bucket_name` *
2771
+ # `gs://bucket_name/[aeiou].txt`: matches files that contain a single vowel
2772
+ # character followed by `.txt` in `bucket_name` * `gs://bucket_name/[a-m].txt`:
2773
+ # matches files that contain `a`, `b`, ... or `m` followed by `.txt` in `
2774
+ # bucket_name` * `gs://bucket_name/a/*/b`: matches all files in `bucket_name`
2775
+ # that match `a/*/b` pattern, such as `a/c/b`, `a/d/b` * `gs://another_bucket/a.
2776
+ # txt`: matches `gs://another_bucket/a.txt` You can combine wildcards to provide
2777
+ # more powerful matches, for example: * `gs://bucket_name/[a-m]??.j*g`
2780
2778
  # Corresponds to the JSON property `filePatterns`
2781
2779
  # @return [Array<String>]
2782
2780
  attr_accessor :file_patterns
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatacatalogV1beta1
18
18
  # Version of the google-apis-datacatalog_v1beta1 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.50.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.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250314"
25
+ REVISION = "20250502"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datacatalog_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-23 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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.49.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1beta1/v0.50.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1beta1
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.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Google Cloud Data Catalog API V1beta1
79
79
  test_files: []