google-apis-remotebuildexecution_v1alpha 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: 7ddc48a2c7b20c3b8139ee1afdee51a0ad71a181ad5273d6a43f1022a67feee2
4
- data.tar.gz: 2b171b2798c91dd29056879b14034cbe77d4f083fe832d3d95f75ec7e4357087
3
+ metadata.gz: f029b57b7c0e185c3e03cc181600a6ef541cba5be0bfddee0849812240e056cc
4
+ data.tar.gz: 9453f1b28ce4bbea17a9e086dc217c62cf8037e35acc7e3632b00d6772bc842b
5
5
  SHA512:
6
- metadata.gz: ec1c2714df22700985ab6482ff914b828a1cb1f674bd0625f432e65b8403cf095d31f02679d524b9e464e7e170863416b164b05615669457f229e5b38d9231e4
7
- data.tar.gz: 12641d141c0c6438b908db42c5c417902f4b0afc92d1a3af30410ef95ab095bf6cbeb0add5bae9a535e9334456e7a34e7953314eda52530087de7bd2d81fd3fc
6
+ metadata.gz: '018188969bbff6f0e4f9e4091f8f97b5c761de7c48eea0c9a51714cf14f98e6ec548f43b78f9ec07be4bb54570069a7b3ebe40e7cd7efcfcea81362efa526ab4'
7
+ data.tar.gz: 879047c97807cabf19d3e41f3774bb35773dfb8d78c7a15de8bdd04f67b2d575928dece16033bf686cb62163b9d87b935fff549b90a73384523de7a0b1c3bae7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-remotebuildexecution_v1alpha
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
@@ -1675,6 +1675,11 @@ module Google
1675
1675
  # @return [Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat]
1676
1676
  attr_accessor :memory_usage
1677
1677
 
1678
+ #
1679
+ # Corresponds to the JSON property `totalDiskIoStats`
1680
+ # @return [Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageIoStats]
1681
+ attr_accessor :total_disk_io_stats
1682
+
1678
1683
  def initialize(**args)
1679
1684
  update!(**args)
1680
1685
  end
@@ -1684,6 +1689,56 @@ module Google
1684
1689
  @cpu_used_percent = args[:cpu_used_percent] if args.key?(:cpu_used_percent)
1685
1690
  @disk_usage = args[:disk_usage] if args.key?(:disk_usage)
1686
1691
  @memory_usage = args[:memory_usage] if args.key?(:memory_usage)
1692
+ @total_disk_io_stats = args[:total_disk_io_stats] if args.key?(:total_disk_io_stats)
1693
+ end
1694
+ end
1695
+
1696
+ #
1697
+ class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
1698
+ include Google::Apis::Core::Hashable
1699
+
1700
+ #
1701
+ # Corresponds to the JSON property `readBytesCount`
1702
+ # @return [Fixnum]
1703
+ attr_accessor :read_bytes_count
1704
+
1705
+ #
1706
+ # Corresponds to the JSON property `readCount`
1707
+ # @return [Fixnum]
1708
+ attr_accessor :read_count
1709
+
1710
+ #
1711
+ # Corresponds to the JSON property `readTimeMs`
1712
+ # @return [Fixnum]
1713
+ attr_accessor :read_time_ms
1714
+
1715
+ #
1716
+ # Corresponds to the JSON property `writeBytesCount`
1717
+ # @return [Fixnum]
1718
+ attr_accessor :write_bytes_count
1719
+
1720
+ #
1721
+ # Corresponds to the JSON property `writeCount`
1722
+ # @return [Fixnum]
1723
+ attr_accessor :write_count
1724
+
1725
+ #
1726
+ # Corresponds to the JSON property `writeTimeMs`
1727
+ # @return [Fixnum]
1728
+ attr_accessor :write_time_ms
1729
+
1730
+ def initialize(**args)
1731
+ update!(**args)
1732
+ end
1733
+
1734
+ # Update properties of this object
1735
+ def update!(**args)
1736
+ @read_bytes_count = args[:read_bytes_count] if args.key?(:read_bytes_count)
1737
+ @read_count = args[:read_count] if args.key?(:read_count)
1738
+ @read_time_ms = args[:read_time_ms] if args.key?(:read_time_ms)
1739
+ @write_bytes_count = args[:write_bytes_count] if args.key?(:write_bytes_count)
1740
+ @write_count = args[:write_count] if args.key?(:write_count)
1741
+ @write_time_ms = args[:write_time_ms] if args.key?(:write_time_ms)
1687
1742
  end
1688
1743
  end
1689
1744
 
@@ -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.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
@@ -184,6 +184,12 @@ module Google
184
184
  include Google::Apis::Core::JsonObjectSupport
185
185
  end
186
186
 
187
+ class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
187
193
  class GoogleDevtoolsRemotebuildbotResourceUsageStat
188
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
195
 
@@ -715,6 +721,20 @@ module Google
715
721
 
716
722
  property :memory_usage, as: 'memoryUsage', class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat, decorator: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat::Representation
717
723
 
724
+ property :total_disk_io_stats, as: 'totalDiskIoStats', class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageIoStats, decorator: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageIoStats::Representation
725
+
726
+ end
727
+ end
728
+
729
+ class GoogleDevtoolsRemotebuildbotResourceUsageIoStats
730
+ # @private
731
+ class Representation < Google::Apis::Core::JsonRepresentation
732
+ property :read_bytes_count, :numeric_string => true, as: 'readBytesCount'
733
+ property :read_count, :numeric_string => true, as: 'readCount'
734
+ property :read_time_ms, :numeric_string => true, as: 'readTimeMs'
735
+ property :write_bytes_count, :numeric_string => true, as: 'writeBytesCount'
736
+ property :write_count, :numeric_string => true, as: 'writeCount'
737
+ property :write_time_ms, :numeric_string => true, as: 'writeTimeMs'
718
738
  end
719
739
  end
720
740
 
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.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_v1alpha/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1alpha/v0.7.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-remotebuildexecution_v1alpha/v0.8.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: []
@@ -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 V1alpha