google-apis-remotebuildexecution_v1 0.3.0 → 0.8.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: 2495c9964dd071f87c8791c2c8fea135eed42712a23cd0276bb6b683a8cb8573
4
- data.tar.gz: 7d856c9ca6c1b87870c29fd93b30b3ca92f85411d715c0aff4c1e79cca11b851
3
+ metadata.gz: ee617fd051b347b9a3c96f7d8ed2aa7807818610e3e88c7c4f65f63e30d06ed4
4
+ data.tar.gz: c6526cdde688acef641e31b4f913e15404c5bc4b9dd6b829d3a7110a32187851
5
5
  SHA512:
6
- metadata.gz: 9838a9c9cbe37651a4e892dc1c249023d725f9a6220d40aac880780bc967739e5279cdf5e91b14cfd698a43b2b99cdba2316182e23d616db89cb075d47e2b1f5
7
- data.tar.gz: '087a747dfedfb0708dfaafa6229e2e5ce069bffc8a04dacee747280cec3ac34960060a5005e09733e6e5e97f4ec2bcac434fe748aa5a03d6dc020fd1af015f0c'
6
+ metadata.gz: 54ceaa131b839b97c3242fb5326530e905c7867fa6ba311d4b3f1047f8d163590cd3246ae18d29b6c127ea0c609b8ae1465b7355753c4e633f841068adecb1d7
7
+ data.tar.gz: 6aaa5c0fef1297a38e8bdbfec669b32f0ad1c0bbe67f3b1378dfba9967c2de393d3991a78ebaaece475e7b3e149d557aa047be6508859b846803d4a59208adbd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-remotebuildexecution_v1
2
2
 
3
+ ### v0.8.0 (2021-05-20)
4
+
5
+ * Regenerated from discovery document revision 20210517
6
+
7
+ ### v0.7.0 (2021-03-25)
8
+
9
+ * Regenerated from discovery document revision 20210322
10
+
11
+ ### v0.6.0 (2021-03-18)
12
+
13
+ * Regenerated from discovery document revision 20210316
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.5.0 (2021-03-04)
17
+
18
+ * Regenerated from discovery document revision 20210302
19
+
20
+ ### v0.4.0 (2021-02-26)
21
+
22
+ * Regenerated from discovery document revision 20210224
23
+
3
24
  ### v0.3.0 (2021-02-11)
4
25
 
5
26
  * Regenerated from discovery document revision 20210209
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1'
31
31
 
32
- # View and manage your data across Google Cloud Platform services
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
@@ -101,15 +101,23 @@ module Google
101
101
  # @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest]
102
102
  attr_accessor :input_root_digest
103
103
 
104
- # List of required supported NodeProperty keys. In order to ensure that
105
- # equivalent `Action`s always hash to the same value, the supported node
106
- # properties MUST be lexicographically sorted by name. Sorting of strings is
107
- # done by code point, equivalently, by the UTF-8 bytes. The interpretation of
108
- # these properties is server-dependent. If a property is not recognized by the
109
- # server, the server will return an `INVALID_ARGUMENT` error.
110
- # Corresponds to the JSON property `outputNodeProperties`
111
- # @return [Array<String>]
112
- attr_accessor :output_node_properties
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
- @output_node_properties = args[:output_node_properties] if args.key?(:output_node_properties)
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
- # The node properties of the Directory.
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 [Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty>]
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 the
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 the
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
- # The node properties of the FileNode.
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 [Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty>]
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
- # The supported node properties of the OutputFile, if requested by the Action.
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 [Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty>]
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
- # The supported node properties of the OutputSymlink, if requested by the Action.
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 [Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty>]
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. The canonical form forbids the substrings `
1129
- # /./` and `//` in the target path. `..` components are allowed anywhere in the
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
 
@@ -1225,12 +1298,33 @@ module Google
1225
1298
  # @return [String]
1226
1299
  attr_accessor :action_id
1227
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
+
1228
1316
  # An identifier to tie multiple tool invocations together. For example, runs of
1229
1317
  # foo_test, bar_test and baz_test on a post-submit of a given patch.
1230
1318
  # Corresponds to the JSON property `correlatedInvocationsId`
1231
1319
  # @return [String]
1232
1320
  attr_accessor :correlated_invocations_id
1233
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
+
1234
1328
  # Details for the tool used to call the API.
1235
1329
  # Corresponds to the JSON property `toolDetails`
1236
1330
  # @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2ToolDetails]
@@ -1249,7 +1343,10 @@ module Google
1249
1343
  # Update properties of this object
1250
1344
  def update!(**args)
1251
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)
1252
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)
1253
1350
  @tool_details = args[:tool_details] if args.key?(:tool_details)
1254
1351
  @tool_invocation_id = args[:tool_invocation_id] if args.key?(:tool_invocation_id)
1255
1352
  end
@@ -1264,17 +1361,20 @@ module Google
1264
1361
  # @return [String]
1265
1362
  attr_accessor :name
1266
1363
 
1267
- # The node properties of the SymlinkNode.
1364
+ # Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is
1365
+ # responsible for specifying the properties that it accepts.
1268
1366
  # Corresponds to the JSON property `nodeProperties`
1269
- # @return [Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty>]
1367
+ # @return [Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties]
1270
1368
  attr_accessor :node_properties
1271
1369
 
1272
1370
  # The target path of the symlink. The path separator is a forward slash `/`. The
1273
1371
  # target path can be relative to the parent directory of the symlink or it can
1274
1372
  # be an absolute path starting with `/`. Support for absolute paths can be
1275
- # checked using the Capabilities API. The canonical form forbids the substrings `
1276
- # /./` and `//` in the target path. `..` components are allowed anywhere in the
1277
- # target path.
1373
+ # checked using the Capabilities API. `..` components are allowed anywhere in
1374
+ # the target path as logical canonicalization may lead to different behavior in
1375
+ # the presence of directory symlinks (e.g. `foo/../bar` may not be the same as `
1376
+ # bar`). To reduce potential cache misses, canonicalization is still recommended
1377
+ # where this is possible without impacting correctness.
1278
1378
  # Corresponds to the JSON property `target`
1279
1379
  # @return [String]
1280
1380
  attr_accessor :target
@@ -1394,6 +1494,11 @@ module Google
1394
1494
  class GoogleDevtoolsRemotebuildbotCommandDurations
1395
1495
  include Google::Apis::Core::Hashable
1396
1496
 
1497
+ # The time spent to release the CAS blobs used by the task.
1498
+ # Corresponds to the JSON property `casRelease`
1499
+ # @return [String]
1500
+ attr_accessor :cas_release
1501
+
1397
1502
  # The time spent waiting for Container Manager to assign an asynchronous
1398
1503
  # container for execution.
1399
1504
  # Corresponds to the JSON property `cmWaitForAssignment`
@@ -1463,6 +1568,7 @@ module Google
1463
1568
 
1464
1569
  # Update properties of this object
1465
1570
  def update!(**args)
1571
+ @cas_release = args[:cas_release] if args.key?(:cas_release)
1466
1572
  @cm_wait_for_assignment = args[:cm_wait_for_assignment] if args.key?(:cm_wait_for_assignment)
1467
1573
  @docker_prep = args[:docker_prep] if args.key?(:docker_prep)
1468
1574
  @docker_prep_start_time = args[:docker_prep_start_time] if args.key?(:docker_prep_start_time)
@@ -1515,6 +1621,12 @@ module Google
1515
1621
  # @return [Fixnum]
1516
1622
  attr_accessor :num_warnings
1517
1623
 
1624
+ # Indicates whether output files and/or output directories were found relative
1625
+ # to the execution root or to the user provided work directory or both or none.
1626
+ # Corresponds to the JSON property `outputLocation`
1627
+ # @return [String]
1628
+ attr_accessor :output_location
1629
+
1518
1630
  # Indicates whether an asynchronous container was used for execution.
1519
1631
  # Corresponds to the JSON property `usedAsyncContainer`
1520
1632
  # @return [Boolean]
@@ -1533,6 +1645,7 @@ module Google
1533
1645
  @input_cache_miss = args[:input_cache_miss] if args.key?(:input_cache_miss)
1534
1646
  @num_errors = args[:num_errors] if args.key?(:num_errors)
1535
1647
  @num_warnings = args[:num_warnings] if args.key?(:num_warnings)
1648
+ @output_location = args[:output_location] if args.key?(:output_location)
1536
1649
  @used_async_container = args[:used_async_container] if args.key?(:used_async_container)
1537
1650
  end
1538
1651
  end
@@ -1581,6 +1694,11 @@ module Google
1581
1694
  # @return [Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat]
1582
1695
  attr_accessor :memory_usage
1583
1696
 
1697
+ #
1698
+ # Corresponds to the JSON property `totalDiskIoStats`
1699
+ # @return [Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageIoStats]
1700
+ attr_accessor :total_disk_io_stats
1701
+
1584
1702
  def initialize(**args)
1585
1703
  update!(**args)
1586
1704
  end
@@ -1590,6 +1708,56 @@ module Google
1590
1708
  @cpu_used_percent = args[:cpu_used_percent] if args.key?(:cpu_used_percent)
1591
1709
  @disk_usage = args[:disk_usage] if args.key?(:disk_usage)
1592
1710
  @memory_usage = args[:memory_usage] if args.key?(:memory_usage)
1711
+ @total_disk_io_stats = args[:total_disk_io_stats] if args.key?(:total_disk_io_stats)
1712
+ end
1713
+ end
1714
+
1715
+ #
1716
+ class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
1717
+ include Google::Apis::Core::Hashable
1718
+
1719
+ #
1720
+ # Corresponds to the JSON property `readBytesCount`
1721
+ # @return [Fixnum]
1722
+ attr_accessor :read_bytes_count
1723
+
1724
+ #
1725
+ # Corresponds to the JSON property `readCount`
1726
+ # @return [Fixnum]
1727
+ attr_accessor :read_count
1728
+
1729
+ #
1730
+ # Corresponds to the JSON property `readTimeMs`
1731
+ # @return [Fixnum]
1732
+ attr_accessor :read_time_ms
1733
+
1734
+ #
1735
+ # Corresponds to the JSON property `writeBytesCount`
1736
+ # @return [Fixnum]
1737
+ attr_accessor :write_bytes_count
1738
+
1739
+ #
1740
+ # Corresponds to the JSON property `writeCount`
1741
+ # @return [Fixnum]
1742
+ attr_accessor :write_count
1743
+
1744
+ #
1745
+ # Corresponds to the JSON property `writeTimeMs`
1746
+ # @return [Fixnum]
1747
+ attr_accessor :write_time_ms
1748
+
1749
+ def initialize(**args)
1750
+ update!(**args)
1751
+ end
1752
+
1753
+ # Update properties of this object
1754
+ def update!(**args)
1755
+ @read_bytes_count = args[:read_bytes_count] if args.key?(:read_bytes_count)
1756
+ @read_count = args[:read_count] if args.key?(:read_count)
1757
+ @read_time_ms = args[:read_time_ms] if args.key?(:read_time_ms)
1758
+ @write_bytes_count = args[:write_bytes_count] if args.key?(:write_bytes_count)
1759
+ @write_count = args[:write_count] if args.key?(:write_count)
1760
+ @write_time_ms = args[:write_time_ms] if args.key?(:write_time_ms)
1593
1761
  end
1594
1762
  end
1595
1763
 
@@ -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.3.0"
19
+ GEM_VERSION = "0.8.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 = "20210209"
25
+ REVISION = "20210517"
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
 
@@ -184,6 +190,12 @@ module Google
184
190
  include Google::Apis::Core::JsonObjectSupport
185
191
  end
186
192
 
193
+ class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
187
199
  class GoogleDevtoolsRemotebuildbotResourceUsageStat
188
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
201
 
@@ -426,7 +438,9 @@ module Google
426
438
  property :do_not_cache, as: 'doNotCache'
427
439
  property :input_root_digest, as: 'inputRootDigest', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest::Representation
428
440
 
429
- collection :output_node_properties, as: 'outputNodeProperties'
441
+ property :platform, as: 'platform', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Platform, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Platform::Representation
442
+
443
+ property :salt, :base64 => true, as: 'salt'
430
444
  property :timeout, as: 'timeout'
431
445
  end
432
446
  end
@@ -464,6 +478,7 @@ module Google
464
478
 
465
479
  collection :output_directories, as: 'outputDirectories'
466
480
  collection :output_files, as: 'outputFiles'
481
+ collection :output_node_properties, as: 'outputNodeProperties'
467
482
  collection :output_paths, as: 'outputPaths'
468
483
  property :platform, as: 'platform', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Platform, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Platform::Representation
469
484
 
@@ -494,7 +509,7 @@ module Google
494
509
 
495
510
  collection :files, as: 'files', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2FileNode, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2FileNode::Representation
496
511
 
497
- collection :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty::Representation
512
+ property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
498
513
 
499
514
  collection :symlinks, as: 'symlinks', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2SymlinkNode, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2SymlinkNode::Representation
500
515
 
@@ -538,6 +553,7 @@ module Google
538
553
  class BuildBazelRemoteExecutionV2ExecutedActionMetadata
539
554
  # @private
540
555
  class Representation < Google::Apis::Core::JsonRepresentation
556
+ collection :auxiliary_metadata, as: 'auxiliaryMetadata'
541
557
  property :execution_completed_timestamp, as: 'executionCompletedTimestamp'
542
558
  property :execution_start_timestamp, as: 'executionStartTimestamp'
543
559
  property :input_fetch_completed_timestamp, as: 'inputFetchCompletedTimestamp'
@@ -558,7 +574,7 @@ module Google
558
574
 
559
575
  property :is_executable, as: 'isExecutable'
560
576
  property :name, as: 'name'
561
- collection :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty::Representation
577
+ property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
562
578
 
563
579
  end
564
580
  end
@@ -572,6 +588,16 @@ module Google
572
588
  end
573
589
  end
574
590
 
591
+ class BuildBazelRemoteExecutionV2NodeProperties
592
+ # @private
593
+ class Representation < Google::Apis::Core::JsonRepresentation
594
+ property :mtime, as: 'mtime'
595
+ collection :properties, as: 'properties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty::Representation
596
+
597
+ property :unix_mode, as: 'unixMode'
598
+ end
599
+ end
600
+
575
601
  class BuildBazelRemoteExecutionV2NodeProperty
576
602
  # @private
577
603
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -596,7 +622,7 @@ module Google
596
622
  property :digest, as: 'digest', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Digest::Representation
597
623
 
598
624
  property :is_executable, as: 'isExecutable'
599
- collection :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty::Representation
625
+ property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
600
626
 
601
627
  property :path, as: 'path'
602
628
  end
@@ -605,7 +631,7 @@ module Google
605
631
  class BuildBazelRemoteExecutionV2OutputSymlink
606
632
  # @private
607
633
  class Representation < Google::Apis::Core::JsonRepresentation
608
- collection :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty::Representation
634
+ property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
609
635
 
610
636
  property :path, as: 'path'
611
637
  property :target, as: 'target'
@@ -632,7 +658,10 @@ module Google
632
658
  # @private
633
659
  class Representation < Google::Apis::Core::JsonRepresentation
634
660
  property :action_id, as: 'actionId'
661
+ property :action_mnemonic, as: 'actionMnemonic'
662
+ property :configuration_id, as: 'configurationId'
635
663
  property :correlated_invocations_id, as: 'correlatedInvocationsId'
664
+ property :target_id, as: 'targetId'
636
665
  property :tool_details, as: 'toolDetails', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2ToolDetails, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2ToolDetails::Representation
637
666
 
638
667
  property :tool_invocation_id, as: 'toolInvocationId'
@@ -643,7 +672,7 @@ module Google
643
672
  # @private
644
673
  class Representation < Google::Apis::Core::JsonRepresentation
645
674
  property :name, as: 'name'
646
- collection :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperty::Representation
675
+ property :node_properties, as: 'nodeProperties', class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties, decorator: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2NodeProperties::Representation
647
676
 
648
677
  property :target, as: 'target'
649
678
  end
@@ -677,6 +706,7 @@ module Google
677
706
  class GoogleDevtoolsRemotebuildbotCommandDurations
678
707
  # @private
679
708
  class Representation < Google::Apis::Core::JsonRepresentation
709
+ property :cas_release, as: 'casRelease'
680
710
  property :cm_wait_for_assignment, as: 'cmWaitForAssignment'
681
711
  property :docker_prep, as: 'dockerPrep'
682
712
  property :docker_prep_start_time, as: 'dockerPrepStartTime'
@@ -701,6 +731,7 @@ module Google
701
731
  property :input_cache_miss, as: 'inputCacheMiss'
702
732
  property :num_errors, :numeric_string => true, as: 'numErrors'
703
733
  property :num_warnings, :numeric_string => true, as: 'numWarnings'
734
+ property :output_location, as: 'outputLocation'
704
735
  property :used_async_container, as: 'usedAsyncContainer'
705
736
  end
706
737
  end
@@ -721,6 +752,20 @@ module Google
721
752
 
722
753
  property :memory_usage, as: 'memoryUsage', class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat, decorator: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat::Representation
723
754
 
755
+ property :total_disk_io_stats, as: 'totalDiskIoStats', class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageIoStats, decorator: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageIoStats::Representation
756
+
757
+ end
758
+ end
759
+
760
+ class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
761
+ # @private
762
+ class Representation < Google::Apis::Core::JsonRepresentation
763
+ property :read_bytes_count, :numeric_string => true, as: 'readBytesCount'
764
+ property :read_count, :numeric_string => true, as: 'readCount'
765
+ property :read_time_ms, :numeric_string => true, as: 'readTimeMs'
766
+ property :write_bytes_count, :numeric_string => true, as: 'writeBytesCount'
767
+ property :write_count, :numeric_string => true, as: 'writeCount'
768
+ property :write_time_ms, :numeric_string => true, as: 'writeTimeMs'
724
769
  end
725
770
  end
726
771
 
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.3.0
4
+ version: 0.8.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-02-15 00:00:00.000000000 Z
11
+ date: 2021-05-24 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.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1/v0.8.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: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Remote Build Execution API V1