google-apis-remotebuildexecution_v2 0.7.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e78a3dc5e8ca4867b773a0d5f778de51056271c150e1e781d34ee712be10d546
|
4
|
+
data.tar.gz: c630528306dd874897270187248e813a910ca6ed4b3be34ee72980f98e0438f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b586324a57e47f08788606f1bbc9e0e65fadcde06e891e9c926e53cdfbdd7d6dc69d4dabaa4bae78079853ef368bebd2934eef1e634122c7c18d5121dfd4b5d
|
7
|
+
data.tar.gz: 196ec9f06325a2a8e699184150dd93c001670b2052c2c1d954eafa5c3c02a18dfbefe4c9e8ce34ff22fab56749c4050aef063e99fcc926924a904f45ddb867ae
|
data/CHANGELOG.md
CHANGED
@@ -2359,6 +2359,11 @@ module Google
|
|
2359
2359
|
# @return [Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildbotResourceUsageStat]
|
2360
2360
|
attr_accessor :memory_usage
|
2361
2361
|
|
2362
|
+
#
|
2363
|
+
# Corresponds to the JSON property `totalDiskIoStats`
|
2364
|
+
# @return [Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildbotResourceUsageIoStats]
|
2365
|
+
attr_accessor :total_disk_io_stats
|
2366
|
+
|
2362
2367
|
def initialize(**args)
|
2363
2368
|
update!(**args)
|
2364
2369
|
end
|
@@ -2368,6 +2373,56 @@ module Google
|
|
2368
2373
|
@cpu_used_percent = args[:cpu_used_percent] if args.key?(:cpu_used_percent)
|
2369
2374
|
@disk_usage = args[:disk_usage] if args.key?(:disk_usage)
|
2370
2375
|
@memory_usage = args[:memory_usage] if args.key?(:memory_usage)
|
2376
|
+
@total_disk_io_stats = args[:total_disk_io_stats] if args.key?(:total_disk_io_stats)
|
2377
|
+
end
|
2378
|
+
end
|
2379
|
+
|
2380
|
+
#
|
2381
|
+
class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
|
2382
|
+
include Google::Apis::Core::Hashable
|
2383
|
+
|
2384
|
+
#
|
2385
|
+
# Corresponds to the JSON property `readBytesCount`
|
2386
|
+
# @return [Fixnum]
|
2387
|
+
attr_accessor :read_bytes_count
|
2388
|
+
|
2389
|
+
#
|
2390
|
+
# Corresponds to the JSON property `readCount`
|
2391
|
+
# @return [Fixnum]
|
2392
|
+
attr_accessor :read_count
|
2393
|
+
|
2394
|
+
#
|
2395
|
+
# Corresponds to the JSON property `readTimeMs`
|
2396
|
+
# @return [Fixnum]
|
2397
|
+
attr_accessor :read_time_ms
|
2398
|
+
|
2399
|
+
#
|
2400
|
+
# Corresponds to the JSON property `writeBytesCount`
|
2401
|
+
# @return [Fixnum]
|
2402
|
+
attr_accessor :write_bytes_count
|
2403
|
+
|
2404
|
+
#
|
2405
|
+
# Corresponds to the JSON property `writeCount`
|
2406
|
+
# @return [Fixnum]
|
2407
|
+
attr_accessor :write_count
|
2408
|
+
|
2409
|
+
#
|
2410
|
+
# Corresponds to the JSON property `writeTimeMs`
|
2411
|
+
# @return [Fixnum]
|
2412
|
+
attr_accessor :write_time_ms
|
2413
|
+
|
2414
|
+
def initialize(**args)
|
2415
|
+
update!(**args)
|
2416
|
+
end
|
2417
|
+
|
2418
|
+
# Update properties of this object
|
2419
|
+
def update!(**args)
|
2420
|
+
@read_bytes_count = args[:read_bytes_count] if args.key?(:read_bytes_count)
|
2421
|
+
@read_count = args[:read_count] if args.key?(:read_count)
|
2422
|
+
@read_time_ms = args[:read_time_ms] if args.key?(:read_time_ms)
|
2423
|
+
@write_bytes_count = args[:write_bytes_count] if args.key?(:write_bytes_count)
|
2424
|
+
@write_count = args[:write_count] if args.key?(:write_count)
|
2425
|
+
@write_time_ms = args[:write_time_ms] if args.key?(:write_time_ms)
|
2371
2426
|
end
|
2372
2427
|
end
|
2373
2428
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RemotebuildexecutionV2
|
18
18
|
# Version of the google-apis-remotebuildexecution_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210517"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -310,6 +310,12 @@ module Google
|
|
310
310
|
include Google::Apis::Core::JsonObjectSupport
|
311
311
|
end
|
312
312
|
|
313
|
+
class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
313
319
|
class GoogleDevtoolsRemotebuildbotResourceUsageStat
|
314
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
321
|
|
@@ -1035,6 +1041,20 @@ module Google
|
|
1035
1041
|
|
1036
1042
|
property :memory_usage, as: 'memoryUsage', class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildbotResourceUsageStat, decorator: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildbotResourceUsageStat::Representation
|
1037
1043
|
|
1044
|
+
property :total_disk_io_stats, as: 'totalDiskIoStats', class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildbotResourceUsageIoStats, decorator: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildbotResourceUsageIoStats::Representation
|
1045
|
+
|
1046
|
+
end
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
|
1050
|
+
# @private
|
1051
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1052
|
+
property :read_bytes_count, :numeric_string => true, as: 'readBytesCount'
|
1053
|
+
property :read_count, :numeric_string => true, as: 'readCount'
|
1054
|
+
property :read_time_ms, :numeric_string => true, as: 'readTimeMs'
|
1055
|
+
property :write_bytes_count, :numeric_string => true, as: 'writeBytesCount'
|
1056
|
+
property :write_count, :numeric_string => true, as: 'writeCount'
|
1057
|
+
property :write_time_ms, :numeric_string => true, as: 'writeTimeMs'
|
1038
1058
|
end
|
1039
1059
|
end
|
1040
1060
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-remotebuildexecution_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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-
|
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_v2/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v2/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v2/v0.8.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-remotebuildexecution_v2
|
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.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Remote Build Execution API V2
|