google-apis-firebaseappdistribution_v1alpha 0.15.0 → 0.17.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ea61ae92bd7b8e09912e5839695b2f5c0bc9cb495ea1d304fcda741daa0dac5
|
4
|
+
data.tar.gz: 43a77c97f574645cb0789afa6d2661e1525df814c58cd94fa857a8e81c613a8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebc30592988a9202d7bcd3af3adae90a59bf4305d48fc7bac9bc657f34dbbe45a17f5d4470d78dfaa83f61b0971a326356608d9df054b81e355549ceaaff31d9
|
7
|
+
data.tar.gz: dbbe7be7224d3d4aa01ae9bfcfcf9f3ff22b196ee2ce36de13b049e78ac222e03e21aeb03920b6d661b28c5703a20a1b52f8b3456d7cb68fdcb68f2a11a60239
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebaseappdistribution_v1alpha
|
2
2
|
|
3
|
+
### v0.17.0 (2025-09-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250902
|
6
|
+
|
7
|
+
### v0.16.0 (2025-08-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250825
|
10
|
+
|
3
11
|
### v0.15.0 (2025-08-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250811
|
@@ -113,6 +113,11 @@ module Google
|
|
113
113
|
# @return [String]
|
114
114
|
attr_accessor :display_version
|
115
115
|
|
116
|
+
# Output only. The time the release will expire.
|
117
|
+
# Corresponds to the JSON property `expireTime`
|
118
|
+
# @return [String]
|
119
|
+
attr_accessor :expire_time
|
120
|
+
|
116
121
|
# Output only. A link to the Firebase console displaying a single release.
|
117
122
|
# Corresponds to the JSON property `firebaseConsoleUri`
|
118
123
|
# @return [String]
|
@@ -136,6 +141,11 @@ module Google
|
|
136
141
|
# @return [String]
|
137
142
|
attr_accessor :testing_uri
|
138
143
|
|
144
|
+
# Output only. The time the release was last updated.
|
145
|
+
# Corresponds to the JSON property `updateTime`
|
146
|
+
# @return [String]
|
147
|
+
attr_accessor :update_time
|
148
|
+
|
139
149
|
def initialize(**args)
|
140
150
|
update!(**args)
|
141
151
|
end
|
@@ -146,10 +156,12 @@ module Google
|
|
146
156
|
@build_version = args[:build_version] if args.key?(:build_version)
|
147
157
|
@create_time = args[:create_time] if args.key?(:create_time)
|
148
158
|
@display_version = args[:display_version] if args.key?(:display_version)
|
159
|
+
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
149
160
|
@firebase_console_uri = args[:firebase_console_uri] if args.key?(:firebase_console_uri)
|
150
161
|
@name = args[:name] if args.key?(:name)
|
151
162
|
@release_notes = args[:release_notes] if args.key?(:release_notes)
|
152
163
|
@testing_uri = args[:testing_uri] if args.key?(:testing_uri)
|
164
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
153
165
|
end
|
154
166
|
end
|
155
167
|
|
@@ -286,6 +298,13 @@ module Google
|
|
286
298
|
# @return [String]
|
287
299
|
attr_accessor :success_criteria
|
288
300
|
|
301
|
+
# Output only. The test case that contained this step. Note: The test case may
|
302
|
+
# have changed or been deleted since this step was created. Format: `projects/`
|
303
|
+
# project_number`/apps/`app`/testCases/`test_case``
|
304
|
+
# Corresponds to the JSON property `testCase`
|
305
|
+
# @return [String]
|
306
|
+
attr_accessor :test_case
|
307
|
+
|
289
308
|
def initialize(**args)
|
290
309
|
update!(**args)
|
291
310
|
end
|
@@ -296,6 +315,7 @@ module Google
|
|
296
315
|
@goal = args[:goal] if args.key?(:goal)
|
297
316
|
@hint = args[:hint] if args.key?(:hint)
|
298
317
|
@success_criteria = args[:success_criteria] if args.key?(:success_criteria)
|
318
|
+
@test_case = args[:test_case] if args.key?(:test_case)
|
299
319
|
end
|
300
320
|
end
|
301
321
|
|
@@ -601,6 +621,11 @@ module Google
|
|
601
621
|
# @return [String]
|
602
622
|
attr_accessor :state
|
603
623
|
|
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
|
+
|
604
629
|
# Output only. A URI to a video of the test run.
|
605
630
|
# Corresponds to the JSON property `videoUri`
|
606
631
|
# @return [String]
|
@@ -622,6 +647,7 @@ module Google
|
|
622
647
|
@robo_stats = args[:robo_stats] if args.key?(:robo_stats)
|
623
648
|
@screenshot_uris = args[:screenshot_uris] if args.key?(:screenshot_uris)
|
624
649
|
@state = args[:state] if args.key?(:state)
|
650
|
+
@video_start_time = args[:video_start_time] if args.key?(:video_start_time)
|
625
651
|
@video_uri = args[:video_uri] if args.key?(:video_uri)
|
626
652
|
end
|
627
653
|
end
|
@@ -946,7 +972,7 @@ module Google
|
|
946
972
|
class GoogleFirebaseAppdistroV1alphaGoalAction
|
947
973
|
include Google::Apis::Core::Hashable
|
948
974
|
|
949
|
-
# 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.
|
950
976
|
# Corresponds to the JSON property `debugInfo`
|
951
977
|
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo]
|
952
978
|
attr_accessor :debug_info
|
@@ -962,6 +988,11 @@ module Google
|
|
962
988
|
# @return [String]
|
963
989
|
attr_accessor :explanation
|
964
990
|
|
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
|
+
|
965
996
|
# An action taken by the AI to end the goal.
|
966
997
|
# Corresponds to the JSON property `terminalAction`
|
967
998
|
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTerminalAction]
|
@@ -976,21 +1007,22 @@ module Google
|
|
976
1007
|
@debug_info = args[:debug_info] if args.key?(:debug_info)
|
977
1008
|
@device_action = args[:device_action] if args.key?(:device_action)
|
978
1009
|
@explanation = args[:explanation] if args.key?(:explanation)
|
1010
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
979
1011
|
@terminal_action = args[:terminal_action] if args.key?(:terminal_action)
|
980
1012
|
end
|
981
1013
|
end
|
982
1014
|
|
983
|
-
# 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.
|
984
1016
|
class GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo
|
985
1017
|
include Google::Apis::Core::Hashable
|
986
1018
|
|
987
1019
|
# Output only. URI of the screenshot with elements labeled which was used by the
|
988
|
-
# agent
|
1020
|
+
# agent.
|
989
1021
|
# Corresponds to the JSON property `annotatedScreenshotUri`
|
990
1022
|
# @return [String]
|
991
1023
|
attr_accessor :annotated_screenshot_uri
|
992
1024
|
|
993
|
-
# Output only. Structured data explaining the agent's choice
|
1025
|
+
# Output only. Structured data explaining the agent's choice.
|
994
1026
|
# Corresponds to the JSON property `jsonUri`
|
995
1027
|
# @return [String]
|
996
1028
|
attr_accessor :json_uri
|
@@ -1264,7 +1296,7 @@ module Google
|
|
1264
1296
|
end
|
1265
1297
|
end
|
1266
1298
|
|
1267
|
-
#
|
1299
|
+
# Instance of an automated test for a release.
|
1268
1300
|
class GoogleFirebaseAppdistroV1alphaReleaseTest
|
1269
1301
|
include Google::Apis::Core::Hashable
|
1270
1302
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirebaseappdistributionV1alpha
|
18
18
|
# Version of the google-apis-firebaseappdistribution_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.17.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 = "
|
25
|
+
REVISION = "20250902"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -353,11 +353,13 @@ module Google
|
|
353
353
|
property :build_version, as: 'buildVersion'
|
354
354
|
property :create_time, as: 'createTime'
|
355
355
|
property :display_version, as: 'displayVersion'
|
356
|
+
property :expire_time, as: 'expireTime'
|
356
357
|
property :firebase_console_uri, as: 'firebaseConsoleUri'
|
357
358
|
property :name, as: 'name'
|
358
359
|
property :release_notes, as: 'releaseNotes', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1ReleaseNotes, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1ReleaseNotes::Representation
|
359
360
|
|
360
361
|
property :testing_uri, as: 'testingUri'
|
362
|
+
property :update_time, as: 'updateTime'
|
361
363
|
end
|
362
364
|
end
|
363
365
|
|
@@ -407,6 +409,7 @@ module Google
|
|
407
409
|
property :goal, as: 'goal'
|
408
410
|
property :hint, as: 'hint'
|
409
411
|
property :success_criteria, as: 'successCriteria'
|
412
|
+
property :test_case, as: 'testCase'
|
410
413
|
end
|
411
414
|
end
|
412
415
|
|
@@ -508,6 +511,7 @@ module Google
|
|
508
511
|
|
509
512
|
collection :screenshot_uris, as: 'screenshotUris'
|
510
513
|
property :state, as: 'state'
|
514
|
+
property :video_start_time, as: 'videoStartTime'
|
511
515
|
property :video_uri, as: 'videoUri'
|
512
516
|
end
|
513
517
|
end
|
@@ -629,6 +633,7 @@ module Google
|
|
629
633
|
property :device_action, as: 'deviceAction', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceAction, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceAction::Representation
|
630
634
|
|
631
635
|
property :explanation, as: 'explanation'
|
636
|
+
property :start_time, as: 'startTime'
|
632
637
|
property :terminal_action, as: 'terminalAction', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTerminalAction, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTerminalAction::Representation
|
633
638
|
|
634
639
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firebaseappdistribution_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.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-firebaseappdistribution_v1alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.17.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappdistribution_v1alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|