google-apis-remotebuildexecution_v1 0.5.0 → 0.6.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: 0b983fbbb793521860e5828d9c3add7268eb7e8224d4fa1af267f352d33cf04b
|
4
|
+
data.tar.gz: d25252177e8230b7db531509fb3b85be146cc961f75a63aeb9676324449484c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 546252340756f922b475a118abcecd0b5996bbb0aa1bcb4af9c2fed8630379b5a16075f6b5d95829499a5b4bab853a06368d0c76ae6f8751da9c6f919c2c2a23
|
7
|
+
data.tar.gz: 95d533918a6984dbc3f02e5243526a5a6d66d258e3ea0b6bb49cda2c0ff7c722ca0e81f85c0005a775637e705706c37aa99c8567bb13589375a65faf6f2c2f64
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-remotebuildexecution_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2021-03-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210316
|
6
|
+
* Regenerated using generator version 0.2.0
|
7
|
+
|
3
8
|
### v0.5.0 (2021-03-04)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20210302
|
@@ -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::RemotebuildexecutionV1::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
|
@@ -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.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210316"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -652,7 +652,10 @@ module Google
|
|
652
652
|
# @private
|
653
653
|
class Representation < Google::Apis::Core::JsonRepresentation
|
654
654
|
property :action_id, as: 'actionId'
|
655
|
+
property :action_mnemonic, as: 'actionMnemonic'
|
656
|
+
property :configuration_id, as: 'configurationId'
|
655
657
|
property :correlated_invocations_id, as: 'correlatedInvocationsId'
|
658
|
+
property :target_id, as: 'targetId'
|
656
659
|
property :tool_details, as: 'toolDetails', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2ToolDetails, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2ToolDetails::Representation
|
657
660
|
|
658
661
|
property :tool_invocation_id, as: 'toolInvocationId'
|
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.6.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-03-
|
11
|
+
date: 2021-03-22 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.6.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: []
|