google-apis-dataflow_v1b3 0.74.0 → 0.76.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0a04bc228c17bda398176a3fc929ddc42a4efddd103a369279219c9c17d521b9
|
|
4
|
+
data.tar.gz: 88c711015530faac180cbd11544bab83eaade00c7c68fe6ed50a2112989f08ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09fa10e4e1c62e1d3b6fa7194267c2dbffc428f4a2aae362e99af14fe56554c07830c0009a2bc08913497537a0eb98ff48b20c2b56155be3833adf6dcc2c2505'
|
|
7
|
+
data.tar.gz: 2f0d3e07af9d01d4c50ae9b9a42e57b494ea4c84a65b8b82f5b469015b244e94adf70202a111baf02abd7c868f659620eb8a3c77d830ee529a4797ce61c0b8d7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
|
2
2
|
|
|
3
|
+
### v0.76.0 (2026-02-08)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260127
|
|
6
|
+
|
|
7
|
+
### v0.75.0 (2026-01-25)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260118
|
|
10
|
+
|
|
3
11
|
### v0.74.0 (2025-12-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251214
|
|
@@ -2164,6 +2164,12 @@ module Google
|
|
|
2164
2164
|
class GetWorkerStacktracesRequest
|
|
2165
2165
|
include Google::Apis::Core::Hashable
|
|
2166
2166
|
|
|
2167
|
+
# The end time for the stacktrace query. The returned stacktraces will be a
|
|
2168
|
+
# recent stack trace at or shortly before this time.
|
|
2169
|
+
# Corresponds to the JSON property `endTime`
|
|
2170
|
+
# @return [String]
|
|
2171
|
+
attr_accessor :end_time
|
|
2172
|
+
|
|
2167
2173
|
# The worker for which to get stacktraces. The returned stacktraces will be for
|
|
2168
2174
|
# the SDK harness running on this worker.
|
|
2169
2175
|
# Corresponds to the JSON property `workerId`
|
|
@@ -2176,6 +2182,7 @@ module Google
|
|
|
2176
2182
|
|
|
2177
2183
|
# Update properties of this object
|
|
2178
2184
|
def update!(**args)
|
|
2185
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
|
2179
2186
|
@worker_id = args[:worker_id] if args.key?(:worker_id)
|
|
2180
2187
|
end
|
|
2181
2188
|
end
|
|
@@ -6454,6 +6461,11 @@ module Google
|
|
|
6454
6461
|
# @return [Array<Google::Apis::DataflowV1b3::StreamingComputationConfig>]
|
|
6455
6462
|
attr_accessor :streaming_computation_configs
|
|
6456
6463
|
|
|
6464
|
+
# Optional. The state tag encoding format version for streaming engine jobs.
|
|
6465
|
+
# Corresponds to the JSON property `streamingEngineStateTagEncodingVersion`
|
|
6466
|
+
# @return [Fixnum]
|
|
6467
|
+
attr_accessor :streaming_engine_state_tag_encoding_version
|
|
6468
|
+
|
|
6457
6469
|
# Map from user step names to state families.
|
|
6458
6470
|
# Corresponds to the JSON property `userStepToStateFamilyNameMap`
|
|
6459
6471
|
# @return [Hash<String,String>]
|
|
@@ -6496,6 +6508,7 @@ module Google
|
|
|
6496
6508
|
@max_work_item_commit_bytes = args[:max_work_item_commit_bytes] if args.key?(:max_work_item_commit_bytes)
|
|
6497
6509
|
@operational_limits = args[:operational_limits] if args.key?(:operational_limits)
|
|
6498
6510
|
@streaming_computation_configs = args[:streaming_computation_configs] if args.key?(:streaming_computation_configs)
|
|
6511
|
+
@streaming_engine_state_tag_encoding_version = args[:streaming_engine_state_tag_encoding_version] if args.key?(:streaming_engine_state_tag_encoding_version)
|
|
6499
6512
|
@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)
|
|
6500
6513
|
@user_worker_runner_v1_settings = args[:user_worker_runner_v1_settings] if args.key?(:user_worker_runner_v1_settings)
|
|
6501
6514
|
@user_worker_runner_v2_settings = args[:user_worker_runner_v2_settings] if args.key?(:user_worker_runner_v2_settings)
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.76.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260127"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1759,6 +1759,7 @@ module Google
|
|
|
1759
1759
|
class GetWorkerStacktracesRequest
|
|
1760
1760
|
# @private
|
|
1761
1761
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1762
|
+
property :end_time, as: 'endTime'
|
|
1762
1763
|
property :worker_id, as: 'workerId'
|
|
1763
1764
|
end
|
|
1764
1765
|
end
|
|
@@ -2953,6 +2954,7 @@ module Google
|
|
|
2953
2954
|
|
|
2954
2955
|
collection :streaming_computation_configs, as: 'streamingComputationConfigs', class: Google::Apis::DataflowV1b3::StreamingComputationConfig, decorator: Google::Apis::DataflowV1b3::StreamingComputationConfig::Representation
|
|
2955
2956
|
|
|
2957
|
+
property :streaming_engine_state_tag_encoding_version, as: 'streamingEngineStateTagEncodingVersion'
|
|
2956
2958
|
hash :user_step_to_state_family_name_map, as: 'userStepToStateFamilyNameMap'
|
|
2957
2959
|
property :user_worker_runner_v1_settings, :base64 => true, as: 'userWorkerRunnerV1Settings'
|
|
2958
2960
|
property :user_worker_runner_v2_settings, :base64 => true, as: 'userWorkerRunnerV2Settings'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dataflow_v1b3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.76.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.76.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|