google-apis-firebaseappdistribution_v1 0.17.0 → 0.19.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d27cd8bf2f83be35afd93c74524f941121d8e4f36139ca6f7bca1f455c07f330
|
|
4
|
+
data.tar.gz: 34c302989fa2319ad83acd8932433d9e3359b20728663860e8664d9e38ad6de0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8b365c42637950679c5c0c4ff33edbcc0fb528449d061898ba649bce21974128b795fb6d7fbc45902208ca7f24fe7a92c35ee464aad35fcc34e26b92fb7435c
|
|
7
|
+
data.tar.gz: 7f3a53579ef6b76b525915da7f1da5daff6014bc747eeaf31ef02db320438a076b294a94e2665c3d79f49d73dab9271f59b89172923087d4dd943b50edea514e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-firebaseappdistribution_v1
|
|
2
2
|
|
|
3
|
+
### v0.19.0 (2026-05-17)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260511
|
|
6
|
+
|
|
7
|
+
### v0.18.0 (2026-04-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260408
|
|
10
|
+
|
|
3
11
|
### v0.17.0 (2026-01-18)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260113
|
|
@@ -211,6 +211,11 @@ module Google
|
|
|
211
211
|
# @return [String]
|
|
212
212
|
attr_accessor :from_file_name
|
|
213
213
|
|
|
214
|
+
# The content type of the file detected by Fusion ID. go/fusionid
|
|
215
|
+
# Corresponds to the JSON property `fromFusionId`
|
|
216
|
+
# @return [String]
|
|
217
|
+
attr_accessor :from_fusion_id
|
|
218
|
+
|
|
214
219
|
# The content type of the file as specified in the request headers, multipart
|
|
215
220
|
# headers, or RUPIO start request.
|
|
216
221
|
# Corresponds to the JSON property `fromHeader`
|
|
@@ -224,6 +229,13 @@ module Google
|
|
|
224
229
|
# @return [String]
|
|
225
230
|
attr_accessor :from_url_path
|
|
226
231
|
|
|
232
|
+
# Metadata information from Fusion ID detection. Serialized
|
|
233
|
+
# FusionIdDetectionMetadata proto. Only set if from_fusion_id is set.
|
|
234
|
+
# Corresponds to the JSON property `fusionIdDetectionMetadata`
|
|
235
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
236
|
+
# @return [String]
|
|
237
|
+
attr_accessor :fusion_id_detection_metadata
|
|
238
|
+
|
|
227
239
|
def initialize(**args)
|
|
228
240
|
update!(**args)
|
|
229
241
|
end
|
|
@@ -233,8 +245,10 @@ module Google
|
|
|
233
245
|
@best_guess = args[:best_guess] if args.key?(:best_guess)
|
|
234
246
|
@from_bytes = args[:from_bytes] if args.key?(:from_bytes)
|
|
235
247
|
@from_file_name = args[:from_file_name] if args.key?(:from_file_name)
|
|
248
|
+
@from_fusion_id = args[:from_fusion_id] if args.key?(:from_fusion_id)
|
|
236
249
|
@from_header = args[:from_header] if args.key?(:from_header)
|
|
237
250
|
@from_url_path = args[:from_url_path] if args.key?(:from_url_path)
|
|
251
|
+
@fusion_id_detection_metadata = args[:fusion_id_detection_metadata] if args.key?(:fusion_id_detection_metadata)
|
|
238
252
|
end
|
|
239
253
|
end
|
|
240
254
|
|
|
@@ -627,6 +641,12 @@ module Google
|
|
|
627
641
|
# @return [String]
|
|
628
642
|
attr_accessor :sha256_hash
|
|
629
643
|
|
|
644
|
+
# Scotty-provided SHA512 hash for an upload.
|
|
645
|
+
# Corresponds to the JSON property `sha512Hash`
|
|
646
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
647
|
+
# @return [String]
|
|
648
|
+
attr_accessor :sha512_hash
|
|
649
|
+
|
|
630
650
|
# Time at which the media data was last updated, in milliseconds since UNIX
|
|
631
651
|
# epoch
|
|
632
652
|
# Corresponds to the JSON property `timestamp`
|
|
@@ -672,6 +692,7 @@ module Google
|
|
|
672
692
|
@reference_type = args[:reference_type] if args.key?(:reference_type)
|
|
673
693
|
@sha1_hash = args[:sha1_hash] if args.key?(:sha1_hash)
|
|
674
694
|
@sha256_hash = args[:sha256_hash] if args.key?(:sha256_hash)
|
|
695
|
+
@sha512_hash = args[:sha512_hash] if args.key?(:sha512_hash)
|
|
675
696
|
@timestamp = args[:timestamp] if args.key?(:timestamp)
|
|
676
697
|
@token = args[:token] if args.key?(:token)
|
|
677
698
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module FirebaseappdistributionV1
|
|
18
18
|
# Version of the google-apis-firebaseappdistribution_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.19.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 = "
|
|
25
|
+
REVISION = "20260511"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -300,8 +300,10 @@ module Google
|
|
|
300
300
|
property :best_guess, as: 'bestGuess'
|
|
301
301
|
property :from_bytes, as: 'fromBytes'
|
|
302
302
|
property :from_file_name, as: 'fromFileName'
|
|
303
|
+
property :from_fusion_id, as: 'fromFusionId'
|
|
303
304
|
property :from_header, as: 'fromHeader'
|
|
304
305
|
property :from_url_path, as: 'fromUrlPath'
|
|
306
|
+
property :fusion_id_detection_metadata, :base64 => true, as: 'fusionIdDetectionMetadata'
|
|
305
307
|
end
|
|
306
308
|
end
|
|
307
309
|
|
|
@@ -403,6 +405,7 @@ module Google
|
|
|
403
405
|
property :reference_type, as: 'referenceType'
|
|
404
406
|
property :sha1_hash, :base64 => true, as: 'sha1Hash'
|
|
405
407
|
property :sha256_hash, :base64 => true, as: 'sha256Hash'
|
|
408
|
+
property :sha512_hash, :base64 => true, as: 'sha512Hash'
|
|
406
409
|
property :timestamp, :numeric_string => true, as: 'timestamp'
|
|
407
410
|
property :token, as: 'token'
|
|
408
411
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-firebaseappdistribution_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.19.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1/v0.19.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappdistribution_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|