google-cloud-support-v2 1.2.0 → 1.2.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: e31853fc8a4eaa7918a7b3f83858a47627db4b85f841218a75dcecb0085f7aa2
4
- data.tar.gz: f3b3b51c01c5ad73bb64173cd2620002da890185b00eef28859af2d97b9beca8
3
+ metadata.gz: 7081f2c900e274630a69000db75523b38992fe719092f3cee82f3ba7a3c919dc
4
+ data.tar.gz: fcb0d5e96623f6edf00205ed57c62c98b12c4d6226dfee614f1848dbbd0f205d
5
5
  SHA512:
6
- metadata.gz: 60d68858ec697a7e1f899ccea5f67c0cbf2f3fa9912f414b4c872fe27311e07ab7f4e18ff683fd2a109673951bd7084871da4ba98e8fafc91806159a716af80e
7
- data.tar.gz: 491eddbda8e5a325e0bc47509ab313f7a30adb5adf583dabd3cf89c08af7bca7b29b7ee687644a3a4b47f5c8d5eb0edea50bc092b4d0ac0e7890c37015fe0c18
6
+ metadata.gz: 6f0cc47ce3d4ada3996ab722ee8293c4aff740042ce61d87724b892942c976a0ddecef5de7098a5f8c65a4e3879ea1744a6ff7eca69903c04c889203f062ab96
7
+ data.tar.gz: 6a59af4e42c0a67b6bc75e50289355bdcfc59ae6ba661a77f3bb779af3e71370ba742a131e43a089513a3becc7e9957b951dbe28c9d3efb7324dd116aaeb43ae
@@ -392,8 +392,8 @@ module Google
392
392
 
393
393
  config_attr :endpoint, nil, ::String, nil
394
394
  config_attr :credentials, nil do |value|
395
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
396
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
395
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
396
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
397
397
  allowed.any? { |klass| klass === value }
398
398
  end
399
399
  config_attr :scope, nil, ::String, ::Array, nil
@@ -1109,8 +1109,8 @@ module Google
1109
1109
 
1110
1110
  config_attr :endpoint, nil, ::String, nil
1111
1111
  config_attr :credentials, nil do |value|
1112
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1113
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1112
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1113
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
1114
1114
  allowed.any? { |klass| klass === value }
1115
1115
  end
1116
1116
  config_attr :scope, nil, ::String, ::Array, nil
@@ -480,8 +480,8 @@ module Google
480
480
 
481
481
  config_attr :endpoint, nil, ::String, nil
482
482
  config_attr :credentials, nil do |value|
483
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
484
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
483
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
484
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
485
485
  allowed.any? { |klass| klass === value }
486
486
  end
487
487
  config_attr :scope, nil, ::String, ::Array, nil
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Support
23
23
  module V2
24
- VERSION = "1.2.0"
24
+ VERSION = "1.2.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-support-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.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
@@ -116,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  requirements: []
119
- rubygems_version: 3.6.2
119
+ rubygems_version: 3.6.8
120
120
  specification_version: 4
121
121
  summary: Manages Google Cloud technical support cases for Customer Care support offerings.
122
122
  test_files: []