google-apis-dataflow_v1b3 0.37.0 → 0.38.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: f48d1436d5b6c587486d5b5152f8f302e19cc1bf733a96cb197cedd765896a3a
|
|
4
|
+
data.tar.gz: 4459e2458b86e1aeb311bf9c19a16109554f1b1bdb9cd35930c24444a9030ed7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c302169ac9f078414de6234c345d4402b51388870803d86aa60824d9c3ee55a9181142f7d0d1a13dd9effffd16c189ca930a23a125390d92f69020e4eb5a8709
|
|
7
|
+
data.tar.gz: e28772b3000868d7c7fc2e085fa7c8dc568b6ddfc3c6fd5e8bccaac1bbf11067aa17a86d3d4e6b5c5db20a5e8a3063c5ffd124c84a67c2bb0188142ba4cb9e1a
|
data/CHANGELOG.md
CHANGED
|
@@ -2191,6 +2191,13 @@ module Google
|
|
|
2191
2191
|
# @return [String]
|
|
2192
2192
|
attr_accessor :requested_state
|
|
2193
2193
|
|
|
2194
|
+
# Additional job parameters that can only be updated during runtime using the
|
|
2195
|
+
# projects.jobs.update method. These fields have no effect when specified during
|
|
2196
|
+
# job creation.
|
|
2197
|
+
# Corresponds to the JSON property `runtimeUpdatableParams`
|
|
2198
|
+
# @return [Google::Apis::DataflowV1b3::RuntimeUpdatableParams]
|
|
2199
|
+
attr_accessor :runtime_updatable_params
|
|
2200
|
+
|
|
2194
2201
|
# Reserved for future use. This field is set only in responses from the server;
|
|
2195
2202
|
# it is ignored if it is set in any requests.
|
|
2196
2203
|
# Corresponds to the JSON property `satisfiesPzs`
|
|
@@ -2267,6 +2274,7 @@ module Google
|
|
|
2267
2274
|
@replace_job_id = args[:replace_job_id] if args.key?(:replace_job_id)
|
|
2268
2275
|
@replaced_by_job_id = args[:replaced_by_job_id] if args.key?(:replaced_by_job_id)
|
|
2269
2276
|
@requested_state = args[:requested_state] if args.key?(:requested_state)
|
|
2277
|
+
@runtime_updatable_params = args[:runtime_updatable_params] if args.key?(:runtime_updatable_params)
|
|
2270
2278
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
2271
2279
|
@stage_states = args[:stage_states] if args.key?(:stage_states)
|
|
2272
2280
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
@@ -4116,6 +4124,35 @@ module Google
|
|
|
4116
4124
|
end
|
|
4117
4125
|
end
|
|
4118
4126
|
|
|
4127
|
+
# Additional job parameters that can only be updated during runtime using the
|
|
4128
|
+
# projects.jobs.update method. These fields have no effect when specified during
|
|
4129
|
+
# job creation.
|
|
4130
|
+
class RuntimeUpdatableParams
|
|
4131
|
+
include Google::Apis::Core::Hashable
|
|
4132
|
+
|
|
4133
|
+
# The maximum number of workers to cap autoscaling at. This field is currently
|
|
4134
|
+
# only supported for Streaming Engine jobs.
|
|
4135
|
+
# Corresponds to the JSON property `maxNumWorkers`
|
|
4136
|
+
# @return [Fixnum]
|
|
4137
|
+
attr_accessor :max_num_workers
|
|
4138
|
+
|
|
4139
|
+
# The minimum number of workers to scale down to. This field is currently only
|
|
4140
|
+
# supported for Streaming Engine jobs.
|
|
4141
|
+
# Corresponds to the JSON property `minNumWorkers`
|
|
4142
|
+
# @return [Fixnum]
|
|
4143
|
+
attr_accessor :min_num_workers
|
|
4144
|
+
|
|
4145
|
+
def initialize(**args)
|
|
4146
|
+
update!(**args)
|
|
4147
|
+
end
|
|
4148
|
+
|
|
4149
|
+
# Update properties of this object
|
|
4150
|
+
def update!(**args)
|
|
4151
|
+
@max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
|
|
4152
|
+
@min_num_workers = args[:min_num_workers] if args.key?(:min_num_workers)
|
|
4153
|
+
end
|
|
4154
|
+
end
|
|
4155
|
+
|
|
4119
4156
|
# SDK Information.
|
|
4120
4157
|
class SdkInfo
|
|
4121
4158
|
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.
|
|
19
|
+
GEM_VERSION = "0.38.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230427"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -604,6 +604,12 @@ module Google
|
|
|
604
604
|
include Google::Apis::Core::JsonObjectSupport
|
|
605
605
|
end
|
|
606
606
|
|
|
607
|
+
class RuntimeUpdatableParams
|
|
608
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
609
|
+
|
|
610
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
611
|
+
end
|
|
612
|
+
|
|
607
613
|
class SdkInfo
|
|
608
614
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
609
615
|
|
|
@@ -1603,6 +1609,8 @@ module Google
|
|
|
1603
1609
|
property :replace_job_id, as: 'replaceJobId'
|
|
1604
1610
|
property :replaced_by_job_id, as: 'replacedByJobId'
|
|
1605
1611
|
property :requested_state, as: 'requestedState'
|
|
1612
|
+
property :runtime_updatable_params, as: 'runtimeUpdatableParams', class: Google::Apis::DataflowV1b3::RuntimeUpdatableParams, decorator: Google::Apis::DataflowV1b3::RuntimeUpdatableParams::Representation
|
|
1613
|
+
|
|
1606
1614
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
1607
1615
|
collection :stage_states, as: 'stageStates', class: Google::Apis::DataflowV1b3::ExecutionStageState, decorator: Google::Apis::DataflowV1b3::ExecutionStageState::Representation
|
|
1608
1616
|
|
|
@@ -2125,6 +2133,14 @@ module Google
|
|
|
2125
2133
|
end
|
|
2126
2134
|
end
|
|
2127
2135
|
|
|
2136
|
+
class RuntimeUpdatableParams
|
|
2137
|
+
# @private
|
|
2138
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2139
|
+
property :max_num_workers, as: 'maxNumWorkers'
|
|
2140
|
+
property :min_num_workers, as: 'minNumWorkers'
|
|
2141
|
+
end
|
|
2142
|
+
end
|
|
2143
|
+
|
|
2128
2144
|
class SdkInfo
|
|
2129
2145
|
# @private
|
|
2130
2146
|
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.
|
|
4
|
+
version: 0.38.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: 2023-
|
|
11
|
+
date: 2023-05-14 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
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.38.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: []
|