google-apis-firebaseappdistribution_v1alpha 0.13.0 → 0.15.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/firebaseappdistribution_v1alpha/classes.rb +142 -1
- data/lib/google/apis/firebaseappdistribution_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/firebaseappdistribution_v1alpha/representations.rb +69 -0
- data/lib/google/apis/firebaseappdistribution_v1alpha/service.rb +19 -14
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34219da1dffc25a6f2497ba49038d5ba59bd63acf0be324ca5f7ba78c874479e
|
4
|
+
data.tar.gz: 153efb7ca1bab31538094c202ada9f856fa3b08087d6bcd75477fde16e023e54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d014f7139a87f6b3859340d6b55e2c37d7b12b8d5d8d9e08f663cfa0d39bc4b3c9826a45b6168b2584b39020d491ff377d5d5c8a761bcf186831e93a2fbe1f4e
|
7
|
+
data.tar.gz: fcf0c3ba449d43fb8ea7727179164467bac16376d90fc3da9b70476006045fd44e2b349468cbe96fc976a3b64ed8b8f36dd97c1ec99b74f3c072f61b189428e6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-firebaseappdistribution_v1alpha
|
2
2
|
|
3
|
+
### v0.15.0 (2025-08-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250811
|
6
|
+
|
7
|
+
### v0.14.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250612
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.13.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -47,6 +47,43 @@ module Google
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
# Rectangle for describing bounding boxes
|
51
|
+
class AndroidxCrawlerOutputRectangle
|
52
|
+
include Google::Apis::Core::Hashable
|
53
|
+
|
54
|
+
#
|
55
|
+
# Corresponds to the JSON property `bottom`
|
56
|
+
# @return [Fixnum]
|
57
|
+
attr_accessor :bottom
|
58
|
+
|
59
|
+
#
|
60
|
+
# Corresponds to the JSON property `left`
|
61
|
+
# @return [Fixnum]
|
62
|
+
attr_accessor :left
|
63
|
+
|
64
|
+
#
|
65
|
+
# Corresponds to the JSON property `right`
|
66
|
+
# @return [Fixnum]
|
67
|
+
attr_accessor :right
|
68
|
+
|
69
|
+
#
|
70
|
+
# Corresponds to the JSON property `top`
|
71
|
+
# @return [Fixnum]
|
72
|
+
attr_accessor :top
|
73
|
+
|
74
|
+
def initialize(**args)
|
75
|
+
update!(**args)
|
76
|
+
end
|
77
|
+
|
78
|
+
# Update properties of this object
|
79
|
+
def update!(**args)
|
80
|
+
@bottom = args[:bottom] if args.key?(:bottom)
|
81
|
+
@left = args[:left] if args.key?(:left)
|
82
|
+
@right = args[:right] if args.key?(:right)
|
83
|
+
@top = args[:top] if args.key?(:top)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
50
87
|
# A release of a Firebase app.
|
51
88
|
class GoogleFirebaseAppdistroV1Release
|
52
89
|
include Google::Apis::Core::Hashable
|
@@ -593,11 +630,32 @@ module Google
|
|
593
630
|
class GoogleFirebaseAppdistroV1alphaDeviceInteraction
|
594
631
|
include Google::Apis::Core::Hashable
|
595
632
|
|
633
|
+
# A back action.
|
634
|
+
# Corresponds to the JSON property `backAction`
|
635
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionBack]
|
636
|
+
attr_accessor :back_action
|
637
|
+
|
638
|
+
# A drag and drop action.
|
639
|
+
# Corresponds to the JSON property `dragAndDrop`
|
640
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop]
|
641
|
+
attr_accessor :drag_and_drop
|
642
|
+
|
643
|
+
# A text entry action, that enters text into a particular text field, clearing
|
644
|
+
# any existing text in the field.
|
645
|
+
# Corresponds to the JSON property `enterText`
|
646
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText]
|
647
|
+
attr_accessor :enter_text
|
648
|
+
|
596
649
|
# Output only. Key code for a key event action.
|
597
650
|
# Corresponds to the JSON property `keyCode`
|
598
651
|
# @return [String]
|
599
652
|
attr_accessor :key_code
|
600
653
|
|
654
|
+
# Point for describing bounding boxes tap locations Top left is 0,0
|
655
|
+
# Corresponds to the JSON property `longPress`
|
656
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint]
|
657
|
+
attr_accessor :long_press
|
658
|
+
|
601
659
|
# A device screenshot taken during a test.
|
602
660
|
# Corresponds to the JSON property `screenshot`
|
603
661
|
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot]
|
@@ -613,7 +671,10 @@ module Google
|
|
613
671
|
# @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint]
|
614
672
|
attr_accessor :tap_prop
|
615
673
|
|
616
|
-
# Output only.
|
674
|
+
# Output only. A text input action, that types some text into whatever field is
|
675
|
+
# currently focused, if any. Unlike `enter_text` this action requires that the
|
676
|
+
# field be brought into focus first, for example by emitting a tap action before
|
677
|
+
# this one.
|
617
678
|
# Corresponds to the JSON property `textInput`
|
618
679
|
# @return [String]
|
619
680
|
attr_accessor :text_input
|
@@ -629,7 +690,11 @@ module Google
|
|
629
690
|
|
630
691
|
# Update properties of this object
|
631
692
|
def update!(**args)
|
693
|
+
@back_action = args[:back_action] if args.key?(:back_action)
|
694
|
+
@drag_and_drop = args[:drag_and_drop] if args.key?(:drag_and_drop)
|
695
|
+
@enter_text = args[:enter_text] if args.key?(:enter_text)
|
632
696
|
@key_code = args[:key_code] if args.key?(:key_code)
|
697
|
+
@long_press = args[:long_press] if args.key?(:long_press)
|
633
698
|
@screenshot = args[:screenshot] if args.key?(:screenshot)
|
634
699
|
@swipe = args[:swipe] if args.key?(:swipe)
|
635
700
|
@tap_prop = args[:tap_prop] if args.key?(:tap_prop)
|
@@ -638,6 +703,70 @@ module Google
|
|
638
703
|
end
|
639
704
|
end
|
640
705
|
|
706
|
+
# A back action.
|
707
|
+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionBack
|
708
|
+
include Google::Apis::Core::Hashable
|
709
|
+
|
710
|
+
def initialize(**args)
|
711
|
+
update!(**args)
|
712
|
+
end
|
713
|
+
|
714
|
+
# Update properties of this object
|
715
|
+
def update!(**args)
|
716
|
+
end
|
717
|
+
end
|
718
|
+
|
719
|
+
# A drag and drop action.
|
720
|
+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop
|
721
|
+
include Google::Apis::Core::Hashable
|
722
|
+
|
723
|
+
# Point for describing bounding boxes tap locations Top left is 0,0
|
724
|
+
# Corresponds to the JSON property `end`
|
725
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint]
|
726
|
+
attr_accessor :end
|
727
|
+
|
728
|
+
# Point for describing bounding boxes tap locations Top left is 0,0
|
729
|
+
# Corresponds to the JSON property `start`
|
730
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint]
|
731
|
+
attr_accessor :start
|
732
|
+
|
733
|
+
def initialize(**args)
|
734
|
+
update!(**args)
|
735
|
+
end
|
736
|
+
|
737
|
+
# Update properties of this object
|
738
|
+
def update!(**args)
|
739
|
+
@end = args[:end] if args.key?(:end)
|
740
|
+
@start = args[:start] if args.key?(:start)
|
741
|
+
end
|
742
|
+
end
|
743
|
+
|
744
|
+
# A text entry action, that enters text into a particular text field, clearing
|
745
|
+
# any existing text in the field.
|
746
|
+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
|
747
|
+
include Google::Apis::Core::Hashable
|
748
|
+
|
749
|
+
# Rectangle for describing bounding boxes
|
750
|
+
# Corresponds to the JSON property `elementBounds`
|
751
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputRectangle]
|
752
|
+
attr_accessor :element_bounds
|
753
|
+
|
754
|
+
# Output only. The text to enter.
|
755
|
+
# Corresponds to the JSON property `text`
|
756
|
+
# @return [String]
|
757
|
+
attr_accessor :text
|
758
|
+
|
759
|
+
def initialize(**args)
|
760
|
+
update!(**args)
|
761
|
+
end
|
762
|
+
|
763
|
+
# Update properties of this object
|
764
|
+
def update!(**args)
|
765
|
+
@element_bounds = args[:element_bounds] if args.key?(:element_bounds)
|
766
|
+
@text = args[:text] if args.key?(:text)
|
767
|
+
end
|
768
|
+
end
|
769
|
+
|
641
770
|
# A swipe action.
|
642
771
|
class GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
|
643
772
|
include Google::Apis::Core::Hashable
|
@@ -1333,6 +1462,11 @@ module Google
|
|
1333
1462
|
# @return [String]
|
1334
1463
|
attr_accessor :create_time
|
1335
1464
|
|
1465
|
+
# Output only. Other test cases that depend on this test cse as a prerequisite.
|
1466
|
+
# Corresponds to the JSON property `dependentTestCases`
|
1467
|
+
# @return [Array<String>]
|
1468
|
+
attr_accessor :dependent_test_cases
|
1469
|
+
|
1336
1470
|
# Required. Display name of the test case.
|
1337
1471
|
# Corresponds to the JSON property `displayName`
|
1338
1472
|
# @return [String]
|
@@ -1344,6 +1478,11 @@ module Google
|
|
1344
1478
|
# @return [String]
|
1345
1479
|
attr_accessor :name
|
1346
1480
|
|
1481
|
+
# Optional. Test case that must be run before this test case.
|
1482
|
+
# Corresponds to the JSON property `prerequisiteTestCase`
|
1483
|
+
# @return [String]
|
1484
|
+
attr_accessor :prerequisite_test_case
|
1485
|
+
|
1347
1486
|
def initialize(**args)
|
1348
1487
|
update!(**args)
|
1349
1488
|
end
|
@@ -1352,8 +1491,10 @@ module Google
|
|
1352
1491
|
def update!(**args)
|
1353
1492
|
@ai_instructions = args[:ai_instructions] if args.key?(:ai_instructions)
|
1354
1493
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1494
|
+
@dependent_test_cases = args[:dependent_test_cases] if args.key?(:dependent_test_cases)
|
1355
1495
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1356
1496
|
@name = args[:name] if args.key?(:name)
|
1497
|
+
@prerequisite_test_case = args[:prerequisite_test_case] if args.key?(:prerequisite_test_case)
|
1357
1498
|
end
|
1358
1499
|
end
|
1359
1500
|
|
@@ -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.15.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250811"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AndroidxCrawlerOutputRectangle
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class GoogleFirebaseAppdistroV1Release
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -136,6 +142,24 @@ module Google
|
|
136
142
|
include Google::Apis::Core::JsonObjectSupport
|
137
143
|
end
|
138
144
|
|
145
|
+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionBack
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
151
|
+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
157
|
+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
+
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
161
|
+
end
|
162
|
+
|
139
163
|
class GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
|
140
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
165
|
|
@@ -312,6 +336,16 @@ module Google
|
|
312
336
|
end
|
313
337
|
end
|
314
338
|
|
339
|
+
class AndroidxCrawlerOutputRectangle
|
340
|
+
# @private
|
341
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
342
|
+
property :bottom, as: 'bottom'
|
343
|
+
property :left, as: 'left'
|
344
|
+
property :right, as: 'right'
|
345
|
+
property :top, as: 'top'
|
346
|
+
end
|
347
|
+
end
|
348
|
+
|
315
349
|
class GoogleFirebaseAppdistroV1Release
|
316
350
|
# @private
|
317
351
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -481,7 +515,15 @@ module Google
|
|
481
515
|
class GoogleFirebaseAppdistroV1alphaDeviceInteraction
|
482
516
|
# @private
|
483
517
|
class Representation < Google::Apis::Core::JsonRepresentation
|
518
|
+
property :back_action, as: 'backAction', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionBack, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionBack::Representation
|
519
|
+
|
520
|
+
property :drag_and_drop, as: 'dragAndDrop', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop::Representation
|
521
|
+
|
522
|
+
property :enter_text, as: 'enterText', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText::Representation
|
523
|
+
|
484
524
|
property :key_code, as: 'keyCode'
|
525
|
+
property :long_press, as: 'longPress', class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint, decorator: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint::Representation
|
526
|
+
|
485
527
|
property :screenshot, as: 'screenshot', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaScreenshot::Representation
|
486
528
|
|
487
529
|
property :swipe, as: 'swipe', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe::Representation
|
@@ -494,6 +536,31 @@ module Google
|
|
494
536
|
end
|
495
537
|
end
|
496
538
|
|
539
|
+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionBack
|
540
|
+
# @private
|
541
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
542
|
+
end
|
543
|
+
end
|
544
|
+
|
545
|
+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop
|
546
|
+
# @private
|
547
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
548
|
+
property :end, as: 'end', class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint, decorator: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint::Representation
|
549
|
+
|
550
|
+
property :start, as: 'start', class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint, decorator: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputPoint::Representation
|
551
|
+
|
552
|
+
end
|
553
|
+
end
|
554
|
+
|
555
|
+
class GoogleFirebaseAppdistroV1alphaDeviceInteractionEnterText
|
556
|
+
# @private
|
557
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
558
|
+
property :element_bounds, as: 'elementBounds', class: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputRectangle, decorator: Google::Apis::FirebaseappdistributionV1alpha::AndroidxCrawlerOutputRectangle::Representation
|
559
|
+
|
560
|
+
property :text, as: 'text'
|
561
|
+
end
|
562
|
+
end
|
563
|
+
|
497
564
|
class GoogleFirebaseAppdistroV1alphaDeviceInteractionSwipe
|
498
565
|
# @private
|
499
566
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -712,8 +779,10 @@ module Google
|
|
712
779
|
property :ai_instructions, as: 'aiInstructions', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions::Representation
|
713
780
|
|
714
781
|
property :create_time, as: 'createTime'
|
782
|
+
collection :dependent_test_cases, as: 'dependentTestCases'
|
715
783
|
property :display_name, as: 'displayName'
|
716
784
|
property :name, as: 'name'
|
785
|
+
property :prerequisite_test_case, as: 'prerequisiteTestCase'
|
717
786
|
end
|
718
787
|
end
|
719
788
|
|
@@ -88,8 +88,9 @@ module Google
|
|
88
88
|
|
89
89
|
# Get a JWT token
|
90
90
|
# @param [String] mobilesdk_app_id
|
91
|
-
# Unique id for a Firebase app of the format: `version`:`
|
92
|
-
# platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
91
|
+
# Required. Unique id for a Firebase app of the format: `version`:`
|
92
|
+
# project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
93
|
+
# aa0a3c7b135e90289
|
93
94
|
# @param [String] fields
|
94
95
|
# Selector specifying which fields to include in a partial response.
|
95
96
|
# @param [String] quota_user
|
@@ -119,10 +120,11 @@ module Google
|
|
119
120
|
|
120
121
|
# GET Release by binary upload hash
|
121
122
|
# @param [String] mobilesdk_app_id
|
122
|
-
# Unique id for a Firebase app of the format: `version`:`
|
123
|
-
# platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
123
|
+
# Required. Unique id for a Firebase app of the format: `version`:`
|
124
|
+
# project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
125
|
+
# aa0a3c7b135e90289
|
124
126
|
# @param [String] upload_hash
|
125
|
-
# The hash for the upload
|
127
|
+
# Required. The hash for the upload
|
126
128
|
# @param [String] fields
|
127
129
|
# Selector specifying which fields to include in a partial response.
|
128
130
|
# @param [String] quota_user
|
@@ -153,10 +155,11 @@ module Google
|
|
153
155
|
|
154
156
|
# Enable access on a release for testers.
|
155
157
|
# @param [String] mobilesdk_app_id
|
156
|
-
# Unique id for a Firebase app of the format: `version`:`
|
157
|
-
# platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
158
|
+
# Required. Unique id for a Firebase app of the format: `version`:`
|
159
|
+
# project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
160
|
+
# aa0a3c7b135e90289
|
158
161
|
# @param [String] release_id
|
159
|
-
# Release identifier
|
162
|
+
# Required. Release identifier
|
160
163
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaEnableAccessOnReleaseRequest] google_firebase_appdistro_v1alpha_enable_access_on_release_request_object
|
161
164
|
# @param [String] fields
|
162
165
|
# Selector specifying which fields to include in a partial response.
|
@@ -190,10 +193,11 @@ module Google
|
|
190
193
|
|
191
194
|
# Create release notes on a release.
|
192
195
|
# @param [String] mobilesdk_app_id
|
193
|
-
# Unique id for a Firebase app of the format: `version`:`
|
194
|
-
# platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
196
|
+
# Required. Unique id for a Firebase app of the format: `version`:`
|
197
|
+
# project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
198
|
+
# aa0a3c7b135e90289
|
195
199
|
# @param [String] release_id
|
196
|
-
# Release identifier
|
200
|
+
# Required. Release identifier
|
197
201
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaCreateReleaseNotesRequest] google_firebase_appdistro_v1alpha_create_release_notes_request_object
|
198
202
|
# @param [String] fields
|
199
203
|
# Selector specifying which fields to include in a partial response.
|
@@ -262,10 +266,11 @@ module Google
|
|
262
266
|
|
263
267
|
# GET Binary upload status by token
|
264
268
|
# @param [String] mobilesdk_app_id
|
265
|
-
# Unique id for a Firebase app of the format: `version`:`
|
266
|
-
# platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
269
|
+
# Required. Unique id for a Firebase app of the format: `version`:`
|
270
|
+
# project_number`:`platform`:`hash(bundle_id)` Example: 1:581234567376:android:
|
271
|
+
# aa0a3c7b135e90289
|
267
272
|
# @param [String] upload_token
|
268
|
-
# The token for the upload
|
273
|
+
# Required. The token for the upload
|
269
274
|
# @param [String] fields
|
270
275
|
# Selector specifying which fields to include in a partial response.
|
271
276
|
# @param [String] quota_user
|
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.15.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.15.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:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Firebase App Distribution API V1alpha
|
79
79
|
test_files: []
|