google-apis-dataflow_v1b3 0.54.0 → 0.55.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: 7ed544682b180ce37a8ef12027aec7da86c2d984db50b5919fdd5cdb63bdbd49
4
- data.tar.gz: 3f82d992ead99d792ded79300aa24ba1555c97515c4ae04a8a4e0753d62667e8
3
+ metadata.gz: 6f3c6b9857cc99115c0d29de5cbd8a6c1c578a31cc835bc65337add423cdfded
4
+ data.tar.gz: f5ff0140bbd7d561a00b0810847cb75dd4b2231f37ca6930a4d1af8f4483a6a5
5
5
  SHA512:
6
- metadata.gz: 580b857d04a0477153cf35c9729105a310325aff48a12e33bc01df9aeec834ceef175c96b9f5e0328799140eac5b44f17998193c396818f737e95d56f4764765
7
- data.tar.gz: a470f4ad7e862b09aed2b55b89249ff397c9a8241a989af1ce5c294e43d5cc5db9eabc0c06bb4549a43b9a0309df2957b57636230b1acee40f2ea8f90dcf704b
6
+ metadata.gz: d8a5a2665e13e9264b20001d2ce9d1fb976b579ef9c350e2abd153ab8e02e79a3947b7b5a8c26ea9fcce05c0439c23192992ebc22c1429d923e00a4b33e4c975
7
+ data.tar.gz: 3ed4811363c944114bb63f7774557d10b689208b7dd6bfb29d42f5cee805b582f6a886ecb831bdd2fa79a9af4c60bb733710347883f1cc32ee70c5c3a8507609
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.55.0 (2024-05-05)
4
+
5
+ * Regenerated from discovery document revision 20240430
6
+
3
7
  ### v0.54.0 (2024-04-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20240415
@@ -1415,9 +1415,9 @@ module Google
1415
1415
  # @return [String]
1416
1416
  attr_accessor :service_kms_key_name
1417
1417
 
1418
- # The list of service options to enable. This field should be used for service
1419
- # related experiments only. These experiments, when graduating to GA, should be
1420
- # replaced by dedicated fields or become default (i.e. always on).
1418
+ # Optional. The list of service options to enable. This field should be used for
1419
+ # service related experiments only. These experiments, when graduating to GA,
1420
+ # should be replaced by dedicated fields or become default (i.e. always on).
1421
1421
  # Corresponds to the JSON property `serviceOptions`
1422
1422
  # @return [Array<String>]
1423
1423
  attr_accessor :service_options
@@ -2366,12 +2366,12 @@ module Google
2366
2366
  # @return [String]
2367
2367
  attr_accessor :location
2368
2368
 
2369
- # The user-specified Dataflow job name. Only one active job with a given name
2370
- # can exist in a project within one region at any given time. Jobs in different
2371
- # regions can have the same name. If a caller attempts to create a job with the
2372
- # same name as an active job that already exists, the attempt returns the
2373
- # existing job. The name must match the regular expression `[a-z]([-a-z0-9]`0,
2374
- # 1022`[a-z0-9])?`
2369
+ # Optional. The user-specified Dataflow job name. Only one active job with a
2370
+ # given name can exist in a project within one region at any given time. Jobs in
2371
+ # different regions can have the same name. If a caller attempts to create a job
2372
+ # with the same name as an active job that already exists, the attempt returns
2373
+ # the existing job. The name must match the regular expression `[a-z]([-a-z0-9]`
2374
+ # 0,1022`[a-z0-9])?`
2375
2375
  # Corresponds to the JSON property `name`
2376
2376
  # @return [String]
2377
2377
  attr_accessor :name
@@ -2475,7 +2475,7 @@ module Google
2475
2475
  # @return [Hash<String,String>]
2476
2476
  attr_accessor :transform_name_mapping
2477
2477
 
2478
- # The type of Dataflow job.
2478
+ # Optional. The type of Dataflow job.
2479
2479
  # Corresponds to the JSON property `type`
2480
2480
  # @return [String]
2481
2481
  attr_accessor :type
@@ -6109,6 +6109,11 @@ module Google
6109
6109
  # @return [Fixnum]
6110
6110
  attr_accessor :max_work_item_commit_bytes
6111
6111
 
6112
+ # Operational limits imposed on streaming jobs by the backend.
6113
+ # Corresponds to the JSON property `operationalLimits`
6114
+ # @return [Google::Apis::DataflowV1b3::StreamingOperationalLimits]
6115
+ attr_accessor :operational_limits
6116
+
6112
6117
  # Set of computation configuration information.
6113
6118
  # Corresponds to the JSON property `streamingComputationConfigs`
6114
6119
  # @return [Array<Google::Apis::DataflowV1b3::StreamingComputationConfig>]
@@ -6141,6 +6146,7 @@ module Google
6141
6146
  @commit_stream_chunk_size_bytes = args[:commit_stream_chunk_size_bytes] if args.key?(:commit_stream_chunk_size_bytes)
6142
6147
  @get_data_stream_chunk_size_bytes = args[:get_data_stream_chunk_size_bytes] if args.key?(:get_data_stream_chunk_size_bytes)
6143
6148
  @max_work_item_commit_bytes = args[:max_work_item_commit_bytes] if args.key?(:max_work_item_commit_bytes)
6149
+ @operational_limits = args[:operational_limits] if args.key?(:operational_limits)
6144
6150
  @streaming_computation_configs = args[:streaming_computation_configs] if args.key?(:streaming_computation_configs)
6145
6151
  @user_step_to_state_family_name_map = args[:user_step_to_state_family_name_map] if args.key?(:user_step_to_state_family_name_map)
6146
6152
  @windmill_service_endpoint = args[:windmill_service_endpoint] if args.key?(:windmill_service_endpoint)
@@ -6148,6 +6154,67 @@ module Google
6148
6154
  end
6149
6155
  end
6150
6156
 
6157
+ # Operational limits imposed on streaming jobs by the backend.
6158
+ class StreamingOperationalLimits
6159
+ include Google::Apis::Core::Hashable
6160
+
6161
+ # The maximum size for an element in bag state.
6162
+ # Corresponds to the JSON property `maxBagElementBytes`
6163
+ # @return [Fixnum]
6164
+ attr_accessor :max_bag_element_bytes
6165
+
6166
+ # The maximum size for an element in global data.
6167
+ # Corresponds to the JSON property `maxGlobalDataBytes`
6168
+ # @return [Fixnum]
6169
+ attr_accessor :max_global_data_bytes
6170
+
6171
+ # The maximum size allowed for a key.
6172
+ # Corresponds to the JSON property `maxKeyBytes`
6173
+ # @return [Fixnum]
6174
+ attr_accessor :max_key_bytes
6175
+
6176
+ # The maximum size for a single output element.
6177
+ # Corresponds to the JSON property `maxProductionOutputBytes`
6178
+ # @return [Fixnum]
6179
+ attr_accessor :max_production_output_bytes
6180
+
6181
+ # The maximum size for an element in sorted list state.
6182
+ # Corresponds to the JSON property `maxSortedListElementBytes`
6183
+ # @return [Fixnum]
6184
+ attr_accessor :max_sorted_list_element_bytes
6185
+
6186
+ # The maximum size for a source state update.
6187
+ # Corresponds to the JSON property `maxSourceStateBytes`
6188
+ # @return [Fixnum]
6189
+ attr_accessor :max_source_state_bytes
6190
+
6191
+ # The maximum size for a state tag.
6192
+ # Corresponds to the JSON property `maxTagBytes`
6193
+ # @return [Fixnum]
6194
+ attr_accessor :max_tag_bytes
6195
+
6196
+ # The maximum size for a value state field.
6197
+ # Corresponds to the JSON property `maxValueBytes`
6198
+ # @return [Fixnum]
6199
+ attr_accessor :max_value_bytes
6200
+
6201
+ def initialize(**args)
6202
+ update!(**args)
6203
+ end
6204
+
6205
+ # Update properties of this object
6206
+ def update!(**args)
6207
+ @max_bag_element_bytes = args[:max_bag_element_bytes] if args.key?(:max_bag_element_bytes)
6208
+ @max_global_data_bytes = args[:max_global_data_bytes] if args.key?(:max_global_data_bytes)
6209
+ @max_key_bytes = args[:max_key_bytes] if args.key?(:max_key_bytes)
6210
+ @max_production_output_bytes = args[:max_production_output_bytes] if args.key?(:max_production_output_bytes)
6211
+ @max_sorted_list_element_bytes = args[:max_sorted_list_element_bytes] if args.key?(:max_sorted_list_element_bytes)
6212
+ @max_source_state_bytes = args[:max_source_state_bytes] if args.key?(:max_source_state_bytes)
6213
+ @max_tag_bytes = args[:max_tag_bytes] if args.key?(:max_tag_bytes)
6214
+ @max_value_bytes = args[:max_value_bytes] if args.key?(:max_value_bytes)
6215
+ end
6216
+ end
6217
+
6151
6218
  # Contains per-user worker telemetry used in streaming autoscaling.
6152
6219
  class StreamingScalingReport
6153
6220
  include Google::Apis::Core::Hashable
@@ -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.54.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240415"
25
+ REVISION = "20240430"
26
26
  end
27
27
  end
28
28
  end
@@ -940,6 +940,12 @@ module Google
940
940
  include Google::Apis::Core::JsonObjectSupport
941
941
  end
942
942
 
943
+ class StreamingOperationalLimits
944
+ class Representation < Google::Apis::Core::JsonRepresentation; end
945
+
946
+ include Google::Apis::Core::JsonObjectSupport
947
+ end
948
+
943
949
  class StreamingScalingReport
944
950
  class Representation < Google::Apis::Core::JsonRepresentation; end
945
951
 
@@ -2782,6 +2788,8 @@ module Google
2782
2788
  property :commit_stream_chunk_size_bytes, :numeric_string => true, as: 'commitStreamChunkSizeBytes'
2783
2789
  property :get_data_stream_chunk_size_bytes, :numeric_string => true, as: 'getDataStreamChunkSizeBytes'
2784
2790
  property :max_work_item_commit_bytes, :numeric_string => true, as: 'maxWorkItemCommitBytes'
2791
+ property :operational_limits, as: 'operationalLimits', class: Google::Apis::DataflowV1b3::StreamingOperationalLimits, decorator: Google::Apis::DataflowV1b3::StreamingOperationalLimits::Representation
2792
+
2785
2793
  collection :streaming_computation_configs, as: 'streamingComputationConfigs', class: Google::Apis::DataflowV1b3::StreamingComputationConfig, decorator: Google::Apis::DataflowV1b3::StreamingComputationConfig::Representation
2786
2794
 
2787
2795
  hash :user_step_to_state_family_name_map, as: 'userStepToStateFamilyNameMap'
@@ -2790,6 +2798,20 @@ module Google
2790
2798
  end
2791
2799
  end
2792
2800
 
2801
+ class StreamingOperationalLimits
2802
+ # @private
2803
+ class Representation < Google::Apis::Core::JsonRepresentation
2804
+ property :max_bag_element_bytes, :numeric_string => true, as: 'maxBagElementBytes'
2805
+ property :max_global_data_bytes, :numeric_string => true, as: 'maxGlobalDataBytes'
2806
+ property :max_key_bytes, :numeric_string => true, as: 'maxKeyBytes'
2807
+ property :max_production_output_bytes, :numeric_string => true, as: 'maxProductionOutputBytes'
2808
+ property :max_sorted_list_element_bytes, :numeric_string => true, as: 'maxSortedListElementBytes'
2809
+ property :max_source_state_bytes, :numeric_string => true, as: 'maxSourceStateBytes'
2810
+ property :max_tag_bytes, :numeric_string => true, as: 'maxTagBytes'
2811
+ property :max_value_bytes, :numeric_string => true, as: 'maxValueBytes'
2812
+ end
2813
+ end
2814
+
2793
2815
  class StreamingScalingReport
2794
2816
  # @private
2795
2817
  class Representation < Google::Apis::Core::JsonRepresentation
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.54.0
4
+ version: 0.55.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-05-05 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.54.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.55.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: []