Skip to content

Commit 15492a4

Browse files
feat: Automated regeneration of testing v1 client (googleapis#23570)
Auto-created at 2025-06-29 10:19:16 +0000 using the toys pull request generator.
1 parent dd96c10 commit 15492a4

File tree

5 files changed

+56
-3
lines changed

5 files changed

+56
-3
lines changed

api_names_out.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351719,7 +351719,11 @@
351719351719
"/testing:v1/ApkManifest/usesPermissionTags/uses_permission_tag": uses_permission_tag
351720351720
"/testing:v1/ApkManifest/versionCode": version_code
351721351721
"/testing:v1/ApkManifest/versionName": version_name
351722+
"/testing:v1/ApkSplits": apk_splits
351723+
"/testing:v1/ApkSplits/bundleSplits": bundle_splits
351724+
"/testing:v1/ApkSplits/bundleSplits/bundle_split": bundle_split
351722351725
"/testing:v1/AppBundle": app_bundle
351726+
"/testing:v1/AppBundle/apks": apks
351723351727
"/testing:v1/AppBundle/bundleLocation": bundle_location
351724351728
"/testing:v1/CancelDeviceSessionRequest": cancel_device_session_request
351725351729
"/testing:v1/CancelTestMatrixResponse": cancel_test_matrix_response

generated/google-apis-testing_v1/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-testing_v1
22

3+
### v0.55.0 (2025-06-29)
4+
5+
* Regenerated from discovery document revision 20250624
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.54.0 (2025-05-11)
49

510
* Regenerated using generator version 0.17.0

generated/google-apis-testing_v1/lib/google/apis/testing_v1/classes.rb

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,13 +763,40 @@ def update!(**args)
763763
end
764764
end
765765

766+
# A single dynamic feature apk.
767+
class ApkSplits
768+
include Google::Apis::Core::Hashable
769+
770+
# A list of .apk files generated by bundletool to install to the device under
771+
# test as a single android app with adb install-multiple. If specified, requires
772+
# one or more bundle_splits. The first split specified represents the base APK,
773+
# while subsequent splits represent feature apks.
774+
# Corresponds to the JSON property `bundleSplits`
775+
# @return [Array<Google::Apis::TestingV1::FileReference>]
776+
attr_accessor :bundle_splits
777+
778+
def initialize(**args)
779+
update!(**args)
780+
end
781+
782+
# Update properties of this object
783+
def update!(**args)
784+
@bundle_splits = args[:bundle_splits] if args.key?(:bundle_splits)
785+
end
786+
end
787+
766788
# An Android App Bundle file format, containing a BundleConfig.pb file, a base
767789
# module directory, zero or more dynamic feature module directories. See https://
768790
# developer.android.com/guide/app-bundle/build for guidance on building App
769791
# Bundles.
770792
class AppBundle
771793
include Google::Apis::Core::Hashable
772794

795+
# A single dynamic feature apk.
796+
# Corresponds to the JSON property `apks`
797+
# @return [Google::Apis::TestingV1::ApkSplits]
798+
attr_accessor :apks
799+
773800
# A reference to a file, used for user inputs.
774801
# Corresponds to the JSON property `bundleLocation`
775802
# @return [Google::Apis::TestingV1::FileReference]
@@ -781,6 +808,7 @@ def initialize(**args)
781808

782809
# Update properties of this object
783810
def update!(**args)
811+
@apks = args[:apks] if args.key?(:apks)
784812
@bundle_location = args[:bundle_location] if args.key?(:bundle_location)
785813
end
786814
end

generated/google-apis-testing_v1/lib/google/apis/testing_v1/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module TestingV1
1818
# Version of the google-apis-testing_v1 gem
19-
GEM_VERSION = "0.54.0"
19+
GEM_VERSION = "0.55.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250327"
25+
REVISION = "20250624"
2626
end
2727
end
2828
end

generated/google-apis-testing_v1/lib/google/apis/testing_v1/representations.rb

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
106106
include Google::Apis::Core::JsonObjectSupport
107107
end
108108

109+
class ApkSplits
110+
class Representation < Google::Apis::Core::JsonRepresentation; end
111+
112+
include Google::Apis::Core::JsonObjectSupport
113+
end
114+
109115
class AppBundle
110116
class Representation < Google::Apis::Core::JsonRepresentation; end
111117

@@ -737,9 +743,19 @@ class Representation < Google::Apis::Core::JsonRepresentation
737743
end
738744
end
739745

746+
class ApkSplits
747+
# @private
748+
class Representation < Google::Apis::Core::JsonRepresentation
749+
collection :bundle_splits, as: 'bundleSplits', class: Google::Apis::TestingV1::FileReference, decorator: Google::Apis::TestingV1::FileReference::Representation
750+
751+
end
752+
end
753+
740754
class AppBundle
741755
# @private
742756
class Representation < Google::Apis::Core::JsonRepresentation
757+
property :apks, as: 'apks', class: Google::Apis::TestingV1::ApkSplits, decorator: Google::Apis::TestingV1::ApkSplits::Representation
758+
743759
property :bundle_location, as: 'bundleLocation', class: Google::Apis::TestingV1::FileReference, decorator: Google::Apis::TestingV1::FileReference::Representation
744760

745761
end

0 commit comments

Comments
 (0)