google-apis-slides_v1 0.29.0 → 0.30.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/slides_v1/classes.rb +12 -2
- data/lib/google/apis/slides_v1/gem_version.rb +2 -2
- data/lib/google/apis/slides_v1/representations.rb +1 -0
- data/lib/google/apis/slides_v1/service.rb +3 -2
- data/lib/google/apis/slides_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: 0254ae66a9ba76eb37bb975b1451a6bf05d14bb7a1c760e31fad7ca3beaf0ef0
|
4
|
+
data.tar.gz: b76d2fe7c41b835782a4a8a276f3a8dc6d16928f3c30b50cd5f5c852222d9d4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9246dd0722f6aa2f75b9067a99fc9b0ef5119f2f1fb1d0f59af935e08d88d2395f7aafa3b90e0811be62ce0f8c740a14cf98246356a08c4bacba49d82e664e1
|
7
|
+
data.tar.gz: ec175408e97c67bcc1074ad3fe664765bea4eeff360f99be2cc0a9c6f2532e30d47ac575a7181713013e05bd8a56f8029bd6c34ef8454840409d13f1fb50c42f
|
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/slides/) may provide guidance regarding the preferred client library to use.
|
82
|
+
The [product documentation](https://developers.google.com/workspace/slides/) may provide guidance regarding the preferred client library to use.
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
@@ -2125,7 +2125,7 @@ module Google
|
|
2125
2125
|
|
2126
2126
|
# A PageElement kind representing a generic shape that doesn't have a more
|
2127
2127
|
# specific classification. For more information, see [Size and position page
|
2128
|
-
# elements](https://developers.google.com/slides/api/guides/transform).
|
2128
|
+
# elements](https://developers.google.com/workspace/slides/api/guides/transform).
|
2129
2129
|
# Corresponds to the JSON property `shape`
|
2130
2130
|
# @return [Google::Apis::SlidesV1::Shape]
|
2131
2131
|
attr_accessor :shape
|
@@ -3336,7 +3336,7 @@ module Google
|
|
3336
3336
|
|
3337
3337
|
# A PageElement kind representing a generic shape that doesn't have a more
|
3338
3338
|
# specific classification. For more information, see [Size and position page
|
3339
|
-
# elements](https://developers.google.com/slides/api/guides/transform).
|
3339
|
+
# elements](https://developers.google.com/workspace/slides/api/guides/transform).
|
3340
3340
|
class Shape
|
3341
3341
|
include Google::Apis::Core::Hashable
|
3342
3342
|
|
@@ -3723,6 +3723,15 @@ module Google
|
|
3723
3723
|
attr_accessor :match_case
|
3724
3724
|
alias_method :match_case?, :match_case
|
3725
3725
|
|
3726
|
+
# Optional. True if the find value should be treated as a regular expression.
|
3727
|
+
# Any backslashes in the pattern should be escaped. - `True`: the search text is
|
3728
|
+
# treated as a regular expressions. - `False`: the search text is treated as a
|
3729
|
+
# substring for matching.
|
3730
|
+
# Corresponds to the JSON property `searchByRegex`
|
3731
|
+
# @return [Boolean]
|
3732
|
+
attr_accessor :search_by_regex
|
3733
|
+
alias_method :search_by_regex?, :search_by_regex
|
3734
|
+
|
3726
3735
|
# The text to search for in the shape or table.
|
3727
3736
|
# Corresponds to the JSON property `text`
|
3728
3737
|
# @return [String]
|
@@ -3735,6 +3744,7 @@ module Google
|
|
3735
3744
|
# Update properties of this object
|
3736
3745
|
def update!(**args)
|
3737
3746
|
@match_case = args[:match_case] if args.key?(:match_case)
|
3747
|
+
@search_by_regex = args[:search_by_regex] if args.key?(:search_by_regex)
|
3738
3748
|
@text = args[:text] if args.key?(:text)
|
3739
3749
|
end
|
3740
3750
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SlidesV1
|
18
18
|
# Version of the google-apis-slides_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.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 = "20250401"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# Slides = Google::Apis::SlidesV1 # Alias the module
|
31
31
|
# service = Slides::SlidesService.new
|
32
32
|
#
|
33
|
-
# @see https://developers.google.com/slides/
|
33
|
+
# @see https://developers.google.com/workspace/slides/
|
34
34
|
class SlidesService < Google::Apis::Core::BaseService
|
35
35
|
DEFAULT_ENDPOINT_TEMPLATE = "https://slides.$UNIVERSE_DOMAIN$/"
|
36
36
|
|
@@ -194,7 +194,8 @@ module Google
|
|
194
194
|
|
195
195
|
# Generates a thumbnail of the latest version of the specified page in the
|
196
196
|
# presentation and returns a URL to the thumbnail image. This request counts as
|
197
|
-
# an [expensive read request](/slides/
|
197
|
+
# an [expensive read request](https://developers.google.com/workspace/slides/
|
198
|
+
# limits) for quota purposes.
|
198
199
|
# @param [String] presentation_id
|
199
200
|
# The ID of the presentation to retrieve.
|
200
201
|
# @param [String] page_object_id
|
@@ -23,7 +23,7 @@ module Google
|
|
23
23
|
#
|
24
24
|
# Reads and writes Google Slides presentations.
|
25
25
|
#
|
26
|
-
# @see https://developers.google.com/slides/
|
26
|
+
# @see https://developers.google.com/workspace/slides/
|
27
27
|
module SlidesV1
|
28
28
|
# Version of the Google Slides 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-slides_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.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-slides_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-slides_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-slides_v1/v0.30.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-slides_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|