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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22c1ae0dc109f1f97cf3a42671bae097e3ab41b2154b138d74594a4a4d8f31ac
4
- data.tar.gz: ec4be4b7933b5eab6b803eaaf9bb275f859dd4308141f8dab300a0d177ae24e6
3
+ metadata.gz: 0254ae66a9ba76eb37bb975b1451a6bf05d14bb7a1c760e31fad7ca3beaf0ef0
4
+ data.tar.gz: b76d2fe7c41b835782a4a8a276f3a8dc6d16928f3c30b50cd5f5c852222d9d4c
5
5
  SHA512:
6
- metadata.gz: 4d605f24559875d2cfa81c8bba3662466da6e5e08991fc25974d3d3fdbce1398a614adf000b4a9148470e311910a4a490700df9a0c5414bf7ef92ce3b766fe25
7
- data.tar.gz: f84a27c13ede4d4c9006ac3f50be10add14e3a09b6b0ee17c35ca70b0230ea69b39bc7fd3ed01a3d27340e8f868fb7ba4df38d59fd0fa60b76ecb5588cdbeff9
6
+ metadata.gz: f9246dd0722f6aa2f75b9067a99fc9b0ef5119f2f1fb1d0f59af935e08d88d2395f7aafa3b90e0811be62ce0f8c740a14cf98246356a08c4bacba49d82e664e1
7
+ data.tar.gz: ec175408e97c67bcc1074ad3fe664765bea4eeff360f99be2cc0a9c6f2532e30d47ac575a7181713013e05bd8a56f8029bd6c34ef8454840409d13f1fb50c42f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-slides_v1
2
2
 
3
+ ### v0.30.0 (2025-04-13)
4
+
5
+ * Regenerated from discovery document revision 20250401
6
+
3
7
  ### v0.29.0 (2025-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20250218
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.29.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 = "20250218"
25
+ REVISION = "20250401"
26
26
  end
27
27
  end
28
28
  end
@@ -1893,6 +1893,7 @@ module Google
1893
1893
  # @private
1894
1894
  class Representation < Google::Apis::Core::JsonRepresentation
1895
1895
  property :match_case, as: 'matchCase'
1896
+ property :search_by_regex, as: 'searchByRegex'
1896
1897
  property :text, as: 'text'
1897
1898
  end
1898
1899
  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/limits) for quota purposes.
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.29.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-03-02 00:00:00.000000000 Z
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.29.0
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: