Skip to content

Commit 6745edc

Browse files
feat: Automated regeneration of firebaseappdistribution v1alpha client (googleapis#24223)
Auto-created at 2025-09-07 10:30:52 +0000 using the toys pull request generator.
1 parent b2e331a commit 6745edc

File tree

5 files changed

+26
-6
lines changed

5 files changed

+26
-6
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246880,6 +246880,7 @@
246880246880
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/screenshotUris": screenshot_uris
246881246881
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/screenshotUris/screenshot_uri": screenshot_uri
246882246882
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/state": state
246883+
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/videoStartTime": video_start_time
246883246884
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceExecution/videoUri": video_uri
246884246885
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction": google_firebase_appdistro_v1alpha_device_interaction
246885246886
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaDeviceInteraction/backAction": back_action
@@ -246926,6 +246927,7 @@
246926246927
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaGoalAction/debugInfo": debug_info
246927246928
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaGoalAction/deviceAction": device_action
246928246929
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaGoalAction/explanation": explanation
246930+
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaGoalAction/startTime": start_time
246929246931
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaGoalAction/terminalAction": terminal_action
246930246932
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo": google_firebase_appdistro_v1alpha_goal_action_debug_info
246931246933
"/firebaseappdistribution:v1alpha/GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo/annotatedScreenshotUri": annotated_screenshot_uri

generated/google-apis-firebaseappdistribution_v1alpha/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-firebaseappdistribution_v1alpha
22

3+
### v0.17.0 (2025-09-07)
4+
5+
* Regenerated from discovery document revision 20250902
6+
37
### v0.16.0 (2025-08-31)
48

59
* Regenerated from discovery document revision 20250825

generated/google-apis-firebaseappdistribution_v1alpha/lib/google/apis/firebaseappdistribution_v1alpha/classes.rb

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,11 @@ class GoogleFirebaseAppdistroV1alphaDeviceExecution
621621
# @return [String]
622622
attr_accessor :state
623623

624+
# Output only. The time at which the video started recording.
625+
# Corresponds to the JSON property `videoStartTime`
626+
# @return [String]
627+
attr_accessor :video_start_time
628+
624629
# Output only. A URI to a video of the test run.
625630
# Corresponds to the JSON property `videoUri`
626631
# @return [String]
@@ -642,6 +647,7 @@ def update!(**args)
642647
@robo_stats = args[:robo_stats] if args.key?(:robo_stats)
643648
@screenshot_uris = args[:screenshot_uris] if args.key?(:screenshot_uris)
644649
@state = args[:state] if args.key?(:state)
650+
@video_start_time = args[:video_start_time] if args.key?(:video_start_time)
645651
@video_uri = args[:video_uri] if args.key?(:video_uri)
646652
end
647653
end
@@ -966,7 +972,7 @@ def update!(**args)
966972
class GoogleFirebaseAppdistroV1alphaGoalAction
967973
include Google::Apis::Core::Hashable
968974

969-
# Information to help the customer understand why the agent took this action
975+
# Information to help the customer understand why the agent took this action.
970976
# Corresponds to the JSON property `debugInfo`
971977
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo]
972978
attr_accessor :debug_info
@@ -982,6 +988,11 @@ class GoogleFirebaseAppdistroV1alphaGoalAction
982988
# @return [String]
983989
attr_accessor :explanation
984990

991+
# Output only. The time at which the action started.
992+
# Corresponds to the JSON property `startTime`
993+
# @return [String]
994+
attr_accessor :start_time
995+
985996
# An action taken by the AI to end the goal.
986997
# Corresponds to the JSON property `terminalAction`
987998
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTerminalAction]
@@ -996,21 +1007,22 @@ def update!(**args)
9961007
@debug_info = args[:debug_info] if args.key?(:debug_info)
9971008
@device_action = args[:device_action] if args.key?(:device_action)
9981009
@explanation = args[:explanation] if args.key?(:explanation)
1010+
@start_time = args[:start_time] if args.key?(:start_time)
9991011
@terminal_action = args[:terminal_action] if args.key?(:terminal_action)
10001012
end
10011013
end
10021014

1003-
# Information to help the customer understand why the agent took this action
1015+
# Information to help the customer understand why the agent took this action.
10041016
class GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo
10051017
include Google::Apis::Core::Hashable
10061018

10071019
# Output only. URI of the screenshot with elements labeled which was used by the
1008-
# agent
1020+
# agent.
10091021
# Corresponds to the JSON property `annotatedScreenshotUri`
10101022
# @return [String]
10111023
attr_accessor :annotated_screenshot_uri
10121024

1013-
# Output only. Structured data explaining the agent's choice
1025+
# Output only. Structured data explaining the agent's choice.
10141026
# Corresponds to the JSON property `jsonUri`
10151027
# @return [String]
10161028
attr_accessor :json_uri

generated/google-apis-firebaseappdistribution_v1alpha/lib/google/apis/firebaseappdistribution_v1alpha/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module FirebaseappdistributionV1alpha
1818
# Version of the google-apis-firebaseappdistribution_v1alpha gem
19-
GEM_VERSION = "0.16.0"
19+
GEM_VERSION = "0.17.0"
2020

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

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250825"
25+
REVISION = "20250902"
2626
end
2727
end
2828
end

generated/google-apis-firebaseappdistribution_v1alpha/lib/google/apis/firebaseappdistribution_v1alpha/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
511511

512512
collection :screenshot_uris, as: 'screenshotUris'
513513
property :state, as: 'state'
514+
property :video_start_time, as: 'videoStartTime'
514515
property :video_uri, as: 'videoUri'
515516
end
516517
end
@@ -632,6 +633,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
632633
property :device_action, as: 'deviceAction', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceAction, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceAction::Representation
633634

634635
property :explanation, as: 'explanation'
636+
property :start_time, as: 'startTime'
635637
property :terminal_action, as: 'terminalAction', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTerminalAction, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTerminalAction::Representation
636638

637639
end

0 commit comments

Comments
 (0)