google-apis-remotebuildexecution_v1alpha 0.4.0 → 0.9.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 +22 -0
- data/lib/google/apis/remotebuildexecution_v1alpha.rb +1 -1
- data/lib/google/apis/remotebuildexecution_v1alpha/classes.rb +86 -0
- data/lib/google/apis/remotebuildexecution_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/remotebuildexecution_v1alpha/representations.rb +24 -0
- metadata +15 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ccdbd0d1d2d0e9d586754b1085c6599086ba62a3419449065d7f500baf3cd117
|
4
|
+
data.tar.gz: 872405f4fbb79a7123519b6b6b2e84e1afcb7ad35e81f77dee4e3e9dd36d33e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c53ab2fefdacb35d71807e0ad03624e2ea8a0aa2efd5ca40d998fdd32627b2520a11c25e29475421364e49351cfead9af0bed26b7b7518062d70aecd8bc4fe4d
|
7
|
+
data.tar.gz: 90873509c8fad4bcc90b81f51e26b014572f5d28a156a20de9e365ad164faea7bfe0c8af789a8b88e527e39fd9f1a6b63f0a60c29c871d6199d4c35211ad0c9b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-remotebuildexecution_v1alpha
|
2
2
|
|
3
|
+
### v0.9.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210614
|
6
|
+
* Regenerated using generator version 0.3.0
|
7
|
+
|
8
|
+
### v0.8.0 (2021-05-20)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20210517
|
11
|
+
|
12
|
+
### v0.7.0 (2021-03-25)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210322
|
15
|
+
|
16
|
+
### v0.6.0 (2021-03-18)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210316
|
19
|
+
* Regenerated using generator version 0.2.0
|
20
|
+
|
21
|
+
### v0.5.0 (2021-03-04)
|
22
|
+
|
23
|
+
* Regenerated from discovery document revision 20210302
|
24
|
+
|
3
25
|
### v0.4.0 (2021-02-26)
|
4
26
|
|
5
27
|
* Regenerated from discovery document revision 20210224
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1alpha'
|
31
31
|
|
32
|
-
#
|
32
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
end
|
35
35
|
end
|
@@ -1298,12 +1298,33 @@ module Google
|
|
1298
1298
|
# @return [String]
|
1299
1299
|
attr_accessor :action_id
|
1300
1300
|
|
1301
|
+
# A brief description of the kind of action, for example, CppCompile or GoLink.
|
1302
|
+
# There is no standard agreed set of values for this, and they are expected to
|
1303
|
+
# vary between different client tools.
|
1304
|
+
# Corresponds to the JSON property `actionMnemonic`
|
1305
|
+
# @return [String]
|
1306
|
+
attr_accessor :action_mnemonic
|
1307
|
+
|
1308
|
+
# An identifier for the configuration in which the target was built, e.g. for
|
1309
|
+
# differentiating building host tools or different target platforms. There is no
|
1310
|
+
# expectation that this value will have any particular structure, or equality
|
1311
|
+
# across invocations, though some client tools may offer these guarantees.
|
1312
|
+
# Corresponds to the JSON property `configurationId`
|
1313
|
+
# @return [String]
|
1314
|
+
attr_accessor :configuration_id
|
1315
|
+
|
1301
1316
|
# An identifier to tie multiple tool invocations together. For example, runs of
|
1302
1317
|
# foo_test, bar_test and baz_test on a post-submit of a given patch.
|
1303
1318
|
# Corresponds to the JSON property `correlatedInvocationsId`
|
1304
1319
|
# @return [String]
|
1305
1320
|
attr_accessor :correlated_invocations_id
|
1306
1321
|
|
1322
|
+
# An identifier for the target which produced this action. No guarantees are
|
1323
|
+
# made around how many actions may relate to a single target.
|
1324
|
+
# Corresponds to the JSON property `targetId`
|
1325
|
+
# @return [String]
|
1326
|
+
attr_accessor :target_id
|
1327
|
+
|
1307
1328
|
# Details for the tool used to call the API.
|
1308
1329
|
# Corresponds to the JSON property `toolDetails`
|
1309
1330
|
# @return [Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2ToolDetails]
|
@@ -1322,7 +1343,10 @@ module Google
|
|
1322
1343
|
# Update properties of this object
|
1323
1344
|
def update!(**args)
|
1324
1345
|
@action_id = args[:action_id] if args.key?(:action_id)
|
1346
|
+
@action_mnemonic = args[:action_mnemonic] if args.key?(:action_mnemonic)
|
1347
|
+
@configuration_id = args[:configuration_id] if args.key?(:configuration_id)
|
1325
1348
|
@correlated_invocations_id = args[:correlated_invocations_id] if args.key?(:correlated_invocations_id)
|
1349
|
+
@target_id = args[:target_id] if args.key?(:target_id)
|
1326
1350
|
@tool_details = args[:tool_details] if args.key?(:tool_details)
|
1327
1351
|
@tool_invocation_id = args[:tool_invocation_id] if args.key?(:tool_invocation_id)
|
1328
1352
|
end
|
@@ -1578,6 +1602,12 @@ module Google
|
|
1578
1602
|
# @return [Fixnum]
|
1579
1603
|
attr_accessor :num_warnings
|
1580
1604
|
|
1605
|
+
# Indicates whether output files and/or output directories were found relative
|
1606
|
+
# to the execution root or to the user provided work directory or both or none.
|
1607
|
+
# Corresponds to the JSON property `outputLocation`
|
1608
|
+
# @return [String]
|
1609
|
+
attr_accessor :output_location
|
1610
|
+
|
1581
1611
|
# Indicates whether an asynchronous container was used for execution.
|
1582
1612
|
# Corresponds to the JSON property `usedAsyncContainer`
|
1583
1613
|
# @return [Boolean]
|
@@ -1596,6 +1626,7 @@ module Google
|
|
1596
1626
|
@input_cache_miss = args[:input_cache_miss] if args.key?(:input_cache_miss)
|
1597
1627
|
@num_errors = args[:num_errors] if args.key?(:num_errors)
|
1598
1628
|
@num_warnings = args[:num_warnings] if args.key?(:num_warnings)
|
1629
|
+
@output_location = args[:output_location] if args.key?(:output_location)
|
1599
1630
|
@used_async_container = args[:used_async_container] if args.key?(:used_async_container)
|
1600
1631
|
end
|
1601
1632
|
end
|
@@ -1644,6 +1675,11 @@ module Google
|
|
1644
1675
|
# @return [Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat]
|
1645
1676
|
attr_accessor :memory_usage
|
1646
1677
|
|
1678
|
+
#
|
1679
|
+
# Corresponds to the JSON property `totalDiskIoStats`
|
1680
|
+
# @return [Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageIoStats]
|
1681
|
+
attr_accessor :total_disk_io_stats
|
1682
|
+
|
1647
1683
|
def initialize(**args)
|
1648
1684
|
update!(**args)
|
1649
1685
|
end
|
@@ -1653,6 +1689,56 @@ module Google
|
|
1653
1689
|
@cpu_used_percent = args[:cpu_used_percent] if args.key?(:cpu_used_percent)
|
1654
1690
|
@disk_usage = args[:disk_usage] if args.key?(:disk_usage)
|
1655
1691
|
@memory_usage = args[:memory_usage] if args.key?(:memory_usage)
|
1692
|
+
@total_disk_io_stats = args[:total_disk_io_stats] if args.key?(:total_disk_io_stats)
|
1693
|
+
end
|
1694
|
+
end
|
1695
|
+
|
1696
|
+
#
|
1697
|
+
class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
|
1698
|
+
include Google::Apis::Core::Hashable
|
1699
|
+
|
1700
|
+
#
|
1701
|
+
# Corresponds to the JSON property `readBytesCount`
|
1702
|
+
# @return [Fixnum]
|
1703
|
+
attr_accessor :read_bytes_count
|
1704
|
+
|
1705
|
+
#
|
1706
|
+
# Corresponds to the JSON property `readCount`
|
1707
|
+
# @return [Fixnum]
|
1708
|
+
attr_accessor :read_count
|
1709
|
+
|
1710
|
+
#
|
1711
|
+
# Corresponds to the JSON property `readTimeMs`
|
1712
|
+
# @return [Fixnum]
|
1713
|
+
attr_accessor :read_time_ms
|
1714
|
+
|
1715
|
+
#
|
1716
|
+
# Corresponds to the JSON property `writeBytesCount`
|
1717
|
+
# @return [Fixnum]
|
1718
|
+
attr_accessor :write_bytes_count
|
1719
|
+
|
1720
|
+
#
|
1721
|
+
# Corresponds to the JSON property `writeCount`
|
1722
|
+
# @return [Fixnum]
|
1723
|
+
attr_accessor :write_count
|
1724
|
+
|
1725
|
+
#
|
1726
|
+
# Corresponds to the JSON property `writeTimeMs`
|
1727
|
+
# @return [Fixnum]
|
1728
|
+
attr_accessor :write_time_ms
|
1729
|
+
|
1730
|
+
def initialize(**args)
|
1731
|
+
update!(**args)
|
1732
|
+
end
|
1733
|
+
|
1734
|
+
# Update properties of this object
|
1735
|
+
def update!(**args)
|
1736
|
+
@read_bytes_count = args[:read_bytes_count] if args.key?(:read_bytes_count)
|
1737
|
+
@read_count = args[:read_count] if args.key?(:read_count)
|
1738
|
+
@read_time_ms = args[:read_time_ms] if args.key?(:read_time_ms)
|
1739
|
+
@write_bytes_count = args[:write_bytes_count] if args.key?(:write_bytes_count)
|
1740
|
+
@write_count = args[:write_count] if args.key?(:write_count)
|
1741
|
+
@write_time_ms = args[:write_time_ms] if args.key?(:write_time_ms)
|
1656
1742
|
end
|
1657
1743
|
end
|
1658
1744
|
|
@@ -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.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210614"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,6 +184,12 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
+
class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
187
193
|
class GoogleDevtoolsRemotebuildbotResourceUsageStat
|
188
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
195
|
|
@@ -628,7 +634,10 @@ module Google
|
|
628
634
|
# @private
|
629
635
|
class Representation < Google::Apis::Core::JsonRepresentation
|
630
636
|
property :action_id, as: 'actionId'
|
637
|
+
property :action_mnemonic, as: 'actionMnemonic'
|
638
|
+
property :configuration_id, as: 'configurationId'
|
631
639
|
property :correlated_invocations_id, as: 'correlatedInvocationsId'
|
640
|
+
property :target_id, as: 'targetId'
|
632
641
|
property :tool_details, as: 'toolDetails', class: Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2ToolDetails, decorator: Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2ToolDetails::Representation
|
633
642
|
|
634
643
|
property :tool_invocation_id, as: 'toolInvocationId'
|
@@ -691,6 +700,7 @@ module Google
|
|
691
700
|
property :input_cache_miss, as: 'inputCacheMiss'
|
692
701
|
property :num_errors, :numeric_string => true, as: 'numErrors'
|
693
702
|
property :num_warnings, :numeric_string => true, as: 'numWarnings'
|
703
|
+
property :output_location, as: 'outputLocation'
|
694
704
|
property :used_async_container, as: 'usedAsyncContainer'
|
695
705
|
end
|
696
706
|
end
|
@@ -711,6 +721,20 @@ module Google
|
|
711
721
|
|
712
722
|
property :memory_usage, as: 'memoryUsage', class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat, decorator: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat::Representation
|
713
723
|
|
724
|
+
property :total_disk_io_stats, as: 'totalDiskIoStats', class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageIoStats, decorator: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageIoStats::Representation
|
725
|
+
|
726
|
+
end
|
727
|
+
end
|
728
|
+
|
729
|
+
class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
|
730
|
+
# @private
|
731
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
732
|
+
property :read_bytes_count, :numeric_string => true, as: 'readBytesCount'
|
733
|
+
property :read_count, :numeric_string => true, as: 'readCount'
|
734
|
+
property :read_time_ms, :numeric_string => true, as: 'readTimeMs'
|
735
|
+
property :write_bytes_count, :numeric_string => true, as: 'writeBytesCount'
|
736
|
+
property :write_count, :numeric_string => true, as: 'writeCount'
|
737
|
+
property :write_time_ms, :numeric_string => true, as: 'writeTimeMs'
|
714
738
|
end
|
715
739
|
end
|
716
740
|
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.9.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-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Remote Build Execution API V1alpha.
|
28
34
|
Simple REST clients are Ruby client libraries that provide access to Google services
|
29
35
|
via their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1alpha/v0.9.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-remotebuildexecution_v1alpha
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
68
|
requirements:
|
63
69
|
- - ">="
|
64
70
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
71
|
+
version: '2.5'
|
66
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
73
|
requirements:
|
68
74
|
- - ">="
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Remote Build Execution API V1alpha
|