Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -247874,6 +247874,7 @@
"/firebaseappdistribution:v1alpha/firebaseappdistribution.projects.apps.testCases.list/pageToken": page_token
"/firebaseappdistribution:v1alpha/firebaseappdistribution.projects.apps.testCases.list/parent": parent
"/firebaseappdistribution:v1alpha/firebaseappdistribution.projects.apps.testCases.patch": patch_project_app_test_case
"/firebaseappdistribution:v1alpha/firebaseappdistribution.projects.apps.testCases.patch/allowMissing": allow_missing
"/firebaseappdistribution:v1alpha/firebaseappdistribution.projects.apps.testCases.patch/name": name
"/firebaseappdistribution:v1alpha/firebaseappdistribution.projects.apps.updateTestConfig": update_project_app_test_config
"/firebaseappdistribution:v1alpha/firebaseappdistribution.projects.apps.updateTestConfig/name": name
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-firebaseappdistribution_v1alpha

### v0.19.0 (2025-09-21)

* Regenerated from discovery document revision 20250916

### v0.18.0 (2025-09-14)

* Regenerated from discovery document revision 20250912
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module FirebaseappdistributionV1alpha
# Version of the google-apis-firebaseappdistribution_v1alpha gem
GEM_VERSION = "0.18.0"
GEM_VERSION = "0.19.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250912"
REVISION = "20250916"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,9 @@ def list_project_app_test_cases(parent, page_size: nil, page_token: nil, fields:
# Identifier. The name of the test case resource. Format: `projects/`
# project_number`/apps/`app_id`/testCases/`test_case_id``
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase] google_firebase_appdistro_v1alpha_test_case_object
# @param [Boolean] allow_missing
# Optional. If set to true, and the test case is not found, a new test case will
# be created.
# @param [String] fields
# Selector specifying which fields to include in a partial response.
# @param [String] quota_user
Expand All @@ -741,13 +744,14 @@ def list_project_app_test_cases(parent, page_size: nil, page_token: nil, fields:
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required
def patch_project_app_test_case(name, google_firebase_appdistro_v1alpha_test_case_object = nil, fields: nil, quota_user: nil, options: nil, &block)
def patch_project_app_test_case(name, google_firebase_appdistro_v1alpha_test_case_object = nil, allow_missing: nil, fields: nil, quota_user: nil, options: nil, &block)
command = make_simple_command(:patch, 'v1alpha/{+name}', options)
command.request_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase::Representation
command.request_object = google_firebase_appdistro_v1alpha_test_case_object
command.response_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase::Representation
command.response_class = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase
command.params['name'] = name unless name.nil?
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
command.query['fields'] = fields unless fields.nil?
command.query['quotaUser'] = quota_user unless quota_user.nil?
execute_or_queue_command(command, &block)
Expand Down
Loading