google-apis-firebaseappdistribution_v1alpha 0.27.0 → 0.28.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: 75fe43e58f3e63d6a0db166c5f4bcf2588f1ed7ff5086c3d73018cf406aa5a3c
|
|
4
|
+
data.tar.gz: 201ab9153dee45bf9e6422768441932d7ed70be689527e0af080097a00cff1c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a18ac875a145871dca6ac49afe79a6e0f7502c848bbd345e028930513df87fc25a33abbde361c8879dc514e2e189ab90f2596cb830e0b78dcf7940549822728
|
|
7
|
+
data.tar.gz: 11abaa6888ba4431af601a21641fd244fa8b6b9f0d5fa4d636f8fd5a154f4750153a028305cd975b16fa49f34d5c20460229f06a2bd207597a87c7f53fd73a18
|
data/CHANGELOG.md
CHANGED
|
@@ -1458,6 +1458,13 @@ module Google
|
|
|
1458
1458
|
# @return [String]
|
|
1459
1459
|
attr_accessor :name
|
|
1460
1460
|
|
|
1461
|
+
# Optional. Input only. The custom Cloud Storage bucket where test results are
|
|
1462
|
+
# stored. Format: `projects/`project_number`/buckets/`bucket`` If not provided,
|
|
1463
|
+
# the default test lab bucket is used.
|
|
1464
|
+
# Corresponds to the JSON property `resultsBucket`
|
|
1465
|
+
# @return [String]
|
|
1466
|
+
attr_accessor :results_bucket
|
|
1467
|
+
|
|
1461
1468
|
# Optional. The test case that was used to generate this release test. Note: The
|
|
1462
1469
|
# test case may have changed or been deleted since the release test was created.
|
|
1463
1470
|
# Format: `projects/`project_number`/apps/`app`/testCases/`test_case``
|
|
@@ -1482,6 +1489,7 @@ module Google
|
|
|
1482
1489
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
1483
1490
|
@login_credential = args[:login_credential] if args.key?(:login_credential)
|
|
1484
1491
|
@name = args[:name] if args.key?(:name)
|
|
1492
|
+
@results_bucket = args[:results_bucket] if args.key?(:results_bucket)
|
|
1485
1493
|
@test_case = args[:test_case] if args.key?(:test_case)
|
|
1486
1494
|
@test_state = args[:test_state] if args.key?(:test_state)
|
|
1487
1495
|
end
|
|
@@ -1672,6 +1680,13 @@ module Google
|
|
|
1672
1680
|
# @return [String]
|
|
1673
1681
|
attr_accessor :name
|
|
1674
1682
|
|
|
1683
|
+
# Optional. The custom Cloud Storage bucket where test results are stored.
|
|
1684
|
+
# Format: `projects/`project_number`/buckets/`bucket`` If not provided, the
|
|
1685
|
+
# default test lab bucket is used.
|
|
1686
|
+
# Corresponds to the JSON property `resultsBucket`
|
|
1687
|
+
# @return [String]
|
|
1688
|
+
attr_accessor :results_bucket
|
|
1689
|
+
|
|
1675
1690
|
# Configuration for Robo crawler
|
|
1676
1691
|
# Corresponds to the JSON property `roboCrawler`
|
|
1677
1692
|
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRoboCrawler]
|
|
@@ -1690,6 +1705,7 @@ module Google
|
|
|
1690
1705
|
def update!(**args)
|
|
1691
1706
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
1692
1707
|
@name = args[:name] if args.key?(:name)
|
|
1708
|
+
@results_bucket = args[:results_bucket] if args.key?(:results_bucket)
|
|
1693
1709
|
@robo_crawler = args[:robo_crawler] if args.key?(:robo_crawler)
|
|
1694
1710
|
@test_devices = args[:test_devices] if args.key?(:test_devices)
|
|
1695
1711
|
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.
|
|
19
|
+
GEM_VERSION = "0.28.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 = "20260504"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -802,6 +802,7 @@ module Google
|
|
|
802
802
|
property :login_credential, as: 'loginCredential', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaLoginCredential::Representation
|
|
803
803
|
|
|
804
804
|
property :name, as: 'name'
|
|
805
|
+
property :results_bucket, as: 'resultsBucket'
|
|
805
806
|
property :test_case, as: 'testCase'
|
|
806
807
|
property :test_state, as: 'testState'
|
|
807
808
|
end
|
|
@@ -863,6 +864,7 @@ module Google
|
|
|
863
864
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
864
865
|
property :display_name, as: 'displayName'
|
|
865
866
|
property :name, as: 'name'
|
|
867
|
+
property :results_bucket, as: 'resultsBucket'
|
|
866
868
|
property :robo_crawler, as: 'roboCrawler', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRoboCrawler, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRoboCrawler::Representation
|
|
867
869
|
|
|
868
870
|
collection :test_devices, as: 'testDevices', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestDevice, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestDevice::Representation
|
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.
|
|
4
|
+
version: 0.28.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.28.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:
|