google-apis-firebaseappdistribution_v1alpha 0.10.0 → 0.11.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 +4 -0
- data/lib/google/apis/firebaseappdistribution_v1alpha/classes.rb +21 -0
- data/lib/google/apis/firebaseappdistribution_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/firebaseappdistribution_v1alpha/representations.rb +13 -0
- data/lib/google/apis/firebaseappdistribution_v1alpha/service.rb +34 -0
- 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: 153707ba07c365bc2eaba5b6df27959e70b36dc78224f440cdc83ad476f4f90d
|
4
|
+
data.tar.gz: f32c0503bf3c3ce36a01ba3778b2cabd86793d1c3560f2429f6542a0982e10fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf90e50cc133a75b5b85826a0659e3be2c177129255e4b1c995172f4879c53ada925c9b880d207fe2b47ad04217c20cf4d442b5ac5ac3a97a44cf5f7a1f9334d
|
7
|
+
data.tar.gz: bb680f0a17925f665c5dd0c388ebc813f1872ca60ed9c93fdb840868495628547581d059a5351f85d9d3c4a97a5e18c934a4bfc6c38cb1711f3da42a36f2bd50
|
data/CHANGELOG.md
CHANGED
@@ -413,6 +413,27 @@ module Google
|
|
413
413
|
end
|
414
414
|
end
|
415
415
|
|
416
|
+
# The request message for `DeleteTestCase`.
|
417
|
+
class GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest
|
418
|
+
include Google::Apis::Core::Hashable
|
419
|
+
|
420
|
+
# Required. The name of the test cases to delete. A maximum number of 1000 test
|
421
|
+
# cases can be deleted in one batch Format: `projects/`project_number`/apps/`
|
422
|
+
# app_id`/testCases/`test_case_id``
|
423
|
+
# Corresponds to the JSON property `names`
|
424
|
+
# @return [Array<String>]
|
425
|
+
attr_accessor :names
|
426
|
+
|
427
|
+
def initialize(**args)
|
428
|
+
update!(**args)
|
429
|
+
end
|
430
|
+
|
431
|
+
# Update properties of this object
|
432
|
+
def update!(**args)
|
433
|
+
@names = args[:names] if args.key?(:names)
|
434
|
+
end
|
435
|
+
end
|
436
|
+
|
416
437
|
# The (empty) response message for `CancelReleaseTest`.
|
417
438
|
class GoogleFirebaseAppdistroV1alphaCancelReleaseTestResponse
|
418
439
|
include Google::Apis::Core::Hashable
|
@@ -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.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250303"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,6 +94,12 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
+
class GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
97
103
|
class GoogleFirebaseAppdistroV1alphaCancelReleaseTestResponse
|
98
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
105
|
|
@@ -421,6 +427,13 @@ module Google
|
|
421
427
|
end
|
422
428
|
end
|
423
429
|
|
430
|
+
class GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest
|
431
|
+
# @private
|
432
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
433
|
+
collection :names, as: 'names'
|
434
|
+
end
|
435
|
+
end
|
436
|
+
|
424
437
|
class GoogleFirebaseAppdistroV1alphaCancelReleaseTestResponse
|
425
438
|
# @private
|
426
439
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -570,6 +570,40 @@ module Google
|
|
570
570
|
execute_or_queue_command(command, &block)
|
571
571
|
end
|
572
572
|
|
573
|
+
# Delete test cases.
|
574
|
+
# @param [String] parent
|
575
|
+
# Required. The parent resource where these test cases will be deleted. Format: `
|
576
|
+
# projects/`project_number`/apps/`app_id``
|
577
|
+
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest] google_firebase_appdistro_v1alpha_batch_delete_test_cases_request_object
|
578
|
+
# @param [String] fields
|
579
|
+
# Selector specifying which fields to include in a partial response.
|
580
|
+
# @param [String] quota_user
|
581
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
582
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
583
|
+
# @param [Google::Apis::RequestOptions] options
|
584
|
+
# Request-specific options
|
585
|
+
#
|
586
|
+
# @yield [result, err] Result & error if block supplied
|
587
|
+
# @yieldparam result [Google::Apis::FirebaseappdistributionV1alpha::GoogleProtobufEmpty] parsed result object
|
588
|
+
# @yieldparam err [StandardError] error object if request failed
|
589
|
+
#
|
590
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleProtobufEmpty]
|
591
|
+
#
|
592
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
593
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
594
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
595
|
+
def batch_project_app_test_case_delete(parent, google_firebase_appdistro_v1alpha_batch_delete_test_cases_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
596
|
+
command = make_simple_command(:post, 'v1alpha/{+parent}/testCases:batchDelete', options)
|
597
|
+
command.request_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest::Representation
|
598
|
+
command.request_object = google_firebase_appdistro_v1alpha_batch_delete_test_cases_request_object
|
599
|
+
command.response_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleProtobufEmpty::Representation
|
600
|
+
command.response_class = Google::Apis::FirebaseappdistributionV1alpha::GoogleProtobufEmpty
|
601
|
+
command.params['parent'] = parent unless parent.nil?
|
602
|
+
command.query['fields'] = fields unless fields.nil?
|
603
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
604
|
+
execute_or_queue_command(command, &block)
|
605
|
+
end
|
606
|
+
|
573
607
|
# Create a new test case.
|
574
608
|
# @param [String] parent
|
575
609
|
# Required. The parent resource where this test case will be created. Format: `
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-09 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.11.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:
|