google-apis-testing_v1 0.40.0 → 0.42.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90816a90be26e791fc397941555cd55ba963c4a4bac420795fb0a4223090a0a6
|
4
|
+
data.tar.gz: 63215e8918b637f57793e6bbb0f9eec502d3b549740de925d4be60402f7b9695
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bee956e1b3a554b3feb0cffba8d8e78d67a7fa0caab0aa0ea0b86639addfc94fffb33f0d6dd9698b9206f6515fe313b9e540a9ee63bbea9550e6171acb8e7e2
|
7
|
+
data.tar.gz: 32cb9d5c4e3e6635e8029f1dfe31eecd82b105a19d52c062037b9772962e7448139c77705fbfe699420af898fd5d7ae119d36778f8a326e2b23df029bec90fc2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-testing_v1
|
2
2
|
|
3
|
+
### v0.42.0 (2023-11-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231027
|
6
|
+
|
7
|
+
### v0.41.0 (2023-10-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231023
|
10
|
+
|
3
11
|
### v0.40.0 (2023-10-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231017
|
@@ -988,11 +988,6 @@ module Google
|
|
988
988
|
# @return [Google::Apis::TestingV1::AndroidDevice]
|
989
989
|
attr_accessor :android_device
|
990
990
|
|
991
|
-
# A list of Android device configurations in which the test is to be executed.
|
992
|
-
# Corresponds to the JSON property `androidDeviceList`
|
993
|
-
# @return [Google::Apis::TestingV1::AndroidDeviceList]
|
994
|
-
attr_accessor :android_device_list
|
995
|
-
|
996
991
|
# Output only. The time that the Session was created.
|
997
992
|
# Corresponds to the JSON property `createTime`
|
998
993
|
# @return [String]
|
@@ -1033,7 +1028,7 @@ module Google
|
|
1033
1028
|
attr_accessor :state_histories
|
1034
1029
|
|
1035
1030
|
# Optional. The amount of time that a device will be initially allocated for.
|
1036
|
-
# This can eventually be extended with the
|
1031
|
+
# This can eventually be extended with the UpdateDeviceSession RPC. Default: 30
|
1037
1032
|
# minutes.
|
1038
1033
|
# Corresponds to the JSON property `ttl`
|
1039
1034
|
# @return [String]
|
@@ -1047,7 +1042,6 @@ module Google
|
|
1047
1042
|
def update!(**args)
|
1048
1043
|
@active_start_time = args[:active_start_time] if args.key?(:active_start_time)
|
1049
1044
|
@android_device = args[:android_device] if args.key?(:android_device)
|
1050
|
-
@android_device_list = args[:android_device_list] if args.key?(:android_device_list)
|
1051
1045
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1052
1046
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1053
1047
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
@@ -2774,6 +2768,12 @@ module Google
|
|
2774
2768
|
# @return [Array<Google::Apis::TestingV1::DeviceFile>]
|
2775
2769
|
attr_accessor :files_to_push
|
2776
2770
|
|
2771
|
+
# Optional. Initial setup APKs to install before the app under test is installed.
|
2772
|
+
# Currently capped at 100.
|
2773
|
+
# Corresponds to the JSON property `initialSetupApks`
|
2774
|
+
# @return [Array<Google::Apis::TestingV1::Apk>]
|
2775
|
+
attr_accessor :initial_setup_apks
|
2776
|
+
|
2777
2777
|
# The network traffic profile used for running the test. Available network
|
2778
2778
|
# profiles can be queried by using the NETWORK_CONFIGURATION environment type
|
2779
2779
|
# when calling TestEnvironmentDiscoveryService.GetTestEnvironmentCatalog.
|
@@ -2800,6 +2800,7 @@ module Google
|
|
2800
2800
|
@dont_autogrant_permissions = args[:dont_autogrant_permissions] if args.key?(:dont_autogrant_permissions)
|
2801
2801
|
@environment_variables = args[:environment_variables] if args.key?(:environment_variables)
|
2802
2802
|
@files_to_push = args[:files_to_push] if args.key?(:files_to_push)
|
2803
|
+
@initial_setup_apks = args[:initial_setup_apks] if args.key?(:initial_setup_apks)
|
2803
2804
|
@network_profile = args[:network_profile] if args.key?(:network_profile)
|
2804
2805
|
@systrace = args[:systrace] if args.key?(:systrace)
|
2805
2806
|
end
|
@@ -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.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231027"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -795,8 +795,6 @@ module Google
|
|
795
795
|
property :active_start_time, as: 'activeStartTime'
|
796
796
|
property :android_device, as: 'androidDevice', class: Google::Apis::TestingV1::AndroidDevice, decorator: Google::Apis::TestingV1::AndroidDevice::Representation
|
797
797
|
|
798
|
-
property :android_device_list, as: 'androidDeviceList', class: Google::Apis::TestingV1::AndroidDeviceList, decorator: Google::Apis::TestingV1::AndroidDeviceList::Representation
|
799
|
-
|
800
798
|
property :create_time, as: 'createTime'
|
801
799
|
property :display_name, as: 'displayName'
|
802
800
|
property :expire_time, as: 'expireTime'
|
@@ -1325,6 +1323,8 @@ module Google
|
|
1325
1323
|
|
1326
1324
|
collection :files_to_push, as: 'filesToPush', class: Google::Apis::TestingV1::DeviceFile, decorator: Google::Apis::TestingV1::DeviceFile::Representation
|
1327
1325
|
|
1326
|
+
collection :initial_setup_apks, as: 'initialSetupApks', class: Google::Apis::TestingV1::Apk, decorator: Google::Apis::TestingV1::Apk::Representation
|
1327
|
+
|
1328
1328
|
property :network_profile, as: 'networkProfile'
|
1329
1329
|
property :systrace, as: 'systrace', class: Google::Apis::TestingV1::SystraceSetup, decorator: Google::Apis::TestingV1::SystraceSetup::Representation
|
1330
1330
|
|
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.42.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: 2023-
|
11
|
+
date: 2023-11-05 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.42.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: []
|