google-apis-dataflow_v1b3 0.38.0 → 0.40.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: 523e3ec09eb073fdfd6f2f854c681ea3f91581879beb79c2e151ee4823f97f3a
|
4
|
+
data.tar.gz: e08d0cf6a059df682cbd6ff45a62f0f16db1f13945944540684304013d2f3f85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d87a09c54a4bbfaf1f324cdd32eb7472bebf7e0cb6ee605554f607adcd633e7eae3b333f7c8f236ec59abce35cc6543c69bcef1e5201c71065f1bab73e0e518b
|
7
|
+
data.tar.gz: 3c2a85a1ebabfe9e8a73f615aae97fe9eedb46874ee6fcc91c495afdb22a47b0e4036808fe877682cf2fc0e6fd2d7726bc3e47080b7fd5fdd7f220e1fe047408
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
2
2
|
|
3
|
+
### v0.40.0 (2023-06-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230529
|
6
|
+
|
7
|
+
### v0.39.0 (2023-05-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230514
|
10
|
+
|
3
11
|
### v0.38.0 (2023-05-07)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230427
|
@@ -3708,6 +3708,12 @@ module Google
|
|
3708
3708
|
attr_accessor :drop_late_data
|
3709
3709
|
alias_method :drop_late_data?, :drop_late_data
|
3710
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
|
+
|
3711
3717
|
# If set, contains a pubsub label from which to extract record ids. If left
|
3712
3718
|
# empty, record deduplication will be strictly best effort.
|
3713
3719
|
# Corresponds to the JSON property `idLabel`
|
@@ -3749,6 +3755,7 @@ module Google
|
|
3749
3755
|
# Update properties of this object
|
3750
3756
|
def update!(**args)
|
3751
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)
|
3752
3759
|
@id_label = args[:id_label] if args.key?(:id_label)
|
3753
3760
|
@subscription = args[:subscription] if args.key?(:subscription)
|
3754
3761
|
@timestamp_label = args[:timestamp_label] if args.key?(:timestamp_label)
|
@@ -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.40.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 = "20230529"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2028,6 +2028,7 @@ module Google
|
|
2028
2028
|
# @private
|
2029
2029
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2030
2030
|
property :drop_late_data, as: 'dropLateData'
|
2031
|
+
property :dynamic_destinations, as: 'dynamicDestinations'
|
2031
2032
|
property :id_label, as: 'idLabel'
|
2032
2033
|
property :subscription, as: 'subscription'
|
2033
2034
|
property :timestamp_label, as: 'timestampLabel'
|
@@ -118,7 +118,8 @@ module Google
|
|
118
118
|
execute_or_queue_command(command, &block)
|
119
119
|
end
|
120
120
|
|
121
|
-
# List the jobs of a project across all regions.
|
121
|
+
# List the jobs of a project across all regions. **Note:** This method doesn't
|
122
|
+
# support filtering the list of jobs by name.
|
122
123
|
# @param [String] project_id
|
123
124
|
# The project which owns the jobs.
|
124
125
|
# @param [String] filter
|
@@ -127,7 +128,7 @@ module Google
|
|
127
128
|
# The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
|
128
129
|
# regional-endpoints) that contains this job.
|
129
130
|
# @param [String] name
|
130
|
-
# Optional. The job name.
|
131
|
+
# Optional. The job name.
|
131
132
|
# @param [Fixnum] page_size
|
132
133
|
# If there are many jobs, limit response to at most this many. The actual number
|
133
134
|
# of jobs returned will be the lesser of max_responses and an unspecified server-
|
@@ -311,8 +312,10 @@ module Google
|
|
311
312
|
# recommend using `projects.locations.jobs.list` with a [regional endpoint] (
|
312
313
|
# https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). To list
|
313
314
|
# the all jobs across all regions, use `projects.jobs.aggregated`. Using `
|
314
|
-
# projects.jobs.list` is not recommended,
|
315
|
-
# that are running in `us-central1`.
|
315
|
+
# projects.jobs.list` is not recommended, because you can only get the list of
|
316
|
+
# jobs that are running in `us-central1`. `projects.locations.jobs.list` and `
|
317
|
+
# projects.jobs.list` support filtering the list of jobs by name. Filtering by
|
318
|
+
# name isn't supported by `projects.jobs.aggregated`.
|
316
319
|
# @param [String] project_id
|
317
320
|
# The project which owns the jobs.
|
318
321
|
# @param [String] filter
|
@@ -321,7 +324,7 @@ module Google
|
|
321
324
|
# The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/
|
322
325
|
# regional-endpoints) that contains this job.
|
323
326
|
# @param [String] name
|
324
|
-
# Optional. The job name.
|
327
|
+
# Optional. The job name.
|
325
328
|
# @param [Fixnum] page_size
|
326
329
|
# If there are many jobs, limit response to at most this many. The actual number
|
327
330
|
# of jobs returned will be the lesser of max_responses and an unspecified server-
|
@@ -920,8 +923,10 @@ module Google
|
|
920
923
|
# recommend using `projects.locations.jobs.list` with a [regional endpoint] (
|
921
924
|
# https://cloud.google.com/dataflow/docs/concepts/regional-endpoints). To list
|
922
925
|
# the all jobs across all regions, use `projects.jobs.aggregated`. Using `
|
923
|
-
# projects.jobs.list` is not recommended,
|
924
|
-
# that are running in `us-central1`.
|
926
|
+
# projects.jobs.list` is not recommended, because you can only get the list of
|
927
|
+
# jobs that are running in `us-central1`. `projects.locations.jobs.list` and `
|
928
|
+
# projects.jobs.list` support filtering the list of jobs by name. Filtering by
|
929
|
+
# name isn't supported by `projects.jobs.aggregated`.
|
925
930
|
# @param [String] project_id
|
926
931
|
# The project which owns the jobs.
|
927
932
|
# @param [String] location
|
@@ -930,7 +935,7 @@ module Google
|
|
930
935
|
# @param [String] filter
|
931
936
|
# The kind of filter to use.
|
932
937
|
# @param [String] name
|
933
|
-
# Optional. The job name.
|
938
|
+
# Optional. The job name.
|
934
939
|
# @param [Fixnum] page_size
|
935
940
|
# If there are many jobs, limit response to at most this many. The actual number
|
936
941
|
# of jobs returned will be the lesser of max_responses and an unspecified server-
|
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.40.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-06-11 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.40.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: []
|