google-apis-firebaseapphosting_v1 0.3.0 → 0.4.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: '02800ba1637881765281de52ed19cbe09ad1320bdf6eb045f641613f80962aeb'
4
- data.tar.gz: bacc2678744111644c3a9525eae7e776b408c1f22c1ecb03590d9b1efc4ee33a
3
+ metadata.gz: 5e4f6b8b5b301e5d5f45be658d9ff2aa8f8ac670531096ed2d10568c04321323
4
+ data.tar.gz: f2a5566f01ccad0726cdc987413db4a3bc761b0cdba8c16346ed1becb47a7957
5
5
  SHA512:
6
- metadata.gz: 5b891cf54195a05756ca1e7bf3359daa5fcc8b5c0ef2c633fbec47ab5d95eff6aa8a2554909ddb5c5d5342757cdb535efcb17b2c0b220bf66db366dfafede9b9
7
- data.tar.gz: 21604fb4250a7e63d2e0a327c71ea83fa9810b4f9664068018e3f1a5fd2287f84d4dcf6931752399a4ffc2ba52b439d41307936ae17f171cd092e2f7c42e966e
6
+ metadata.gz: ecefc78e4fbe43cffe243071817c0e7e02b89cb0d5b93c2230749e8cd93861d3993ab6560d0c6bf6140bc8deeee392e108e8f3869bc0d0479eedf8889ab9a7bb
7
+ data.tar.gz: 9d45900a28300818b63805d66b96cf00c04bf3aad27b0f1f58b6e719533a7cb1f0019dbbe2257ceee04ddb41f56be0188043797ca65909982f156abeb756b3a5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firebaseapphosting_v1
2
2
 
3
+ ### v0.4.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251020
6
+
3
7
  ### v0.3.0 (2025-09-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20250904
@@ -1176,6 +1176,13 @@ module Google
1176
1176
  # @return [Array<Google::Apis::FirebaseapphostingV1::Operation>]
1177
1177
  attr_accessor :operations
1178
1178
 
1179
+ # Unordered list. Unreachable resources. Populated when the request sets `
1180
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1181
+ # when attempting to list all resources across all supported locations.
1182
+ # Corresponds to the JSON property `unreachable`
1183
+ # @return [Array<String>]
1184
+ attr_accessor :unreachable
1185
+
1179
1186
  def initialize(**args)
1180
1187
  update!(**args)
1181
1188
  end
@@ -1184,6 +1191,7 @@ module Google
1184
1191
  def update!(**args)
1185
1192
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1186
1193
  @operations = args[:operations] if args.key?(:operations)
1194
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1187
1195
  end
1188
1196
  end
1189
1197
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebaseapphostingV1
18
18
  # Version of the google-apis-firebaseapphosting_v1 gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.4.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 = "20250904"
25
+ REVISION = "20251020"
26
26
  end
27
27
  end
28
28
  end
@@ -567,6 +567,7 @@ module Google
567
567
  property :next_page_token, as: 'nextPageToken'
568
568
  collection :operations, as: 'operations', class: Google::Apis::FirebaseapphostingV1::Operation, decorator: Google::Apis::FirebaseapphostingV1::Operation::Representation
569
569
 
570
+ collection :unreachable, as: 'unreachable'
570
571
  end
571
572
  end
572
573
 
@@ -1156,6 +1156,13 @@ module Google
1156
1156
  # The standard list page size.
1157
1157
  # @param [String] page_token
1158
1158
  # The standard list page token.
1159
+ # @param [Boolean] return_partial_success
1160
+ # When set to `true`, operations that are reachable are returned as normal, and
1161
+ # those that are unreachable are returned in the [ListOperationsResponse.
1162
+ # unreachable] field. This can only be `true` when reading across collections e.
1163
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1164
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1165
+ # explicitly documented otherwise in service or product specific documentation.
1159
1166
  # @param [String] fields
1160
1167
  # Selector specifying which fields to include in a partial response.
1161
1168
  # @param [String] quota_user
@@ -1173,7 +1180,7 @@ module Google
1173
1180
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1174
1181
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1175
1182
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1176
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1183
+ 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)
1177
1184
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
1178
1185
  command.response_representation = Google::Apis::FirebaseapphostingV1::ListOperationsResponse::Representation
1179
1186
  command.response_class = Google::Apis::FirebaseapphostingV1::ListOperationsResponse
@@ -1181,6 +1188,7 @@ module Google
1181
1188
  command.query['filter'] = filter unless filter.nil?
1182
1189
  command.query['pageSize'] = page_size unless page_size.nil?
1183
1190
  command.query['pageToken'] = page_token unless page_token.nil?
1191
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1184
1192
  command.query['fields'] = fields unless fields.nil?
1185
1193
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1186
1194
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseapphosting_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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-firebaseapphosting_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseapphosting_v1/v0.3.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseapphosting_v1/v0.4.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseapphosting_v1
62
62
  rdoc_options: []
63
63
  require_paths: