google-cloud-dataflow-v1beta3 0.11.0 → 0.12.1

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: 3907a6695ac547d130ac4281f6904751200d6f8b9253d9045ff7e07eb957f886
4
- data.tar.gz: 8fdf5822f03743a0c385bb16ad086d03285c338c8b429a94cd05c5b13d7f24c0
3
+ metadata.gz: 873a2e37b1b4537a0d87ff8b245b79ef73d9379ea884d3d25ffd80bdfb7736e3
4
+ data.tar.gz: e5cf8a0ca682644615e0568124048495e057514f227219325a0dc73ff4eadb3c
5
5
  SHA512:
6
- metadata.gz: 204f7c1bf35c355735706dc90d0049f4c0480f192cb48ad5859a1363d90fda8e059601a48be0ebcc3ac71fc73d96a92be9e8cc23937cb9ebd872fe4c4308d806
7
- data.tar.gz: f54bcd2599f48dd22b88a9e604021c4258810d22de3d025605623eaea280f63e4bd478eb958c72a9ecb121d9be0f5adce9983be38cd5934776a5c864fe27ac5d
6
+ metadata.gz: aee28098a17608f4586e7042503a933dccdd7c294cf75a496e80ba9f90ae0418ea560dd3ab93b2563a02a8b8ce8fc3f95097e6f31f1422bee71d5c64aa782dd0
7
+ data.tar.gz: dd001e57ea9307961a54f68770ba9aaea0ac96c4110ffe7c5aa1ecaab2ce892be732796dfc970d8720b6fcabaa6e98d224c2b85450e5e999d0b09faa280ef833
@@ -383,8 +383,8 @@ module Google
383
383
 
384
384
  config_attr :endpoint, nil, ::String, nil
385
385
  config_attr :credentials, nil do |value|
386
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
387
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
386
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
387
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
388
388
  allowed.any? { |klass| klass === value }
389
389
  end
390
390
  config_attr :scope, nil, ::String, ::Array, nil
@@ -357,7 +357,7 @@ module Google
357
357
 
358
358
  config_attr :endpoint, nil, ::String, nil
359
359
  config_attr :credentials, nil do |value|
360
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
360
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
361
361
  allowed.any? { |klass| klass === value }
362
362
  end
363
363
  config_attr :scope, nil, ::String, ::Array, nil
@@ -1006,8 +1006,8 @@ module Google
1006
1006
 
1007
1007
  config_attr :endpoint, nil, ::String, nil
1008
1008
  config_attr :credentials, nil do |value|
1009
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1010
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1009
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1010
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
1011
1011
  allowed.any? { |klass| klass === value }
1012
1012
  end
1013
1013
  config_attr :scope, nil, ::String, ::Array, nil
@@ -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::ListJobsResponse]
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::ListJobsResponse]
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::ListJobsResponse]
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::ListJobsResponse]
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)
@@ -843,7 +847,7 @@ module Google
843
847
 
844
848
  config_attr :endpoint, nil, ::String, nil
845
849
  config_attr :credentials, nil do |value|
846
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
850
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
847
851
  allowed.any? { |klass| klass === value }
848
852
  end
849
853
  config_attr :scope, nil, ::String, ::Array, nil
@@ -414,8 +414,8 @@ module Google
414
414
 
415
415
  config_attr :endpoint, nil, ::String, nil
416
416
  config_attr :credentials, nil do |value|
417
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
418
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
417
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
418
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
419
419
  allowed.any? { |klass| klass === value }
420
420
  end
421
421
  config_attr :scope, nil, ::String, ::Array, nil
@@ -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::ListJobMessagesResponse]
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::ListJobMessagesResponse]
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)
@@ -383,7 +385,7 @@ module Google
383
385
 
384
386
  config_attr :endpoint, nil, ::String, nil
385
387
  config_attr :credentials, nil do |value|
386
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
388
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
387
389
  allowed.any? { |klass| klass === value }
388
390
  end
389
391
  config_attr :scope, nil, ::String, ::Array, nil
@@ -631,8 +631,8 @@ module Google
631
631
 
632
632
  config_attr :endpoint, nil, ::String, nil
633
633
  config_attr :credentials, nil do |value|
634
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
635
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
634
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
635
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
636
636
  allowed.any? { |klass| klass === value }
637
637
  end
638
638
  config_attr :scope, nil, ::String, ::Array, nil
@@ -573,7 +573,7 @@ module Google
573
573
 
574
574
  config_attr :endpoint, nil, ::String, nil
575
575
  config_attr :credentials, nil do |value|
576
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
576
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
577
577
  allowed.any? { |klass| klass === value }
578
578
  end
579
579
  config_attr :scope, nil, ::String, ::Array, nil
@@ -573,8 +573,8 @@ module Google
573
573
 
574
574
  config_attr :endpoint, nil, ::String, nil
575
575
  config_attr :credentials, nil do |value|
576
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
577
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
576
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
577
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
578
578
  allowed.any? { |klass| klass === value }
579
579
  end
580
580
  config_attr :scope, nil, ::String, ::Array, nil
@@ -518,7 +518,7 @@ module Google
518
518
 
519
519
  config_attr :endpoint, nil, ::String, nil
520
520
  config_attr :credentials, nil do |value|
521
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
521
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
522
522
  allowed.any? { |klass| klass === value }
523
523
  end
524
524
  config_attr :scope, nil, ::String, ::Array, nil
@@ -596,8 +596,8 @@ module Google
596
596
 
597
597
  config_attr :endpoint, nil, ::String, nil
598
598
  config_attr :credentials, nil do |value|
599
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
600
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
599
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
600
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
601
601
  allowed.any? { |klass| klass === value }
602
602
  end
603
603
  config_attr :scope, nil, ::String, ::Array, nil
@@ -550,7 +550,7 @@ module Google
550
550
 
551
551
  config_attr :endpoint, nil, ::String, nil
552
552
  config_attr :credentials, nil do |value|
553
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
553
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
554
554
  allowed.any? { |klass| klass === value }
555
555
  end
556
556
  config_attr :scope, nil, ::String, ::Array, nil
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Dataflow
23
23
  module V1beta3
24
- VERSION = "0.11.0"
24
+ VERSION = "0.12.1"
25
25
  end
26
26
  end
27
27
  end
@@ -221,6 +221,12 @@ module Google
221
221
  # Pythonic which are included in `protobuf>=5.29.x`. This feature will be
222
222
  # enabled by default 1 month after launching the feature in preview
223
223
  # packages.
224
+ # @!attribute [rw] unversioned_package_disabled
225
+ # @return [::Boolean]
226
+ # Disables generation of an unversioned Python package for this client
227
+ # library. This means that the module names will need to be versioned in
228
+ # import statements. For example `import google.cloud.library_v2` instead
229
+ # of `import google.cloud.library`.
224
230
  class ExperimentalFeatures
225
231
  include ::Google::Protobuf::MessageExts
226
232
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -409,6 +415,14 @@ module Google
409
415
  # @return [::Array<::String>]
410
416
  # An allowlist of the fully qualified names of RPCs that should be included
411
417
  # on public client surfaces.
418
+ # @!attribute [rw] generate_omitted_as_internal
419
+ # @return [::Boolean]
420
+ # Setting this to true indicates to the client generators that methods
421
+ # that would be excluded from the generation should instead be generated
422
+ # in a way that indicates these methods should not be consumed by
423
+ # end users. How this is expressed is up to individual language
424
+ # implementations to decide. Some examples may be: added annotations,
425
+ # obfuscated identifiers, or other language idiomatic patterns.
412
426
  class SelectiveGapicGeneration
413
427
  include ::Google::Protobuf::MessageExts
414
428
  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.11.0
4
+ version: 0.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-29 00:00:00.000000000 Z
10
+ date: 1980-01-02 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.2
146
+ rubygems_version: 3.6.8
147
147
  specification_version: 4
148
148
  summary: Manages Google Cloud Dataflow projects on Google Cloud Platform.
149
149
  test_files: []