google-cloud-spanner-admin-instance-v1 2.0.0 → 2.0.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: bf75e79dc6992f78f469f612fb12aee20e517db5a9b49e7e7e64a8069e2e33dc
4
- data.tar.gz: 5f024a5cb570eb39a95900fe55f711b543427d516189658d4d061285937f21f1
3
+ metadata.gz: 0a01b0433714a8c0b977d02e4e915970ad741bb1c5d4019fc13620fc886cc508
4
+ data.tar.gz: 429aaa105ff0bc283656923e7c07729b2ff2fff3a8d85628660fe8f55873f841
5
5
  SHA512:
6
- metadata.gz: 883618bbc695994ed05b142876b734310a6197cb42b86dc39a7f1e65e3575c11178a72e8800e8d318474f9a5c97bc6a6e5f1150697930983142a4c9b5c5f518e
7
- data.tar.gz: a268fd86d430f882c432a9ec4d1d38135a5436548f3faca0b490562c83188627be78100550c42adf8d199600bddb6990e0dea8166fd31eb9242ef1809d601102
6
+ metadata.gz: fc3381fe9d7d0283c6416395acb46ed173ed0292e2319d95e204b596685a80c8b6f2a6c73ea27429a8e2ed96e602b796fad053a01db4ceede5e08b4cc5ca9f97
7
+ data.tar.gz: ec13ca62110358ba9f1c2cdbc6e09fe89a676a8f4a10a7c1dc939820132302166a0a3c97f65a9f06bb1f47b9b7a491c6a9d28e41572e4dbe334320710dc21b5b
@@ -2897,8 +2897,8 @@ module Google
2897
2897
 
2898
2898
  config_attr :endpoint, nil, ::String, nil
2899
2899
  config_attr :credentials, nil do |value|
2900
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
2901
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
2900
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
2901
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
2902
2902
  allowed.any? { |klass| klass === value }
2903
2903
  end
2904
2904
  config_attr :scope, nil, ::String, ::Array, nil
@@ -703,8 +703,8 @@ module Google
703
703
 
704
704
  config_attr :endpoint, nil, ::String, nil
705
705
  config_attr :credentials, nil do |value|
706
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
707
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
706
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
707
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
708
708
  allowed.any? { |klass| klass === value }
709
709
  end
710
710
  config_attr :scope, nil, ::String, ::Array, nil
@@ -2732,7 +2732,7 @@ module Google
2732
2732
 
2733
2733
  config_attr :endpoint, nil, ::String, nil
2734
2734
  config_attr :credentials, nil do |value|
2735
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
2735
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
2736
2736
  allowed.any? { |klass| klass === value }
2737
2737
  end
2738
2738
  config_attr :scope, nil, ::String, ::Array, nil
@@ -558,7 +558,7 @@ module Google
558
558
 
559
559
  config_attr :endpoint, nil, ::String, nil
560
560
  config_attr :credentials, nil do |value|
561
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
561
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
562
562
  allowed.any? { |klass| klass === value }
563
563
  end
564
564
  config_attr :scope, nil, ::String, ::Array, nil
@@ -23,7 +23,7 @@ module Google
23
23
  module Admin
24
24
  module Instance
25
25
  module V1
26
- VERSION = "2.0.0"
26
+ VERSION = "2.0.1"
27
27
  end
28
28
  end
29
29
  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
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-spanner-admin-instance-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-07 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
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  requirements: []
125
- rubygems_version: 3.6.3
125
+ rubygems_version: 3.6.8
126
126
  specification_version: 4
127
127
  summary: API Client library for the Cloud Spanner Instance Admin V1 API
128
128
  test_files: []