google-apis-firebaseappdistribution_v1alpha 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f02e035e0dbcccbc2a3f4d534592f245f643c123a298cc789cb6af712620c34
|
4
|
+
data.tar.gz: df4109e4ff38d488c80ff7894b7932983f2d76b32c2756a0271ab28097adc288
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27a3e6576da2fdf5b52ce3c20ff4b385242f53c2ed606213bd3e56d8855c1551744c2ade4283d4c8d09a9822c51833936954ab13f50b997dbcd04884c56be218
|
7
|
+
data.tar.gz: 5a2623f5795ddf514bf18fa7763e91b2d220e3659e94a6198db90747c9a02159b57900b26e854bd64d17af635c13ecc8ea71ed4ce8d011b8b6cf6e1e68d48997
|
data/CHANGELOG.md
CHANGED
@@ -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.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.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
|
@@ -259,6 +259,9 @@ module Google
|
|
259
259
|
# @param [String] mobilesdk_app_id
|
260
260
|
# Unique id for a Firebase app of the format: `version`:`project_number`:`
|
261
261
|
# platform`:`hash(bundle_id)` Example: 1:581234567376:android:aa0a3c7b135e90289
|
262
|
+
# @param [String] project
|
263
|
+
# The name of the project, which is the parent of testers Format: `projects/`
|
264
|
+
# project_number``
|
262
265
|
# @param [String] fields
|
263
266
|
# Selector specifying which fields to include in a partial response.
|
264
267
|
# @param [String] quota_user
|
@@ -276,11 +279,12 @@ module Google
|
|
276
279
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
277
280
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
278
281
|
# @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)
|
282
|
+
def get_app_tester_tester_udids(mobilesdk_app_id, project: nil, fields: nil, quota_user: nil, options: nil, &block)
|
280
283
|
command = make_simple_command(:get, 'v1alpha/apps/{mobilesdkAppId}/testers:getTesterUdids', options)
|
281
284
|
command.response_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse::Representation
|
282
285
|
command.response_class = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse
|
283
286
|
command.params['mobilesdkAppId'] = mobilesdk_app_id unless mobilesdk_app_id.nil?
|
287
|
+
command.query['project'] = project unless project.nil?
|
284
288
|
command.query['fields'] = fields unless fields.nil?
|
285
289
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
286
290
|
execute_or_queue_command(command, &block)
|
@@ -497,6 +501,41 @@ module Google
|
|
497
501
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
498
502
|
execute_or_queue_command(command, &block)
|
499
503
|
end
|
504
|
+
|
505
|
+
# Get UDIDs of tester iOS devices in a project
|
506
|
+
# @param [String] project
|
507
|
+
# The name of the project, which is the parent of testers Format: `projects/`
|
508
|
+
# project_number``
|
509
|
+
# @param [String] mobilesdk_app_id
|
510
|
+
# Unique id for a Firebase app of the format: `version`:`project_number`:`
|
511
|
+
# platform`:`hash(bundle_id)` Example: 1:581234567376:android:aa0a3c7b135e90289
|
512
|
+
# @param [String] fields
|
513
|
+
# Selector specifying which fields to include in a partial response.
|
514
|
+
# @param [String] quota_user
|
515
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
516
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
517
|
+
# @param [Google::Apis::RequestOptions] options
|
518
|
+
# Request-specific options
|
519
|
+
#
|
520
|
+
# @yield [result, err] Result & error if block supplied
|
521
|
+
# @yieldparam result [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse] parsed result object
|
522
|
+
# @yieldparam err [StandardError] error object if request failed
|
523
|
+
#
|
524
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse]
|
525
|
+
#
|
526
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
527
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
528
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
529
|
+
def get_project_tester_udids(project, mobilesdk_app_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
530
|
+
command = make_simple_command(:get, 'v1alpha/{+project}/testers:udids', options)
|
531
|
+
command.response_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse::Representation
|
532
|
+
command.response_class = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGetTesterUdidsResponse
|
533
|
+
command.params['project'] = project unless project.nil?
|
534
|
+
command.query['mobilesdkAppId'] = mobilesdk_app_id unless mobilesdk_app_id.nil?
|
535
|
+
command.query['fields'] = fields unless fields.nil?
|
536
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
537
|
+
execute_or_queue_command(command, &block)
|
538
|
+
end
|
500
539
|
|
501
540
|
protected
|
502
541
|
|
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.2.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: 2023-12-
|
11
|
+
date: 2023-12-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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.2.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: []
|