google-apis-remotebuildexecution_v1alpha 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1714dfeabda3b39e16399b8de43084ee5a77aaf546f694486cf3bea93b94bab
4
- data.tar.gz: b4fc1f3f06644d840f65bcacb7524f2cf6e02a85828801b2b9f8dbea4d33335b
3
+ metadata.gz: 03e4fc5a3055ddb0793089c6b711a81f79feaa627414e8e4037facca5419a85d
4
+ data.tar.gz: f60acd3c602ee458a047097e1445180804f0d1d89a203ffbcc62fce7b96a9970
5
5
  SHA512:
6
- metadata.gz: 7407c3e540220b57a548f4d3e06f67f2f68fd142ee85757ad49e2e1f692aa5dc610e2a239d7b72714aecb10e697a23411e2ea477ebb8842a076f5241ff4f798c
7
- data.tar.gz: 27b645e1c71581a337dc467ea5f4d94423b584657336249e4a44fc0858fa7f1b1319ac0e534cc0c23c8040ee928223bc4cf66a0a9737f1ba1655605e72f12fc2
6
+ metadata.gz: 89deb24e40d1eb3b783feac7dadb79e63d4f4409577d50b72569039197035182802a595b048006f1166c86fdbcffe1ee8e3f80f4b58bd4e4d15770223dc15d99
7
+ data.tar.gz: 1fdd2d3a9c86988b8d41ffff9439247a044d1e072a61b3dd25362ad2464d454cbd6d1efbdf936bffd56fc8cc8219329b873f4fc174cbbe2cbd851efd7da870a5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-remotebuildexecution_v1alpha
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::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
@@ -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.5.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.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210302"
25
+ REVISION = "20210316"
26
26
  end
27
27
  end
28
28
  end
@@ -628,7 +628,10 @@ module Google
628
628
  # @private
629
629
  class Representation < Google::Apis::Core::JsonRepresentation
630
630
  property :action_id, as: 'actionId'
631
+ property :action_mnemonic, as: 'actionMnemonic'
632
+ property :configuration_id, as: 'configurationId'
631
633
  property :correlated_invocations_id, as: 'correlatedInvocationsId'
634
+ property :target_id, as: 'targetId'
632
635
  property :tool_details, as: 'toolDetails', class: Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2ToolDetails, decorator: Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2ToolDetails::Representation
633
636
 
634
637
  property :tool_invocation_id, as: 'toolInvocationId'
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.5.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-08 00:00:00.000000000 Z
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_v1alpha/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1alpha/v0.5.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1alpha/v0.6.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: []