google-apis-firebaseappdistribution_v1alpha 0.23.0 → 0.24.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 +25 -7
- data/lib/google/apis/firebaseappdistribution_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/firebaseappdistribution_v1alpha/representations.rb +2 -0
- data/lib/google/apis/firebaseappdistribution_v1alpha/service.rb +14 -14
- 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: 4b25f553950c0529601b93910ff6ca8b4400ad8e6767ca7c9213c14b73e8bbc7
|
|
4
|
+
data.tar.gz: 1c31a9198b72718a8cc0202890aafb1e86ef30476acec70e0bcbdfdb50b99ac7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25427506eb041d2ea1593f52db2f7ae87a4938220ef75b21f3148360be726810a4fbd0d256f3febf9886d3a86f0eed87144d5607feaa508403d554883ba245f1
|
|
7
|
+
data.tar.gz: b794de59627fd7943c5fc97d193c26e10bfa1c9a4bc54566ab639bb6d9e99d4073b99113d161b8407174a1b9a0c287233cf3d373fafcdb88679bbe453617638f
|
data/CHANGELOG.md
CHANGED
|
@@ -123,8 +123,8 @@ module Google
|
|
|
123
123
|
# @return [String]
|
|
124
124
|
attr_accessor :firebase_console_uri
|
|
125
125
|
|
|
126
|
-
# The name of the release resource. Format: `projects/`project_number`/apps/`
|
|
127
|
-
#
|
|
126
|
+
# The name of the release resource. Format: `projects/`project_number`/apps/`app`
|
|
127
|
+
# /releases/`release``
|
|
128
128
|
# Corresponds to the JSON property `name`
|
|
129
129
|
# @return [String]
|
|
130
130
|
attr_accessor :name
|
|
@@ -475,8 +475,8 @@ module Google
|
|
|
475
475
|
include Google::Apis::Core::Hashable
|
|
476
476
|
|
|
477
477
|
# Required. The name of the test cases to delete. A maximum number of 1000 test
|
|
478
|
-
# cases can be deleted in one batch Format: `projects/`project_number`/apps/`
|
|
479
|
-
#
|
|
478
|
+
# cases can be deleted in one batch Format: `projects/`project_number`/apps/`app`
|
|
479
|
+
# /testCases/`test_case``
|
|
480
480
|
# Corresponds to the JSON property `names`
|
|
481
481
|
# @return [Array<String>]
|
|
482
482
|
attr_accessor :names
|
|
@@ -675,6 +675,22 @@ module Google
|
|
|
675
675
|
# @return [String]
|
|
676
676
|
attr_accessor :inconclusive_reason
|
|
677
677
|
|
|
678
|
+
# Identifier. The name of the device execution resource. Format: `projects/`
|
|
679
|
+
# project_number`/apps/`app`/releases/`release`/tests/`test`/deviceExecutions/`
|
|
680
|
+
# device_execution``
|
|
681
|
+
# Corresponds to the JSON property `name`
|
|
682
|
+
# @return [String]
|
|
683
|
+
attr_accessor :name
|
|
684
|
+
|
|
685
|
+
# Output only. The device execution from which cached steps were used during
|
|
686
|
+
# this execution. Note: This field is only populated for ACTION_BASED_REPLAY
|
|
687
|
+
# executions. If the original device execution no longer exists, this field will
|
|
688
|
+
# be empty. Format: `projects/`project_number`/apps/`app`/releases/`release`/
|
|
689
|
+
# tests/`test`/deviceExecutions/`device_execution``
|
|
690
|
+
# Corresponds to the JSON property `originDeviceExecution`
|
|
691
|
+
# @return [String]
|
|
692
|
+
attr_accessor :origin_device_execution
|
|
693
|
+
|
|
678
694
|
# Output only. The path to a directory in Cloud Storage that will eventually
|
|
679
695
|
# contain the results for this execution. For example, gs://bucket/Nexus5-18-en-
|
|
680
696
|
# portrait.
|
|
@@ -721,6 +737,8 @@ module Google
|
|
|
721
737
|
@execution_type = args[:execution_type] if args.key?(:execution_type)
|
|
722
738
|
@failed_reason = args[:failed_reason] if args.key?(:failed_reason)
|
|
723
739
|
@inconclusive_reason = args[:inconclusive_reason] if args.key?(:inconclusive_reason)
|
|
740
|
+
@name = args[:name] if args.key?(:name)
|
|
741
|
+
@origin_device_execution = args[:origin_device_execution] if args.key?(:origin_device_execution)
|
|
724
742
|
@results_storage_path = args[:results_storage_path] if args.key?(:results_storage_path)
|
|
725
743
|
@robo_stats = args[:robo_stats] if args.key?(:robo_stats)
|
|
726
744
|
@screenshot_uris = args[:screenshot_uris] if args.key?(:screenshot_uris)
|
|
@@ -1411,7 +1429,7 @@ module Google
|
|
|
1411
1429
|
attr_accessor :login_credential
|
|
1412
1430
|
|
|
1413
1431
|
# The name of the release test resource. Format: `projects/`project_number`/apps/
|
|
1414
|
-
# `
|
|
1432
|
+
# `app`/releases/`release`/tests/`test``
|
|
1415
1433
|
# Corresponds to the JSON property `name`
|
|
1416
1434
|
# @return [String]
|
|
1417
1435
|
attr_accessor :name
|
|
@@ -1589,7 +1607,7 @@ module Google
|
|
|
1589
1607
|
attr_accessor :display_name
|
|
1590
1608
|
|
|
1591
1609
|
# Identifier. The name of the test case resource. Format: `projects/`
|
|
1592
|
-
# project_number`/apps/`
|
|
1610
|
+
# project_number`/apps/`app`/testCases/`test_case``
|
|
1593
1611
|
# Corresponds to the JSON property `name`
|
|
1594
1612
|
# @return [String]
|
|
1595
1613
|
attr_accessor :name
|
|
@@ -1625,7 +1643,7 @@ module Google
|
|
|
1625
1643
|
attr_accessor :display_name
|
|
1626
1644
|
|
|
1627
1645
|
# Identifier. The name of the test configuration resource. Format: `projects/`
|
|
1628
|
-
# project_number`/apps/`
|
|
1646
|
+
# project_number`/apps/`app`/testConfig`
|
|
1629
1647
|
# Corresponds to the JSON property `name`
|
|
1630
1648
|
# @return [String]
|
|
1631
1649
|
attr_accessor :name
|
|
@@ -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.24.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 = "20251107"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -567,6 +567,8 @@ module Google
|
|
|
567
567
|
property :execution_type, as: 'executionType'
|
|
568
568
|
property :failed_reason, as: 'failedReason'
|
|
569
569
|
property :inconclusive_reason, as: 'inconclusiveReason'
|
|
570
|
+
property :name, as: 'name'
|
|
571
|
+
property :origin_device_execution, as: 'originDeviceExecution'
|
|
570
572
|
property :results_storage_path, as: 'resultsStoragePath'
|
|
571
573
|
property :robo_stats, as: 'roboStats', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRoboStats, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaRoboStats::Representation
|
|
572
574
|
|
|
@@ -333,7 +333,7 @@ module Google
|
|
|
333
333
|
# Gets configuration for automated tests.
|
|
334
334
|
# @param [String] name
|
|
335
335
|
# Required. The name of the `TestConfig` resource to retrieve. Format: `projects/
|
|
336
|
-
# `project_number`/apps/`
|
|
336
|
+
# `project_number`/apps/`app`/testConfig`
|
|
337
337
|
# @param [String] fields
|
|
338
338
|
# Selector specifying which fields to include in a partial response.
|
|
339
339
|
# @param [String] quota_user
|
|
@@ -364,7 +364,7 @@ module Google
|
|
|
364
364
|
# Updates automated test configuration.
|
|
365
365
|
# @param [String] name
|
|
366
366
|
# Identifier. The name of the test configuration resource. Format: `projects/`
|
|
367
|
-
# project_number`/apps/`
|
|
367
|
+
# project_number`/apps/`app`/testConfig`
|
|
368
368
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestConfig] google_firebase_appdistro_v1alpha_test_config_object
|
|
369
369
|
# @param [String] update_mask
|
|
370
370
|
# Optional. The list of fields to update.
|
|
@@ -401,7 +401,7 @@ module Google
|
|
|
401
401
|
# Abort automated test run on release.
|
|
402
402
|
# @param [String] name
|
|
403
403
|
# Required. The name of the release test resource. Format: `projects/`
|
|
404
|
-
# project_number`/apps/`
|
|
404
|
+
# project_number`/apps/`app`/releases/`release`/tests/`test``
|
|
405
405
|
# @param [String] fields
|
|
406
406
|
# Selector specifying which fields to include in a partial response.
|
|
407
407
|
# @param [String] quota_user
|
|
@@ -432,7 +432,7 @@ module Google
|
|
|
432
432
|
# Run automated test(s) on release.
|
|
433
433
|
# @param [String] parent
|
|
434
434
|
# Required. The name of the release resource, which is the parent of the test
|
|
435
|
-
# Format: `projects/`project_number`/apps/`
|
|
435
|
+
# Format: `projects/`project_number`/apps/`app`/releases/`release``
|
|
436
436
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaReleaseTest] google_firebase_appdistro_v1alpha_release_test_object
|
|
437
437
|
# @param [String] release_test_id
|
|
438
438
|
# Optional. The ID to use for the test, which will become the final component of
|
|
@@ -472,7 +472,7 @@ module Google
|
|
|
472
472
|
# Get results for automated test run on release.
|
|
473
473
|
# @param [String] name
|
|
474
474
|
# Required. The name of the release test resource. Format: `projects/`
|
|
475
|
-
# project_number`/apps/`
|
|
475
|
+
# project_number`/apps/`app`/releases/`release`/tests/`test``
|
|
476
476
|
# @param [String] fields
|
|
477
477
|
# Selector specifying which fields to include in a partial response.
|
|
478
478
|
# @param [String] quota_user
|
|
@@ -503,7 +503,7 @@ module Google
|
|
|
503
503
|
# List results for automated tests run on release.
|
|
504
504
|
# @param [String] parent
|
|
505
505
|
# Required. The name of the release resource, which is the parent of the tests
|
|
506
|
-
# Format: `projects/`project_number`/apps/`
|
|
506
|
+
# Format: `projects/`project_number`/apps/`app`/releases/`release``
|
|
507
507
|
# @param [Fixnum] page_size
|
|
508
508
|
# Optional. The maximum number of tests to return. The service may return fewer
|
|
509
509
|
# than this value.
|
|
@@ -546,7 +546,7 @@ module Google
|
|
|
546
546
|
# Deletes multiple test cases.
|
|
547
547
|
# @param [String] parent
|
|
548
548
|
# Required. The parent resource of the test cases being deleted. Format: `
|
|
549
|
-
# projects/`project_number`/apps/`
|
|
549
|
+
# projects/`project_number`/apps/`app``
|
|
550
550
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest] google_firebase_appdistro_v1alpha_batch_delete_test_cases_request_object
|
|
551
551
|
# @param [String] fields
|
|
552
552
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -580,7 +580,7 @@ module Google
|
|
|
580
580
|
# Updates multiple test cases.
|
|
581
581
|
# @param [String] parent
|
|
582
582
|
# Required. The parent resource of the test cases being updated. Format: `
|
|
583
|
-
# projects/`project_number`/apps/`
|
|
583
|
+
# projects/`project_number`/apps/`app``
|
|
584
584
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaBatchUpdateTestCasesRequest] google_firebase_appdistro_v1alpha_batch_update_test_cases_request_object
|
|
585
585
|
# @param [String] fields
|
|
586
586
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -614,7 +614,7 @@ module Google
|
|
|
614
614
|
# Clears cached test runs for a specific test case and device(s).
|
|
615
615
|
# @param [String] test_case
|
|
616
616
|
# Required. The name of the test case resource for which to clear the cache.
|
|
617
|
-
# Format: `projects/`project_number`/apps/`
|
|
617
|
+
# Format: `projects/`project_number`/apps/`app`/testCases/`test_case``
|
|
618
618
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaClearTestCaseCacheRequest] google_firebase_appdistro_v1alpha_clear_test_case_cache_request_object
|
|
619
619
|
# @param [String] fields
|
|
620
620
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -648,7 +648,7 @@ module Google
|
|
|
648
648
|
# Create a new test case.
|
|
649
649
|
# @param [String] parent
|
|
650
650
|
# Required. The parent resource where this test case will be created. Format: `
|
|
651
|
-
# projects/`project_number`/apps/`
|
|
651
|
+
# projects/`project_number`/apps/`app``
|
|
652
652
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase] google_firebase_appdistro_v1alpha_test_case_object
|
|
653
653
|
# @param [String] test_case_id
|
|
654
654
|
# Optional. The ID to use for the test case, which will become the final
|
|
@@ -687,7 +687,7 @@ module Google
|
|
|
687
687
|
# Delete a test case.
|
|
688
688
|
# @param [String] name
|
|
689
689
|
# Required. The name of the test case resource to delete. Format: `projects/`
|
|
690
|
-
# project_number`/apps/`
|
|
690
|
+
# project_number`/apps/`app`/testCases/`test_case``
|
|
691
691
|
# @param [String] fields
|
|
692
692
|
# Selector specifying which fields to include in a partial response.
|
|
693
693
|
# @param [String] quota_user
|
|
@@ -718,7 +718,7 @@ module Google
|
|
|
718
718
|
# Get a test case.
|
|
719
719
|
# @param [String] name
|
|
720
720
|
# Required. The name of the test case resource to retrieve. Format: `projects/`
|
|
721
|
-
# project_number`/apps/`
|
|
721
|
+
# project_number`/apps/`app`/testCases/`test_case``
|
|
722
722
|
# @param [String] fields
|
|
723
723
|
# Selector specifying which fields to include in a partial response.
|
|
724
724
|
# @param [String] quota_user
|
|
@@ -749,7 +749,7 @@ module Google
|
|
|
749
749
|
# List test cases.
|
|
750
750
|
# @param [String] parent
|
|
751
751
|
# Required. The parent resource from which to list test cases. Format: `projects/
|
|
752
|
-
# `project_number`/apps/`
|
|
752
|
+
# `project_number`/apps/`app``
|
|
753
753
|
# @param [Fixnum] page_size
|
|
754
754
|
# Optional. The maximum number of test cases to return. The service may return
|
|
755
755
|
# fewer than this value. If unspecified, at most 50 test cases will be returned.
|
|
@@ -790,7 +790,7 @@ module Google
|
|
|
790
790
|
# Update a test case.
|
|
791
791
|
# @param [String] name
|
|
792
792
|
# Identifier. The name of the test case resource. Format: `projects/`
|
|
793
|
-
# project_number`/apps/`
|
|
793
|
+
# project_number`/apps/`app`/testCases/`test_case``
|
|
794
794
|
# @param [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestCase] google_firebase_appdistro_v1alpha_test_case_object
|
|
795
795
|
# @param [Boolean] allow_missing
|
|
796
796
|
# Optional. If set to true, and the test case is not found, a new test case will
|
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.24.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.24.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:
|