google-apis-remotebuildexecution_v1alpha 0.5.0 → 0.10.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 +79 -0
- data/lib/google/apis/remotebuildexecution_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/remotebuildexecution_v1alpha/representations.rb +23 -0
- metadata +14 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd0a31e4e0a46f6b462f6848fe75a56b768ff56f345f1f2c3c7791112c83c19c
|
|
4
|
+
data.tar.gz: 7baa45b04862d3bba75d317f854c3caa841299e226c46bce06ddf94bc810fb50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c11846882825b982c1e6cf72ea561afaf23b9ba0df82c37289976f3dc671efd4dfb5a951ecfe2f537633beecfc0deb4ba9412f9a74c9794c097b9673fff48321
|
|
7
|
+
data.tar.gz: 0cac0f1d0faa87273b1995e1ad0feefb67465cb4d437c5f01738e836e4b323738d8524c51320b08d648bd3c85ffbefe9eb77d9accc2269113f1d7b32e92e48c0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Release history for google-apis-remotebuildexecution_v1alpha
|
|
2
2
|
|
|
3
|
+
### v0.10.0 (2021-06-29)
|
|
4
|
+
|
|
5
|
+
* Regenerated using generator version 0.4.0
|
|
6
|
+
|
|
7
|
+
### v0.9.0 (2021-06-24)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20210614
|
|
10
|
+
* Regenerated using generator version 0.3.0
|
|
11
|
+
|
|
12
|
+
### v0.8.0 (2021-05-20)
|
|
13
|
+
|
|
14
|
+
* Regenerated from discovery document revision 20210517
|
|
15
|
+
|
|
16
|
+
### v0.7.0 (2021-03-25)
|
|
17
|
+
|
|
18
|
+
* Regenerated from discovery document revision 20210322
|
|
19
|
+
|
|
20
|
+
### v0.6.0 (2021-03-18)
|
|
21
|
+
|
|
22
|
+
* Regenerated from discovery document revision 20210316
|
|
23
|
+
* Regenerated using generator version 0.2.0
|
|
24
|
+
|
|
3
25
|
### v0.5.0 (2021-03-04)
|
|
4
26
|
|
|
5
27
|
* Regenerated from discovery document revision 20210302
|
|
@@ -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
|
|
@@ -1651,6 +1675,11 @@ module Google
|
|
|
1651
1675
|
# @return [Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat]
|
|
1652
1676
|
attr_accessor :memory_usage
|
|
1653
1677
|
|
|
1678
|
+
#
|
|
1679
|
+
# Corresponds to the JSON property `totalDiskIoStats`
|
|
1680
|
+
# @return [Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageIoStats]
|
|
1681
|
+
attr_accessor :total_disk_io_stats
|
|
1682
|
+
|
|
1654
1683
|
def initialize(**args)
|
|
1655
1684
|
update!(**args)
|
|
1656
1685
|
end
|
|
@@ -1660,6 +1689,56 @@ module Google
|
|
|
1660
1689
|
@cpu_used_percent = args[:cpu_used_percent] if args.key?(:cpu_used_percent)
|
|
1661
1690
|
@disk_usage = args[:disk_usage] if args.key?(:disk_usage)
|
|
1662
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)
|
|
1663
1742
|
end
|
|
1664
1743
|
end
|
|
1665
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.10.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.4.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'
|
|
@@ -712,6 +721,20 @@ module Google
|
|
|
712
721
|
|
|
713
722
|
property :memory_usage, as: 'memoryUsage', class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat, decorator: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat::Representation
|
|
714
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'
|
|
715
738
|
end
|
|
716
739
|
end
|
|
717
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.10.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-07-05 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.4'
|
|
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.4'
|
|
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.10.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: []
|
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
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
|