google-apis-testing_v1 0.21.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9ef1eb1e70325724015f95dcc1a8e0b461b12612905c3a9c0e879cc38d1e642
|
4
|
+
data.tar.gz: b97efb8dde8ebbdfd0c5966d5373860abf4bfa8d82807cd09f9100f25f0ab8fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 514f873d9a7ba48d2aa395bdf47960614f977e16c4aba66620af4f7404f561b0fb80de9372b35608c1cb60c0d01b578da82d5e815e1c7f24062687dda8162952
|
7
|
+
data.tar.gz: 62f3c3b88f1727f8b23c0cc41bc8f76320bd0874825af8129ee6a12abd3191b800d9c97416135d9eea2c5c8bb512355901368cb7df977c247b6a90f1308ad8ad
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-testing_v1
|
2
2
|
|
3
|
+
### v0.24.0 (2022-08-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220823
|
6
|
+
|
7
|
+
### v0.23.0 (2022-08-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220806
|
10
|
+
* Regenerated using generator version 0.9.0
|
11
|
+
|
12
|
+
### v0.22.0 (2022-06-30)
|
13
|
+
|
14
|
+
* Regenerated using generator version 0.8.0
|
15
|
+
|
3
16
|
### v0.21.0 (2022-06-20)
|
4
17
|
|
5
18
|
* Regenerated using generator version 0.7.0
|
@@ -693,6 +693,16 @@ module Google
|
|
693
693
|
# @return [Array<String>]
|
694
694
|
attr_accessor :uses_permission
|
695
695
|
|
696
|
+
# Version number used internally by the app.
|
697
|
+
# Corresponds to the JSON property `versionCode`
|
698
|
+
# @return [Fixnum]
|
699
|
+
attr_accessor :version_code
|
700
|
+
|
701
|
+
# Version number shown to users.
|
702
|
+
# Corresponds to the JSON property `versionName`
|
703
|
+
# @return [String]
|
704
|
+
attr_accessor :version_name
|
705
|
+
|
696
706
|
def initialize(**args)
|
697
707
|
update!(**args)
|
698
708
|
end
|
@@ -706,6 +716,8 @@ module Google
|
|
706
716
|
@package_name = args[:package_name] if args.key?(:package_name)
|
707
717
|
@target_sdk_version = args[:target_sdk_version] if args.key?(:target_sdk_version)
|
708
718
|
@uses_permission = args[:uses_permission] if args.key?(:uses_permission)
|
719
|
+
@version_code = args[:version_code] if args.key?(:version_code)
|
720
|
+
@version_name = args[:version_name] if args.key?(:version_name)
|
709
721
|
end
|
710
722
|
end
|
711
723
|
|
@@ -1605,9 +1617,11 @@ module Google
|
|
1605
1617
|
include Google::Apis::Core::Hashable
|
1606
1618
|
|
1607
1619
|
# Required. Group of packages, classes, and/or test methods to be run for each
|
1608
|
-
# shard.
|
1609
|
-
#
|
1610
|
-
#
|
1620
|
+
# manually-created shard. You must specify at least one shard if this field is
|
1621
|
+
# present. When you select one or more physical devices, the number of repeated
|
1622
|
+
# test_targets_for_shard must be <= 50. When you select one or more ARM virtual
|
1623
|
+
# devices, it must be <= 50. When you select only x86 virtual devices, it must
|
1624
|
+
# be <= 500.
|
1611
1625
|
# Corresponds to the JSON property `testTargetsForShard`
|
1612
1626
|
# @return [Array<Google::Apis::TestingV1::TestTargetsForShard>]
|
1613
1627
|
attr_accessor :test_targets_for_shard
|
@@ -1943,11 +1957,11 @@ module Google
|
|
1943
1957
|
attr_accessor :manual_sharding
|
1944
1958
|
|
1945
1959
|
# Uniformly shards test cases given a total number of shards. For
|
1946
|
-
#
|
1947
|
-
# AndroidJUnitRunner arguments.
|
1948
|
-
#
|
1949
|
-
#
|
1950
|
-
#
|
1960
|
+
# instrumentation tests, it will be translated to "-e numShard" and "-e
|
1961
|
+
# shardIndex" AndroidJUnitRunner arguments. With uniform sharding enabled,
|
1962
|
+
# specifying either of these sharding arguments via `environment_variables` is
|
1963
|
+
# invalid. Based on the sharding mechanism AndroidJUnitRunner uses, there is no
|
1964
|
+
# guarantee that test cases will be distributed uniformly across all shards.
|
1951
1965
|
# Corresponds to the JSON property `uniformSharding`
|
1952
1966
|
# @return [Google::Apis::TestingV1::UniformSharding]
|
1953
1967
|
attr_accessor :uniform_sharding
|
@@ -2592,17 +2606,19 @@ module Google
|
|
2592
2606
|
end
|
2593
2607
|
|
2594
2608
|
# Uniformly shards test cases given a total number of shards. For
|
2595
|
-
#
|
2596
|
-
# AndroidJUnitRunner arguments.
|
2597
|
-
#
|
2598
|
-
#
|
2599
|
-
#
|
2609
|
+
# instrumentation tests, it will be translated to "-e numShard" and "-e
|
2610
|
+
# shardIndex" AndroidJUnitRunner arguments. With uniform sharding enabled,
|
2611
|
+
# specifying either of these sharding arguments via `environment_variables` is
|
2612
|
+
# invalid. Based on the sharding mechanism AndroidJUnitRunner uses, there is no
|
2613
|
+
# guarantee that test cases will be distributed uniformly across all shards.
|
2600
2614
|
class UniformSharding
|
2601
2615
|
include Google::Apis::Core::Hashable
|
2602
2616
|
|
2603
|
-
# Required.
|
2604
|
-
# number
|
2605
|
-
# number must be
|
2617
|
+
# Required. The total number of shards to create. This must always be a positive
|
2618
|
+
# number that is no greater than the total number of test cases. When you select
|
2619
|
+
# one or more physical devices, the number of shards must be <= 50. When you
|
2620
|
+
# select one or more ARM virtual devices, it must be <= 50. When you select only
|
2621
|
+
# x86 virtual devices, it must be <= 500.
|
2606
2622
|
# Corresponds to the JSON property `numShards`
|
2607
2623
|
# @return [Fixnum]
|
2608
2624
|
attr_accessor :num_shards
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TestingV1
|
18
18
|
# Version of the google-apis-testing_v1 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
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220823"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -617,6 +617,8 @@ module Google
|
|
617
617
|
property :package_name, as: 'packageName'
|
618
618
|
property :target_sdk_version, as: 'targetSdkVersion'
|
619
619
|
collection :uses_permission, as: 'usesPermission'
|
620
|
+
property :version_code, :numeric_string => true, as: 'versionCode'
|
621
|
+
property :version_name, as: 'versionName'
|
620
622
|
end
|
621
623
|
end
|
622
624
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-testing_v1
|
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
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.7'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-testing_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.24.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|