google-apis-firebaseappdistribution_v1alpha 0.1.0 → 0.3.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: 13fd53c3cf6d9bbfe05bd68cdf8dcdbba62781657eabe98a00af3ca672caa85b
|
4
|
+
data.tar.gz: 80a96b582966bbb314b0a4af9f502947af734e13b091d6fe0d0561a79efc8482
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09f1bf0c425babc3d06ff06ec1408a216d2b864a18c8fd82bc88fe1d3ad3ae9fb5d0409a937e1fc6a2fdfd64fb7885b41bf2a2f5a7eb88b7444468fc06f284ad'
|
7
|
+
data.tar.gz: b248e6644213cd69e409e827bdba375e9742738649ab7599ab4b166c6407328e6096518c4257efe2788432c55dcdb61ed680cdfcc1b3bf4381717b8e97d5bf88
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebaseappdistribution_v1alpha
|
2
2
|
|
3
|
+
### v0.3.0 (2024-01-23)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.13.0
|
6
|
+
|
7
|
+
### v0.2.0 (2023-12-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231221
|
10
|
+
|
3
11
|
### v0.1.0 (2023-12-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231207
|
@@ -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.3.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.13.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231221"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -32,6 +32,8 @@ module Google
|
|
32
32
|
#
|
33
33
|
# @see https://firebase.google.com/products/app-distribution
|
34
34
|
class FirebaseAppDistributionService < Google::Apis::Core::BaseService
|
35
|
+
DEFAULT_ENDPOINT_TEMPLATE = "https://firebaseappdistribution.$UNIVERSE_DOMAIN$/"
|
36
|
+
|
35
37
|
# @return [String]
|
36
38
|
# API key. Your API key identifies your project and provides you with API access,
|
37
39
|
# quota, and reports. Required unless you provide an OAuth 2.0 token.
|
@@ -43,7 +45,7 @@ module Google
|
|
43
45
|
attr_accessor :quota_user
|
44
46
|
|
45
47
|
def initialize
|
46
|
-
super(
|
48
|
+
super(DEFAULT_ENDPOINT_TEMPLATE, '',
|
47
49
|
client_name: 'google-apis-firebaseappdistribution_v1alpha',
|
48
50
|
client_version: Google::Apis::FirebaseappdistributionV1alpha::GEM_VERSION)
|
49
51
|
@batch_path = 'batch'
|
@@ -259,6 +261,9 @@ module Google
|
|
259
261
|
# @param [String] mobilesdk_app_id
|
260
262
|
# Unique id for a Firebase app of the format: `version`:`project_number`:`
|
261
263
|
# platform`:`hash(bundle_id)` Example: 1:581234567376:android:aa0a3c7b135e90289
|
264
|
+
# @param [String] project
|
265
|
+
# The name of the project, which is the parent of testers Format: `projects/`
|
266
|
+
# project_number``
|
262
267
|
# @param [String] fields
|
263
268
|
# Selector specifying which fields to include in a partial response.
|
264
269
|
# @param [String] quota_user
|
@@ -276,11 +281,12 @@ module Google
|
|
276
281
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
277
282
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
278
283
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
279
|
-
def get_app_tester_tester_udids(mobilesdk_app_id, fields: nil, quota_user: nil, options: nil, &block)
|
284
|
+
def get_app_tester_tester_udids(mobilesdk_app_id, project: nil, fields: nil, quota_user: nil, options: nil, &block)
|
280
285
|
command = make_simple_command(:get, 'v1alpha/apps/{mobilesdkAppId}/testers:getTesterUdids', options)
|
281
286
|
command.response_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse::Representation
|
282
287
|
command.response_class = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse
|
283
288
|
command.params['mobilesdkAppId'] = mobilesdk_app_id unless mobilesdk_app_id.nil?
|
289
|
+
command.query['project'] = project unless project.nil?
|
284
290
|
command.query['fields'] = fields unless fields.nil?
|
285
291
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
286
292
|
execute_or_queue_command(command, &block)
|
@@ -497,6 +503,41 @@ module Google
|
|
497
503
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
498
504
|
execute_or_queue_command(command, &block)
|
499
505
|
end
|
506
|
+
|
507
|
+
# Get UDIDs of tester iOS devices in a project
|
508
|
+
# @param [String] project
|
509
|
+
# The name of the project, which is the parent of testers Format: `projects/`
|
510
|
+
# project_number``
|
511
|
+
# @param [String] mobilesdk_app_id
|
512
|
+
# Unique id for a Firebase app of the format: `version`:`project_number`:`
|
513
|
+
# platform`:`hash(bundle_id)` Example: 1:581234567376:android:aa0a3c7b135e90289
|
514
|
+
# @param [String] fields
|
515
|
+
# Selector specifying which fields to include in a partial response.
|
516
|
+
# @param [String] quota_user
|
517
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
518
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
519
|
+
# @param [Google::Apis::RequestOptions] options
|
520
|
+
# Request-specific options
|
521
|
+
#
|
522
|
+
# @yield [result, err] Result & error if block supplied
|
523
|
+
# @yieldparam result [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse] parsed result object
|
524
|
+
# @yieldparam err [StandardError] error object if request failed
|
525
|
+
#
|
526
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse]
|
527
|
+
#
|
528
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
529
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
530
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
531
|
+
def get_project_tester_udids(project, mobilesdk_app_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
532
|
+
command = make_simple_command(:get, 'v1alpha/{+project}/testers:udids', options)
|
533
|
+
command.response_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse::Representation
|
534
|
+
command.response_class = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse
|
535
|
+
command.params['project'] = project unless project.nil?
|
536
|
+
command.query['mobilesdkAppId'] = mobilesdk_app_id unless mobilesdk_app_id.nil?
|
537
|
+
command.query['fields'] = fields unless fields.nil?
|
538
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
539
|
+
execute_or_queue_command(command, &block)
|
540
|
+
end
|
500
541
|
|
501
542
|
protected
|
502
543
|
|
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
|
+
version: 0.3.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:
|
11
|
+
date: 2024-01-23 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.
|
19
|
+
version: 0.12.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.
|
29
|
+
version: 0.12.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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.3.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.5.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Firebase App Distribution API V1alpha
|