google-apis-testing_v1 0.8.0 → 0.9.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: 5cb36719301d1fc20df5a24548bd21066171056f5ddc113c7959fd3526da6379
4
- data.tar.gz: 61c431f88083d4185977f87112e04cea220125c4be0dab3701d5bbeb227b62a1
3
+ metadata.gz: 6464e7f513a8100c2a82542a65e9038162b3893d4943d1f5b93139353258246a
4
+ data.tar.gz: 2630a814fc8851de450e5e26bb43d1f42f531d009f7ae92a6c666d764dba8946
5
5
  SHA512:
6
- metadata.gz: 654a89a9f6c87a05f6b8a1d49d3789d7f5a66ca63c8fbb014b88b512ecb4a7699738355a0cbe04afd353fc69c150792574aad5768424c99045ea7ddd51083fd9
7
- data.tar.gz: f42812240a29d86e9028aae8a8e598449a22950639db6bd38e7769b7256c5cfd9cd00702f2b8a6e1a0293472bf1dd9ce34ee185581323e361270390ea12ec313
6
+ metadata.gz: e20872c397117a3caf7a5ff8e8a0591ef153d4762781892502790bd2c7f679d2924d0331c6be8812dc3856b78613b43a0f52d9ddd5dd7b9bbae152d5690f585b
7
+ data.tar.gz: 13f937019bf634769858c51f8906e04465ecbf569386c897b9c22d56035030ebec50326fcd30f943a395331249d1d7d486da828a18ec50228a591477aa78c175
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-testing_v1
2
2
 
3
+ ### v0.9.0 (2021-07-15)
4
+
5
+ * Regenerated from discovery document revision 20210713
6
+
3
7
  ### v0.8.0 (2021-06-29)
4
8
 
5
9
  * Regenerated using generator version 0.4.0
@@ -428,6 +428,12 @@ module Google
428
428
  # @return [Array<Google::Apis::TestingV1::RoboDirective>]
429
429
  attr_accessor :robo_directives
430
430
 
431
+ # The mode in which Robo should run. Most clients should allow the server to
432
+ # populate this field automatically.
433
+ # Corresponds to the JSON property `roboMode`
434
+ # @return [String]
435
+ attr_accessor :robo_mode
436
+
431
437
  # A reference to a file, used for user inputs.
432
438
  # Corresponds to the JSON property `roboScript`
433
439
  # @return [Google::Apis::TestingV1::FileReference]
@@ -453,6 +459,7 @@ module Google
453
459
  @max_depth = args[:max_depth] if args.key?(:max_depth)
454
460
  @max_steps = args[:max_steps] if args.key?(:max_steps)
455
461
  @robo_directives = args[:robo_directives] if args.key?(:robo_directives)
462
+ @robo_mode = args[:robo_mode] if args.key?(:robo_mode)
456
463
  @robo_script = args[:robo_script] if args.key?(:robo_script)
457
464
  @starting_intents = args[:starting_intents] if args.key?(:starting_intents)
458
465
  end
@@ -2305,10 +2312,12 @@ module Google
2305
2312
  # @return [String]
2306
2313
  attr_accessor :network_profile
2307
2314
 
2308
- # Systrace configuration for the run. If set a systrace will be taken, starting
2309
- # on test start and lasting for the configured duration. The systrace file thus
2310
- # obtained is put in the results bucket together with the other artifacts from
2311
- # the run.
2315
+ # Deprecated: Systrace uses Python 2 which has been sunset 2020-01-01. Support
2316
+ # of Systrace may stop at any time, at which point no Systrace file will be
2317
+ # provided in the results. Systrace configuration for the run. If set a systrace
2318
+ # will be taken, starting on test start and lasting for the configured duration.
2319
+ # The systrace file thus obtained is put in the results bucket together with the
2320
+ # other artifacts from the run.
2312
2321
  # Corresponds to the JSON property `systrace`
2313
2322
  # @return [Google::Apis::TestingV1::SystraceSetup]
2314
2323
  attr_accessor :systrace
@@ -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.8.0"
19
+ GEM_VERSION = "0.9.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 = "20210326"
25
+ REVISION = "20210713"
26
26
  end
27
27
  end
28
28
  end
@@ -543,6 +543,7 @@ module Google
543
543
  property :max_steps, as: 'maxSteps'
544
544
  collection :robo_directives, as: 'roboDirectives', class: Google::Apis::TestingV1::RoboDirective, decorator: Google::Apis::TestingV1::RoboDirective::Representation
545
545
 
546
+ property :robo_mode, as: 'roboMode'
546
547
  property :robo_script, as: 'roboScript', class: Google::Apis::TestingV1::FileReference, decorator: Google::Apis::TestingV1::FileReference::Representation
547
548
 
548
549
  collection :starting_intents, as: 'startingIntents', class: Google::Apis::TestingV1::RoboStartingIntent, decorator: Google::Apis::TestingV1::RoboStartingIntent::Representation
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.8.0
4
+ version: 0.9.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-07-05 00:00:00.000000000 Z
11
+ date: 2021-07-19 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/master/generated/google-apis-testing_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.9.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-testing_v1
63
63
  post_install_message:
64
64
  rdoc_options: []