Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -408109,6 +408109,7 @@
"/toolresults:v1beta3/IosXcTest/bundleId": bundle_id
"/toolresults:v1beta3/IosXcTest/xcodeVersion": xcode_version
"/toolresults:v1beta3/LauncherActivityNotFound": launcher_activity_not_found
"/toolresults:v1beta3/LicensingProtectionTermination": licensing_protection_termination
"/toolresults:v1beta3/ListEnvironmentsResponse": list_environments_response
"/toolresults:v1beta3/ListEnvironmentsResponse/environments": environments
"/toolresults:v1beta3/ListEnvironmentsResponse/environments/environment": environment
Expand Down Expand Up @@ -408270,6 +408271,7 @@
"/toolresults:v1beta3/SkippedDetail/incompatibleAppVersion": incompatible_app_version
"/toolresults:v1beta3/SkippedDetail/incompatibleArchitecture": incompatible_architecture
"/toolresults:v1beta3/SkippedDetail/incompatibleDevice": incompatible_device
"/toolresults:v1beta3/SkippedDetail/pendingTimeout": pending_timeout
"/toolresults:v1beta3/Specification": specification
"/toolresults:v1beta3/Specification/androidTest": android_test
"/toolresults:v1beta3/Specification/iosTest": ios_test
Expand Down
5 changes: 5 additions & 0 deletions generated/google-apis-toolresults_v1beta3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-toolresults_v1beta3

### v0.28.0 (2026-06-10)

* Regenerated from discovery document revision 20260528
* Regenerated using generator version 0.19.0

### v0.27.0 (2026-01-11)

* Regenerated from discovery document revision 20260108
Expand Down
2 changes: 1 addition & 1 deletion generated/google-apis-toolresults_v1beta3/OVERVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The [product documentation](https://firebase.google.com/docs/test-lab/) may prov

## Supported Ruby versions

This library is supported on Ruby 3.1+.
This library is supported on Ruby 3.2+.

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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ Gem::Specification.new do |gem|
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
gem.require_paths = ["lib"]

gem.required_ruby_version = '>= 3.1'
gem.required_ruby_version = '>= 3.2'
gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
end
Original file line number Diff line number Diff line change
Expand Up @@ -948,12 +948,12 @@ def update!(**args)
class FileReference
include Google::Apis::Core::Hashable

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

# Licensing protection termination (Pairip) was detected.
class LicensingProtectionTermination
include Google::Apis::Core::Hashable

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
end
end

# Response message for EnvironmentService.ListEnvironments.
class ListEnvironmentsResponse
include Google::Apis::Core::Hashable
Expand Down Expand Up @@ -2630,6 +2643,13 @@ class SkippedDetail
attr_accessor :incompatible_device
alias_method :incompatible_device?, :incompatible_device

# Indicates that the test could not be scheduled in the requested time because
# no suitable device was available.
# Corresponds to the JSON property `pendingTimeout`
# @return [Boolean]
attr_accessor :pending_timeout
alias_method :pending_timeout?, :pending_timeout

def initialize(**args)
update!(**args)
end
Expand All @@ -2639,6 +2659,7 @@ def update!(**args)
@incompatible_app_version = args[:incompatible_app_version] if args.key?(:incompatible_app_version)
@incompatible_architecture = args[:incompatible_architecture] if args.key?(:incompatible_architecture)
@incompatible_device = args[:incompatible_device] if args.key?(:incompatible_device)
@pending_timeout = args[:pending_timeout] if args.key?(:pending_timeout)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ToolresultsV1beta3
# Version of the google-apis-toolresults_v1beta3 gem
GEM_VERSION = "0.27.0"
GEM_VERSION = "0.28.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"
GENERATOR_VERSION = "0.19.0"

# Revision of the discovery document this client was generated from
REVISION = "20260108"
REVISION = "20260528"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class LicensingProtectionTermination
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class ListEnvironmentsResponse
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -1095,6 +1101,12 @@ class Representation < Google::Apis::Core::JsonRepresentation
end
end

class LicensingProtectionTermination
# @private
class Representation < Google::Apis::Core::JsonRepresentation
end
end

class ListEnvironmentsResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down Expand Up @@ -1468,6 +1480,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :incompatible_app_version, as: 'incompatibleAppVersion'
property :incompatible_architecture, as: 'incompatibleArchitecture'
property :incompatible_device, as: 'incompatibleDevice'
property :pending_timeout, as: 'pendingTimeout'
end
end

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