google-apis-remotebuildexecution_v1 0.7.0 → 0.8.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: 0c58a54b13150986fb8a8d4a6223bc5cb4fbfd49ace3e9105a14c6c9491bf8f3
4
- data.tar.gz: 199073c7b42eabea301d49598d053a4eb9d2cb6ffa45a381e9cd1f74e974d537
3
+ metadata.gz: ee617fd051b347b9a3c96f7d8ed2aa7807818610e3e88c7c4f65f63e30d06ed4
4
+ data.tar.gz: c6526cdde688acef641e31b4f913e15404c5bc4b9dd6b829d3a7110a32187851
5
5
  SHA512:
6
- metadata.gz: fe897b4245ccdc9d8dab28df158f2e611cf517a4771141f2a7697cc2e7604d8cadae0b47b5dc81ed4a1ff0029c152dd194998d4334082b3e59a334076c9ee2ca
7
- data.tar.gz: 975b11b684beed58cfd71910f5e4a26a729bbe0762a68ea059df56d6821e3d78a45cc82f82a621bbb1b9dfa4603a5f9966e729af92d8d7d54070c4e8c5d2a73d
6
+ metadata.gz: 54ceaa131b839b97c3242fb5326530e905c7867fa6ba311d4b3f1047f8d163590cd3246ae18d29b6c127ea0c609b8ae1465b7355753c4e633f841068adecb1d7
7
+ data.tar.gz: 6aaa5c0fef1297a38e8bdbfec669b32f0ad1c0bbe67f3b1378dfba9967c2de393d3991a78ebaaece475e7b3e149d557aa047be6508859b846803d4a59208adbd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.7.0 (2021-03-25)
4
8
 
5
9
  * Regenerated from discovery document revision 20210322
@@ -1694,6 +1694,11 @@ module Google
1694
1694
  # @return [Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat]
1695
1695
  attr_accessor :memory_usage
1696
1696
 
1697
+ #
1698
+ # Corresponds to the JSON property `totalDiskIoStats`
1699
+ # @return [Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageIoStats]
1700
+ attr_accessor :total_disk_io_stats
1701
+
1697
1702
  def initialize(**args)
1698
1703
  update!(**args)
1699
1704
  end
@@ -1703,6 +1708,56 @@ module Google
1703
1708
  @cpu_used_percent = args[:cpu_used_percent] if args.key?(:cpu_used_percent)
1704
1709
  @disk_usage = args[:disk_usage] if args.key?(:disk_usage)
1705
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)
1706
1761
  end
1707
1762
  end
1708
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.7.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 = "20210322"
25
+ REVISION = "20210517"
26
26
  end
27
27
  end
28
28
  end
@@ -190,6 +190,12 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
+ class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
193
199
  class GoogleDevtoolsRemotebuildbotResourceUsageStat
194
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
201
 
@@ -746,6 +752,20 @@ module Google
746
752
 
747
753
  property :memory_usage, as: 'memoryUsage', class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat, decorator: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat::Representation
748
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'
749
769
  end
750
770
  end
751
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.7.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-03-29 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.7.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: []
@@ -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.13
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