google-apis-firebaseappdistribution_v1alpha 0.4.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: 01ec3f07355ab20be2f5110a5bd51ea486503316f0f4ac9c677de4383328b7e0
4
- data.tar.gz: 005c79d52609dd1b0cc34f3ac7e49b2148fb58af1b70290107e6472e43beb07c
3
+ metadata.gz: 01613f7de90b9720612a7e651296290135a9af4983fdd11bb8084e18d6b3d105
4
+ data.tar.gz: 7b85dacae9185526696e3521c4b565c0836349594e166baf2307c34df7573da0
5
5
  SHA512:
6
- metadata.gz: 2c70fcf064bb64991e24b2a095fcf2ed77ac7fe6aa879e8387666eca47f0bd895fb520e0936805968b33496b5ec38ceeb9761e8146ed1d1ac64b536905e5e174
7
- data.tar.gz: 30e4e4f0bcc095964ae7c4820446db6a3e0602b9d6b5c53a0901f4db80df187ce7611909c4da8a5e6302ea524c9b73aedc513d50293e4bda135c97ac880f18b4
6
+ metadata.gz: 32f8ab828d43daa2a48a22c4a5363ebe05630c6289c790a01be96837d044b78bb0e69a6c8fb4d06387107923daecfe94ea39c0f5a3d1171a5f1d1f0e08d78779
7
+ data.tar.gz: 86e99675ac78bb42896682b769c9683a218df085d083b891e87950867dba9560fd7e5e5a781ce4b8c4162e1636cba019ae0363723727965bdfef688df4dcc34a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.5.0 (2024-05-19)
8
+
9
+ * Regenerated using generator version 0.15.0
10
+
3
11
  ### v0.4.0 (2024-02-23)
4
12
 
5
13
  * Regenerated using generator version 0.14.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.4.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
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.4.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-02-25 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.4.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: []