google-apis-remotebuildexecution_v1alpha 0.1.0 → 0.2.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 +5 -0
- data/lib/google/apis/remotebuildexecution_v1alpha/classes.rb +17 -3
- data/lib/google/apis/remotebuildexecution_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/remotebuildexecution_v1alpha/representations.rb +2 -0
- data/lib/google/apis/remotebuildexecution_v1alpha/service.rb +2 -2
- 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: fa194a6edc19d739eb71171a9ef7db8e8b0da7ff7ef599dcc7cb4d71fd550b28
|
4
|
+
data.tar.gz: 9a0719f4d6e4f7cf5ec136ea960a770b12e2f77ce3171b9b8e0a4d84bf59ae02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6790a8a0fb356332a10ebde7a51abe62d57c8fe998ed0040a2d06d02321df024f7e6922981e3ca19f00db1b34fd53807136f674f3fe91e2442574bb72caaf4ba
|
7
|
+
data.tar.gz: 993a1186c354bb263d7c9b4be92c5714931308aaa3c3b8c0cb915c1dc65267377ca321f4b316a493fade879c2d44ca667d3ae6df206da5069d2882193437b1b7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-remotebuildexecution_v1alpha
|
2
2
|
|
3
|
+
### v0.2.0 (2021-02-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210202
|
6
|
+
* Regenerated using generator version 0.1.2
|
7
|
+
|
3
8
|
### v0.1.0 (2021-01-07)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.1.1
|
@@ -1375,6 +1375,12 @@ module Google
|
|
1375
1375
|
class GoogleDevtoolsRemotebuildbotCommandDurations
|
1376
1376
|
include Google::Apis::Core::Hashable
|
1377
1377
|
|
1378
|
+
# The time spent waiting for Container Manager to assign an asynchronous
|
1379
|
+
# container for execution.
|
1380
|
+
# Corresponds to the JSON property `cmWaitForAssignment`
|
1381
|
+
# @return [String]
|
1382
|
+
attr_accessor :cm_wait_for_assignment
|
1383
|
+
|
1378
1384
|
# The time spent preparing the command to be run in a Docker container (includes
|
1379
1385
|
# pulling the Docker image, if necessary).
|
1380
1386
|
# Corresponds to the JSON property `dockerPrep`
|
@@ -1438,6 +1444,7 @@ module Google
|
|
1438
1444
|
|
1439
1445
|
# Update properties of this object
|
1440
1446
|
def update!(**args)
|
1447
|
+
@cm_wait_for_assignment = args[:cm_wait_for_assignment] if args.key?(:cm_wait_for_assignment)
|
1441
1448
|
@docker_prep = args[:docker_prep] if args.key?(:docker_prep)
|
1442
1449
|
@docker_prep_start_time = args[:docker_prep_start_time] if args.key?(:docker_prep_start_time)
|
1443
1450
|
@download = args[:download] if args.key?(:download)
|
@@ -1484,6 +1491,12 @@ module Google
|
|
1484
1491
|
# @return [Fixnum]
|
1485
1492
|
attr_accessor :num_warnings
|
1486
1493
|
|
1494
|
+
# Indicates whether an asynchronous container was used for execution.
|
1495
|
+
# Corresponds to the JSON property `usedAsyncContainer`
|
1496
|
+
# @return [Boolean]
|
1497
|
+
attr_accessor :used_async_container
|
1498
|
+
alias_method :used_async_container?, :used_async_container
|
1499
|
+
|
1487
1500
|
def initialize(**args)
|
1488
1501
|
update!(**args)
|
1489
1502
|
end
|
@@ -1495,6 +1508,7 @@ module Google
|
|
1495
1508
|
@input_cache_miss = args[:input_cache_miss] if args.key?(:input_cache_miss)
|
1496
1509
|
@num_errors = args[:num_errors] if args.key?(:num_errors)
|
1497
1510
|
@num_warnings = args[:num_warnings] if args.key?(:num_warnings)
|
1511
|
+
@used_async_container = args[:used_async_container] if args.key?(:used_async_container)
|
1498
1512
|
end
|
1499
1513
|
end
|
1500
1514
|
|
@@ -1983,8 +1997,8 @@ module Google
|
|
1983
1997
|
# OR` operators, using parentheses to specify precedence. If neither operator is
|
1984
1998
|
# specified, `AND` is assumed. Examples: Include only pools with more than 100
|
1985
1999
|
# reserved workers: `(worker_count > 100) (worker_config.reserved = true)`
|
1986
|
-
# Include only pools with a certain label or machines of the
|
1987
|
-
# `worker_config.labels.key1 : * OR worker_config.machine_type:
|
2000
|
+
# Include only pools with a certain label or machines of the e2-standard family:
|
2001
|
+
# `worker_config.labels.key1 : * OR worker_config.machine_type: e2-standard`
|
1988
2002
|
# Corresponds to the JSON property `filter`
|
1989
2003
|
# @return [String]
|
1990
2004
|
attr_accessor :filter
|
@@ -2135,7 +2149,7 @@ module Google
|
|
2135
2149
|
# @return [Hash<String,String>]
|
2136
2150
|
attr_accessor :labels
|
2137
2151
|
|
2138
|
-
# Required. Machine type of the worker, such as `
|
2152
|
+
# Required. Machine type of the worker, such as `e2-standard-2`. See https://
|
2139
2153
|
# cloud.google.com/compute/docs/machine-types for a list of supported machine
|
2140
2154
|
# types. Note that `f1-micro` and `g1-small` are not yet supported.
|
2141
2155
|
# Corresponds to the JSON property `machineType`
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RemotebuildexecutionV1alpha
|
18
18
|
# Version of the google-apis-remotebuildexecution_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.1.
|
22
|
+
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210202"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -646,6 +646,7 @@ module Google
|
|
646
646
|
class GoogleDevtoolsRemotebuildbotCommandDurations
|
647
647
|
# @private
|
648
648
|
class Representation < Google::Apis::Core::JsonRepresentation
|
649
|
+
property :cm_wait_for_assignment, as: 'cmWaitForAssignment'
|
649
650
|
property :docker_prep, as: 'dockerPrep'
|
650
651
|
property :docker_prep_start_time, as: 'dockerPrepStartTime'
|
651
652
|
property :download, as: 'download'
|
@@ -668,6 +669,7 @@ module Google
|
|
668
669
|
property :input_cache_miss, as: 'inputCacheMiss'
|
669
670
|
property :num_errors, :numeric_string => true, as: 'numErrors'
|
670
671
|
property :num_warnings, :numeric_string => true, as: 'numWarnings'
|
672
|
+
property :used_async_container, as: 'usedAsyncContainer'
|
671
673
|
end
|
672
674
|
end
|
673
675
|
|
@@ -351,8 +351,8 @@ module Google
|
|
351
351
|
# OR` operators, using parentheses to specify precedence. If neither operator is
|
352
352
|
# specified, `AND` is assumed. Examples: Include only pools with more than 100
|
353
353
|
# reserved workers: `(worker_count > 100) (worker_config.reserved = true)`
|
354
|
-
# Include only pools with a certain label or machines of the
|
355
|
-
# `worker_config.labels.key1 : * OR worker_config.machine_type:
|
354
|
+
# Include only pools with a certain label or machines of the e2-standard family:
|
355
|
+
# `worker_config.labels.key1 : * OR worker_config.machine_type: e2-standard`
|
356
356
|
# @param [String] fields
|
357
357
|
# Selector specifying which fields to include in a partial response.
|
358
358
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-remotebuildexecution_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.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: 2021-
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-remotebuildexecution_v1alpha/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1alpha/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1alpha/v0.2.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-remotebuildexecution_v1alpha
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.2.6
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Remote Build Execution API V1alpha
|