google-cloud-workflows-executions-v1beta 0.9.0 → 0.10.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: b17fb39d9137a9977bfac761ed5d4d22d4a41ceb4f7a638859de441f75ec8594
4
- data.tar.gz: c5ba23c970f7dbdbb7b04b3d6902dc2ae05e45588b32c206aacb4cae69ca86c5
3
+ metadata.gz: 838be1765020acc63b05fb7400816f10ae92f18ebf97455e2f3df7e950e04496
4
+ data.tar.gz: a6493241b5c0f38665fd9e0fe611f8f656f45dd53a81e63b56cc1f373489e1f5
5
5
  SHA512:
6
- metadata.gz: 91d8f06190e15eda2280782459c16d0cb6d25c7d575767b01c695239d17788f75c7caf18a1cb5fe98baa61447f9c20a44fa3535b990f87f11972da41914e04a6
7
- data.tar.gz: 2b89923801968bf5eed6261dea9b1931130234bfe689234b69d68902172bb25c7b5a1966107872c47d256ae979595d16ba5a957011f978a6f956ff82ee14af64
6
+ metadata.gz: ede596b0c0f387e07064cb83e607f045bf26d01cf93cd18f7045590f10fa4c447694690745d5e7888d74671b2b1681d9bba78b49c483e41bf61cacece5fd7ee6
7
+ data.tar.gz: 33c1201a1cd2a316104266434c26112fe456fb06e1a5edeb69fd70bf407b3b55023f40a68e88b3a363ef2ec56f9e79eea75802f38bdf789369c7faf13a904c62
data/README.md CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
86
86
 
87
87
  ## Supported Ruby Versions
88
88
 
89
- This library is supported on Ruby 2.7+.
89
+ This library is supported on Ruby 3.0+.
90
90
 
91
91
  Google provides official support for Ruby versions that are actively supported
92
92
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -605,6 +605,13 @@ module Google
605
605
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
606
606
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
607
607
  # * (`nil`) indicating no credentials
608
+ #
609
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
610
+ # external source for authentication to Google Cloud, you must validate it before
611
+ # providing it to a Google API client library. Providing an unvalidated credential
612
+ # configuration to Google APIs can compromise the security of your systems and data.
613
+ # For more information, refer to [Validate credential configurations from external
614
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
608
615
  # @return [::Object]
609
616
  # @!attribute [rw] scope
610
617
  # The OAuth scopes
@@ -659,8 +666,8 @@ module Google
659
666
 
660
667
  config_attr :endpoint, nil, ::String, nil
661
668
  config_attr :credentials, nil do |value|
662
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
663
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
669
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
670
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
664
671
  allowed.any? { |klass| klass === value }
665
672
  end
666
673
  config_attr :scope, nil, ::String, ::Array, nil
@@ -22,7 +22,7 @@ module Google
22
22
  module Workflows
23
23
  module Executions
24
24
  module V1beta
25
- VERSION = "0.9.0"
25
+ VERSION = "0.10.1"
26
26
  end
27
27
  end
28
28
  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,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-workflows-executions-v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.24.0
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -81,7 +80,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
81
80
  licenses:
82
81
  - Apache-2.0
83
82
  metadata: {}
84
- post_install_message:
85
83
  rdoc_options: []
86
84
  require_paths:
87
85
  - lib
@@ -89,15 +87,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
89
87
  requirements:
90
88
  - - ">="
91
89
  - !ruby/object:Gem::Version
92
- version: '2.7'
90
+ version: '3.0'
93
91
  required_rubygems_version: !ruby/object:Gem::Requirement
94
92
  requirements:
95
93
  - - ">="
96
94
  - !ruby/object:Gem::Version
97
95
  version: '0'
98
96
  requirements: []
99
- rubygems_version: 3.5.23
100
- signing_key:
97
+ rubygems_version: 3.6.8
101
98
  specification_version: 4
102
99
  summary: Manages user-provided workflows.
103
100
  test_files: []