google-apis-remotebuildexecution_v1 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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f42360cdafddd4259278630e591ebfcb5efc6024d3f3b1236e25ac1ea4c6bcf
|
4
|
+
data.tar.gz: a114223bf78ae59fa7156860f8eb9c3c5059d18eb53530ee663be0bcfd8f37dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59d164daca7a7a1ae5d73212e92f7f279b09c9d61d19df2b94fdc793f462556ca63effcc70269b9477c9ef11761d8b743a3be6193f9e65d7a538e867776e0bbc
|
7
|
+
data.tar.gz: da51dd1f3e2962078b9d3a09595baae7d688d102dd11c9f021e848c3f3c33d5c9ed4d5ccb262cd486a03e0d5ed023ebb2a14a61e5fe8ae5714aede030df56638
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-remotebuildexecution_v1
|
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
|
@@ -1394,6 +1394,12 @@ module Google
|
|
1394
1394
|
class GoogleDevtoolsRemotebuildbotCommandDurations
|
1395
1395
|
include Google::Apis::Core::Hashable
|
1396
1396
|
|
1397
|
+
# The time spent waiting for Container Manager to assign an asynchronous
|
1398
|
+
# container for execution.
|
1399
|
+
# Corresponds to the JSON property `cmWaitForAssignment`
|
1400
|
+
# @return [String]
|
1401
|
+
attr_accessor :cm_wait_for_assignment
|
1402
|
+
|
1397
1403
|
# The time spent preparing the command to be run in a Docker container (includes
|
1398
1404
|
# pulling the Docker image, if necessary).
|
1399
1405
|
# Corresponds to the JSON property `dockerPrep`
|
@@ -1457,6 +1463,7 @@ module Google
|
|
1457
1463
|
|
1458
1464
|
# Update properties of this object
|
1459
1465
|
def update!(**args)
|
1466
|
+
@cm_wait_for_assignment = args[:cm_wait_for_assignment] if args.key?(:cm_wait_for_assignment)
|
1460
1467
|
@docker_prep = args[:docker_prep] if args.key?(:docker_prep)
|
1461
1468
|
@docker_prep_start_time = args[:docker_prep_start_time] if args.key?(:docker_prep_start_time)
|
1462
1469
|
@download = args[:download] if args.key?(:download)
|
@@ -1503,6 +1510,12 @@ module Google
|
|
1503
1510
|
# @return [Fixnum]
|
1504
1511
|
attr_accessor :num_warnings
|
1505
1512
|
|
1513
|
+
# Indicates whether an asynchronous container was used for execution.
|
1514
|
+
# Corresponds to the JSON property `usedAsyncContainer`
|
1515
|
+
# @return [Boolean]
|
1516
|
+
attr_accessor :used_async_container
|
1517
|
+
alias_method :used_async_container?, :used_async_container
|
1518
|
+
|
1506
1519
|
def initialize(**args)
|
1507
1520
|
update!(**args)
|
1508
1521
|
end
|
@@ -1514,6 +1527,7 @@ module Google
|
|
1514
1527
|
@input_cache_miss = args[:input_cache_miss] if args.key?(:input_cache_miss)
|
1515
1528
|
@num_errors = args[:num_errors] if args.key?(:num_errors)
|
1516
1529
|
@num_warnings = args[:num_warnings] if args.key?(:num_warnings)
|
1530
|
+
@used_async_container = args[:used_async_container] if args.key?(:used_async_container)
|
1517
1531
|
end
|
1518
1532
|
end
|
1519
1533
|
|
@@ -2002,8 +2016,8 @@ module Google
|
|
2002
2016
|
# OR` operators, using parentheses to specify precedence. If neither operator is
|
2003
2017
|
# specified, `AND` is assumed. Examples: Include only pools with more than 100
|
2004
2018
|
# reserved workers: `(worker_count > 100) (worker_config.reserved = true)`
|
2005
|
-
# Include only pools with a certain label or machines of the
|
2006
|
-
# `worker_config.labels.key1 : * OR worker_config.machine_type:
|
2019
|
+
# Include only pools with a certain label or machines of the e2-standard family:
|
2020
|
+
# `worker_config.labels.key1 : * OR worker_config.machine_type: e2-standard`
|
2007
2021
|
# Corresponds to the JSON property `filter`
|
2008
2022
|
# @return [String]
|
2009
2023
|
attr_accessor :filter
|
@@ -2154,7 +2168,7 @@ module Google
|
|
2154
2168
|
# @return [Hash<String,String>]
|
2155
2169
|
attr_accessor :labels
|
2156
2170
|
|
2157
|
-
# Required. Machine type of the worker, such as `
|
2171
|
+
# Required. Machine type of the worker, such as `e2-standard-2`. See https://
|
2158
2172
|
# cloud.google.com/compute/docs/machine-types for a list of supported machine
|
2159
2173
|
# types. Note that `f1-micro` and `g1-small` are not yet supported.
|
2160
2174
|
# Corresponds to the JSON property `machineType`
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RemotebuildexecutionV1
|
18
18
|
# Version of the google-apis-remotebuildexecution_v1 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
|
@@ -677,6 +677,7 @@ module Google
|
|
677
677
|
class GoogleDevtoolsRemotebuildbotCommandDurations
|
678
678
|
# @private
|
679
679
|
class Representation < Google::Apis::Core::JsonRepresentation
|
680
|
+
property :cm_wait_for_assignment, as: 'cmWaitForAssignment'
|
680
681
|
property :docker_prep, as: 'dockerPrep'
|
681
682
|
property :docker_prep_start_time, as: 'dockerPrepStartTime'
|
682
683
|
property :download, as: 'download'
|
@@ -699,6 +700,7 @@ module Google
|
|
699
700
|
property :input_cache_miss, as: 'inputCacheMiss'
|
700
701
|
property :num_errors, :numeric_string => true, as: 'numErrors'
|
701
702
|
property :num_warnings, :numeric_string => true, as: 'numWarnings'
|
703
|
+
property :used_async_container, as: 'usedAsyncContainer'
|
702
704
|
end
|
703
705
|
end
|
704
706
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-remotebuildexecution_v1
|
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_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1/v0.2.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-remotebuildexecution_v1
|
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 V1
|