google-apis-texttospeech_v1beta1 0.38.0 → 0.40.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: b990b1b570a87cccb317f5b813fba9df63ed3680614f3711ba92dc84f7dfdf17
4
+ data.tar.gz: a2b55d4ed3002219e8dc5c59bb64abf4f8fef88ee372e0e81085b9ec434909e8
5
5
  SHA512:
6
- metadata.gz: 84273ea2af55aa82c925f5b8e4fb053bcfff9cae80a8e2a09a5af62c7a008fc4e549879b27489a2f6092b39cff6f3d2ae66981e701bc2f8a7ff9b009bd24f0e9
7
- data.tar.gz: 633d6bf7a56a91acb53c3f49f1b6a6db66412c50f4947618f6f1d99c14a1f0f9bf66225c477f5c661e93965bb7f2ae7a02692c049053b41acbad77968b2fb177
6
+ metadata.gz: aa4b88ef650dd6bb59b9a82ce2ae6a9319dbcb78edcbf6bcd027c07a707b6ef611d278d81d559fd71eaa1c6ff63650ad762261438c381375da1d38c566604017
7
+ data.tar.gz: 8df0dc1f66f229e15c1993c25346fcbf08bee64f4b79aa329f0ba6c99580b3816f2571ce225e633c2a64418fa1897a61f6a478c0317160deb97d9f47f309540c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-texttospeech_v1beta1
2
2
 
3
+ ### v0.40.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20251014
6
+
7
+ ### v0.39.0 (2025-10-12)
8
+
9
+ * Regenerated from discovery document revision 20251001
10
+
3
11
  ### v0.38.0 (2025-09-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20250923
@@ -33,6 +33,14 @@ module Google
33
33
  attr_accessor :low_latency_journey_synthesis
34
34
  alias_method :low_latency_journey_synthesis?, :low_latency_journey_synthesis
35
35
 
36
+ # Optional. Input only. If true, relaxes safety filters for Gemini TTS. Only
37
+ # supported for accounts linked to Invoiced (Offline) Cloud billing accounts.
38
+ # Otherwise, will return result google.rpc.Code.INVALID_ARGUMENT.
39
+ # Corresponds to the JSON property `relaxSafetyFilters`
40
+ # @return [Boolean]
41
+ attr_accessor :relax_safety_filters
42
+ alias_method :relax_safety_filters?, :relax_safety_filters
43
+
36
44
  def initialize(**args)
37
45
  update!(**args)
38
46
  end
@@ -40,6 +48,7 @@ module Google
40
48
  # Update properties of this object
41
49
  def update!(**args)
42
50
  @low_latency_journey_synthesis = args[:low_latency_journey_synthesis] if args.key?(:low_latency_journey_synthesis)
51
+ @relax_safety_filters = args[:relax_safety_filters] if args.key?(:relax_safety_filters)
43
52
  end
44
53
  end
45
54
 
@@ -236,6 +245,13 @@ module Google
236
245
  # @return [Array<Google::Apis::TexttospeechV1beta1::Operation>]
237
246
  attr_accessor :operations
238
247
 
248
+ # Unordered list. Unreachable resources. Populated when the request sets `
249
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
250
+ # when attempting to list all resources across all supported locations.
251
+ # Corresponds to the JSON property `unreachable`
252
+ # @return [Array<String>]
253
+ attr_accessor :unreachable
254
+
239
255
  def initialize(**args)
240
256
  update!(**args)
241
257
  end
@@ -244,6 +260,7 @@ module Google
244
260
  def update!(**args)
245
261
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
246
262
  @operations = args[:operations] if args.key?(:operations)
263
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
247
264
  end
248
265
  end
249
266
 
@@ -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.40.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 = "20251014"
26
26
  end
27
27
  end
28
28
  end
@@ -164,6 +164,7 @@ module Google
164
164
  # @private
165
165
  class Representation < Google::Apis::Core::JsonRepresentation
166
166
  property :low_latency_journey_synthesis, as: 'lowLatencyJourneySynthesis'
167
+ property :relax_safety_filters, as: 'relaxSafetyFilters'
167
168
  end
168
169
  end
169
170
 
@@ -219,6 +220,7 @@ module Google
219
220
  property :next_page_token, as: 'nextPageToken'
220
221
  collection :operations, as: 'operations', class: Google::Apis::TexttospeechV1beta1::Operation, decorator: Google::Apis::TexttospeechV1beta1::Operation::Representation
221
222
 
223
+ collection :unreachable, as: 'unreachable'
222
224
  end
223
225
  end
224
226
 
@@ -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.40.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.40.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: