google-shopping-merchant-reviews-v1beta 0.1.0 → 0.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: de57cbfe1338c1d4887d91b2169c43ff0f6aa11d8199ec88401882a7b70da416
4
- data.tar.gz: d5076b76c430b156161c48e7b41ce015dc8817b8e9e0858df3e10902165d6841
3
+ metadata.gz: bf7f6ef341b288e0dbb6c232e2d7d802c53472e00fc9304dcb896f496dd95352
4
+ data.tar.gz: 36c5d5a1332b91a1f59394dbcfa7175414d944ba5bad0bb8e9c7ded1be5b56c4
5
5
  SHA512:
6
- metadata.gz: 1c5a44e30f2d5f903ea6e49ff86b84977277299e2a87931b8b95e667c99f98f5ad157e9953977c27f65680aa477c758d3314981b55d6527e97da173e007a4256
7
- data.tar.gz: 5ec90847901efa0fd9341b30b92aaac6a4136ea17e7743aed9de1f2c532f6082bd6745e6aa10fcbb2eb1c12c7e23472b9f8c367cacf57fd0166f76a457ef8944
6
+ metadata.gz: 38277d829f8336241ca418338968643a76952df10270ad98cbc40fdba1d3ceb1d5fb13b86e8f27ec2ff6f38b1475465ee9417fa27b09554237bd9b09d3943325
7
+ data.tar.gz: 86c88c2d880396588b191f28a708574115da63d33967cb5a1e5e0559dd33f0e7ccd6093fdbddc5fb130361637dd9b43e0a33965343412adf29ac751ea0b424da
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
@@ -602,6 +602,13 @@ module Google
602
602
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
603
603
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
604
604
  # * (`nil`) indicating no credentials
605
+ #
606
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
607
+ # external source for authentication to Google Cloud, you must validate it before
608
+ # providing it to a Google API client library. Providing an unvalidated credential
609
+ # configuration to Google APIs can compromise the security of your systems and data.
610
+ # For more information, refer to [Validate credential configurations from external
611
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
605
612
  # @return [::Object]
606
613
  # @!attribute [rw] scope
607
614
  # The OAuth scopes
@@ -656,8 +663,8 @@ module Google
656
663
 
657
664
  config_attr :endpoint, nil, ::String, nil
658
665
  config_attr :credentials, nil do |value|
659
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
660
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
666
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
667
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
661
668
  allowed.any? { |klass| klass === value }
662
669
  end
663
670
  config_attr :scope, nil, ::String, ::Array, nil
@@ -565,6 +565,13 @@ module Google
565
565
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
566
566
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
567
567
  # * (`nil`) indicating no credentials
568
+ #
569
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
570
+ # external source for authentication to Google Cloud, you must validate it before
571
+ # providing it to a Google API client library. Providing an unvalidated credential
572
+ # configuration to Google APIs can compromise the security of your systems and data.
573
+ # For more information, refer to [Validate credential configurations from external
574
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
568
575
  # @return [::Object]
569
576
  # @!attribute [rw] scope
570
577
  # The OAuth scopes
@@ -612,7 +619,7 @@ module Google
612
619
 
613
620
  config_attr :endpoint, nil, ::String, nil
614
621
  config_attr :credentials, nil do |value|
615
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
622
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
616
623
  allowed.any? { |klass| klass === value }
617
624
  end
618
625
  config_attr :scope, nil, ::String, ::Array, nil
@@ -597,6 +597,13 @@ module Google
597
597
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
598
598
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
599
599
  # * (`nil`) indicating no credentials
600
+ #
601
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
602
+ # external source for authentication to Google Cloud, you must validate it before
603
+ # providing it to a Google API client library. Providing an unvalidated credential
604
+ # configuration to Google APIs can compromise the security of your systems and data.
605
+ # For more information, refer to [Validate credential configurations from external
606
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
600
607
  # @return [::Object]
601
608
  # @!attribute [rw] scope
602
609
  # The OAuth scopes
@@ -651,8 +658,8 @@ module Google
651
658
 
652
659
  config_attr :endpoint, nil, ::String, nil
653
660
  config_attr :credentials, nil do |value|
654
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
655
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
661
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
662
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
656
663
  allowed.any? { |klass| klass === value }
657
664
  end
658
665
  config_attr :scope, nil, ::String, ::Array, nil
@@ -560,6 +560,13 @@ module Google
560
560
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
561
561
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
562
562
  # * (`nil`) indicating no credentials
563
+ #
564
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
565
+ # external source for authentication to Google Cloud, you must validate it before
566
+ # providing it to a Google API client library. Providing an unvalidated credential
567
+ # configuration to Google APIs can compromise the security of your systems and data.
568
+ # For more information, refer to [Validate credential configurations from external
569
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
563
570
  # @return [::Object]
564
571
  # @!attribute [rw] scope
565
572
  # The OAuth scopes
@@ -607,7 +614,7 @@ module Google
607
614
 
608
615
  config_attr :endpoint, nil, ::String, nil
609
616
  config_attr :credentials, nil do |value|
610
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
617
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
611
618
  allowed.any? { |klass| klass === value }
612
619
  end
613
620
  config_attr :scope, nil, ::String, ::Array, nil
@@ -22,7 +22,7 @@ module Google
22
22
  module Merchant
23
23
  module Reviews
24
24
  module V1beta
25
- VERSION = "0.1.0"
25
+ VERSION = "0.2.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-shopping-merchant-reviews-v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-08 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
@@ -130,7 +129,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
130
129
  licenses:
131
130
  - Apache-2.0
132
131
  metadata: {}
133
- post_install_message:
134
132
  rdoc_options: []
135
133
  require_paths:
136
134
  - lib
@@ -138,15 +136,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
138
136
  requirements:
139
137
  - - ">="
140
138
  - !ruby/object:Gem::Version
141
- version: '2.7'
139
+ version: '3.0'
142
140
  required_rubygems_version: !ruby/object:Gem::Requirement
143
141
  requirements:
144
142
  - - ">="
145
143
  - !ruby/object:Gem::Version
146
144
  version: '0'
147
145
  requirements: []
148
- rubygems_version: 3.5.23
149
- signing_key:
146
+ rubygems_version: 3.6.8
150
147
  specification_version: 4
151
148
  summary: Programmatically manage your Merchant Center Accounts.
152
149
  test_files: []