google-apis-firebaseappdistribution_v1alpha 0.15.0 → 0.16.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: 34219da1dffc25a6f2497ba49038d5ba59bd63acf0be324ca5f7ba78c874479e
4
- data.tar.gz: 153efb7ca1bab31538094c202ada9f856fa3b08087d6bcd75477fde16e023e54
3
+ metadata.gz: 6ca3bed50df17f5a22e65f7917f0ec469a25a957619d948447a7577a1f2e3e07
4
+ data.tar.gz: 7d62324de02ce745b928010bae63a65008caa3bd065eed14ece8808f0da73964
5
5
  SHA512:
6
- metadata.gz: d014f7139a87f6b3859340d6b55e2c37d7b12b8d5d8d9e08f663cfa0d39bc4b3c9826a45b6168b2584b39020d491ff377d5d5c8a761bcf186831e93a2fbe1f4e
7
- data.tar.gz: fcf0c3ba449d43fb8ea7727179164467bac16376d90fc3da9b70476006045fd44e2b349468cbe96fc976a3b64ed8b8f36dd97c1ec99b74f3c072f61b189428e6
6
+ metadata.gz: e0d273db25bc183dc6dcba91d42c6d753782b748a0ae63ac17ca5147e54ab66759adba43423db4d2b736cf760593fe753c5d079ba2b5b0973048dfe26e33bd06
7
+ data.tar.gz: 758278d3c0dd7d21987d6dceda19c1d3457a71da94e2095efb07e1c7b7b8dff3e565ae090dd4ef3acfa98d75050cc97aaa3cbd36b274acd6bf10ae5d85d44926
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firebaseappdistribution_v1alpha
2
2
 
3
+ ### v0.16.0 (2025-08-31)
4
+
5
+ * Regenerated from discovery document revision 20250825
6
+
3
7
  ### v0.15.0 (2025-08-17)
4
8
 
5
9
  * 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
 
@@ -1264,7 +1284,7 @@ module Google
1264
1284
  end
1265
1285
  end
1266
1286
 
1267
- # The results of running an automated test on a release.
1287
+ # Instance of an automated test for a release.
1268
1288
  class GoogleFirebaseAppdistroV1alphaReleaseTest
1269
1289
  include Google::Apis::Core::Hashable
1270
1290
 
@@ -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.15.0"
19
+ GEM_VERSION = "0.16.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 = "20250811"
25
+ REVISION = "20250825"
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
 
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.15.0
4
+ version: 0.16.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.15.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.16.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: