google-apis-testing_v1 0.8.0 → 0.12.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: 5cb36719301d1fc20df5a24548bd21066171056f5ddc113c7959fd3526da6379
4
- data.tar.gz: 61c431f88083d4185977f87112e04cea220125c4be0dab3701d5bbeb227b62a1
3
+ metadata.gz: 0f1d2fafa4868b23cc5fdef82738b42f171a504b9754623a71abac59ae10e474
4
+ data.tar.gz: 38d3daca21424ee0b9c6d93e73f38460787c01107538ba69664014fc4c00e193
5
5
  SHA512:
6
- metadata.gz: 654a89a9f6c87a05f6b8a1d49d3789d7f5a66ca63c8fbb014b88b512ecb4a7699738355a0cbe04afd353fc69c150792574aad5768424c99045ea7ddd51083fd9
7
- data.tar.gz: f42812240a29d86e9028aae8a8e598449a22950639db6bd38e7769b7256c5cfd9cd00702f2b8a6e1a0293472bf1dd9ce34ee185581323e361270390ea12ec313
6
+ metadata.gz: e3a9907f6d7df0e04b251743f30e33975eeea312bab54401009d0cae7348886e0e5bba065b54a0af1df6afbc7d0806764ea615f608e877b579c4e287efb502ab
7
+ data.tar.gz: 9109e94b6097525baf3941f4bf9ab270881753f5a9aa2a84da5e7ff253a0cc29f9b6a788367331b5f275d53ac73fc7612b98b82ed6be68549cee34c831e06a09
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-testing_v1
2
2
 
3
+ ### v0.12.0 (2021-10-20)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.11.0 (2021-08-18)
8
+
9
+ * Regenerated from discovery document revision 20210813
10
+
11
+ ### v0.10.0 (2021-08-05)
12
+
13
+ * Regenerated from discovery document revision 20210803
14
+
15
+ ### v0.9.0 (2021-07-15)
16
+
17
+ * Regenerated from discovery document revision 20210713
18
+
3
19
  ### v0.8.0 (2021-06-29)
4
20
 
5
21
  * Regenerated using generator version 0.4.0
data/OVERVIEW.md CHANGED
@@ -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
 
@@ -382,7 +382,7 @@ module Google
382
382
  end
383
383
 
384
384
  # A test of an android application that explores the application on a virtual or
385
- # physical Android Device, finding culprits and crashes as it goes. Next tag: 30
385
+ # physical Android Device, finding culprits and crashes as it goes.
386
386
  class AndroidRoboTest
387
387
  include Google::Apis::Core::Hashable
388
388
 
@@ -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
@@ -1419,9 +1426,9 @@ module Google
1419
1426
  attr_accessor :network_profile
1420
1427
 
1421
1428
  # List of directories on the device to upload to Cloud Storage at the end of the
1422
- # test. Directories should either be in a shared directory (e.g. /private/var/
1423
- # mobile/Media) or within an accessible directory inside the app's filesystem (e.
1424
- # g. /Documents) by specifying the bundle id.
1429
+ # test. Directories should either be in a shared directory (such as /private/var/
1430
+ # mobile/Media) or within an accessible directory inside the app's filesystem (
1431
+ # such as /Documents) by specifying the bundle ID.
1425
1432
  # Corresponds to the JSON property `pullDirectories`
1426
1433
  # @return [Array<Google::Apis::TestingV1::IosDeviceFile>]
1427
1434
  attr_accessor :pull_directories
@@ -1735,9 +1742,10 @@ module Google
1735
1742
  # @return [String]
1736
1743
  attr_accessor :androidx_orchestrator_version
1737
1744
 
1738
- # A string representing the current version of Android Test Orchestrator that is
1739
- # used in the environment. The package is available at https://maven.google.com/
1740
- # web/index.html#com.android.support.test:orchestrator.
1745
+ # Deprecated: Use AndroidX Test Orchestrator going forward. A string
1746
+ # representing the current version of Android Test Orchestrator that is used in
1747
+ # the environment. The package is available at https://maven.google.com/web/
1748
+ # index.html#com.android.support.test:orchestrator.
1741
1749
  # Corresponds to the JSON property `orchestratorVersion`
1742
1750
  # @return [String]
1743
1751
  attr_accessor :orchestrator_version
@@ -2305,10 +2313,12 @@ module Google
2305
2313
  # @return [String]
2306
2314
  attr_accessor :network_profile
2307
2315
 
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.
2316
+ # Deprecated: Systrace uses Python 2 which has been sunset 2020-01-01. Support
2317
+ # of Systrace may stop at any time, at which point no Systrace file will be
2318
+ # provided in the results. Systrace configuration for the run. If set a systrace
2319
+ # will be taken, starting on test start and lasting for the configured duration.
2320
+ # The systrace file thus obtained is put in the results bucket together with the
2321
+ # other artifacts from the run.
2312
2322
  # Corresponds to the JSON property `systrace`
2313
2323
  # @return [Google::Apis::TestingV1::SystraceSetup]
2314
2324
  attr_accessor :systrace
@@ -2345,7 +2355,7 @@ module Google
2345
2355
  attr_accessor :android_instrumentation_test
2346
2356
 
2347
2357
  # A test of an android application that explores the application on a virtual or
2348
- # physical Android Device, finding culprits and crashes as it goes. Next tag: 30
2358
+ # physical Android Device, finding culprits and crashes as it goes.
2349
2359
  # Corresponds to the JSON property `androidRoboTest`
2350
2360
  # @return [Google::Apis::TestingV1::AndroidRoboTest]
2351
2361
  attr_accessor :android_robo_test
@@ -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.12.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 = "20210813"
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
@@ -30,10 +30,10 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
 
36
- # View your data across Google Cloud Platform services
36
+ # View your data across Google Cloud services and see the email address of your Google Account
37
37
  AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
38
38
  end
39
39
  end
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.12.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-10-27 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.8.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.12.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: