google-apis-dataflow_v1b3 0.37.0 → 0.39.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: 473781066bbbbf6cbddb631d7935c149b379304860df5df47ac90bbe7be814a0
|
4
|
+
data.tar.gz: 320d93db5a232817d394367b58873d87d8de8fb0e083e0b96b78d47aecf07c5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d134b630001b3ce0fe7b48c436bad287c9eb719180c42e472de148ea32d84a7e75d7333a82b59bdbdcea9b7dc836db3101736058bfb0ae36132bd51cd1df5c39
|
7
|
+
data.tar.gz: 79470a9c22854517668445de4417e4f057feac90db5977eb4ac1f49cb4f52f4b7678c93ab18f88f185c962ba9bbfe90bb1d88a64ba2f3548f29999e4ad8ffac3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
2
2
|
|
3
|
+
### v0.39.0 (2023-05-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230514
|
6
|
+
|
7
|
+
### v0.38.0 (2023-05-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230427
|
10
|
+
|
3
11
|
### v0.37.0 (2023-03-19)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230313
|
@@ -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)
|
@@ -3700,6 +3708,12 @@ module Google
|
|
3700
3708
|
attr_accessor :drop_late_data
|
3701
3709
|
alias_method :drop_late_data?, :drop_late_data
|
3702
3710
|
|
3711
|
+
# If true, then this location represents dynamic topics.
|
3712
|
+
# Corresponds to the JSON property `dynamicDestinations`
|
3713
|
+
# @return [Boolean]
|
3714
|
+
attr_accessor :dynamic_destinations
|
3715
|
+
alias_method :dynamic_destinations?, :dynamic_destinations
|
3716
|
+
|
3703
3717
|
# If set, contains a pubsub label from which to extract record ids. If left
|
3704
3718
|
# empty, record deduplication will be strictly best effort.
|
3705
3719
|
# Corresponds to the JSON property `idLabel`
|
@@ -3741,6 +3755,7 @@ module Google
|
|
3741
3755
|
# Update properties of this object
|
3742
3756
|
def update!(**args)
|
3743
3757
|
@drop_late_data = args[:drop_late_data] if args.key?(:drop_late_data)
|
3758
|
+
@dynamic_destinations = args[:dynamic_destinations] if args.key?(:dynamic_destinations)
|
3744
3759
|
@id_label = args[:id_label] if args.key?(:id_label)
|
3745
3760
|
@subscription = args[:subscription] if args.key?(:subscription)
|
3746
3761
|
@timestamp_label = args[:timestamp_label] if args.key?(:timestamp_label)
|
@@ -4116,6 +4131,35 @@ module Google
|
|
4116
4131
|
end
|
4117
4132
|
end
|
4118
4133
|
|
4134
|
+
# Additional job parameters that can only be updated during runtime using the
|
4135
|
+
# projects.jobs.update method. These fields have no effect when specified during
|
4136
|
+
# job creation.
|
4137
|
+
class RuntimeUpdatableParams
|
4138
|
+
include Google::Apis::Core::Hashable
|
4139
|
+
|
4140
|
+
# The maximum number of workers to cap autoscaling at. This field is currently
|
4141
|
+
# only supported for Streaming Engine jobs.
|
4142
|
+
# Corresponds to the JSON property `maxNumWorkers`
|
4143
|
+
# @return [Fixnum]
|
4144
|
+
attr_accessor :max_num_workers
|
4145
|
+
|
4146
|
+
# The minimum number of workers to scale down to. This field is currently only
|
4147
|
+
# supported for Streaming Engine jobs.
|
4148
|
+
# Corresponds to the JSON property `minNumWorkers`
|
4149
|
+
# @return [Fixnum]
|
4150
|
+
attr_accessor :min_num_workers
|
4151
|
+
|
4152
|
+
def initialize(**args)
|
4153
|
+
update!(**args)
|
4154
|
+
end
|
4155
|
+
|
4156
|
+
# Update properties of this object
|
4157
|
+
def update!(**args)
|
4158
|
+
@max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
|
4159
|
+
@min_num_workers = args[:min_num_workers] if args.key?(:min_num_workers)
|
4160
|
+
end
|
4161
|
+
end
|
4162
|
+
|
4119
4163
|
# SDK Information.
|
4120
4164
|
class SdkInfo
|
4121
4165
|
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.39.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 = "20230514"
|
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
|
|
@@ -2020,6 +2028,7 @@ module Google
|
|
2020
2028
|
# @private
|
2021
2029
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2022
2030
|
property :drop_late_data, as: 'dropLateData'
|
2031
|
+
property :dynamic_destinations, as: 'dynamicDestinations'
|
2023
2032
|
property :id_label, as: 'idLabel'
|
2024
2033
|
property :subscription, as: 'subscription'
|
2025
2034
|
property :timestamp_label, as: 'timestampLabel'
|
@@ -2125,6 +2134,14 @@ module Google
|
|
2125
2134
|
end
|
2126
2135
|
end
|
2127
2136
|
|
2137
|
+
class RuntimeUpdatableParams
|
2138
|
+
# @private
|
2139
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2140
|
+
property :max_num_workers, as: 'maxNumWorkers'
|
2141
|
+
property :min_num_workers, as: 'minNumWorkers'
|
2142
|
+
end
|
2143
|
+
end
|
2144
|
+
|
2128
2145
|
class SdkInfo
|
2129
2146
|
# @private
|
2130
2147
|
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.39.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-21 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.39.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: []
|