google-apis-remotebuildexecution_v1 0.3.0 → 0.4.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: f75ee3d80f17dc8af88dd283631dbdfbf4272393dddf35adbfaa3d174d4b28d9
|
4
|
+
data.tar.gz: 983168bae3e359147114c7d3d58839276a1fd60457a740808eda4c4bb78b0277
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40d456eeedda902e8635a481a03794a4d61a434fb8594a850065d38d1afe9c761b361b0878c751653015c65fd6b8f16d4d9090e858a1faae9179ead0efac705d
|
7
|
+
data.tar.gz: bab2cf4a4c65eae8807da0317cbd42df129bd2afaada66b9527ee94047e65c32d945dfbb5ef038bf3e8ad3c01ecf2d696cb890c422995b897cbd0f7a920e5ff6
|
data/CHANGELOG.md
CHANGED
@@ -101,15 +101,23 @@ module Google
|
|
101
101
|
# @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest]
|
102
102
|
attr_accessor :input_root_digest
|
103
103
|
|
104
|
-
#
|
105
|
-
#
|
106
|
-
#
|
107
|
-
#
|
108
|
-
#
|
109
|
-
#
|
110
|
-
|
111
|
-
|
112
|
-
|
104
|
+
# A `Platform` is a set of requirements, such as hardware, operating system, or
|
105
|
+
# compiler toolchain, for an Action's execution environment. A `Platform` is
|
106
|
+
# represented as a series of key-value pairs representing the properties that
|
107
|
+
# are required of the platform.
|
108
|
+
# Corresponds to the JSON property `platform`
|
109
|
+
# @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Platform]
|
110
|
+
attr_accessor :platform
|
111
|
+
|
112
|
+
# An optional additional salt value used to place this `Action` into a separate
|
113
|
+
# cache namespace from other instances having the same field contents. This salt
|
114
|
+
# typically comes from operational configuration specific to sources such as
|
115
|
+
# repo and service configuration, and allows disowning an entire set of
|
116
|
+
# ActionResults that might have been poisoned by buggy software or tool failures.
|
117
|
+
# Corresponds to the JSON property `salt`
|
118
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
119
|
+
# @return [String]
|
120
|
+
attr_accessor :salt
|
113
121
|
|
114
122
|
# A timeout after which the execution should be killed. If the timeout is absent,
|
115
123
|
# then the client is specifying that the execution should continue as long as
|
@@ -137,12 +145,16 @@ module Google
|
|
137
145
|
@command_digest = args[:command_digest] if args.key?(:command_digest)
|
138
146
|
@do_not_cache = args[:do_not_cache] if args.key?(:do_not_cache)
|
139
147
|
@input_root_digest = args[:input_root_digest] if args.key?(:input_root_digest)
|
140
|
-
@
|
148
|
+
@platform = args[:platform] if args.key?(:platform)
|
149
|
+
@salt = args[:salt] if args.key?(:salt)
|
141
150
|
@timeout = args[:timeout] if args.key?(:timeout)
|
142
151
|
end
|
143
152
|
end
|
144
153
|
|
145
|
-
# An ActionResult represents the result of an Action being run.
|
154
|
+
# An ActionResult represents the result of an Action being run. It is advised
|
155
|
+
# that at least one field (for example `ActionResult.execution_metadata.Worker`)
|
156
|
+
# have a non-default value, to ensure that the serialized value is non-empty,
|
157
|
+
# which can then be used as a basic data sanity check.
|
146
158
|
class BuildBazelRemoteExecutionV2ActionResult
|
147
159
|
include Google::Apis::Core::Hashable
|
148
160
|
|
@@ -405,6 +417,18 @@ module Google
|
|
405
417
|
# @return [Array<String>]
|
406
418
|
attr_accessor :output_files
|
407
419
|
|
420
|
+
# A list of keys for node properties the client expects to retrieve for output
|
421
|
+
# files and directories. Keys are either names of string-based NodeProperty or
|
422
|
+
# names of fields in NodeProperties. In order to ensure that equivalent `Action`
|
423
|
+
# s always hash to the same value, the node properties MUST be lexicographically
|
424
|
+
# sorted by name. Sorting of strings is done by code point, equivalently, by the
|
425
|
+
# UTF-8 bytes. The interpretation of string-based properties is server-dependent.
|
426
|
+
# If a property is not recognized by the server, the server will return an `
|
427
|
+
# INVALID_ARGUMENT`.
|
428
|
+
# Corresponds to the JSON property `outputNodeProperties`
|
429
|
+
# @return [Array<String>]
|
430
|
+
attr_accessor :output_node_properties
|
431
|
+
|
408
432
|
# A list of the output paths that the client expects to retrieve from the action.
|
409
433
|
# Only the listed paths will be returned to the client as output. The type of
|
410
434
|
# the output (file or directory) is not specified, and will be determined by the
|
@@ -453,6 +477,7 @@ module Google
|
|
453
477
|
@environment_variables = args[:environment_variables] if args.key?(:environment_variables)
|
454
478
|
@output_directories = args[:output_directories] if args.key?(:output_directories)
|
455
479
|
@output_files = args[:output_files] if args.key?(:output_files)
|
480
|
+
@output_node_properties = args[:output_node_properties] if args.key?(:output_node_properties)
|
456
481
|
@output_paths = args[:output_paths] if args.key?(:output_paths)
|
457
482
|
@platform = args[:platform] if args.key?(:platform)
|
458
483
|
@working_directory = args[:working_directory] if args.key?(:working_directory)
|
@@ -573,9 +598,10 @@ module Google
|
|
573
598
|
# @return [Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2FileNode>]
|
574
599
|
attr_accessor :files
|
575
600
|
|
576
|
-
#
|
601
|
+
# Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is
|
602
|
+
# responsible for specifying the properties that it accepts.
|
577
603
|
# Corresponds to the JSON property `nodeProperties`
|
578
|
-
# @return [
|
604
|
+
# @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties]
|
579
605
|
attr_accessor :node_properties
|
580
606
|
|
581
607
|
# The symlinks in the directory.
|
@@ -683,14 +709,14 @@ module Google
|
|
683
709
|
# @return [String]
|
684
710
|
attr_accessor :stage
|
685
711
|
|
686
|
-
# If set, the client can use this name with ByteStream.Read to stream
|
687
|
-
# standard error.
|
712
|
+
# If set, the client can use this resource name with ByteStream.Read to stream
|
713
|
+
# the standard error from the endpoint hosting streamed responses.
|
688
714
|
# Corresponds to the JSON property `stderrStreamName`
|
689
715
|
# @return [String]
|
690
716
|
attr_accessor :stderr_stream_name
|
691
717
|
|
692
|
-
# If set, the client can use this name with ByteStream.Read to stream
|
693
|
-
# standard output.
|
718
|
+
# If set, the client can use this resource name with ByteStream.Read to stream
|
719
|
+
# the standard output from the endpoint hosting streamed responses.
|
694
720
|
# Corresponds to the JSON property `stdoutStreamName`
|
695
721
|
# @return [String]
|
696
722
|
attr_accessor :stdout_stream_name
|
@@ -725,7 +751,10 @@ module Google
|
|
725
751
|
# @return [String]
|
726
752
|
attr_accessor :message
|
727
753
|
|
728
|
-
# An ActionResult represents the result of an Action being run.
|
754
|
+
# An ActionResult represents the result of an Action being run. It is advised
|
755
|
+
# that at least one field (for example `ActionResult.execution_metadata.Worker`)
|
756
|
+
# have a non-default value, to ensure that the serialized value is non-empty,
|
757
|
+
# which can then be used as a basic data sanity check.
|
729
758
|
# Corresponds to the JSON property `result`
|
730
759
|
# @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2ActionResult]
|
731
760
|
attr_accessor :result
|
@@ -768,6 +797,12 @@ module Google
|
|
768
797
|
class BuildBazelRemoteExecutionV2ExecutedActionMetadata
|
769
798
|
include Google::Apis::Core::Hashable
|
770
799
|
|
800
|
+
# Details that are specific to the kind of worker used. For example, on POSIX-
|
801
|
+
# like systems this could contain a message with getrusage(2) statistics.
|
802
|
+
# Corresponds to the JSON property `auxiliaryMetadata`
|
803
|
+
# @return [Array<Hash<String,Object>>]
|
804
|
+
attr_accessor :auxiliary_metadata
|
805
|
+
|
771
806
|
# When the worker completed executing the action command.
|
772
807
|
# Corresponds to the JSON property `executionCompletedTimestamp`
|
773
808
|
# @return [String]
|
@@ -824,6 +859,7 @@ module Google
|
|
824
859
|
|
825
860
|
# Update properties of this object
|
826
861
|
def update!(**args)
|
862
|
+
@auxiliary_metadata = args[:auxiliary_metadata] if args.key?(:auxiliary_metadata)
|
827
863
|
@execution_completed_timestamp = args[:execution_completed_timestamp] if args.key?(:execution_completed_timestamp)
|
828
864
|
@execution_start_timestamp = args[:execution_start_timestamp] if args.key?(:execution_start_timestamp)
|
829
865
|
@input_fetch_completed_timestamp = args[:input_fetch_completed_timestamp] if args.key?(:input_fetch_completed_timestamp)
|
@@ -880,9 +916,10 @@ module Google
|
|
880
916
|
# @return [String]
|
881
917
|
attr_accessor :name
|
882
918
|
|
883
|
-
#
|
919
|
+
# Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is
|
920
|
+
# responsible for specifying the properties that it accepts.
|
884
921
|
# Corresponds to the JSON property `nodeProperties`
|
885
|
-
# @return [
|
922
|
+
# @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties]
|
886
923
|
attr_accessor :node_properties
|
887
924
|
|
888
925
|
def initialize(**args)
|
@@ -951,6 +988,38 @@ module Google
|
|
951
988
|
end
|
952
989
|
end
|
953
990
|
|
991
|
+
# Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is
|
992
|
+
# responsible for specifying the properties that it accepts.
|
993
|
+
class BuildBazelRemoteExecutionV2NodeProperties
|
994
|
+
include Google::Apis::Core::Hashable
|
995
|
+
|
996
|
+
# The file's last modification timestamp.
|
997
|
+
# Corresponds to the JSON property `mtime`
|
998
|
+
# @return [String]
|
999
|
+
attr_accessor :mtime
|
1000
|
+
|
1001
|
+
# A list of string-based NodeProperties.
|
1002
|
+
# Corresponds to the JSON property `properties`
|
1003
|
+
# @return [Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty>]
|
1004
|
+
attr_accessor :properties
|
1005
|
+
|
1006
|
+
# The UNIX file mode, e.g., 0755.
|
1007
|
+
# Corresponds to the JSON property `unixMode`
|
1008
|
+
# @return [Fixnum]
|
1009
|
+
attr_accessor :unix_mode
|
1010
|
+
|
1011
|
+
def initialize(**args)
|
1012
|
+
update!(**args)
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
# Update properties of this object
|
1016
|
+
def update!(**args)
|
1017
|
+
@mtime = args[:mtime] if args.key?(:mtime)
|
1018
|
+
@properties = args[:properties] if args.key?(:properties)
|
1019
|
+
@unix_mode = args[:unix_mode] if args.key?(:unix_mode)
|
1020
|
+
end
|
1021
|
+
end
|
1022
|
+
|
954
1023
|
# A single property for FileNodes, DirectoryNodes, and SymlinkNodes. The server
|
955
1024
|
# is responsible for specifying the property `name`s that it accepts. If
|
956
1025
|
# permitted by the server, the same `name` may occur multiple times.
|
@@ -1079,9 +1148,10 @@ module Google
|
|
1079
1148
|
attr_accessor :is_executable
|
1080
1149
|
alias_method :is_executable?, :is_executable
|
1081
1150
|
|
1082
|
-
#
|
1151
|
+
# Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is
|
1152
|
+
# responsible for specifying the properties that it accepts.
|
1083
1153
|
# Corresponds to the JSON property `nodeProperties`
|
1084
|
-
# @return [
|
1154
|
+
# @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties]
|
1085
1155
|
attr_accessor :node_properties
|
1086
1156
|
|
1087
1157
|
# The full path of the file relative to the working directory, including the
|
@@ -1110,9 +1180,10 @@ module Google
|
|
1110
1180
|
class BuildBazelRemoteExecutionV2OutputSymlink
|
1111
1181
|
include Google::Apis::Core::Hashable
|
1112
1182
|
|
1113
|
-
#
|
1183
|
+
# Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is
|
1184
|
+
# responsible for specifying the properties that it accepts.
|
1114
1185
|
# Corresponds to the JSON property `nodeProperties`
|
1115
|
-
# @return [
|
1186
|
+
# @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties]
|
1116
1187
|
attr_accessor :node_properties
|
1117
1188
|
|
1118
1189
|
# The full path of the symlink relative to the working directory, including the
|
@@ -1125,9 +1196,8 @@ module Google
|
|
1125
1196
|
# The target path of the symlink. The path separator is a forward slash `/`. The
|
1126
1197
|
# target path can be relative to the parent directory of the symlink or it can
|
1127
1198
|
# be an absolute path starting with `/`. Support for absolute paths can be
|
1128
|
-
# checked using the Capabilities API.
|
1129
|
-
#
|
1130
|
-
# target path.
|
1199
|
+
# checked using the Capabilities API. `..` components are allowed anywhere in
|
1200
|
+
# the target path.
|
1131
1201
|
# Corresponds to the JSON property `target`
|
1132
1202
|
# @return [String]
|
1133
1203
|
attr_accessor :target
|
@@ -1180,7 +1250,10 @@ module Google
|
|
1180
1250
|
# on which the action must be performed may require an exact match with the
|
1181
1251
|
# worker's OS. The server MAY use the `value` of one or more properties to
|
1182
1252
|
# determine how it sets up the execution environment, such as by making specific
|
1183
|
-
# system files available to the worker.
|
1253
|
+
# system files available to the worker. Both names and values are typically case-
|
1254
|
+
# sensitive. Note that the platform is implicitly part of the action digest, so
|
1255
|
+
# even tiny changes in the names or values (like changing case) may result in
|
1256
|
+
# different action cache entries.
|
1184
1257
|
class BuildBazelRemoteExecutionV2PlatformProperty
|
1185
1258
|
include Google::Apis::Core::Hashable
|
1186
1259
|
|
@@ -1264,17 +1337,20 @@ module Google
|
|
1264
1337
|
# @return [String]
|
1265
1338
|
attr_accessor :name
|
1266
1339
|
|
1267
|
-
#
|
1340
|
+
# Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is
|
1341
|
+
# responsible for specifying the properties that it accepts.
|
1268
1342
|
# Corresponds to the JSON property `nodeProperties`
|
1269
|
-
# @return [
|
1343
|
+
# @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties]
|
1270
1344
|
attr_accessor :node_properties
|
1271
1345
|
|
1272
1346
|
# The target path of the symlink. The path separator is a forward slash `/`. The
|
1273
1347
|
# target path can be relative to the parent directory of the symlink or it can
|
1274
1348
|
# be an absolute path starting with `/`. Support for absolute paths can be
|
1275
|
-
# checked using the Capabilities API.
|
1276
|
-
#
|
1277
|
-
#
|
1349
|
+
# checked using the Capabilities API. `..` components are allowed anywhere in
|
1350
|
+
# the target path as logical canonicalization may lead to different behavior in
|
1351
|
+
# the presence of directory symlinks (e.g. `foo/../bar` may not be the same as `
|
1352
|
+
# bar`). To reduce potential cache misses, canonicalization is still recommended
|
1353
|
+
# where this is possible without impacting correctness.
|
1278
1354
|
# Corresponds to the JSON property `target`
|
1279
1355
|
# @return [String]
|
1280
1356
|
attr_accessor :target
|
@@ -1394,6 +1470,11 @@ module Google
|
|
1394
1470
|
class GoogleDevtoolsRemotebuildbotCommandDurations
|
1395
1471
|
include Google::Apis::Core::Hashable
|
1396
1472
|
|
1473
|
+
# The time spent to release the CAS blobs used by the task.
|
1474
|
+
# Corresponds to the JSON property `casRelease`
|
1475
|
+
# @return [String]
|
1476
|
+
attr_accessor :cas_release
|
1477
|
+
|
1397
1478
|
# The time spent waiting for Container Manager to assign an asynchronous
|
1398
1479
|
# container for execution.
|
1399
1480
|
# Corresponds to the JSON property `cmWaitForAssignment`
|
@@ -1463,6 +1544,7 @@ module Google
|
|
1463
1544
|
|
1464
1545
|
# Update properties of this object
|
1465
1546
|
def update!(**args)
|
1547
|
+
@cas_release = args[:cas_release] if args.key?(:cas_release)
|
1466
1548
|
@cm_wait_for_assignment = args[:cm_wait_for_assignment] if args.key?(:cm_wait_for_assignment)
|
1467
1549
|
@docker_prep = args[:docker_prep] if args.key?(:docker_prep)
|
1468
1550
|
@docker_prep_start_time = args[:docker_prep_start_time] if args.key?(:docker_prep_start_time)
|
@@ -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.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210224"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,6 +94,12 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
+
class BuildBazelRemoteExecutionV2NodeProperties
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
97
103
|
class BuildBazelRemoteExecutionV2NodeProperty
|
98
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
105
|
|
@@ -426,7 +432,9 @@ module Google
|
|
426
432
|
property :do_not_cache, as: 'doNotCache'
|
427
433
|
property :input_root_digest, as: 'inputRootDigest', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest::Representation
|
428
434
|
|
429
|
-
|
435
|
+
property :platform, as: 'platform', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Platform, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Platform::Representation
|
436
|
+
|
437
|
+
property :salt, :base64 => true, as: 'salt'
|
430
438
|
property :timeout, as: 'timeout'
|
431
439
|
end
|
432
440
|
end
|
@@ -464,6 +472,7 @@ module Google
|
|
464
472
|
|
465
473
|
collection :output_directories, as: 'outputDirectories'
|
466
474
|
collection :output_files, as: 'outputFiles'
|
475
|
+
collection :output_node_properties, as: 'outputNodeProperties'
|
467
476
|
collection :output_paths, as: 'outputPaths'
|
468
477
|
property :platform, as: 'platform', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Platform, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Platform::Representation
|
469
478
|
|
@@ -494,7 +503,7 @@ module Google
|
|
494
503
|
|
495
504
|
collection :files, as: 'files', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2FileNode, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2FileNode::Representation
|
496
505
|
|
497
|
-
|
506
|
+
property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
|
498
507
|
|
499
508
|
collection :symlinks, as: 'symlinks', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2SymlinkNode, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2SymlinkNode::Representation
|
500
509
|
|
@@ -538,6 +547,7 @@ module Google
|
|
538
547
|
class BuildBazelRemoteExecutionV2ExecutedActionMetadata
|
539
548
|
# @private
|
540
549
|
class Representation < Google::Apis::Core::JsonRepresentation
|
550
|
+
collection :auxiliary_metadata, as: 'auxiliaryMetadata'
|
541
551
|
property :execution_completed_timestamp, as: 'executionCompletedTimestamp'
|
542
552
|
property :execution_start_timestamp, as: 'executionStartTimestamp'
|
543
553
|
property :input_fetch_completed_timestamp, as: 'inputFetchCompletedTimestamp'
|
@@ -558,7 +568,7 @@ module Google
|
|
558
568
|
|
559
569
|
property :is_executable, as: 'isExecutable'
|
560
570
|
property :name, as: 'name'
|
561
|
-
|
571
|
+
property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
|
562
572
|
|
563
573
|
end
|
564
574
|
end
|
@@ -572,6 +582,16 @@ module Google
|
|
572
582
|
end
|
573
583
|
end
|
574
584
|
|
585
|
+
class BuildBazelRemoteExecutionV2NodeProperties
|
586
|
+
# @private
|
587
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
588
|
+
property :mtime, as: 'mtime'
|
589
|
+
collection :properties, as: 'properties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty::Representation
|
590
|
+
|
591
|
+
property :unix_mode, as: 'unixMode'
|
592
|
+
end
|
593
|
+
end
|
594
|
+
|
575
595
|
class BuildBazelRemoteExecutionV2NodeProperty
|
576
596
|
# @private
|
577
597
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -596,7 +616,7 @@ module Google
|
|
596
616
|
property :digest, as: 'digest', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest::Representation
|
597
617
|
|
598
618
|
property :is_executable, as: 'isExecutable'
|
599
|
-
|
619
|
+
property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
|
600
620
|
|
601
621
|
property :path, as: 'path'
|
602
622
|
end
|
@@ -605,7 +625,7 @@ module Google
|
|
605
625
|
class BuildBazelRemoteExecutionV2OutputSymlink
|
606
626
|
# @private
|
607
627
|
class Representation < Google::Apis::Core::JsonRepresentation
|
608
|
-
|
628
|
+
property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
|
609
629
|
|
610
630
|
property :path, as: 'path'
|
611
631
|
property :target, as: 'target'
|
@@ -643,7 +663,7 @@ module Google
|
|
643
663
|
# @private
|
644
664
|
class Representation < Google::Apis::Core::JsonRepresentation
|
645
665
|
property :name, as: 'name'
|
646
|
-
|
666
|
+
property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
|
647
667
|
|
648
668
|
property :target, as: 'target'
|
649
669
|
end
|
@@ -677,6 +697,7 @@ module Google
|
|
677
697
|
class GoogleDevtoolsRemotebuildbotCommandDurations
|
678
698
|
# @private
|
679
699
|
class Representation < Google::Apis::Core::JsonRepresentation
|
700
|
+
property :cas_release, as: 'casRelease'
|
680
701
|
property :cm_wait_for_assignment, as: 'cmWaitForAssignment'
|
681
702
|
property :docker_prep, as: 'dockerPrep'
|
682
703
|
property :docker_prep_start_time, as: 'dockerPrepStartTime'
|
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.4.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-03-01 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.4.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.2.
|
72
|
+
rubygems_version: 3.2.11
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Remote Build Execution API V1
|