google-apis-dataflow_v1b3 0.1.0 → 0.2.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: 12e46c5bfe883eec0f5bae0415ab00cf8bee3e7c4b870d7d9eac749cd9b4579c
|
|
4
|
+
data.tar.gz: 19b18a695ef41fb5407766b68ed50ed3f4de2cb2acb7dbd2d1394f9a76d9c49e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ea12bbadbb14d6a165623865738ab428feca291c7927f67fd51817ee24a5d4ed034a3160eb7ac96e4bc0bdbdb7addc4f0f1d305059183de5b9164d1a53d295e
|
|
7
|
+
data.tar.gz: 05e3fe3daae7300225dcc6f98eb90de6322d6a6edef6f766f09466010ed04aa084676bdec74259649ed0545a51bf45a4b80f84e2fb200bd5b93a0bf94f186b83
|
data/CHANGELOG.md
CHANGED
|
@@ -1526,6 +1526,12 @@ module Google
|
|
|
1526
1526
|
attr_accessor :enable_streaming_engine
|
|
1527
1527
|
alias_method :enable_streaming_engine?, :enable_streaming_engine
|
|
1528
1528
|
|
|
1529
|
+
# Set FlexRS goal for the job. https://cloud.google.com/dataflow/docs/guides/
|
|
1530
|
+
# flexrs
|
|
1531
|
+
# Corresponds to the JSON property `flexrsGoal`
|
|
1532
|
+
# @return [String]
|
|
1533
|
+
attr_accessor :flexrs_goal
|
|
1534
|
+
|
|
1529
1535
|
# Configuration for VM IPs.
|
|
1530
1536
|
# Corresponds to the JSON property `ipConfiguration`
|
|
1531
1537
|
# @return [String]
|
|
@@ -1615,6 +1621,7 @@ module Google
|
|
|
1615
1621
|
@additional_experiments = args[:additional_experiments] if args.key?(:additional_experiments)
|
|
1616
1622
|
@additional_user_labels = args[:additional_user_labels] if args.key?(:additional_user_labels)
|
|
1617
1623
|
@enable_streaming_engine = args[:enable_streaming_engine] if args.key?(:enable_streaming_engine)
|
|
1624
|
+
@flexrs_goal = args[:flexrs_goal] if args.key?(:flexrs_goal)
|
|
1618
1625
|
@ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
|
|
1619
1626
|
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
|
1620
1627
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
|
@@ -1988,7 +1995,7 @@ module Google
|
|
|
1988
1995
|
end
|
|
1989
1996
|
end
|
|
1990
1997
|
|
|
1991
|
-
# Defines a job to be run by the Cloud Dataflow service.
|
|
1998
|
+
# Defines a job to be run by the Cloud Dataflow service. nextID: 26
|
|
1992
1999
|
class Job
|
|
1993
2000
|
include Google::Apis::Core::Hashable
|
|
1994
2001
|
|
|
@@ -2110,6 +2117,13 @@ module Google
|
|
|
2110
2117
|
# @return [String]
|
|
2111
2118
|
attr_accessor :requested_state
|
|
2112
2119
|
|
|
2120
|
+
# Reserved for future use. This field is set only in responses from the server;
|
|
2121
|
+
# it is ignored if it is set in any requests.
|
|
2122
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
|
2123
|
+
# @return [Boolean]
|
|
2124
|
+
attr_accessor :satisfies_pzs
|
|
2125
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
|
2126
|
+
|
|
2113
2127
|
# This field may be mutated by the Cloud Dataflow service; callers cannot mutate
|
|
2114
2128
|
# it.
|
|
2115
2129
|
# Corresponds to the JSON property `stageStates`
|
|
@@ -2179,6 +2193,7 @@ module Google
|
|
|
2179
2193
|
@replace_job_id = args[:replace_job_id] if args.key?(:replace_job_id)
|
|
2180
2194
|
@replaced_by_job_id = args[:replaced_by_job_id] if args.key?(:replaced_by_job_id)
|
|
2181
2195
|
@requested_state = args[:requested_state] if args.key?(:requested_state)
|
|
2196
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
2182
2197
|
@stage_states = args[:stage_states] if args.key?(:stage_states)
|
|
2183
2198
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
2184
2199
|
@steps = args[:steps] if args.key?(:steps)
|
|
@@ -2498,8 +2513,8 @@ module Google
|
|
|
2498
2513
|
# @return [Hash<String,String>]
|
|
2499
2514
|
attr_accessor :parameters
|
|
2500
2515
|
|
|
2501
|
-
#
|
|
2502
|
-
# newTransformName",...`'
|
|
2516
|
+
# Use this to pass transform_name_mappings for streaming update jobs. Ex:`"
|
|
2517
|
+
# oldTransformName":"newTransformName",...`'
|
|
2503
2518
|
# Corresponds to the JSON property `transformNameMappings`
|
|
2504
2519
|
# @return [Hash<String,String>]
|
|
2505
2520
|
attr_accessor :transform_name_mappings
|
|
@@ -2558,7 +2573,7 @@ module Google
|
|
|
2558
2573
|
class LaunchFlexTemplateResponse
|
|
2559
2574
|
include Google::Apis::Core::Hashable
|
|
2560
2575
|
|
|
2561
|
-
# Defines a job to be run by the Cloud Dataflow service.
|
|
2576
|
+
# Defines a job to be run by the Cloud Dataflow service. nextID: 26
|
|
2562
2577
|
# Corresponds to the JSON property `job`
|
|
2563
2578
|
# @return [Google::Apis::DataflowV1b3::Job]
|
|
2564
2579
|
attr_accessor :job
|
|
@@ -2623,7 +2638,7 @@ module Google
|
|
|
2623
2638
|
class LaunchTemplateResponse
|
|
2624
2639
|
include Google::Apis::Core::Hashable
|
|
2625
2640
|
|
|
2626
|
-
# Defines a job to be run by the Cloud Dataflow service.
|
|
2641
|
+
# Defines a job to be run by the Cloud Dataflow service. nextID: 26
|
|
2627
2642
|
# Corresponds to the JSON property `job`
|
|
2628
2643
|
# @return [Google::Apis::DataflowV1b3::Job]
|
|
2629
2644
|
attr_accessor :job
|
|
@@ -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.2.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.1.
|
|
22
|
+
GENERATOR_VERSION = "0.1.2"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210106"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1460,6 +1460,7 @@ module Google
|
|
|
1460
1460
|
collection :additional_experiments, as: 'additionalExperiments'
|
|
1461
1461
|
hash :additional_user_labels, as: 'additionalUserLabels'
|
|
1462
1462
|
property :enable_streaming_engine, as: 'enableStreamingEngine'
|
|
1463
|
+
property :flexrs_goal, as: 'flexrsGoal'
|
|
1463
1464
|
property :ip_configuration, as: 'ipConfiguration'
|
|
1464
1465
|
property :kms_key_name, as: 'kmsKeyName'
|
|
1465
1466
|
property :machine_type, as: 'machineType'
|
|
@@ -1608,6 +1609,7 @@ module Google
|
|
|
1608
1609
|
property :replace_job_id, as: 'replaceJobId'
|
|
1609
1610
|
property :replaced_by_job_id, as: 'replacedByJobId'
|
|
1610
1611
|
property :requested_state, as: 'requestedState'
|
|
1612
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
1611
1613
|
collection :stage_states, as: 'stageStates', class: Google::Apis::DataflowV1b3::ExecutionStageState, decorator: Google::Apis::DataflowV1b3::ExecutionStageState::Representation
|
|
1612
1614
|
|
|
1613
1615
|
property :start_time, as: 'startTime'
|
|
@@ -349,7 +349,8 @@ module Google
|
|
|
349
349
|
# Set this to the 'next_page_token' field of a previous response to request
|
|
350
350
|
# additional results in a long list.
|
|
351
351
|
# @param [String] view
|
|
352
|
-
#
|
|
352
|
+
# Deprecated. ListJobs always returns summaries now. Use GetJob for other
|
|
353
|
+
# JobViews.
|
|
353
354
|
# @param [String] fields
|
|
354
355
|
# Selector specifying which fields to include in a partial response.
|
|
355
356
|
# @param [String] quota_user
|
|
@@ -538,7 +539,8 @@ module Google
|
|
|
538
539
|
# Set this to the 'next_page_token' field of a previous response to request
|
|
539
540
|
# additional results in a long list.
|
|
540
541
|
# @param [String] view
|
|
541
|
-
#
|
|
542
|
+
# Deprecated. ListJobs always returns summaries now. Use GetJob for other
|
|
543
|
+
# JobViews.
|
|
542
544
|
# @param [String] fields
|
|
543
545
|
# Selector specifying which fields to include in a partial response.
|
|
544
546
|
# @param [String] quota_user
|
|
@@ -1134,7 +1136,8 @@ module Google
|
|
|
1134
1136
|
# Set this to the 'next_page_token' field of a previous response to request
|
|
1135
1137
|
# additional results in a long list.
|
|
1136
1138
|
# @param [String] view
|
|
1137
|
-
#
|
|
1139
|
+
# Deprecated. ListJobs always returns summaries now. Use GetJob for other
|
|
1140
|
+
# JobViews.
|
|
1138
1141
|
# @param [String] fields
|
|
1139
1142
|
# Selector specifying which fields to include in a partial response.
|
|
1140
1143
|
# @param [String] quota_user
|
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.2.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: 2021-
|
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataflow_v1b3/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.2.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataflow_v1b3
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.
|
|
72
|
+
rubygems_version: 3.2.6
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Simple REST client for Dataflow API V1b3
|