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 @@ -254567,6 +254567,7 @@
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/appCrash": app_crash
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/crawlGraphUri": crawl_graph_uri
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/device": device
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/executionType": execution_type
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/failedReason": failed_reason
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/inconclusiveReason": inconclusive_reason
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/resultsStoragePath": results_storage_path
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-firebaseappdistribution_v1alpha

### v0.23.0 (2025-11-02)

* Regenerated from discovery document revision 20251030

### v0.22.0 (2025-10-26)

* Regenerated from discovery document revision 20251022
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -660,6 +660,11 @@ class GoogleFirebaseAppdistroV1alphaDeviceExecution
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestDevice]
attr_accessor :device

# Output only. The type of execution for the test.
# Corresponds to the JSON property `executionType`
# @return [String]
attr_accessor :execution_type

# Output only. The reason why the test failed.
# Corresponds to the JSON property `failedReason`
# @return [String]
Expand Down Expand Up @@ -713,6 +718,7 @@ def update!(**args)
@app_crash = args[:app_crash] if args.key?(:app_crash)
@crawl_graph_uri = args[:crawl_graph_uri] if args.key?(:crawl_graph_uri)
@device = args[:device] if args.key?(:device)
@execution_type = args[:execution_type] if args.key?(:execution_type)
@failed_reason = args[:failed_reason] if args.key?(:failed_reason)
@inconclusive_reason = args[:inconclusive_reason] if args.key?(:inconclusive_reason)
@results_storage_path = args[:results_storage_path] if args.key?(:results_storage_path)
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.22.0"
GEM_VERSION = "0.23.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 = "20251022"
REVISION = "20251030"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :crawl_graph_uri, as: 'crawlGraphUri'
property :device, as: 'device', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestDevice, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestDevice::Representation

property :execution_type, as: 'executionType'
property :failed_reason, as: 'failedReason'
property :inconclusive_reason, as: 'inconclusiveReason'
property :results_storage_path, as: 'resultsStoragePath'
Expand Down