google-shopping-merchant-quota-v1beta 0.2.0 → 0.3.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: 199f1c83504c3155f652f54d055b1d3328973c3d70e7f4eae9756525eac77438
4
- data.tar.gz: c595461ba5f3125337dc3d20539cf8ee3285eb03d8ef4cf2dc9d4687853791e2
3
+ metadata.gz: ce8467d7a1dfe2b72da59626b860cfd8cbcadc737118250f852eaf42b1cc58eb
4
+ data.tar.gz: 13ed8873e7240817aa351a47ff7f3fb3e8f3a7905b7b0b47f6d43f39c0365049
5
5
  SHA512:
6
- metadata.gz: 4ec7bd73b55d0d149108dc44a22d3cfc6b1f45d1712422f21b33a42b9a080e6cca6b228efccaab16a4bcb7a7c3b5e5c9c6c538032020e28e8b7f65cc4b68e730
7
- data.tar.gz: 63093f8268232d8bc421d1655248467d2d44cde8c67120cab47bbe031c83ffebc45e06b77b3d8a58636334f14a2386eb41ec6b729e17cf700600d489c6df2c60
6
+ metadata.gz: 7f065dc7a82350f28f6710d1f74f3d1c60d111399f57cecf5263cbd1e2436b7c7365a94e64eb09fbd348615c94d9296c915f3d39688886ff160651a1df90f18d
7
+ data.tar.gz: 8e52a7c618cf641527a720728cfaf00d5402e439d53830c1fb8eb417cfae4eab12c47a2afdd91506833d13672f0192ba7bb7e2ceecec96960578944e10dfb14b
data/README.md CHANGED
@@ -85,7 +85,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
85
85
 
86
86
  ## Supported Ruby Versions
87
87
 
88
- This library is supported on Ruby 2.7+.
88
+ This library is supported on Ruby 3.0+.
89
89
 
90
90
  Google provides official support for Ruby versions that are actively supported
91
91
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -332,6 +332,13 @@ module Google
332
332
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
333
333
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
334
334
  # * (`nil`) indicating no credentials
335
+ #
336
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
337
+ # external source for authentication to Google Cloud, you must validate it before
338
+ # providing it to a Google API client library. Providing an unvalidated credential
339
+ # configuration to Google APIs can compromise the security of your systems and data.
340
+ # For more information, refer to [Validate credential configurations from external
341
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
335
342
  # @return [::Object]
336
343
  # @!attribute [rw] scope
337
344
  # The OAuth scopes
@@ -386,8 +393,8 @@ module Google
386
393
 
387
394
  config_attr :endpoint, nil, ::String, nil
388
395
  config_attr :credentials, nil do |value|
389
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
390
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
396
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
397
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
391
398
  allowed.any? { |klass| klass === value }
392
399
  end
393
400
  config_attr :scope, nil, ::String, ::Array, nil
@@ -316,6 +316,13 @@ module Google
316
316
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
317
317
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
318
318
  # * (`nil`) indicating no credentials
319
+ #
320
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
321
+ # external source for authentication to Google Cloud, you must validate it before
322
+ # providing it to a Google API client library. Providing an unvalidated credential
323
+ # configuration to Google APIs can compromise the security of your systems and data.
324
+ # For more information, refer to [Validate credential configurations from external
325
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
319
326
  # @return [::Object]
320
327
  # @!attribute [rw] scope
321
328
  # The OAuth scopes
@@ -363,7 +370,7 @@ module Google
363
370
 
364
371
  config_attr :endpoint, nil, ::String, nil
365
372
  config_attr :credentials, nil do |value|
366
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
373
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
367
374
  allowed.any? { |klass| klass === value }
368
375
  end
369
376
  config_attr :scope, nil, ::String, ::Array, nil
@@ -22,7 +22,7 @@ module Google
22
22
  module Merchant
23
23
  module Quota
24
24
  module V1beta
25
- VERSION = "0.2.0"
25
+ VERSION = "0.3.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-quota-v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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: Programmatically manage your Merchant Center accounts.
103
100
  test_files: []