google-apis-texttospeech_v1beta1 0.38.0 → 0.39.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: c234b68842aa65484bbc747d8d30b006c9fc7201cc3d8031690a4b487b43a8cc
4
- data.tar.gz: 280d3e76c337ebada1c08c8a70d45178a187d6720a30f2812d2a031e8a3adfdf
3
+ metadata.gz: d613030968e0c592502bfdf604b3f498cb6a80a60e1e0546e624b18573858a15
4
+ data.tar.gz: c2c22e132660ed1a79fbcb1cb7cfc2f8ca275f6ab76b7ff183a63d4b2259cb4e
5
5
  SHA512:
6
- metadata.gz: 84273ea2af55aa82c925f5b8e4fb053bcfff9cae80a8e2a09a5af62c7a008fc4e549879b27489a2f6092b39cff6f3d2ae66981e701bc2f8a7ff9b009bd24f0e9
7
- data.tar.gz: 633d6bf7a56a91acb53c3f49f1b6a6db66412c50f4947618f6f1d99c14a1f0f9bf66225c477f5c661e93965bb7f2ae7a02692c049053b41acbad77968b2fb177
6
+ metadata.gz: 293200781855a900d1c61a98c36ae2029e9ebe83becf0b8c0800e0a424381e8e71aea998b34ace05ad2ddec0109a9b789736948636e5d0904a9161500717644d
7
+ data.tar.gz: 770a424ae3b4ab242417c1fea3ae52e2c631374d1c21b1a850deda3dab97a0a11d24ece00535ef0b794171db5cf2f72aafb015caa2890f747153341052a1d6ba
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-texttospeech_v1beta1
2
2
 
3
+ ### v0.39.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251001
6
+
3
7
  ### v0.38.0 (2025-09-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20250923
@@ -236,6 +236,13 @@ module Google
236
236
  # @return [Array<Google::Apis::TexttospeechV1beta1::Operation>]
237
237
  attr_accessor :operations
238
238
 
239
+ # Unordered list. Unreachable resources. Populated when the request sets `
240
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
241
+ # when attempting to list all resources across all supported locations.
242
+ # Corresponds to the JSON property `unreachable`
243
+ # @return [Array<String>]
244
+ attr_accessor :unreachable
245
+
239
246
  def initialize(**args)
240
247
  update!(**args)
241
248
  end
@@ -244,6 +251,7 @@ module Google
244
251
  def update!(**args)
245
252
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
246
253
  @operations = args[:operations] if args.key?(:operations)
254
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
247
255
  end
248
256
  end
249
257
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module TexttospeechV1beta1
18
18
  # Version of the google-apis-texttospeech_v1beta1 gem
19
- GEM_VERSION = "0.38.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250923"
25
+ REVISION = "20251001"
26
26
  end
27
27
  end
28
28
  end
@@ -219,6 +219,7 @@ module Google
219
219
  property :next_page_token, as: 'nextPageToken'
220
220
  collection :operations, as: 'operations', class: Google::Apis::TexttospeechV1beta1::Operation, decorator: Google::Apis::TexttospeechV1beta1::Operation::Representation
221
221
 
222
+ collection :unreachable, as: 'unreachable'
222
223
  end
223
224
  end
224
225
 
@@ -125,6 +125,13 @@ module Google
125
125
  # The standard list page size.
126
126
  # @param [String] page_token
127
127
  # The standard list page token.
128
+ # @param [Boolean] return_partial_success
129
+ # When set to `true`, operations that are reachable are returned as normal, and
130
+ # those that are unreachable are returned in the [ListOperationsResponse.
131
+ # unreachable] field. This can only be `true` when reading across collections e.
132
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
133
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
134
+ # explicitly documented otherwise in service or product specific documentation.
128
135
  # @param [String] fields
129
136
  # Selector specifying which fields to include in a partial response.
130
137
  # @param [String] quota_user
@@ -142,7 +149,7 @@ module Google
142
149
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
143
150
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
144
151
  # @raise [Google::Apis::AuthorizationError] Authorization is required
145
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
152
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
146
153
  command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
147
154
  command.response_representation = Google::Apis::TexttospeechV1beta1::ListOperationsResponse::Representation
148
155
  command.response_class = Google::Apis::TexttospeechV1beta1::ListOperationsResponse
@@ -150,6 +157,7 @@ module Google
150
157
  command.query['filter'] = filter unless filter.nil?
151
158
  command.query['pageSize'] = page_size unless page_size.nil?
152
159
  command.query['pageToken'] = page_token unless page_token.nil?
160
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
153
161
  command.query['fields'] = fields unless fields.nil?
154
162
  command.query['quotaUser'] = quota_user unless quota_user.nil?
155
163
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-texttospeech_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.38.0
4
+ version: 0.39.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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-texttospeech_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-texttospeech_v1beta1/v0.38.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-texttospeech_v1beta1/v0.39.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-texttospeech_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: