google-cloud-dataflow-v1beta3 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6eb6b3eb62d3de2c1f6c89f7692f65ed4448d834eb365e6c148eb0a8ab6e9b01
|
4
|
+
data.tar.gz: 4f2e9be1c043e68b7b2013242400250469f7497ff268a028602ffc7cb7b6a4f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a61054a687e894c2a00b692af6cde94cf21b403cd5fb43dea6b2bd586e0543623cac55e46f29bb561bb28201af98973146824f5792d048ec7a9e85e6899e3274
|
7
|
+
data.tar.gz: ce968627a3afc26faffc65d59c33de12f4ddb0426bd6b46fa33bf56de639ef444910a74ac385656346cd63e3671a2704a20805508e8d3ac7c4e5560dcbc53625
|
@@ -500,10 +500,10 @@ module Google
|
|
500
500
|
# (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that
|
501
501
|
# contains this job.
|
502
502
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
503
|
-
# @yieldparam result [::Google::Cloud::Dataflow::V1beta3::
|
503
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataflow::V1beta3::Job>]
|
504
504
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
505
505
|
#
|
506
|
-
# @return [::Google::Cloud::Dataflow::V1beta3::
|
506
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataflow::V1beta3::Job>]
|
507
507
|
#
|
508
508
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
509
509
|
#
|
@@ -555,7 +555,9 @@ module Google
|
|
555
555
|
retry_policy: @config.retry_policy
|
556
556
|
|
557
557
|
@jobs_stub.list_jobs request, options do |result, operation|
|
558
|
+
result = ::Gapic::Rest::PagedEnumerable.new @jobs_stub, :list_jobs, "jobs", request, result, options
|
558
559
|
yield result, operation if block_given?
|
560
|
+
throw :response, result
|
559
561
|
end
|
560
562
|
rescue ::Gapic::Rest::Error => e
|
561
563
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -598,10 +600,10 @@ module Google
|
|
598
600
|
# (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that
|
599
601
|
# contains this job.
|
600
602
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
601
|
-
# @yieldparam result [::Google::Cloud::Dataflow::V1beta3::
|
603
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataflow::V1beta3::Job>]
|
602
604
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
603
605
|
#
|
604
|
-
# @return [::Google::Cloud::Dataflow::V1beta3::
|
606
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataflow::V1beta3::Job>]
|
605
607
|
#
|
606
608
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
607
609
|
#
|
@@ -653,7 +655,9 @@ module Google
|
|
653
655
|
retry_policy: @config.retry_policy
|
654
656
|
|
655
657
|
@jobs_stub.aggregated_list_jobs request, options do |result, operation|
|
658
|
+
result = ::Gapic::Rest::PagedEnumerable.new @jobs_stub, :aggregated_list_jobs, "jobs", request, result, options
|
656
659
|
yield result, operation if block_given?
|
660
|
+
throw :response, result
|
657
661
|
end
|
658
662
|
rescue ::Gapic::Rest::Error => e
|
659
663
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -226,10 +226,10 @@ module Google
|
|
226
226
|
# (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that
|
227
227
|
# contains the job specified by job_id.
|
228
228
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
229
|
-
# @yieldparam result [::Google::Cloud::Dataflow::V1beta3::
|
229
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataflow::V1beta3::JobMessage>]
|
230
230
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
231
231
|
#
|
232
|
-
# @return [::Google::Cloud::Dataflow::V1beta3::
|
232
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dataflow::V1beta3::JobMessage>]
|
233
233
|
#
|
234
234
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
235
235
|
#
|
@@ -281,7 +281,9 @@ module Google
|
|
281
281
|
retry_policy: @config.retry_policy
|
282
282
|
|
283
283
|
@messages_stub.list_job_messages request, options do |result, operation|
|
284
|
+
result = ::Gapic::Rest::PagedEnumerable.new @messages_stub, :list_job_messages, "job_messages", request, result, options
|
284
285
|
yield result, operation if block_given?
|
286
|
+
throw :response, result
|
285
287
|
end
|
286
288
|
rescue ::Gapic::Rest::Error => e
|
287
289
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -409,6 +409,14 @@ module Google
|
|
409
409
|
# @return [::Array<::String>]
|
410
410
|
# An allowlist of the fully qualified names of RPCs that should be included
|
411
411
|
# on public client surfaces.
|
412
|
+
# @!attribute [rw] generate_omitted_as_internal
|
413
|
+
# @return [::Boolean]
|
414
|
+
# Setting this to true indicates to the client generators that methods
|
415
|
+
# that would be excluded from the generation should instead be generated
|
416
|
+
# in a way that indicates these methods should not be consumed by
|
417
|
+
# end users. How this is expressed is up to individual language
|
418
|
+
# implementations to decide. Some examples may be: added annotations,
|
419
|
+
# obfuscated identifiers, or other language idiomatic patterns.
|
412
420
|
class SelectiveGapicGeneration
|
413
421
|
include ::Google::Protobuf::MessageExts
|
414
422
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-dataflow-v1beta3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-02-07 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: gapic-common
|
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
143
|
- !ruby/object:Gem::Version
|
144
144
|
version: '0'
|
145
145
|
requirements: []
|
146
|
-
rubygems_version: 3.6.
|
146
|
+
rubygems_version: 3.6.3
|
147
147
|
specification_version: 4
|
148
148
|
summary: Manages Google Cloud Dataflow projects on Google Cloud Platform.
|
149
149
|
test_files: []
|