google-apis-firebaseappdistribution_v1alpha 0.5.0 → 0.6.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: c6124b2b83497394817d59571927e9cd35faa5efb2ec529591c4cb14f8276921
4
- data.tar.gz: e237e444319711b34c030b92264eb0bbebd4fb89aa3af8aa4ac87d846f751f58
3
+ metadata.gz: 01613f7de90b9720612a7e651296290135a9af4983fdd11bb8084e18d6b3d105
4
+ data.tar.gz: 7b85dacae9185526696e3521c4b565c0836349594e166baf2307c34df7573da0
5
5
  SHA512:
6
- metadata.gz: 9f2405b80b8e38f6d3bfd53cf3a530fcc50fbd67fd6f93bd12d258df06e1f7d9c202a9f9895817dac73712291df537b3fd92da170913fe7c2bf9aec2a8c9ef7e
7
- data.tar.gz: 4aa8f02dabedc8b0fe4754768ae639cc16b31e15ba27a0130c3fbd266bd2e2722388620d89ad99c714808e9d983ae450a517b5d757a3717564a88aedc5a1b037
6
+ metadata.gz: 32f8ab828d43daa2a48a22c4a5363ebe05630c6289c790a01be96837d044b78bb0e69a6c8fb4d06387107923daecfe94ea39c0f5a3d1171a5f1d1f0e08d78779
7
+ data.tar.gz: 86e99675ac78bb42896682b769c9683a218df085d083b891e87950867dba9560fd7e5e5a781ce4b8c4162e1636cba019ae0363723727965bdfef688df4dcc34a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firebaseappdistribution_v1alpha
2
2
 
3
+ ### v0.6.0 (2024-06-30)
4
+
5
+ * Regenerated from discovery document revision 20240627
6
+
3
7
  ### v0.5.0 (2024-05-19)
4
8
 
5
9
  * Regenerated using generator version 0.15.0
@@ -179,6 +179,56 @@ 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::GoogleFirebaseAppdistroV1alphaAiInstructionsStep>]
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 GoogleFirebaseAppdistroV1alphaAiInstructionsStep
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
+
182
232
  #
183
233
  class GoogleFirebaseAppdistroV1alphaApp
184
234
  include Google::Apis::Core::Hashable
@@ -729,6 +779,11 @@ module Google
729
779
  class GoogleFirebaseAppdistroV1alphaReleaseTest
730
780
  include Google::Apis::Core::Hashable
731
781
 
782
+ # Instructions for AI driven test
783
+ # Corresponds to the JSON property `aiInstructions`
784
+ # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions]
785
+ attr_accessor :ai_instructions
786
+
732
787
  # Output only. Timestamp when the test was run.
733
788
  # Corresponds to the JSON property `createTime`
734
789
  # @return [String]
@@ -756,6 +811,7 @@ module Google
756
811
 
757
812
  # Update properties of this object
758
813
  def update!(**args)
814
+ @ai_instructions = args[:ai_instructions] if args.key?(:ai_instructions)
759
815
  @create_time = args[:create_time] if args.key?(:create_time)
760
816
  @device_executions = args[:device_executions] if args.key?(:device_executions)
761
817
  @login_credential = args[:login_credential] if args.key?(:login_credential)
@@ -767,6 +823,11 @@ module Google
767
823
  class GoogleFirebaseAppdistroV1alphaRoboCrawler
768
824
  include Google::Apis::Core::Hashable
769
825
 
826
+ # Instructions for AI driven test
827
+ # Corresponds to the JSON property `aiInstructions`
828
+ # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions]
829
+ attr_accessor :ai_instructions
830
+
770
831
  # Login credential for automated tests
771
832
  # Corresponds to the JSON property `loginCredential`
772
833
  # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential]
@@ -778,6 +839,7 @@ module Google
778
839
 
779
840
  # Update properties of this object
780
841
  def update!(**args)
842
+ @ai_instructions = args[:ai_instructions] if args.key?(:ai_instructions)
781
843
  @login_credential = args[:login_credential] if args.key?(:login_credential)
782
844
  end
783
845
  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.5.0"
19
+ GEM_VERSION = "0.6.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 = "20231221"
25
+ REVISION = "20240627"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,18 @@ 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 GoogleFirebaseAppdistroV1alphaAiInstructionsStep
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
55
67
  class GoogleFirebaseAppdistroV1alphaApp
56
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
69
 
@@ -236,6 +248,23 @@ module Google
236
248
  end
237
249
  end
238
250
 
251
+ class GoogleFirebaseAppdistroV1alphaAiInstructions
252
+ # @private
253
+ class Representation < Google::Apis::Core::JsonRepresentation
254
+ property :app_description, as: 'appDescription'
255
+ collection :steps, as: 'steps', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructionsStep, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructionsStep::Representation
256
+
257
+ end
258
+ end
259
+
260
+ class GoogleFirebaseAppdistroV1alphaAiInstructionsStep
261
+ # @private
262
+ class Representation < Google::Apis::Core::JsonRepresentation
263
+ property :assertion, as: 'assertion'
264
+ property :goal, as: 'goal'
265
+ end
266
+ end
267
+
239
268
  class GoogleFirebaseAppdistroV1alphaApp
240
269
  # @private
241
270
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -402,6 +431,8 @@ module Google
402
431
  class GoogleFirebaseAppdistroV1alphaReleaseTest
403
432
  # @private
404
433
  class Representation < Google::Apis::Core::JsonRepresentation
434
+ property :ai_instructions, as: 'aiInstructions', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions::Representation
435
+
405
436
  property :create_time, as: 'createTime'
406
437
  collection :device_executions, as: 'deviceExecutions', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceExecution, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceExecution::Representation
407
438
 
@@ -414,6 +445,8 @@ module Google
414
445
  class GoogleFirebaseAppdistroV1alphaRoboCrawler
415
446
  # @private
416
447
  class Representation < Google::Apis::Core::JsonRepresentation
448
+ property :ai_instructions, as: 'aiInstructions', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions::Representation
449
+
417
450
  property :login_credential, as: 'loginCredential', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential::Representation
418
451
 
419
452
  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.5.0
4
+ version: 0.6.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-05-19 00:00:00.000000000 Z
11
+ date: 2024-06-30 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.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.6.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: []