google-apis-docs_v1 0.31.0 → 0.33.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: ba4f52a680ff8b0543a4df250d82425f9b5d2c1b931924e841aec80313d5431e
4
- data.tar.gz: 65c77eb3d787df2dc582665f92618fc15ffdfada060d52006e2fa41d5879becc
3
+ metadata.gz: 828c4398e57728b0de0eb197b7e7ec3cbb0da1f05c9b046a373874fcbcb0e469
4
+ data.tar.gz: 0fc27fbf642a86b46751ae571d71e49139dc22038f5b7e93a850bfe7c5ff29ea
5
5
  SHA512:
6
- metadata.gz: a17d32530e941d9204e8f8394a9b9e71b70c45f987925056843067b69c539e4cfa53531bae3731dd7e8a26c7ce89a929e3df3f311fee8dba20fed36d4f95c340
7
- data.tar.gz: 5ba86a733c08ef86e8e62e27cd3c89bdfc17be4bf1f1edc75a3500314f350cb0d39f6ac1954e8a42b4d04928949b8c52ea870d50dab9df720f36903628d7f06f
6
+ metadata.gz: b4fb540920096160bc348b2c2a2486268c0926d26728385f45309a2416494e6dbf1982f4c8a726ae209c1264598e2338c35d45670dca4775a04f96e8ff0f6548
7
+ data.tar.gz: 76e446d1c997c3e73dd2a109ce5d504d00ae99bd583ed3165bd6aae8372220b741e2bdc74d1b5ac60beedc25759077340d0b9e40d58f3ac2dea23b6b356d2547
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-docs_v1
2
2
 
3
+ ### v0.33.0 (2025-05-04)
4
+
5
+ * Regenerated using generator version 0.17.0
6
+
7
+ ### v0.32.0 (2025-04-06)
8
+
9
+ * Regenerated from discovery document revision 20250325
10
+
3
11
  ### v0.31.0 (2025-02-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20250218
data/OVERVIEW.md CHANGED
@@ -79,11 +79,11 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
79
79
 
80
80
  **For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
81
81
 
82
- The [product documentation](https://developers.google.com/docs/) may provide guidance regarding the preferred client library to use.
82
+ The [product documentation](https://developers.google.com/workspace/docs/) may provide guidance regarding the preferred client library to use.
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
 
@@ -5186,6 +5186,15 @@ module Google
5186
5186
  attr_accessor :match_case
5187
5187
  alias_method :match_case?, :match_case
5188
5188
 
5189
+ # Optional. True if the find value should be treated as a regular expression.
5190
+ # Any backslashes in the pattern should be escaped. - `True`: the search text is
5191
+ # treated as a regular expressions. - `False`: the search text is treated as a
5192
+ # substring for matching.
5193
+ # Corresponds to the JSON property `searchByRegex`
5194
+ # @return [Boolean]
5195
+ attr_accessor :search_by_regex
5196
+ alias_method :search_by_regex?, :search_by_regex
5197
+
5189
5198
  # The text to search for in the document.
5190
5199
  # Corresponds to the JSON property `text`
5191
5200
  # @return [String]
@@ -5198,6 +5207,7 @@ module Google
5198
5207
  # Update properties of this object
5199
5208
  def update!(**args)
5200
5209
  @match_case = args[:match_case] if args.key?(:match_case)
5210
+ @search_by_regex = args[:search_by_regex] if args.key?(:search_by_regex)
5201
5211
  @text = args[:text] if args.key?(:text)
5202
5212
  end
5203
5213
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DocsV1
18
18
  # Version of the google-apis-docs_v1 gem
19
- GEM_VERSION = "0.31.0"
19
+ GEM_VERSION = "0.33.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 = "20250218"
25
+ REVISION = "20250325"
26
26
  end
27
27
  end
28
28
  end
@@ -2382,6 +2382,7 @@ module Google
2382
2382
  # @private
2383
2383
  class Representation < Google::Apis::Core::JsonRepresentation
2384
2384
  property :match_case, as: 'matchCase'
2385
+ property :search_by_regex, as: 'searchByRegex'
2385
2386
  property :text, as: 'text'
2386
2387
  end
2387
2388
  end
@@ -30,7 +30,7 @@ module Google
30
30
  # Docs = Google::Apis::DocsV1 # Alias the module
31
31
  # service = Docs::DocsService.new
32
32
  #
33
- # @see https://developers.google.com/docs/
33
+ # @see https://developers.google.com/workspace/docs/
34
34
  class DocsService < Google::Apis::Core::BaseService
35
35
  DEFAULT_ENDPOINT_TEMPLATE = "https://docs.$UNIVERSE_DOMAIN$/"
36
36
 
@@ -23,7 +23,7 @@ module Google
23
23
  #
24
24
  # Reads and writes Google Docs documents.
25
25
  #
26
- # @see https://developers.google.com/docs/
26
+ # @see https://developers.google.com/workspace/docs/
27
27
  module DocsV1
28
28
  # Version of the Google Docs API this client connects to.
29
29
  # This is NOT the gem version.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-docs_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.33.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 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-docs_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-docs_v1/v0.31.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-docs_v1/v0.33.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-docs_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.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Google Docs API V1
79
79
  test_files: []