google-apis-firebaseappdistribution_v1alpha 0.6.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: 01613f7de90b9720612a7e651296290135a9af4983fdd11bb8084e18d6b3d105
4
- data.tar.gz: 7b85dacae9185526696e3521c4b565c0836349594e166baf2307c34df7573da0
3
+ metadata.gz: 1edca761ff0e09a17e569a9619aafbe307801ae4293371c4000e38e7247c8efe
4
+ data.tar.gz: 5cbf65c88c9bc621e00270c87b276315c804c266be80d1b634162c0d15b85e45
5
5
  SHA512:
6
- metadata.gz: 32f8ab828d43daa2a48a22c4a5363ebe05630c6289c790a01be96837d044b78bb0e69a6c8fb4d06387107923daecfe94ea39c0f5a3d1171a5f1d1f0e08d78779
7
- data.tar.gz: 86e99675ac78bb42896682b769c9683a218df085d083b891e87950867dba9560fd7e5e5a781ce4b8c4162e1636cba019ae0363723727965bdfef688df4dcc34a
6
+ metadata.gz: 25854d7dee2638a7af6d8b3d7a01fb4c15c5e5f6d91b3e221dbc101192b2607c1414479d6d0d5c42f22163abb7b1062464af49778c785097be9826c9051a2443
7
+ data.tar.gz: dfe9dc0818ff430badaea339156703c04453dc22a5aeb2b8a7a0a1efce581bb06491be0b3075b256447011d75cd6499eb8c214d4152542b4a35dd9a0e0c1251b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.6.0 (2024-06-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20240627
@@ -190,7 +190,7 @@ module Google
190
190
 
191
191
  # Required. Steps to be accomplished by the AI
192
192
  # Corresponds to the JSON property `steps`
193
- # @return [Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructionsStep>]
193
+ # @return [Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep>]
194
194
  attr_accessor :steps
195
195
 
196
196
  def initialize(**args)
@@ -205,7 +205,7 @@ module Google
205
205
  end
206
206
 
207
207
  # A step to be accomplished by the AI
208
- class GoogleFirebaseAppdistroV1alphaAiInstructionsStep
208
+ class GoogleFirebaseAppdistroV1alphaAiStep
209
209
  include Google::Apis::Core::Hashable
210
210
 
211
211
  # An assertion to be checked by the AI
@@ -229,6 +229,31 @@ module Google
229
229
  end
230
230
  end
231
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
+
232
257
  #
233
258
  class GoogleFirebaseAppdistroV1alphaApp
234
259
  include Google::Apis::Core::Hashable
@@ -347,6 +372,11 @@ module Google
347
372
  class GoogleFirebaseAppdistroV1alphaDeviceExecution
348
373
  include Google::Apis::Core::Hashable
349
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
+
350
380
  # An app crash that occurred during an automated test.
351
381
  # Corresponds to the JSON property `appCrash`
352
382
  # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAppCrash]
@@ -406,6 +436,7 @@ module Google
406
436
 
407
437
  # Update properties of this object
408
438
  def update!(**args)
439
+ @ai_step_results = args[:ai_step_results] if args.key?(:ai_step_results)
409
440
  @app_crash = args[:app_crash] if args.key?(:app_crash)
410
441
  @crawl_graph_uri = args[:crawl_graph_uri] if args.key?(:crawl_graph_uri)
411
442
  @device = args[:device] if args.key?(:device)
@@ -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.6.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 = "20240627"
25
+ REVISION = "20240717"
26
26
  end
27
27
  end
28
28
  end
@@ -58,7 +58,13 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
- class GoogleFirebaseAppdistroV1alphaAiInstructionsStep
61
+ class GoogleFirebaseAppdistroV1alphaAiStep
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
67
+ class GoogleFirebaseAppdistroV1alphaAiStepResult
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
64
70
  include Google::Apis::Core::JsonObjectSupport
@@ -252,12 +258,12 @@ module Google
252
258
  # @private
253
259
  class Representation < Google::Apis::Core::JsonRepresentation
254
260
  property :app_description, as: 'appDescription'
255
- collection :steps, as: 'steps', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructionsStep, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructionsStep::Representation
261
+ collection :steps, as: 'steps', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep::Representation
256
262
 
257
263
  end
258
264
  end
259
265
 
260
- class GoogleFirebaseAppdistroV1alphaAiInstructionsStep
266
+ class GoogleFirebaseAppdistroV1alphaAiStep
261
267
  # @private
262
268
  class Representation < Google::Apis::Core::JsonRepresentation
263
269
  property :assertion, as: 'assertion'
@@ -265,6 +271,15 @@ module Google
265
271
  end
266
272
  end
267
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
+
268
283
  class GoogleFirebaseAppdistroV1alphaApp
269
284
  # @private
270
285
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -304,6 +319,8 @@ module Google
304
319
  class GoogleFirebaseAppdistroV1alphaDeviceExecution
305
320
  # @private
306
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
+
307
324
  property :app_crash, as: 'appCrash', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAppCrash, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAppCrash::Representation
308
325
 
309
326
  property :crawl_graph_uri, as: 'crawlGraphUri'
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.6.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-06-30 00:00:00.000000000 Z
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.6.0
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: []