google-apis-testing_v1 0.11.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eab5df00bf7466fe11fc4fc2b00a7a2bd8c03805a0799c58514d0bb12f0247c9
4
- data.tar.gz: 2101bad7a2ac5284ec5e9269d905bf95a8179d3736eb6c8fc1307324030e3ea7
3
+ metadata.gz: d46cba193de4182a0cd00b7f4026ee8905bcc4273f5d653148484b8498ce6c31
4
+ data.tar.gz: 80ebb4ab26ccdbe770d726a4a890d49666f93a86915ae09bdae669627f821d73
5
5
  SHA512:
6
- metadata.gz: 35900e192be1b8a8bb6c4e5d7e53123e6834eb5d2472769d10618b62ae16794f33518f017f6a1cdac642fdec1a565cba9300d97aa732339f89ecb794d1425424
7
- data.tar.gz: c9c6553627700e2c739337f5c5228b0f14ccda13a445b1909db9f9cbe0cf6fa84eb26f9f9ef2f201eb3ced401c70669f08393dd8d4a9cb656f403b99ec851a74
6
+ metadata.gz: e34b3cb22b5b32d7b03d26044b70dcd97f82471ca1283660562642f9d359e1d90082fdb37f56a3c7da7d12bddac6f01e769c0aee2f43a738b289ec9912b06f7d
7
+ data.tar.gz: 801766796738d3cd3b51a3b6292a5698aa7fe8408c61ae505c04b7578ae369121eb505e5ee44d08ce60e791bb4dc03a75e7a982d6f38881268d79200bac59656
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Release history for google-apis-testing_v1
2
2
 
3
+ ### v0.15.0 (2022-02-11)
4
+
5
+ * Regenerated from discovery document revision 20220201
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.14.0 (2022-01-06)
9
+
10
+ * Regenerated from discovery document revision 20211228
11
+ * Unspecified changes
12
+
13
+ ### v0.13.0 (2021-12-02)
14
+
15
+ * Regenerated from discovery document revision 20211123
16
+
17
+ ### v0.12.0 (2021-10-20)
18
+
19
+ * Unspecified changes
20
+
3
21
  ### v0.11.0 (2021-08-18)
4
22
 
5
23
  * Regenerated from discovery document revision 20210813
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.authentication = # ... use the googleauth gem to create credentials
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.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Testing service in particular.)
67
67
 
@@ -167,7 +167,7 @@ module Google
167
167
 
168
168
  # The option of whether running each test within its own invocation of
169
169
  # instrumentation with Android Test Orchestrator or not. ** Orchestrator is only
170
- # compatible with AndroidJUnitRunner version 1.0 or higher! ** Orchestrator
170
+ # compatible with AndroidJUnitRunner version 1.1 or higher! ** Orchestrator
171
171
  # offers the following benefits: - No shared state - Crashes are isolated - Logs
172
172
  # are scoped per test See for more information about Android Test Orchestrator.
173
173
  # If not set, the test will be run without the orchestrator.
@@ -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)
@@ -573,10 +560,10 @@ module Google
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
562
  # following: * A full date, with non-zero year, month, and day values * A month
576
- # and day value, with a zero year, such as an anniversary * A year on its own,
577
- # with zero month and day values * A year and month value, with a zero day, such
578
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
579
- # google.protobuf.Timestamp`.
563
+ # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
564
+ # zero month and a zero day * A year and month, with a zero day (e.g., a credit
565
+ # card expiration date) Related types: * google.type.TimeOfDay * google.type.
566
+ # 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
@@ -807,10 +794,10 @@ module Google
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
796
  # following: * A full date, with non-zero year, month, and day values * A month
810
- # and day value, with a zero year, such as an anniversary * A year on its own,
811
- # with zero month and day values * A year and month value, with a zero day, such
812
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
813
- # google.protobuf.Timestamp`.
797
+ # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
798
+ # zero month and a zero day * A year and month, with a zero day (e.g., a credit
799
+ # card expiration date) Related types: * google.type.TimeOfDay * google.type.
800
+ # DateTime * google.protobuf.Timestamp
814
801
  class Date
815
802
  include Google::Apis::Core::Hashable
816
803
 
@@ -877,10 +864,10 @@ module Google
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
866
  # following: * A full date, with non-zero year, month, and day values * A month
880
- # and day value, with a zero year, such as an anniversary * A year on its own,
881
- # with zero month and day values * A year and month value, with a zero day, such
882
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
883
- # google.protobuf.Timestamp`.
867
+ # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
868
+ # zero month and a zero day * A year and month, with a zero day (e.g., a credit
869
+ # card expiration date) Related types: * google.type.TimeOfDay * google.type.
870
+ # 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. With uniform sharding enabled, specifying these
1949
- # sharding arguments via environment_variables is invalid.
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. With uniform sharding enabled, specifying these
2596
- # sharding arguments via environment_variables is invalid.
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.11.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210813"
25
+ REVISION = "20220201"
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.11.0
4
+ version: 0.15.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: 2021-08-23 00:00:00.000000000 Z
11
+ date: 2022-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-testing_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.11.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-testing_v1
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.15.0
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: []
65
65
  require_paths:
@@ -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.2.17
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