google-apis-testing_v1 0.13.0 → 0.14.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 +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/testing_v1/classes.rb +0 -13
- data/lib/google/apis/testing_v1/gem_version.rb +2 -2
- 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: b9eabcbcf1e7d082062952a013dc2e603577f3a4149805a1bde1ac12ddbd9a12
|
|
4
|
+
data.tar.gz: 6d21df79d550cdedf26232bcebe3b69fd915c187d977a92513ae0dd02a3e7cd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d75a0c32efda06baad5522f682fb1802fbdbfa46d1d3c953de778283cab01fa57296bff62ffd1879ef9e01d8c0d59b123ab1a9aba4437e44bb06719c80b43e3
|
|
7
|
+
data.tar.gz: 3e162cd54e3755831b62c5e14666d50c88f1bfd1df355cd75e8e1385a0a13e1973a573816b9f1d6450858e1b9c57c10bbd6b421da92b115d20f3ca8f62d30b7c
|
data/CHANGELOG.md
CHANGED
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)
|
|
@@ -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.14.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20211228"
|
|
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.14.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-01-10 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.14.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.4
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Cloud Testing API V1
|