google-apis-firebaseappdistribution_v1alpha 0.20.0 → 0.21.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 +67 -1
- data/lib/google/apis/firebaseappdistribution_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/firebaseappdistribution_v1alpha/representations.rb +43 -0
- data/lib/google/apis/firebaseappdistribution_v1alpha/service.rb +36 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7bae4a42d6eb4701b130725d5888ab616a9610b9e0ee828b64ae9ebd1381007
|
4
|
+
data.tar.gz: fb87133409e365ad269a43938b46b4172ee977ed355209796ac3cfe09de94d9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc34b1a8c2a3f6286ff2a0148aacabb833a2e6306a528e973f276b6ecdf2a98765fe8f58669f9db5dec5f8befe151d1a4dd499d7d3dc560dfa89a594fc700310
|
7
|
+
data.tar.gz: 19756649ae743dee27997a1c2a2ba84cd25c00bd3514d0aa1853d23c640c9eab9477b092eff2bdd01752db59d0cec59592b7279f089fafe337101a2b7eb4308a
|
data/CHANGELOG.md
CHANGED
@@ -470,7 +470,7 @@ module Google
|
|
470
470
|
end
|
471
471
|
end
|
472
472
|
|
473
|
-
# The request message for `
|
473
|
+
# The request message for `BatchDeleteTestCase`.
|
474
474
|
class GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest
|
475
475
|
include Google::Apis::Core::Hashable
|
476
476
|
|
@@ -491,6 +491,45 @@ module Google
|
|
491
491
|
end
|
492
492
|
end
|
493
493
|
|
494
|
+
# The request message for `BatchUpdateTestCase`.
|
495
|
+
class GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesRequest
|
496
|
+
include Google::Apis::Core::Hashable
|
497
|
+
|
498
|
+
# Required. The update requests. A maximum number of 1000 test cases can be
|
499
|
+
# updated in one batch
|
500
|
+
# Corresponds to the JSON property `requests`
|
501
|
+
# @return [Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest>]
|
502
|
+
attr_accessor :requests
|
503
|
+
|
504
|
+
def initialize(**args)
|
505
|
+
update!(**args)
|
506
|
+
end
|
507
|
+
|
508
|
+
# Update properties of this object
|
509
|
+
def update!(**args)
|
510
|
+
@requests = args[:requests] if args.key?(:requests)
|
511
|
+
end
|
512
|
+
end
|
513
|
+
|
514
|
+
# The response message for `BatchUpdateTestCase`.
|
515
|
+
class GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesResponse
|
516
|
+
include Google::Apis::Core::Hashable
|
517
|
+
|
518
|
+
# The updated test cases.
|
519
|
+
# Corresponds to the JSON property `testCases`
|
520
|
+
# @return [Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase>]
|
521
|
+
attr_accessor :test_cases
|
522
|
+
|
523
|
+
def initialize(**args)
|
524
|
+
update!(**args)
|
525
|
+
end
|
526
|
+
|
527
|
+
# Update properties of this object
|
528
|
+
def update!(**args)
|
529
|
+
@test_cases = args[:test_cases] if args.key?(:test_cases)
|
530
|
+
end
|
531
|
+
end
|
532
|
+
|
494
533
|
# The (empty) response message for `CancelReleaseTest`.
|
495
534
|
class GoogleFirebaseAppdistroV1alphaCancelReleaseTestResponse
|
496
535
|
include Google::Apis::Core::Hashable
|
@@ -1678,6 +1717,33 @@ module Google
|
|
1678
1717
|
end
|
1679
1718
|
end
|
1680
1719
|
|
1720
|
+
# The request message for `UpdateTestCase`.
|
1721
|
+
class GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest
|
1722
|
+
include Google::Apis::Core::Hashable
|
1723
|
+
|
1724
|
+
# Optional. If set to true, and the test case is not found, a new test case will
|
1725
|
+
# be created.
|
1726
|
+
# Corresponds to the JSON property `allowMissing`
|
1727
|
+
# @return [Boolean]
|
1728
|
+
attr_accessor :allow_missing
|
1729
|
+
alias_method :allow_missing?, :allow_missing
|
1730
|
+
|
1731
|
+
# AI test cases
|
1732
|
+
# Corresponds to the JSON property `testCase`
|
1733
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase]
|
1734
|
+
attr_accessor :test_case
|
1735
|
+
|
1736
|
+
def initialize(**args)
|
1737
|
+
update!(**args)
|
1738
|
+
end
|
1739
|
+
|
1740
|
+
# Update properties of this object
|
1741
|
+
def update!(**args)
|
1742
|
+
@allow_missing = args[:allow_missing] if args.key?(:allow_missing)
|
1743
|
+
@test_case = args[:test_case] if args.key?(:test_case)
|
1744
|
+
end
|
1745
|
+
end
|
1746
|
+
|
1681
1747
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
1682
1748
|
# messages in your APIs. A typical example is to use it as the request or the
|
1683
1749
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -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.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20251015"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -106,6 +106,18 @@ module Google
|
|
106
106
|
include Google::Apis::Core::JsonObjectSupport
|
107
107
|
end
|
108
108
|
|
109
|
+
class GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesRequest
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
115
|
+
class GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesResponse
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
109
121
|
class GoogleFirebaseAppdistroV1alphaCancelReleaseTestResponse
|
110
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
123
|
|
@@ -322,6 +334,12 @@ module Google
|
|
322
334
|
include Google::Apis::Core::JsonObjectSupport
|
323
335
|
end
|
324
336
|
|
337
|
+
class GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
325
343
|
class GoogleProtobufEmpty
|
326
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
345
|
|
@@ -465,6 +483,22 @@ module Google
|
|
465
483
|
end
|
466
484
|
end
|
467
485
|
|
486
|
+
class GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesRequest
|
487
|
+
# @private
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
489
|
+
collection :requests, as: 'requests', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest::Representation
|
490
|
+
|
491
|
+
end
|
492
|
+
end
|
493
|
+
|
494
|
+
class GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesResponse
|
495
|
+
# @private
|
496
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
497
|
+
collection :test_cases, as: 'testCases', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase::Representation
|
498
|
+
|
499
|
+
end
|
500
|
+
end
|
501
|
+
|
468
502
|
class GoogleFirebaseAppdistroV1alphaCancelReleaseTestResponse
|
469
503
|
# @private
|
470
504
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -832,6 +866,15 @@ module Google
|
|
832
866
|
end
|
833
867
|
end
|
834
868
|
|
869
|
+
class GoogleFirebaseAppdistroV1alphaUpdateTestCaseRequest
|
870
|
+
# @private
|
871
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
872
|
+
property :allow_missing, as: 'allowMissing'
|
873
|
+
property :test_case, as: 'testCase', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase::Representation
|
874
|
+
|
875
|
+
end
|
876
|
+
end
|
877
|
+
|
835
878
|
class GoogleProtobufEmpty
|
836
879
|
# @private
|
837
880
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -543,9 +543,9 @@ module Google
|
|
543
543
|
execute_or_queue_command(command, &block)
|
544
544
|
end
|
545
545
|
|
546
|
-
#
|
546
|
+
# Deletes multiple test cases.
|
547
547
|
# @param [String] parent
|
548
|
-
# Required. The parent resource
|
548
|
+
# Required. The parent resource of the test cases being deleted. Format: `
|
549
549
|
# projects/`project_number`/apps/`app_id``
|
550
550
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest] google_firebase_appdistro_v1alpha_batch_delete_test_cases_request_object
|
551
551
|
# @param [String] fields
|
@@ -577,6 +577,40 @@ module Google
|
|
577
577
|
execute_or_queue_command(command, &block)
|
578
578
|
end
|
579
579
|
|
580
|
+
# Updates multiple test cases.
|
581
|
+
# @param [String] parent
|
582
|
+
# Required. The parent resource of the test cases being updated. Format: `
|
583
|
+
# projects/`project_number`/apps/`app_id``
|
584
|
+
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesRequest] google_firebase_appdistro_v1alpha_batch_update_test_cases_request_object
|
585
|
+
# @param [String] fields
|
586
|
+
# Selector specifying which fields to include in a partial response.
|
587
|
+
# @param [String] quota_user
|
588
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
589
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
590
|
+
# @param [Google::Apis::RequestOptions] options
|
591
|
+
# Request-specific options
|
592
|
+
#
|
593
|
+
# @yield [result, err] Result & error if block supplied
|
594
|
+
# @yieldparam result [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesResponse] parsed result object
|
595
|
+
# @yieldparam err [StandardError] error object if request failed
|
596
|
+
#
|
597
|
+
# @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesResponse]
|
598
|
+
#
|
599
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
600
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
601
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
602
|
+
def batch_project_app_test_case_update(parent, google_firebase_appdistro_v1alpha_batch_update_test_cases_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
603
|
+
command = make_simple_command(:post, 'v1alpha/{+parent}/testCases:batchUpdate', options)
|
604
|
+
command.request_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesRequest::Representation
|
605
|
+
command.request_object = google_firebase_appdistro_v1alpha_batch_update_test_cases_request_object
|
606
|
+
command.response_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesResponse::Representation
|
607
|
+
command.response_class = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesResponse
|
608
|
+
command.params['parent'] = parent unless parent.nil?
|
609
|
+
command.query['fields'] = fields unless fields.nil?
|
610
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
611
|
+
execute_or_queue_command(command, &block)
|
612
|
+
end
|
613
|
+
|
580
614
|
# Create a new test case.
|
581
615
|
# @param [String] parent
|
582
616
|
# Required. The parent resource where this test case will be created. Format: `
|
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.21.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.21.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:
|