google-apis-dataflow_v1b3 0.61.0 → 0.62.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: 4db9e790ef0ff93bdf8f1a4db92efb68e4ebe6bcef09cc88d4220114aef39736
4
- data.tar.gz: 02a9ac8fb4f62c2ad036c9d636a98f13d00684c9117df35fd8712d0d23a2cca3
3
+ metadata.gz: 63aa367a23872ed3fc722587d158ee976c10d8a1b9d0052405bf142a8cd3f6a6
4
+ data.tar.gz: 69359940a1fb2a1ab727f1c3c11981cd757025ec27f91e3b294e2b55b6fa291b
5
5
  SHA512:
6
- metadata.gz: c2f1a864735d5758980a60edbfbf0ecabe0f4eda6ad4e67438971b8ec34592cf0379e91999d90bbe632a2d95bf195e7e8be8fab50713a48d391093c05172c280
7
- data.tar.gz: 7013c5defa63f3883fc1e756d1e27449a9de2b15e03bc4afe2edb1dc401bd7f8b924ffe32fee3af563f0df515d8d52f98927480c933e30e966788e1f549198da
6
+ metadata.gz: 495fe7461fe6862398608155aa15a820b6154c2f5fe35345e0cd2f9436dfa2bd89ed0f926e2e62ab3fa2251bc5a1b4fad24686c0d9d3368d9f355bf1b69af0f1
7
+ data.tar.gz: baae914b849c24ccef85610cba574143918474d22a393b81a3d9538da8d85c6da597e656a821a04ad40e8d1ada81fc44f70141d930d196d17485c2a83bd8bd56
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.62.0 (2024-11-03)
4
+
5
+ * Regenerated from discovery document revision 20241028
6
+
3
7
  ### v0.61.0 (2024-10-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20241014
@@ -1920,6 +1920,51 @@ module Google
1920
1920
  end
1921
1921
  end
1922
1922
 
1923
+ # Information about the GPU usage on the worker.
1924
+ class GpuUsage
1925
+ include Google::Apis::Core::Hashable
1926
+
1927
+ # Required. Timestamp of the measurement.
1928
+ # Corresponds to the JSON property `timestamp`
1929
+ # @return [String]
1930
+ attr_accessor :timestamp
1931
+
1932
+ # Utilization details about the GPU.
1933
+ # Corresponds to the JSON property `utilization`
1934
+ # @return [Google::Apis::DataflowV1b3::GpuUtilization]
1935
+ attr_accessor :utilization
1936
+
1937
+ def initialize(**args)
1938
+ update!(**args)
1939
+ end
1940
+
1941
+ # Update properties of this object
1942
+ def update!(**args)
1943
+ @timestamp = args[:timestamp] if args.key?(:timestamp)
1944
+ @utilization = args[:utilization] if args.key?(:utilization)
1945
+ end
1946
+ end
1947
+
1948
+ # Utilization details about the GPU.
1949
+ class GpuUtilization
1950
+ include Google::Apis::Core::Hashable
1951
+
1952
+ # Required. GPU utilization rate of any kernel over the last sample period in
1953
+ # the range of [0, 1].
1954
+ # Corresponds to the JSON property `rate`
1955
+ # @return [Float]
1956
+ attr_accessor :rate
1957
+
1958
+ def initialize(**args)
1959
+ update!(**args)
1960
+ end
1961
+
1962
+ # Update properties of this object
1963
+ def update!(**args)
1964
+ @rate = args[:rate] if args.key?(:rate)
1965
+ end
1966
+ end
1967
+
1923
1968
  # Request to get updated debug configuration for component.
1924
1969
  class GetDebugConfigRequest
1925
1970
  include Google::Apis::Core::Hashable
@@ -4399,6 +4444,11 @@ module Google
4399
4444
  # @return [Array<Google::Apis::DataflowV1b3::CpuTime>]
4400
4445
  attr_accessor :cpu_time
4401
4446
 
4447
+ # Optional. GPU usage samples.
4448
+ # Corresponds to the JSON property `gpuUsage`
4449
+ # @return [Array<Google::Apis::DataflowV1b3::GpuUsage>]
4450
+ attr_accessor :gpu_usage
4451
+
4402
4452
  # Memory utilization samples.
4403
4453
  # Corresponds to the JSON property `memoryInfo`
4404
4454
  # @return [Array<Google::Apis::DataflowV1b3::MemInfo>]
@@ -4412,6 +4462,7 @@ module Google
4412
4462
  def update!(**args)
4413
4463
  @containers = args[:containers] if args.key?(:containers)
4414
4464
  @cpu_time = args[:cpu_time] if args.key?(:cpu_time)
4465
+ @gpu_usage = args[:gpu_usage] if args.key?(:gpu_usage)
4415
4466
  @memory_info = args[:memory_info] if args.key?(:memory_info)
4416
4467
  end
4417
4468
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataflowV1b3
18
18
  # Version of the google-apis-dataflow_v1b3 gem
19
- GEM_VERSION = "0.61.0"
19
+ GEM_VERSION = "0.62.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241014"
25
+ REVISION = "20241028"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,18 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class GpuUsage
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
283
+ class GpuUtilization
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
277
289
  class GetDebugConfigRequest
278
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
291
 
@@ -1626,6 +1638,22 @@ module Google
1626
1638
  end
1627
1639
  end
1628
1640
 
1641
+ class GpuUsage
1642
+ # @private
1643
+ class Representation < Google::Apis::Core::JsonRepresentation
1644
+ property :timestamp, as: 'timestamp'
1645
+ property :utilization, as: 'utilization', class: Google::Apis::DataflowV1b3::GpuUtilization, decorator: Google::Apis::DataflowV1b3::GpuUtilization::Representation
1646
+
1647
+ end
1648
+ end
1649
+
1650
+ class GpuUtilization
1651
+ # @private
1652
+ class Representation < Google::Apis::Core::JsonRepresentation
1653
+ property :rate, as: 'rate'
1654
+ end
1655
+ end
1656
+
1629
1657
  class GetDebugConfigRequest
1630
1658
  # @private
1631
1659
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2308,6 +2336,8 @@ module Google
2308
2336
 
2309
2337
  collection :cpu_time, as: 'cpuTime', class: Google::Apis::DataflowV1b3::CpuTime, decorator: Google::Apis::DataflowV1b3::CpuTime::Representation
2310
2338
 
2339
+ collection :gpu_usage, as: 'gpuUsage', class: Google::Apis::DataflowV1b3::GpuUsage, decorator: Google::Apis::DataflowV1b3::GpuUsage::Representation
2340
+
2311
2341
  collection :memory_info, as: 'memoryInfo', class: Google::Apis::DataflowV1b3::MemInfo, decorator: Google::Apis::DataflowV1b3::MemInfo::Representation
2312
2342
 
2313
2343
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataflow_v1b3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.61.0
4
+ version: 0.62.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: 2024-10-27 00:00:00.000000000 Z
11
+ date: 2024-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.61.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.62.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
63
63
  post_install_message:
64
64
  rdoc_options: []