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: 2bf8bdedf1f739f8a3bf1a92fb1cc18ef9fe5b571ba19170e6939a2be0015a57
4
- data.tar.gz: 30fb475759a985bde27053f89c028f3e521cf0ebac5ab93355a3ad2e4bd47748
3
+ metadata.gz: 8f02e035e0dbcccbc2a3f4d534592f245f643c123a298cc789cb6af712620c34
4
+ data.tar.gz: df4109e4ff38d488c80ff7894b7932983f2d76b32c2756a0271ab28097adc288
5
5
  SHA512:
6
- metadata.gz: 50eba8194d792868d98b8ba578806e322f855bab4bd076462bd6c5012a4f50e8b618b493f64f5c6a0d4afbc4697510a2f9903b7efb219cc6fc8813bf292d79f6
7
- data.tar.gz: 7c6b5599f815fc5a676a0eb45df871d723b567ebfe6bf976097ce49864d90e6b310658de03a935485648587a505d5df9559bf5d8c56d01d22f9115cd53dde8ea
6
+ metadata.gz: 27a3e6576da2fdf5b52ce3c20ff4b385242f53c2ed606213bd3e56d8855c1551744c2ade4283d4c8d09a9822c51833936954ab13f50b997dbcd04884c56be218
7
+ data.tar.gz: 5a2623f5795ddf514bf18fa7763e91b2d220e3659e94a6198db90747c9a02159b57900b26e854bd64d17af635c13ecc8ea71ed4ce8d011b8b6cf6e1e68d48997
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firebaseappdistribution_v1alpha
2
2
 
3
+ ### v0.2.0 (2023-12-24)
4
+
5
+ * Regenerated from discovery document revision 20231221
6
+
3
7
  ### v0.1.0 (2023-12-10)
4
8
 
5
9
  * 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.1.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 = "20231207"
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.1.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-10 00:00:00.000000000 Z
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.1.0
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: []