google-apis-speech_v1p1beta1 0.43.0 → 0.45.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: 0ba1c2e277ff7451492352e6a0702c2cb646c675b4000c6e4173a50cbfc53f4a
4
- data.tar.gz: 3d2fbe1a49e875356dd09cb6bf350eccfa9eb43a4dfd3a3de13e8a6cb8b8ad1e
3
+ metadata.gz: 3155824d0d33a1b80edf660c76572ef3f7c51129847cbeb3738977c508b54b9f
4
+ data.tar.gz: 173bfed8d961f47927faa72b9e2f39b3a0600b8fe07cd460078c2a0d26f8b0bb
5
5
  SHA512:
6
- metadata.gz: 6488db6fbd8279e73170a8bb8474396ceceab81cd54b252e6780b18cf0f2887b448e6a27880d584b95f28f914fbca4771a978caba85269fb4c6294cacead61b0
7
- data.tar.gz: 8c8896337b69ce9faf39a8349ee809e92edb1b83e8004b51e1d4f116c28ae849d9cc637aa83f6bcefe40f220e933a9e31c0b859299a9a0af3e4c4c5f01286e13
6
+ metadata.gz: 86d1b0fbac28181d446f3a2ec13ccd83ad935a3133054ed8fd205b9f315fad05a7e61c10e8c78482b3d263771c49a2850028ef598e9979d4f095a71cdb31a15d
7
+ data.tar.gz: ffbf0999ae2f9426b6e0de97ebf80f30ca2b86b5c7459aa1e90f1ef034f89006214a3e8ed4c9d0d8fa3f1189550d316806c7b2c888157e9b54d93068106f2172
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-speech_v1p1beta1
2
2
 
3
+ ### v0.45.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251201
6
+
7
+ ### v0.44.0 (2025-10-05)
8
+
9
+ * Regenerated from discovery document revision 20250925
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.43.0 (2025-05-11)
4
13
 
5
14
  * Regenerated from discovery document revision 20241111
@@ -320,6 +320,14 @@ module Google
320
320
  # @return [Array<Google::Apis::SpeechV1p1beta1::Operation>]
321
321
  attr_accessor :operations
322
322
 
323
+ # Unordered list. Unreachable resources. Populated when the request sets `
324
+ # ListOperationsRequest.return_partial_success` and reads across collections.
325
+ # For example, when attempting to list all resources across all supported
326
+ # locations.
327
+ # Corresponds to the JSON property `unreachable`
328
+ # @return [Array<String>]
329
+ attr_accessor :unreachable
330
+
323
331
  def initialize(**args)
324
332
  update!(**args)
325
333
  end
@@ -328,6 +336,7 @@ module Google
328
336
  def update!(**args)
329
337
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
330
338
  @operations = args[:operations] if args.key?(:operations)
339
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
331
340
  end
332
341
  end
333
342
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SpeechV1p1beta1
18
18
  # Version of the google-apis-speech_v1p1beta1 gem
19
- GEM_VERSION = "0.43.0"
19
+ GEM_VERSION = "0.45.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241111"
25
+ REVISION = "20251201"
26
26
  end
27
27
  end
28
28
  end
@@ -290,6 +290,7 @@ module Google
290
290
  property :next_page_token, as: 'nextPageToken'
291
291
  collection :operations, as: 'operations', class: Google::Apis::SpeechV1p1beta1::Operation, decorator: Google::Apis::SpeechV1p1beta1::Operation::Representation
292
292
 
293
+ collection :unreachable, as: 'unreachable'
293
294
  end
294
295
  end
295
296
 
@@ -92,6 +92,14 @@ module Google
92
92
  # The standard list page size.
93
93
  # @param [String] page_token
94
94
  # The standard list page token.
95
+ # @param [Boolean] return_partial_success
96
+ # When set to `true`, operations that are reachable are returned as normal, and
97
+ # those that are unreachable are returned in the ListOperationsResponse.
98
+ # unreachable field. This can only be `true` when reading across collections.
99
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
100
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
101
+ # if set unless explicitly documented otherwise in service or product specific
102
+ # documentation.
95
103
  # @param [String] fields
96
104
  # Selector specifying which fields to include in a partial response.
97
105
  # @param [String] quota_user
@@ -109,7 +117,7 @@ module Google
109
117
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
110
118
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
111
119
  # @raise [Google::Apis::AuthorizationError] Authorization is required
112
- def list_operations(filter: nil, name: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
120
+ def list_operations(filter: nil, name: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
113
121
  command = make_simple_command(:get, 'v1p1beta1/operations', options)
114
122
  command.response_representation = Google::Apis::SpeechV1p1beta1::ListOperationsResponse::Representation
115
123
  command.response_class = Google::Apis::SpeechV1p1beta1::ListOperationsResponse
@@ -117,6 +125,7 @@ module Google
117
125
  command.query['name'] = name unless name.nil?
118
126
  command.query['pageSize'] = page_size unless page_size.nil?
119
127
  command.query['pageToken'] = page_token unless page_token.nil?
128
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
120
129
  command.query['fields'] = fields unless fields.nil?
121
130
  command.query['quotaUser'] = quota_user unless quota_user.nil?
122
131
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-speech_v1p1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.43.0
4
+ version: 0.45.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-speech_v1p1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-speech_v1p1beta1/v0.43.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-speech_v1p1beta1/v0.45.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-speech_v1p1beta1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Speech-to-Text API V1p1beta1
79
79
  test_files: []