google-apis-firebaseappdistribution_v1alpha 0.5.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1edca761ff0e09a17e569a9619aafbe307801ae4293371c4000e38e7247c8efe
|
4
|
+
data.tar.gz: 5cbf65c88c9bc621e00270c87b276315c804c266be80d1b634162c0d15b85e45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25854d7dee2638a7af6d8b3d7a01fb4c15c5e5f6d91b3e221dbc101192b2607c1414479d6d0d5c42f22163abb7b1062464af49778c785097be9826c9051a2443
|
7
|
+
data.tar.gz: dfe9dc0818ff430badaea339156703c04453dc22a5aeb2b8a7a0a1efce581bb06491be0b3075b256447011d75cd6499eb8c214d4152542b4a35dd9a0e0c1251b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebaseappdistribution_v1alpha
|
2
2
|
|
3
|
+
### v0.7.0 (2024-07-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240717
|
6
|
+
|
7
|
+
### v0.6.0 (2024-06-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240627
|
10
|
+
|
3
11
|
### v0.5.0 (2024-05-19)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.15.0
|
@@ -179,6 +179,81 @@ module Google
|
|
179
179
|
end
|
180
180
|
end
|
181
181
|
|
182
|
+
# Instructions for AI driven test
|
183
|
+
class GoogleFirebaseAppdistroV1alphaAiInstructions
|
184
|
+
include Google::Apis::Core::Hashable
|
185
|
+
|
186
|
+
# Optional. Describes the app to give the AI some context
|
187
|
+
# Corresponds to the JSON property `appDescription`
|
188
|
+
# @return [String]
|
189
|
+
attr_accessor :app_description
|
190
|
+
|
191
|
+
# Required. Steps to be accomplished by the AI
|
192
|
+
# Corresponds to the JSON property `steps`
|
193
|
+
# @return [Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep>]
|
194
|
+
attr_accessor :steps
|
195
|
+
|
196
|
+
def initialize(**args)
|
197
|
+
update!(**args)
|
198
|
+
end
|
199
|
+
|
200
|
+
# Update properties of this object
|
201
|
+
def update!(**args)
|
202
|
+
@app_description = args[:app_description] if args.key?(:app_description)
|
203
|
+
@steps = args[:steps] if args.key?(:steps)
|
204
|
+
end
|
205
|
+
end
|
206
|
+
|
207
|
+
# A step to be accomplished by the AI
|
208
|
+
class GoogleFirebaseAppdistroV1alphaAiStep
|
209
|
+
include Google::Apis::Core::Hashable
|
210
|
+
|
211
|
+
# An assertion to be checked by the AI
|
212
|
+
# Corresponds to the JSON property `assertion`
|
213
|
+
# @return [String]
|
214
|
+
attr_accessor :assertion
|
215
|
+
|
216
|
+
# A goal to be accomplished by the AI
|
217
|
+
# Corresponds to the JSON property `goal`
|
218
|
+
# @return [String]
|
219
|
+
attr_accessor :goal
|
220
|
+
|
221
|
+
def initialize(**args)
|
222
|
+
update!(**args)
|
223
|
+
end
|
224
|
+
|
225
|
+
# Update properties of this object
|
226
|
+
def update!(**args)
|
227
|
+
@assertion = args[:assertion] if args.key?(:assertion)
|
228
|
+
@goal = args[:goal] if args.key?(:goal)
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
# Captures the results of an AiStep
|
233
|
+
class GoogleFirebaseAppdistroV1alphaAiStepResult
|
234
|
+
include Google::Apis::Core::Hashable
|
235
|
+
|
236
|
+
# Output only. The current state of the step
|
237
|
+
# Corresponds to the JSON property `state`
|
238
|
+
# @return [String]
|
239
|
+
attr_accessor :state
|
240
|
+
|
241
|
+
# A step to be accomplished by the AI
|
242
|
+
# Corresponds to the JSON property `step`
|
243
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep]
|
244
|
+
attr_accessor :step
|
245
|
+
|
246
|
+
def initialize(**args)
|
247
|
+
update!(**args)
|
248
|
+
end
|
249
|
+
|
250
|
+
# Update properties of this object
|
251
|
+
def update!(**args)
|
252
|
+
@state = args[:state] if args.key?(:state)
|
253
|
+
@step = args[:step] if args.key?(:step)
|
254
|
+
end
|
255
|
+
end
|
256
|
+
|
182
257
|
#
|
183
258
|
class GoogleFirebaseAppdistroV1alphaApp
|
184
259
|
include Google::Apis::Core::Hashable
|
@@ -297,6 +372,11 @@ module Google
|
|
297
372
|
class GoogleFirebaseAppdistroV1alphaDeviceExecution
|
298
373
|
include Google::Apis::Core::Hashable
|
299
374
|
|
375
|
+
# Output only. Results of the AI steps if passed in
|
376
|
+
# Corresponds to the JSON property `aiStepResults`
|
377
|
+
# @return [Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStepResult>]
|
378
|
+
attr_accessor :ai_step_results
|
379
|
+
|
300
380
|
# An app crash that occurred during an automated test.
|
301
381
|
# Corresponds to the JSON property `appCrash`
|
302
382
|
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAppCrash]
|
@@ -356,6 +436,7 @@ module Google
|
|
356
436
|
|
357
437
|
# Update properties of this object
|
358
438
|
def update!(**args)
|
439
|
+
@ai_step_results = args[:ai_step_results] if args.key?(:ai_step_results)
|
359
440
|
@app_crash = args[:app_crash] if args.key?(:app_crash)
|
360
441
|
@crawl_graph_uri = args[:crawl_graph_uri] if args.key?(:crawl_graph_uri)
|
361
442
|
@device = args[:device] if args.key?(:device)
|
@@ -729,6 +810,11 @@ module Google
|
|
729
810
|
class GoogleFirebaseAppdistroV1alphaReleaseTest
|
730
811
|
include Google::Apis::Core::Hashable
|
731
812
|
|
813
|
+
# Instructions for AI driven test
|
814
|
+
# Corresponds to the JSON property `aiInstructions`
|
815
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions]
|
816
|
+
attr_accessor :ai_instructions
|
817
|
+
|
732
818
|
# Output only. Timestamp when the test was run.
|
733
819
|
# Corresponds to the JSON property `createTime`
|
734
820
|
# @return [String]
|
@@ -756,6 +842,7 @@ module Google
|
|
756
842
|
|
757
843
|
# Update properties of this object
|
758
844
|
def update!(**args)
|
845
|
+
@ai_instructions = args[:ai_instructions] if args.key?(:ai_instructions)
|
759
846
|
@create_time = args[:create_time] if args.key?(:create_time)
|
760
847
|
@device_executions = args[:device_executions] if args.key?(:device_executions)
|
761
848
|
@login_credential = args[:login_credential] if args.key?(:login_credential)
|
@@ -767,6 +854,11 @@ module Google
|
|
767
854
|
class GoogleFirebaseAppdistroV1alphaRoboCrawler
|
768
855
|
include Google::Apis::Core::Hashable
|
769
856
|
|
857
|
+
# Instructions for AI driven test
|
858
|
+
# Corresponds to the JSON property `aiInstructions`
|
859
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions]
|
860
|
+
attr_accessor :ai_instructions
|
861
|
+
|
770
862
|
# Login credential for automated tests
|
771
863
|
# Corresponds to the JSON property `loginCredential`
|
772
864
|
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential]
|
@@ -778,6 +870,7 @@ module Google
|
|
778
870
|
|
779
871
|
# Update properties of this object
|
780
872
|
def update!(**args)
|
873
|
+
@ai_instructions = args[:ai_instructions] if args.key?(:ai_instructions)
|
781
874
|
@login_credential = args[:login_credential] if args.key?(:login_credential)
|
782
875
|
end
|
783
876
|
end
|
@@ -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.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240717"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,24 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class GoogleFirebaseAppdistroV1alphaAiInstructions
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
61
|
+
class GoogleFirebaseAppdistroV1alphaAiStep
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
67
|
+
class GoogleFirebaseAppdistroV1alphaAiStepResult
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
55
73
|
class GoogleFirebaseAppdistroV1alphaApp
|
56
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
75
|
|
@@ -236,6 +254,32 @@ module Google
|
|
236
254
|
end
|
237
255
|
end
|
238
256
|
|
257
|
+
class GoogleFirebaseAppdistroV1alphaAiInstructions
|
258
|
+
# @private
|
259
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
260
|
+
property :app_description, as: 'appDescription'
|
261
|
+
collection :steps, as: 'steps', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep::Representation
|
262
|
+
|
263
|
+
end
|
264
|
+
end
|
265
|
+
|
266
|
+
class GoogleFirebaseAppdistroV1alphaAiStep
|
267
|
+
# @private
|
268
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
269
|
+
property :assertion, as: 'assertion'
|
270
|
+
property :goal, as: 'goal'
|
271
|
+
end
|
272
|
+
end
|
273
|
+
|
274
|
+
class GoogleFirebaseAppdistroV1alphaAiStepResult
|
275
|
+
# @private
|
276
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
277
|
+
property :state, as: 'state'
|
278
|
+
property :step, as: 'step', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep::Representation
|
279
|
+
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
239
283
|
class GoogleFirebaseAppdistroV1alphaApp
|
240
284
|
# @private
|
241
285
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -275,6 +319,8 @@ module Google
|
|
275
319
|
class GoogleFirebaseAppdistroV1alphaDeviceExecution
|
276
320
|
# @private
|
277
321
|
class Representation < Google::Apis::Core::JsonRepresentation
|
322
|
+
collection :ai_step_results, as: 'aiStepResults', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStepResult, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStepResult::Representation
|
323
|
+
|
278
324
|
property :app_crash, as: 'appCrash', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAppCrash, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAppCrash::Representation
|
279
325
|
|
280
326
|
property :crawl_graph_uri, as: 'crawlGraphUri'
|
@@ -402,6 +448,8 @@ module Google
|
|
402
448
|
class GoogleFirebaseAppdistroV1alphaReleaseTest
|
403
449
|
# @private
|
404
450
|
class Representation < Google::Apis::Core::JsonRepresentation
|
451
|
+
property :ai_instructions, as: 'aiInstructions', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions::Representation
|
452
|
+
|
405
453
|
property :create_time, as: 'createTime'
|
406
454
|
collection :device_executions, as: 'deviceExecutions', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceExecution, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceExecution::Representation
|
407
455
|
|
@@ -414,6 +462,8 @@ module Google
|
|
414
462
|
class GoogleFirebaseAppdistroV1alphaRoboCrawler
|
415
463
|
# @private
|
416
464
|
class Representation < Google::Apis::Core::JsonRepresentation
|
465
|
+
property :ai_instructions, as: 'aiInstructions', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions::Representation
|
466
|
+
|
417
467
|
property :login_credential, as: 'loginCredential', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential::Representation
|
418
468
|
|
419
469
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappdistribution_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.7.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappdistribution_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|