google-apis-toolresults_v1beta3 0.26.0 → 0.28.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/toolresults_v1beta3/classes.rb +30 -9
- data/lib/google/apis/toolresults_v1beta3/gem_version.rb +3 -3
- data/lib/google/apis/toolresults_v1beta3/representations.rb +14 -1
- data/lib/google/apis/toolresults_v1beta3/service.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c94909203ee6abbf91104624f47e8f71e12e8581675da3b343a67428c930adc
|
|
4
|
+
data.tar.gz: 9d2cf7215bb2f34b5e0dbe9a7b1aee65a3e3058eec6bc5387a13d1ea6b122c78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55b1473f162b3171f3376dc98dd62c9efec359206b80812525073e782a206934d754167d7ef4dc7a4d39d35a9dfa9ab166b4abd6d833a71098991a4e055433ff
|
|
7
|
+
data.tar.gz: f98d2469677b8cbc165a0b6ea92e05d6d22000e82f0e7cfc9a79309e46717f50e7eb8bdd516ac5a43104fc60e34fee4ff104ead7bc9cd6553609eb0d3ca5dfa2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Release history for google-apis-toolresults_v1beta3
|
|
2
2
|
|
|
3
|
+
### v0.28.0 (2026-06-10)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260528
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
8
|
+
### v0.27.0 (2026-01-11)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20260108
|
|
11
|
+
* Regenerated using generator version 0.18.0
|
|
12
|
+
|
|
3
13
|
### v0.26.0 (2025-05-11)
|
|
4
14
|
|
|
5
15
|
* Regenerated from discovery document revision 20250204
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://firebase.google.com/docs/test-lab/) may prov
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
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.
|
|
89
89
|
|
|
@@ -948,12 +948,12 @@ module Google
|
|
|
948
948
|
class FileReference
|
|
949
949
|
include Google::Apis::Core::Hashable
|
|
950
950
|
|
|
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
|
|
953
|
-
# path/to/test.xml with version-specific info, gs://mybucket/path/to/
|
|
954
|
-
# 1360383693690000 An INVALID_ARGUMENT error will be returned if the
|
|
955
|
-
# is not supported. - In response: always set - In create/update
|
|
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
|
|
957
957
|
# Corresponds to the JSON property `fileUri`
|
|
958
958
|
# @return [String]
|
|
959
959
|
attr_accessor :file_uri
|
|
@@ -1449,6 +1449,19 @@ module Google
|
|
|
1449
1449
|
end
|
|
1450
1450
|
end
|
|
1451
1451
|
|
|
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
|
+
|
|
1452
1465
|
# Response message for EnvironmentService.ListEnvironments.
|
|
1453
1466
|
class ListEnvironmentsResponse
|
|
1454
1467
|
include Google::Apis::Core::Hashable
|
|
@@ -2630,6 +2643,13 @@ module Google
|
|
|
2630
2643
|
attr_accessor :incompatible_device
|
|
2631
2644
|
alias_method :incompatible_device?, :incompatible_device
|
|
2632
2645
|
|
|
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
|
+
|
|
2633
2653
|
def initialize(**args)
|
|
2634
2654
|
update!(**args)
|
|
2635
2655
|
end
|
|
@@ -2639,6 +2659,7 @@ module Google
|
|
|
2639
2659
|
@incompatible_app_version = args[:incompatible_app_version] if args.key?(:incompatible_app_version)
|
|
2640
2660
|
@incompatible_architecture = args[:incompatible_architecture] if args.key?(:incompatible_architecture)
|
|
2641
2661
|
@incompatible_device = args[:incompatible_device] if args.key?(:incompatible_device)
|
|
2662
|
+
@pending_timeout = args[:pending_timeout] if args.key?(:pending_timeout)
|
|
2642
2663
|
end
|
|
2643
2664
|
end
|
|
2644
2665
|
|
|
@@ -3373,9 +3394,9 @@ module Google
|
|
|
3373
3394
|
# will be embedded adding a field `value` which holds the custom JSON in
|
|
3374
3395
|
# addition to the `@type` field. Example (for message google.protobuf.Duration):
|
|
3375
3396
|
# ` "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" `
|
|
3376
|
-
# Corresponds to the JSON property `
|
|
3397
|
+
# Corresponds to the JSON property `warning_migration`
|
|
3377
3398
|
# @return [Google::Apis::ToolresultsV1beta3::Any]
|
|
3378
|
-
attr_accessor :
|
|
3399
|
+
attr_accessor :warning_migration
|
|
3379
3400
|
|
|
3380
3401
|
def initialize(**args)
|
|
3381
3402
|
update!(**args)
|
|
@@ -3388,7 +3409,7 @@ module Google
|
|
|
3388
3409
|
@severity = args[:severity] if args.key?(:severity)
|
|
3389
3410
|
@stack_trace = args[:stack_trace] if args.key?(:stack_trace)
|
|
3390
3411
|
@type = args[:type] if args.key?(:type)
|
|
3391
|
-
@
|
|
3412
|
+
@warning_migration = args[:warning_migration] if args.key?(:warning_migration)
|
|
3392
3413
|
end
|
|
3393
3414
|
end
|
|
3394
3415
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ToolresultsV1beta3
|
|
18
18
|
# Version of the google-apis-toolresults_v1beta3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.28.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260528"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -280,6 +280,12 @@ module Google
|
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
|
281
281
|
end
|
|
282
282
|
|
|
283
|
+
class LicensingProtectionTermination
|
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
|
+
|
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
287
|
+
end
|
|
288
|
+
|
|
283
289
|
class ListEnvironmentsResponse
|
|
284
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
291
|
|
|
@@ -1095,6 +1101,12 @@ module Google
|
|
|
1095
1101
|
end
|
|
1096
1102
|
end
|
|
1097
1103
|
|
|
1104
|
+
class LicensingProtectionTermination
|
|
1105
|
+
# @private
|
|
1106
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1107
|
+
end
|
|
1108
|
+
end
|
|
1109
|
+
|
|
1098
1110
|
class ListEnvironmentsResponse
|
|
1099
1111
|
# @private
|
|
1100
1112
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1468,6 +1480,7 @@ module Google
|
|
|
1468
1480
|
property :incompatible_app_version, as: 'incompatibleAppVersion'
|
|
1469
1481
|
property :incompatible_architecture, as: 'incompatibleArchitecture'
|
|
1470
1482
|
property :incompatible_device, as: 'incompatibleDevice'
|
|
1483
|
+
property :pending_timeout, as: 'pendingTimeout'
|
|
1471
1484
|
end
|
|
1472
1485
|
end
|
|
1473
1486
|
|
|
@@ -1646,7 +1659,7 @@ module Google
|
|
|
1646
1659
|
property :stack_trace, as: 'stackTrace', class: Google::Apis::ToolresultsV1beta3::StackTrace, decorator: Google::Apis::ToolresultsV1beta3::StackTrace::Representation
|
|
1647
1660
|
|
|
1648
1661
|
property :type, as: 'type'
|
|
1649
|
-
property :
|
|
1662
|
+
property :warning_migration, as: 'warning_migration', class: Google::Apis::ToolresultsV1beta3::Any, decorator: Google::Apis::ToolresultsV1beta3::Any::Representation
|
|
1650
1663
|
|
|
1651
1664
|
end
|
|
1652
1665
|
end
|
|
@@ -89,7 +89,7 @@ module Google
|
|
|
89
89
|
# project. Except for in rare cases, calling this method in parallel from
|
|
90
90
|
# multiple clients will only create a single bucket. In order to avoid
|
|
91
91
|
# unnecessary storage charges, the bucket is configured to automatically delete
|
|
92
|
-
# objects older than
|
|
92
|
+
# objects older than 60 days. The bucket is created with the following
|
|
93
93
|
# permissions: - Owner access for owners of central storage project (FTL-owned) -
|
|
94
94
|
# Writer access for owners/editors of customer project - Reader access for
|
|
95
95
|
# viewers of customer project The default ACL on objects created in the bucket
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-toolresults_v1beta3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.28.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-toolresults_v1beta3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-toolresults_v1beta3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-toolresults_v1beta3/v0.28.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-toolresults_v1beta3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.6.
|
|
76
|
+
rubygems_version: 3.6.9
|
|
77
77
|
specification_version: 4
|
|
78
78
|
summary: Simple REST client for Cloud Tool Results API V1beta3
|
|
79
79
|
test_files: []
|