Skip to content

Commit 24c2b2d

Browse files
feat: Automated regeneration of toolresults v1beta3 client (googleapis#26634)
Auto-created at 2026-06-10 22:19:54 +0000 using the toys pull request generator.
1 parent 5f58877 commit 24c2b2d

8 files changed

Lines changed: 53 additions & 12 deletions

File tree

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408109,6 +408109,7 @@
408109408109
"/toolresults:v1beta3/IosXcTest/bundleId": bundle_id
408110408110
"/toolresults:v1beta3/IosXcTest/xcodeVersion": xcode_version
408111408111
"/toolresults:v1beta3/LauncherActivityNotFound": launcher_activity_not_found
408112+
"/toolresults:v1beta3/LicensingProtectionTermination": licensing_protection_termination
408112408113
"/toolresults:v1beta3/ListEnvironmentsResponse": list_environments_response
408113408114
"/toolresults:v1beta3/ListEnvironmentsResponse/environments": environments
408114408115
"/toolresults:v1beta3/ListEnvironmentsResponse/environments/environment": environment
@@ -408270,6 +408271,7 @@
408270408271
"/toolresults:v1beta3/SkippedDetail/incompatibleAppVersion": incompatible_app_version
408271408272
"/toolresults:v1beta3/SkippedDetail/incompatibleArchitecture": incompatible_architecture
408272408273
"/toolresults:v1beta3/SkippedDetail/incompatibleDevice": incompatible_device
408274+
"/toolresults:v1beta3/SkippedDetail/pendingTimeout": pending_timeout
408273408275
"/toolresults:v1beta3/Specification": specification
408274408276
"/toolresults:v1beta3/Specification/androidTest": android_test
408275408277
"/toolresults:v1beta3/Specification/iosTest": ios_test

generated/google-apis-toolresults_v1beta3/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-toolresults_v1beta3
22

3+
### v0.28.0 (2026-06-10)
4+
5+
* Regenerated from discovery document revision 20260528
6+
* Regenerated using generator version 0.19.0
7+
38
### v0.27.0 (2026-01-11)
49

510
* Regenerated from discovery document revision 20260108

generated/google-apis-toolresults_v1beta3/OVERVIEW.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The [product documentation](https://firebase.google.com/docs/test-lab/) may prov
8383

8484
## Supported Ruby versions
8585

86-
This library is supported on Ruby 3.1+.
86+
This library is supported on Ruby 3.2+.
8787

8888
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
8989

generated/google-apis-toolresults_v1beta3/google-apis-toolresults_v1beta3.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Gem::Specification.new do |gem|
2828
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
2929
gem.require_paths = ["lib"]
3030

31-
gem.required_ruby_version = '>= 3.1'
31+
gem.required_ruby_version = '>= 3.2'
3232
gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
3333
end

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

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -948,12 +948,12 @@ def update!(**args)
948948
class FileReference
949949
include Google::Apis::Core::Hashable
950950

951-
# The URI of a file stored in Google Cloud Storage. For example: http://storage.
952-
# googleapis.com/mybucket/path/to/test.xml or in gsutil format: gs://mybucket/
953-
# path/to/test.xml with version-specific info, gs://mybucket/path/to/test.xml#
954-
# 1360383693690000 An INVALID_ARGUMENT error will be returned if the URI format
955-
# is not supported. - In response: always set - In create/update request: always
956-
# set
951+
# The URI of a file stored in Google Cloud Storage. For example: `http://storage.
952+
# googleapis.com/mybucket/path/to/test.xml` or in Cloud Storage URI format: `gs:/
953+
# /mybucket/path/to/test.xml` with version-specific info, `gs://mybucket/path/to/
954+
# test.xml#1360383693690000` An INVALID_ARGUMENT error will be returned if the
955+
# URI format is not supported. - In response: always set - In create/update
956+
# request: always set
957957
# Corresponds to the JSON property `fileUri`
958958
# @return [String]
959959
attr_accessor :file_uri
@@ -1449,6 +1449,19 @@ def update!(**args)
14491449
end
14501450
end
14511451

1452+
# Licensing protection termination (Pairip) was detected.
1453+
class LicensingProtectionTermination
1454+
include Google::Apis::Core::Hashable
1455+
1456+
def initialize(**args)
1457+
update!(**args)
1458+
end
1459+
1460+
# Update properties of this object
1461+
def update!(**args)
1462+
end
1463+
end
1464+
14521465
# Response message for EnvironmentService.ListEnvironments.
14531466
class ListEnvironmentsResponse
14541467
include Google::Apis::Core::Hashable
@@ -2630,6 +2643,13 @@ class SkippedDetail
26302643
attr_accessor :incompatible_device
26312644
alias_method :incompatible_device?, :incompatible_device
26322645

2646+
# Indicates that the test could not be scheduled in the requested time because
2647+
# no suitable device was available.
2648+
# Corresponds to the JSON property `pendingTimeout`
2649+
# @return [Boolean]
2650+
attr_accessor :pending_timeout
2651+
alias_method :pending_timeout?, :pending_timeout
2652+
26332653
def initialize(**args)
26342654
update!(**args)
26352655
end
@@ -2639,6 +2659,7 @@ def update!(**args)
26392659
@incompatible_app_version = args[:incompatible_app_version] if args.key?(:incompatible_app_version)
26402660
@incompatible_architecture = args[:incompatible_architecture] if args.key?(:incompatible_architecture)
26412661
@incompatible_device = args[:incompatible_device] if args.key?(:incompatible_device)
2662+
@pending_timeout = args[:pending_timeout] if args.key?(:pending_timeout)
26422663
end
26432664
end
26442665

generated/google-apis-toolresults_v1beta3/lib/google/apis/toolresults_v1beta3/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 ToolresultsV1beta3
1818
# Version of the google-apis-toolresults_v1beta3 gem
19-
GEM_VERSION = "0.27.0"
19+
GEM_VERSION = "0.28.0"
2020

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

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

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
280280
include Google::Apis::Core::JsonObjectSupport
281281
end
282282

283+
class LicensingProtectionTermination
284+
class Representation < Google::Apis::Core::JsonRepresentation; end
285+
286+
include Google::Apis::Core::JsonObjectSupport
287+
end
288+
283289
class ListEnvironmentsResponse
284290
class Representation < Google::Apis::Core::JsonRepresentation; end
285291

@@ -1095,6 +1101,12 @@ class Representation < Google::Apis::Core::JsonRepresentation
10951101
end
10961102
end
10971103

1104+
class LicensingProtectionTermination
1105+
# @private
1106+
class Representation < Google::Apis::Core::JsonRepresentation
1107+
end
1108+
end
1109+
10981110
class ListEnvironmentsResponse
10991111
# @private
11001112
class Representation < Google::Apis::Core::JsonRepresentation
@@ -1468,6 +1480,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
14681480
property :incompatible_app_version, as: 'incompatibleAppVersion'
14691481
property :incompatible_architecture, as: 'incompatibleArchitecture'
14701482
property :incompatible_device, as: 'incompatibleDevice'
1483+
property :pending_timeout, as: 'pendingTimeout'
14711484
end
14721485
end
14731486

generated/google-apis-toolresults_v1beta3/lib/google/apis/toolresults_v1beta3/service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_project_settings(project_id, fields: nil, quota_user: nil, options: nil,
8989
# project. Except for in rare cases, calling this method in parallel from
9090
# multiple clients will only create a single bucket. In order to avoid
9191
# unnecessary storage charges, the bucket is configured to automatically delete
92-
# objects older than 90 days. The bucket is created with the following
92+
# objects older than 60 days. The bucket is created with the following
9393
# permissions: - Owner access for owners of central storage project (FTL-owned) -
9494
# Writer access for owners/editors of customer project - Reader access for
9595
# viewers of customer project The default ACL on objects created in the bucket

0 commit comments

Comments
 (0)