Skip to content

Commit 182e60e

Browse files
feat: Automated regeneration of slides v1 client (googleapis#22342)
Auto-created at 2025-04-06 09:11:58 +0000 using the toys pull request generator.
1 parent ff942d3 commit 182e60e

File tree

8 files changed

+23
-7
lines changed

8 files changed

+23
-7
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332241,6 +332241,7 @@
332241332241
"/slides:v1/StretchedPictureFill/size": size
332242332242
"/slides:v1/SubstringMatchCriteria": substring_match_criteria
332243332243
"/slides:v1/SubstringMatchCriteria/matchCase": match_case
332244+
"/slides:v1/SubstringMatchCriteria/searchByRegex": search_by_regex
332244332245
"/slides:v1/SubstringMatchCriteria/text": text
332245332246
"/slides:v1/Table": table
332246332247
"/slides:v1/Table/columns": columns

generated/google-apis-slides_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-slides_v1
22

3+
### v0.30.0 (2025-04-06)
4+
5+
* Regenerated from discovery document revision 20250325
6+
37
### v0.29.0 (2025-02-26)
48

59
* Regenerated from discovery document revision 20250218

generated/google-apis-slides_v1/OVERVIEW.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
7979

8080
**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.
8181

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.
8383

8484
## Supported Ruby versions
8585

generated/google-apis-slides_v1/lib/google/apis/slides_v1.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module Apis
2323
#
2424
# Reads and writes Google Slides presentations.
2525
#
26-
# @see https://developers.google.com/slides/
26+
# @see https://developers.google.com/workspace/slides/
2727
module SlidesV1
2828
# Version of the Google Slides API this client connects to.
2929
# This is NOT the gem version.

generated/google-apis-slides_v1/lib/google/apis/slides_v1/classes.rb

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2125,7 +2125,7 @@ class PageElement
21252125

21262126
# A PageElement kind representing a generic shape that doesn't have a more
21272127
# 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).
21292129
# Corresponds to the JSON property `shape`
21302130
# @return [Google::Apis::SlidesV1::Shape]
21312131
attr_accessor :shape
@@ -3336,7 +3336,7 @@ def update!(**args)
33363336

33373337
# A PageElement kind representing a generic shape that doesn't have a more
33383338
# 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).
33403340
class Shape
33413341
include Google::Apis::Core::Hashable
33423342

@@ -3723,6 +3723,15 @@ class SubstringMatchCriteria
37233723
attr_accessor :match_case
37243724
alias_method :match_case?, :match_case
37253725

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+
37263735
# The text to search for in the shape or table.
37273736
# Corresponds to the JSON property `text`
37283737
# @return [String]
@@ -3735,6 +3744,7 @@ def initialize(**args)
37353744
# Update properties of this object
37363745
def update!(**args)
37373746
@match_case = args[:match_case] if args.key?(:match_case)
3747+
@search_by_regex = args[:search_by_regex] if args.key?(:search_by_regex)
37383748
@text = args[:text] if args.key?(:text)
37393749
end
37403750
end

generated/google-apis-slides_v1/lib/google/apis/slides_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module SlidesV1
1818
# Version of the google-apis-slides_v1 gem
19-
GEM_VERSION = "0.29.0"
19+
GEM_VERSION = "0.30.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.16.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250218"
25+
REVISION = "20250325"
2626
end
2727
end
2828
end

generated/google-apis-slides_v1/lib/google/apis/slides_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1893,6 +1893,7 @@ class SubstringMatchCriteria
18931893
# @private
18941894
class Representation < Google::Apis::Core::JsonRepresentation
18951895
property :match_case, as: 'matchCase'
1896+
property :search_by_regex, as: 'searchByRegex'
18961897
property :text, as: 'text'
18971898
end
18981899
end

generated/google-apis-slides_v1/lib/google/apis/slides_v1/service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module SlidesV1
3030
# Slides = Google::Apis::SlidesV1 # Alias the module
3131
# service = Slides::SlidesService.new
3232
#
33-
# @see https://developers.google.com/slides/
33+
# @see https://developers.google.com/workspace/slides/
3434
class SlidesService < Google::Apis::Core::BaseService
3535
DEFAULT_ENDPOINT_TEMPLATE = "https://slides.$UNIVERSE_DOMAIN$/"
3636

0 commit comments

Comments
 (0)