google-apis-dataflow_v1b3 0.14.0 → 0.17.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: 5c42be71729de81dc8b29e3c233360cfbfc75574eb8ac8ed8b667e08c30cc5c3
4
- data.tar.gz: 8ed744ce8989bba5095c19d262c82ae715abb59c878d2281ef9012a97d1b9961
3
+ metadata.gz: e753e7594140031902ba0779a171fd98cc8ecad7b4bfa9e6e7cb837ef87c37ce
4
+ data.tar.gz: dbaee56cf195ee3fac604aa7873cff078066b7e806e00639ba940cc401a2b13f
5
5
  SHA512:
6
- metadata.gz: f225dd6492fbd47dc28b55908e1b07d63b868388b96839757a179731644cd0eebaf929a2582c71ab2dbd79839a8ccf32b30e7ca385d6ffb0ebf6bad3473565b0
7
- data.tar.gz: 392290fe301da0c4435093b49dc77eb1f38d7f7fa7993f0349121871bc471b608230f762c92baaa3f3cc088557877816fc45389b29e10c7f2cb02d270fc8bb9c
6
+ metadata.gz: 7d0ca6f13e1344e8faea0c4b9ad7790c8e4a017a82f2f570113c493bcefce5f899576d3388a6a2575998a86d87aeb588f2c4c1660fbf4773c2d02087b1af5f04
7
+ data.tar.gz: 51800048617522398e2514c471573bae23e5377104abd0ce54957237e3c15bb02dc84e25f8260650cc072d983acf8e5337eefca3b406f894d24c3cdfa67c0056
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.17.0 (2022-02-26)
4
+
5
+ * Regenerated from discovery document revision 20220218
6
+
7
+ ### v0.16.0 (2022-02-19)
8
+
9
+ * Regenerated from discovery document revision 20220215
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.15.0 (2021-12-14)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.14.0 (2021-10-20)
4
17
 
5
18
  * Unspecified changes
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/dataflow_v1b3"
51
51
  client = Google::Apis::DataflowV1b3::DataflowService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -1988,7 +1988,7 @@ module Google
1988
1988
  end
1989
1989
  end
1990
1990
 
1991
- # Defines a job to be run by the Cloud Dataflow service. nextID: 26
1991
+ # Defines a job to be run by the Cloud Dataflow service.
1992
1992
  class Job
1993
1993
  include Google::Apis::Core::Hashable
1994
1994
 
@@ -2566,7 +2566,7 @@ module Google
2566
2566
  class LaunchFlexTemplateResponse
2567
2567
  include Google::Apis::Core::Hashable
2568
2568
 
2569
- # Defines a job to be run by the Cloud Dataflow service. nextID: 26
2569
+ # Defines a job to be run by the Cloud Dataflow service.
2570
2570
  # Corresponds to the JSON property `job`
2571
2571
  # @return [Google::Apis::DataflowV1b3::Job]
2572
2572
  attr_accessor :job
@@ -2631,7 +2631,7 @@ module Google
2631
2631
  class LaunchTemplateResponse
2632
2632
  include Google::Apis::Core::Hashable
2633
2633
 
2634
- # Defines a job to be run by the Cloud Dataflow service. nextID: 26
2634
+ # Defines a job to be run by the Cloud Dataflow service.
2635
2635
  # Corresponds to the JSON property `job`
2636
2636
  # @return [Google::Apis::DataflowV1b3::Job]
2637
2637
  attr_accessor :job
@@ -2865,6 +2865,11 @@ module Google
2865
2865
  # @return [Fixnum]
2866
2866
  attr_accessor :current_limit_bytes
2867
2867
 
2868
+ # Number of Out of Memory (OOM) events recorded since the previous measurement.
2869
+ # Corresponds to the JSON property `currentOoms`
2870
+ # @return [Fixnum]
2871
+ attr_accessor :current_ooms
2872
+
2868
2873
  # Instantenous memory (RSS) size in bytes.
2869
2874
  # Corresponds to the JSON property `currentRssBytes`
2870
2875
  # @return [Fixnum]
@@ -2887,6 +2892,7 @@ module Google
2887
2892
  # Update properties of this object
2888
2893
  def update!(**args)
2889
2894
  @current_limit_bytes = args[:current_limit_bytes] if args.key?(:current_limit_bytes)
2895
+ @current_ooms = args[:current_ooms] if args.key?(:current_ooms)
2890
2896
  @current_rss_bytes = args[:current_rss_bytes] if args.key?(:current_rss_bytes)
2891
2897
  @timestamp = args[:timestamp] if args.key?(:timestamp)
2892
2898
  @total_gb_ms = args[:total_gb_ms] if args.key?(:total_gb_ms)
@@ -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.14.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210825"
25
+ REVISION = "20220218"
26
26
  end
27
27
  end
28
28
  end
@@ -1756,6 +1756,7 @@ module Google
1756
1756
  # @private
1757
1757
  class Representation < Google::Apis::Core::JsonRepresentation
1758
1758
  property :current_limit_bytes, :numeric_string => true, as: 'currentLimitBytes'
1759
+ property :current_ooms, :numeric_string => true, as: 'currentOoms'
1759
1760
  property :current_rss_bytes, :numeric_string => true, as: 'currentRssBytes'
1760
1761
  property :timestamp, as: 'timestamp'
1761
1762
  property :total_gb_ms, :numeric_string => true, as: 'totalGbMs'
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.14.0
4
+ version: 0.17.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-10-27 00:00:00.000000000 Z
11
+ date: 2022-02-28 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.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.17.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Dataflow API V1b3