google-apis-docs_v1 0.31.0 → 0.32.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/docs_v1/classes.rb +10 -0
- data/lib/google/apis/docs_v1/gem_version.rb +2 -2
- data/lib/google/apis/docs_v1/representations.rb +1 -0
- data/lib/google/apis/docs_v1/service.rb +1 -1
- data/lib/google/apis/docs_v1.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b2101eabcaf01d5fb9dcaca12260662ec4a5bd4bfcb68ea92271ffdc6460cd7
|
4
|
+
data.tar.gz: e6bc0db0e5ad16420f1d2c75731b06aa34d6c988cd249701417f7080a64bfdbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33d69a8f6b0d73c33ff7fbdea098a512bd2b9799ec67242440fc128a8623966033dcabac3cb79ab419b21f99db7919f813a47970c48e2d6e02d5811bb66f8c54
|
7
|
+
data.tar.gz: '078d4cf1785ba90adbaeffcf26b2558b1f89af24adb83097868f20fa70db0f9cc78c13ed1f5ba032f855a2b7e42b29b5028c37ebe49e225e3d599f99a601c054'
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -79,7 +79,7 @@ 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
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250325"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
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
|
|
data/lib/google/apis/docs_v1.rb
CHANGED
@@ -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.
|
4
|
+
version: 0.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-16 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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-docs_v1/v0.32.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:
|