google-apis-dataflow_v1b3 0.49.0 → 0.51.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: 38ed1dfaf1d7182d705d5a95a20b86a1df957b3c6e8c0800f6511f1b84d46cb6
4
- data.tar.gz: b8ad5b1d024d00a2d159734d8c84bafaa3b19496404c1576f5ca11ace5eb8fb8
3
+ metadata.gz: 0b2111e8bd25f5f82fad69f7e39e49ea9b86f2f6d2e9245ba24a323a8f42cd57
4
+ data.tar.gz: 51bbb780e7d19dcd9536ccabffb541fcf11f1ea27ecc79d6aa151cd0a9dd0bf0
5
5
  SHA512:
6
- metadata.gz: 424ce44d98a1985b8ee2375f51c805b4ed9cee86a652a42a9264ee88e5cf51f61a4bd2b7a43345e46927e5e00b55cb9a074b50df2bcbfe891a41b775882e71f8
7
- data.tar.gz: f2b3d8e2bb742ba5576a666a83de7f81cf8be30fd77aea13fb4922af21b28d544d03c08827bbffa141b5877caefb614832b18ea46ab6e6edb453eaf43b6abf83
6
+ metadata.gz: eca617af86f16d34687429f8d10a31b70a3f6758ae2a26d9eecb296fa35de00c994acfd78c2f52edc9fa76bc7d76284732aab26af1ccfc4fae1bd05a7b3bbe6a
7
+ data.tar.gz: 16f5ab6ee05b4eabb2d67675f4a12cf29c4ea97ca4f05eb75daccdb8f932622ff1b498ea199110a2b9f05a7f050c0d37da0c8ba342c55b688b60c1cb5a827e37
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.51.0 (2024-02-24)
4
+
5
+ * Regenerated from discovery document revision 20240218
6
+ * Regenerated using generator version 0.14.0
7
+
8
+ ### v0.50.0 (2024-01-28)
9
+
10
+ * Regenerated from discovery document revision 20240121
11
+ * Regenerated using generator version 0.13.1
12
+
3
13
  ### v0.49.0 (2024-01-22)
4
14
 
5
15
  * Regenerated from discovery document revision 20240113
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/dataflow) may provide guida
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -514,7 +514,7 @@ module Google
514
514
  class ContainerSpec
515
515
  include Google::Apis::Core::Hashable
516
516
 
517
- # The environment values to be set at runtime for flex template.
517
+ # The environment values to be set at runtime for flex template. LINT.IfChange
518
518
  # Corresponds to the JSON property `defaultEnvironment`
519
519
  # @return [Google::Apis::DataflowV1b3::FlexTemplateRuntimeEnvironment]
520
520
  attr_accessor :default_environment
@@ -1668,7 +1668,7 @@ module Google
1668
1668
  end
1669
1669
  end
1670
1670
 
1671
- # The environment values to be set at runtime for flex template.
1671
+ # The environment values to be set at runtime for flex template. LINT.IfChange
1672
1672
  class FlexTemplateRuntimeEnvironment
1673
1673
  include Google::Apis::Core::Hashable
1674
1674
 
@@ -2806,7 +2806,7 @@ module Google
2806
2806
  # @return [String]
2807
2807
  attr_accessor :container_spec_gcs_path
2808
2808
 
2809
- # The environment values to be set at runtime for flex template.
2809
+ # The environment values to be set at runtime for flex template. LINT.IfChange
2810
2810
  # Corresponds to the JSON property `environment`
2811
2811
  # @return [Google::Apis::DataflowV1b3::FlexTemplateRuntimeEnvironment]
2812
2812
  attr_accessor :environment
@@ -3763,6 +3763,12 @@ module Google
3763
3763
  # @return [String]
3764
3764
  attr_accessor :help_text
3765
3765
 
3766
+ # Optional. Whether the parameter should be hidden in the UI.
3767
+ # Corresponds to the JSON property `hiddenUi`
3768
+ # @return [Boolean]
3769
+ attr_accessor :hidden_ui
3770
+ alias_method :hidden_ui?, :hidden_ui
3771
+
3766
3772
  # Optional. Whether the parameter is optional. Defaults to false.
3767
3773
  # Corresponds to the JSON property `isOptional`
3768
3774
  # @return [Boolean]
@@ -3815,6 +3821,7 @@ module Google
3815
3821
  @enum_options = args[:enum_options] if args.key?(:enum_options)
3816
3822
  @group_name = args[:group_name] if args.key?(:group_name)
3817
3823
  @help_text = args[:help_text] if args.key?(:help_text)
3824
+ @hidden_ui = args[:hidden_ui] if args.key?(:hidden_ui)
3818
3825
  @is_optional = args[:is_optional] if args.key?(:is_optional)
3819
3826
  @label = args[:label] if args.key?(:label)
3820
3827
  @name = args[:name] if args.key?(:name)
@@ -6200,6 +6207,25 @@ module Google
6200
6207
  end
6201
6208
  end
6202
6209
 
6210
+ # Contains per-user-worker streaming scaling recommendation from the backend.
6211
+ class StreamingScalingReportResponse
6212
+ include Google::Apis::Core::Hashable
6213
+
6214
+ # Maximum thread count limit;
6215
+ # Corresponds to the JSON property `maximumThreadCount`
6216
+ # @return [Fixnum]
6217
+ attr_accessor :maximum_thread_count
6218
+
6219
+ def initialize(**args)
6220
+ update!(**args)
6221
+ end
6222
+
6223
+ # Update properties of this object
6224
+ def update!(**args)
6225
+ @maximum_thread_count = args[:maximum_thread_count] if args.key?(:maximum_thread_count)
6226
+ end
6227
+ end
6228
+
6203
6229
  # A task which initializes part of a streaming Dataflow job.
6204
6230
  class StreamingSetupTask
6205
6231
  include Google::Apis::Core::Hashable
@@ -6549,6 +6575,24 @@ module Google
6549
6575
  # @return [Array<Google::Apis::DataflowV1b3::ParameterMetadata>]
6550
6576
  attr_accessor :parameters
6551
6577
 
6578
+ # Optional. Indicates if the template is streaming or not.
6579
+ # Corresponds to the JSON property `streaming`
6580
+ # @return [Boolean]
6581
+ attr_accessor :streaming
6582
+ alias_method :streaming?, :streaming
6583
+
6584
+ # Optional. Indicates if the streaming template supports at least once mode.
6585
+ # Corresponds to the JSON property `supportsAtLeastOnce`
6586
+ # @return [Boolean]
6587
+ attr_accessor :supports_at_least_once
6588
+ alias_method :supports_at_least_once?, :supports_at_least_once
6589
+
6590
+ # Optional. Indicates if the streaming template supports exactly once mode.
6591
+ # Corresponds to the JSON property `supportsExactlyOnce`
6592
+ # @return [Boolean]
6593
+ attr_accessor :supports_exactly_once
6594
+ alias_method :supports_exactly_once?, :supports_exactly_once
6595
+
6552
6596
  def initialize(**args)
6553
6597
  update!(**args)
6554
6598
  end
@@ -6558,6 +6602,9 @@ module Google
6558
6602
  @description = args[:description] if args.key?(:description)
6559
6603
  @name = args[:name] if args.key?(:name)
6560
6604
  @parameters = args[:parameters] if args.key?(:parameters)
6605
+ @streaming = args[:streaming] if args.key?(:streaming)
6606
+ @supports_at_least_once = args[:supports_at_least_once] if args.key?(:supports_at_least_once)
6607
+ @supports_exactly_once = args[:supports_exactly_once] if args.key?(:supports_exactly_once)
6561
6608
  end
6562
6609
  end
6563
6610
 
@@ -7319,6 +7366,11 @@ module Google
7319
7366
  class WorkerMessageResponse
7320
7367
  include Google::Apis::Core::Hashable
7321
7368
 
7369
+ # Contains per-user-worker streaming scaling recommendation from the backend.
7370
+ # Corresponds to the JSON property `streamingScalingReportResponse`
7371
+ # @return [Google::Apis::DataflowV1b3::StreamingScalingReportResponse]
7372
+ attr_accessor :streaming_scaling_report_response
7373
+
7322
7374
  # WorkerHealthReportResponse contains information returned to the worker in
7323
7375
  # response to a health ping.
7324
7376
  # Corresponds to the JSON property `workerHealthReportResponse`
@@ -7346,6 +7398,7 @@ module Google
7346
7398
 
7347
7399
  # Update properties of this object
7348
7400
  def update!(**args)
7401
+ @streaming_scaling_report_response = args[:streaming_scaling_report_response] if args.key?(:streaming_scaling_report_response)
7349
7402
  @worker_health_report_response = args[:worker_health_report_response] if args.key?(:worker_health_report_response)
7350
7403
  @worker_metrics_response = args[:worker_metrics_response] if args.key?(:worker_metrics_response)
7351
7404
  @worker_shutdown_notice_response = args[:worker_shutdown_notice_response] if args.key?(:worker_shutdown_notice_response)
@@ -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.49.0"
19
+ GEM_VERSION = "0.51.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.0"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240113"
25
+ REVISION = "20240218"
26
26
  end
27
27
  end
28
28
  end
@@ -946,6 +946,12 @@ module Google
946
946
  include Google::Apis::Core::JsonObjectSupport
947
947
  end
948
948
 
949
+ class StreamingScalingReportResponse
950
+ class Representation < Google::Apis::Core::JsonRepresentation; end
951
+
952
+ include Google::Apis::Core::JsonObjectSupport
953
+ end
954
+
949
955
  class StreamingSetupTask
950
956
  class Representation < Google::Apis::Core::JsonRepresentation; end
951
957
 
@@ -2116,6 +2122,7 @@ module Google
2116
2122
 
2117
2123
  property :group_name, as: 'groupName'
2118
2124
  property :help_text, as: 'helpText'
2125
+ property :hidden_ui, as: 'hiddenUi'
2119
2126
  property :is_optional, as: 'isOptional'
2120
2127
  property :label, as: 'label'
2121
2128
  property :name, as: 'name'
@@ -2798,6 +2805,13 @@ module Google
2798
2805
  end
2799
2806
  end
2800
2807
 
2808
+ class StreamingScalingReportResponse
2809
+ # @private
2810
+ class Representation < Google::Apis::Core::JsonRepresentation
2811
+ property :maximum_thread_count, as: 'maximumThreadCount'
2812
+ end
2813
+ end
2814
+
2801
2815
  class StreamingSetupTask
2802
2816
  # @private
2803
2817
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2887,6 +2901,9 @@ module Google
2887
2901
  property :name, as: 'name'
2888
2902
  collection :parameters, as: 'parameters', class: Google::Apis::DataflowV1b3::ParameterMetadata, decorator: Google::Apis::DataflowV1b3::ParameterMetadata::Representation
2889
2903
 
2904
+ property :streaming, as: 'streaming'
2905
+ property :supports_at_least_once, as: 'supportsAtLeastOnce'
2906
+ property :supports_exactly_once, as: 'supportsExactlyOnce'
2890
2907
  end
2891
2908
  end
2892
2909
 
@@ -3088,6 +3105,8 @@ module Google
3088
3105
  class WorkerMessageResponse
3089
3106
  # @private
3090
3107
  class Representation < Google::Apis::Core::JsonRepresentation
3108
+ property :streaming_scaling_report_response, as: 'streamingScalingReportResponse', class: Google::Apis::DataflowV1b3::StreamingScalingReportResponse, decorator: Google::Apis::DataflowV1b3::StreamingScalingReportResponse::Representation
3109
+
3091
3110
  property :worker_health_report_response, as: 'workerHealthReportResponse', class: Google::Apis::DataflowV1b3::WorkerHealthReportResponse, decorator: Google::Apis::DataflowV1b3::WorkerHealthReportResponse::Representation
3092
3111
 
3093
3112
  property :worker_metrics_response, as: 'workerMetricsResponse', class: Google::Apis::DataflowV1b3::ResourceUtilizationReportResponse, decorator: Google::Apis::DataflowV1b3::ResourceUtilizationReportResponse::Representation
@@ -37,9 +37,6 @@ module Google
37
37
 
38
38
  # View your Google Compute Engine resources
39
39
  AUTH_COMPUTE_READONLY = 'https://www.googleapis.com/auth/compute.readonly'
40
-
41
- # See your primary Google Account email address
42
- AUTH_USERINFO_EMAIL = 'https://www.googleapis.com/auth/userinfo.email'
43
40
  end
44
41
  end
45
42
  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.49.0
4
+ version: 0.51.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-01-23 00:00:00.000000000 Z
11
+ date: 2024-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.12.0
19
+ version: 0.14.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.12.0
29
+ version: 0.14.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.49.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.51.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Dataflow API V1b3