google-apis-testing_v1 0.13.0 → 0.16.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 +14 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/testing_v1/classes.rb +23 -32
- data/lib/google/apis/testing_v1/gem_version.rb +3 -3
- data/lib/google/apis/testing_v1/representations.rb +0 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2b8d6888a382e90e6477063b7aa24e6acc2865e333894b412835c4bc04020d9
|
4
|
+
data.tar.gz: ee0655dc62c7f4fd2797bcfa10c21b4b5fc382ea9d0398704d317fc32af9cd5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8d2cafb1f55fed107c772321afeb2a47d9801daf9820a10141e41da01fc8066e187941220862f6ec4184e6903b99c5f27f4ecddb3ee6df94984aa36ebcf9fac
|
7
|
+
data.tar.gz: 9e50c5f0f44a28782fc0f4206f91fc439973fe38000ed8d80e257ae7bcdd4163c1335e0ff6777014be431bbcf60a9c446dee2a1ed86eee642e554a904ab1ebb4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Release history for google-apis-testing_v1
|
2
2
|
|
3
|
+
### v0.16.0 (2022-03-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220308
|
6
|
+
|
7
|
+
### v0.15.0 (2022-02-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220201
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.14.0 (2022-01-06)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20211228
|
15
|
+
* Unspecified changes
|
16
|
+
|
3
17
|
### v0.13.0 (2021-12-02)
|
4
18
|
|
5
19
|
* Regenerated from discovery document revision 20211123
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/testing_v1"
|
|
51
51
|
client = Google::Apis::TestingV1::TestingService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -410,17 +410,6 @@ module Google
|
|
410
410
|
# @return [String]
|
411
411
|
attr_accessor :app_package_id
|
412
412
|
|
413
|
-
# The max depth of the traversal stack Robo can explore. Needs to be at least 2
|
414
|
-
# to make Robo explore the app beyond the first activity. Default is 50.
|
415
|
-
# Corresponds to the JSON property `maxDepth`
|
416
|
-
# @return [Fixnum]
|
417
|
-
attr_accessor :max_depth
|
418
|
-
|
419
|
-
# The max number of steps Robo can execute. Default is no limit.
|
420
|
-
# Corresponds to the JSON property `maxSteps`
|
421
|
-
# @return [Fixnum]
|
422
|
-
attr_accessor :max_steps
|
423
|
-
|
424
413
|
# A set of directives Robo should apply during the crawl. This allows users to
|
425
414
|
# customize the crawl. For example, the username and password for a test account
|
426
415
|
# can be provided.
|
@@ -456,8 +445,6 @@ module Google
|
|
456
445
|
@app_bundle = args[:app_bundle] if args.key?(:app_bundle)
|
457
446
|
@app_initial_activity = args[:app_initial_activity] if args.key?(:app_initial_activity)
|
458
447
|
@app_package_id = args[:app_package_id] if args.key?(:app_package_id)
|
459
|
-
@max_depth = args[:max_depth] if args.key?(:max_depth)
|
460
|
-
@max_steps = args[:max_steps] if args.key?(:max_steps)
|
461
448
|
@robo_directives = args[:robo_directives] if args.key?(:robo_directives)
|
462
449
|
@robo_mode = args[:robo_mode] if args.key?(:robo_mode)
|
463
450
|
@robo_script = args[:robo_script] if args.key?(:robo_script)
|
@@ -572,11 +559,11 @@ module Google
|
|
572
559
|
# Represents a whole or partial calendar date, such as a birthday. The time of
|
573
560
|
# day and time zone are either specified elsewhere or are insignificant. The
|
574
561
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
575
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
576
|
-
# and day
|
577
|
-
# with zero month and day
|
578
|
-
#
|
579
|
-
# google.protobuf.Timestamp
|
562
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
563
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
564
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
565
|
+
# example, a credit card expiration date). Related types: * google.type.
|
566
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
580
567
|
# Corresponds to the JSON property `releaseDate`
|
581
568
|
# @return [Google::Apis::TestingV1::Date]
|
582
569
|
attr_accessor :release_date
|
@@ -806,11 +793,11 @@ module Google
|
|
806
793
|
# Represents a whole or partial calendar date, such as a birthday. The time of
|
807
794
|
# day and time zone are either specified elsewhere or are insignificant. The
|
808
795
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
809
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
810
|
-
# and day
|
811
|
-
# with zero month and day
|
812
|
-
#
|
813
|
-
# google.protobuf.Timestamp
|
796
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
797
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
798
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
799
|
+
# example, a credit card expiration date). Related types: * google.type.
|
800
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
814
801
|
class Date
|
815
802
|
include Google::Apis::Core::Hashable
|
816
803
|
|
@@ -876,11 +863,11 @@ module Google
|
|
876
863
|
# Represents a whole or partial calendar date, such as a birthday. The time of
|
877
864
|
# day and time zone are either specified elsewhere or are insignificant. The
|
878
865
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
879
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
880
|
-
# and day
|
881
|
-
# with zero month and day
|
882
|
-
#
|
883
|
-
# google.protobuf.Timestamp
|
866
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
867
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
868
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
869
|
+
# example, a credit card expiration date). Related types: * google.type.
|
870
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
884
871
|
# Corresponds to the JSON property `addedDate`
|
885
872
|
# @return [Google::Apis::TestingV1::Date]
|
886
873
|
attr_accessor :added_date
|
@@ -1945,8 +1932,10 @@ module Google
|
|
1945
1932
|
|
1946
1933
|
# Uniformly shards test cases given a total number of shards. For
|
1947
1934
|
# Instrumentation test, it will be translated to "-e numShard" "-e shardIndex"
|
1948
|
-
# AndroidJUnitRunner arguments.
|
1949
|
-
#
|
1935
|
+
# AndroidJUnitRunner arguments. Based on the sharding mechanism
|
1936
|
+
# AndroidJUnitRunner uses, there is no guarantee that test cases will be
|
1937
|
+
# distributed uniformly across all shards. With uniform sharding enabled,
|
1938
|
+
# specifying these sharding arguments via environment_variables is invalid.
|
1950
1939
|
# Corresponds to the JSON property `uniformSharding`
|
1951
1940
|
# @return [Google::Apis::TestingV1::UniformSharding]
|
1952
1941
|
attr_accessor :uniform_sharding
|
@@ -2592,8 +2581,10 @@ module Google
|
|
2592
2581
|
|
2593
2582
|
# Uniformly shards test cases given a total number of shards. For
|
2594
2583
|
# Instrumentation test, it will be translated to "-e numShard" "-e shardIndex"
|
2595
|
-
# AndroidJUnitRunner arguments.
|
2596
|
-
#
|
2584
|
+
# AndroidJUnitRunner arguments. Based on the sharding mechanism
|
2585
|
+
# AndroidJUnitRunner uses, there is no guarantee that test cases will be
|
2586
|
+
# distributed uniformly across all shards. With uniform sharding enabled,
|
2587
|
+
# specifying these sharding arguments via environment_variables is invalid.
|
2597
2588
|
class UniformSharding
|
2598
2589
|
include Google::Apis::Core::Hashable
|
2599
2590
|
|
@@ -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.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220308"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -539,8 +539,6 @@ module Google
|
|
539
539
|
|
540
540
|
property :app_initial_activity, as: 'appInitialActivity'
|
541
541
|
property :app_package_id, as: 'appPackageId'
|
542
|
-
property :max_depth, as: 'maxDepth'
|
543
|
-
property :max_steps, as: 'maxSteps'
|
544
542
|
collection :robo_directives, as: 'roboDirectives', class: Google::Apis::TestingV1::RoboDirective, decorator: Google::Apis::TestingV1::RoboDirective::Representation
|
545
543
|
|
546
544
|
property :robo_mode, as: 'roboMode'
|
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.16.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:
|
11
|
+
date: 2022-03-14 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-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.16.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Testing API V1
|