google-shopping-merchant-lfp-v1beta 0.6.0 → 0.6.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 +4 -4
- data/lib/google/shopping/merchant/lfp/v1beta/lfp_inventory_service/client.rb +20 -3
- data/lib/google/shopping/merchant/lfp/v1beta/lfp_merchant_state_service/client.rb +20 -3
- data/lib/google/shopping/merchant/lfp/v1beta/lfp_sale_service/client.rb +20 -3
- data/lib/google/shopping/merchant/lfp/v1beta/lfp_store_service/client.rb +20 -3
- data/lib/google/shopping/merchant/lfp/v1beta/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd0bfec3b28703043635689d8339ccb2208d4d40f91802529df6aa098be02321
|
|
4
|
+
data.tar.gz: 0cbc96c854ef25d50dfcd3fd5c3d16882610b7917cc7281a654f5b7abbe99c09
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc42d2be545fb0da3c21458ee3f7a3ee0854b557a8eb59c43c1991685559a0bf92de013ae04cade01e7fa492538116c0f678762735e75bb93839f5fa676211ee
|
|
7
|
+
data.tar.gz: cc1c13cf3a2c7feaec51bdf61cfe194c1e46bfc6787eaefa2e5caa989b7c06613ff10fcb15e2199037b8c3a2df35f0415320f28254e63aec372f69dc8c2f2b6c
|
|
@@ -316,8 +316,6 @@ module Google
|
|
|
316
316
|
# @return [::String,nil]
|
|
317
317
|
# @!attribute [rw] credentials
|
|
318
318
|
# Credentials to send with calls. You may provide any of the following types:
|
|
319
|
-
# * (`String`) The path to a service account key file in JSON format
|
|
320
|
-
# * (`Hash`) A service account key as a Hash
|
|
321
319
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
322
320
|
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
323
321
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
@@ -326,7 +324,26 @@ module Google
|
|
|
326
324
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
327
325
|
# * (`nil`) indicating no credentials
|
|
328
326
|
#
|
|
329
|
-
# Warning:
|
|
327
|
+
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
|
|
328
|
+
# is deprecated. Providing an unvalidated credential configuration to
|
|
329
|
+
# Google APIs can compromise the security of your systems and data.
|
|
330
|
+
#
|
|
331
|
+
# @example
|
|
332
|
+
#
|
|
333
|
+
# # The recommended way to provide credentials is to use the `make_creds` method
|
|
334
|
+
# # on the appropriate credentials class for your environment.
|
|
335
|
+
#
|
|
336
|
+
# require "googleauth"
|
|
337
|
+
#
|
|
338
|
+
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
|
|
339
|
+
# json_key_io: ::File.open("/path/to/keyfile.json")
|
|
340
|
+
# )
|
|
341
|
+
#
|
|
342
|
+
# client = ::Google::Shopping::Merchant::Lfp::V1beta::LfpInventoryService::Client.new do |config|
|
|
343
|
+
# config.credentials = credentials
|
|
344
|
+
# end
|
|
345
|
+
#
|
|
346
|
+
# @note Warning: If you accept a credential configuration (JSON file or Hash) from an
|
|
330
347
|
# external source for authentication to Google Cloud, you must validate it before
|
|
331
348
|
# providing it to a Google API client library. Providing an unvalidated credential
|
|
332
349
|
# configuration to Google APIs can compromise the security of your systems and data.
|
|
@@ -312,8 +312,6 @@ module Google
|
|
|
312
312
|
# @return [::String,nil]
|
|
313
313
|
# @!attribute [rw] credentials
|
|
314
314
|
# Credentials to send with calls. You may provide any of the following types:
|
|
315
|
-
# * (`String`) The path to a service account key file in JSON format
|
|
316
|
-
# * (`Hash`) A service account key as a Hash
|
|
317
315
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
318
316
|
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
319
317
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
@@ -322,7 +320,26 @@ module Google
|
|
|
322
320
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
323
321
|
# * (`nil`) indicating no credentials
|
|
324
322
|
#
|
|
325
|
-
# Warning:
|
|
323
|
+
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
|
|
324
|
+
# is deprecated. Providing an unvalidated credential configuration to
|
|
325
|
+
# Google APIs can compromise the security of your systems and data.
|
|
326
|
+
#
|
|
327
|
+
# @example
|
|
328
|
+
#
|
|
329
|
+
# # The recommended way to provide credentials is to use the `make_creds` method
|
|
330
|
+
# # on the appropriate credentials class for your environment.
|
|
331
|
+
#
|
|
332
|
+
# require "googleauth"
|
|
333
|
+
#
|
|
334
|
+
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
|
|
335
|
+
# json_key_io: ::File.open("/path/to/keyfile.json")
|
|
336
|
+
# )
|
|
337
|
+
#
|
|
338
|
+
# client = ::Google::Shopping::Merchant::Lfp::V1beta::LfpMerchantStateService::Client.new do |config|
|
|
339
|
+
# config.credentials = credentials
|
|
340
|
+
# end
|
|
341
|
+
#
|
|
342
|
+
# @note Warning: If you accept a credential configuration (JSON file or Hash) from an
|
|
326
343
|
# external source for authentication to Google Cloud, you must validate it before
|
|
327
344
|
# providing it to a Google API client library. Providing an unvalidated credential
|
|
328
345
|
# configuration to Google APIs can compromise the security of your systems and data.
|
|
@@ -314,8 +314,6 @@ module Google
|
|
|
314
314
|
# @return [::String,nil]
|
|
315
315
|
# @!attribute [rw] credentials
|
|
316
316
|
# Credentials to send with calls. You may provide any of the following types:
|
|
317
|
-
# * (`String`) The path to a service account key file in JSON format
|
|
318
|
-
# * (`Hash`) A service account key as a Hash
|
|
319
317
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
320
318
|
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
321
319
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
@@ -324,7 +322,26 @@ module Google
|
|
|
324
322
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
325
323
|
# * (`nil`) indicating no credentials
|
|
326
324
|
#
|
|
327
|
-
# Warning:
|
|
325
|
+
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
|
|
326
|
+
# is deprecated. Providing an unvalidated credential configuration to
|
|
327
|
+
# Google APIs can compromise the security of your systems and data.
|
|
328
|
+
#
|
|
329
|
+
# @example
|
|
330
|
+
#
|
|
331
|
+
# # The recommended way to provide credentials is to use the `make_creds` method
|
|
332
|
+
# # on the appropriate credentials class for your environment.
|
|
333
|
+
#
|
|
334
|
+
# require "googleauth"
|
|
335
|
+
#
|
|
336
|
+
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
|
|
337
|
+
# json_key_io: ::File.open("/path/to/keyfile.json")
|
|
338
|
+
# )
|
|
339
|
+
#
|
|
340
|
+
# client = ::Google::Shopping::Merchant::Lfp::V1beta::LfpSaleService::Client.new do |config|
|
|
341
|
+
# config.credentials = credentials
|
|
342
|
+
# end
|
|
343
|
+
#
|
|
344
|
+
# @note Warning: If you accept a credential configuration (JSON file or Hash) from an
|
|
328
345
|
# external source for authentication to Google Cloud, you must validate it before
|
|
329
346
|
# providing it to a Google API client library. Providing an unvalidated credential
|
|
330
347
|
# configuration to Google APIs can compromise the security of your systems and data.
|
|
@@ -595,8 +595,6 @@ module Google
|
|
|
595
595
|
# @return [::String,nil]
|
|
596
596
|
# @!attribute [rw] credentials
|
|
597
597
|
# Credentials to send with calls. You may provide any of the following types:
|
|
598
|
-
# * (`String`) The path to a service account key file in JSON format
|
|
599
|
-
# * (`Hash`) A service account key as a Hash
|
|
600
598
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
601
599
|
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
602
600
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
@@ -605,7 +603,26 @@ module Google
|
|
|
605
603
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
606
604
|
# * (`nil`) indicating no credentials
|
|
607
605
|
#
|
|
608
|
-
# Warning:
|
|
606
|
+
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
|
|
607
|
+
# is deprecated. Providing an unvalidated credential configuration to
|
|
608
|
+
# Google APIs can compromise the security of your systems and data.
|
|
609
|
+
#
|
|
610
|
+
# @example
|
|
611
|
+
#
|
|
612
|
+
# # The recommended way to provide credentials is to use the `make_creds` method
|
|
613
|
+
# # on the appropriate credentials class for your environment.
|
|
614
|
+
#
|
|
615
|
+
# require "googleauth"
|
|
616
|
+
#
|
|
617
|
+
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
|
|
618
|
+
# json_key_io: ::File.open("/path/to/keyfile.json")
|
|
619
|
+
# )
|
|
620
|
+
#
|
|
621
|
+
# client = ::Google::Shopping::Merchant::Lfp::V1beta::LfpStoreService::Client.new do |config|
|
|
622
|
+
# config.credentials = credentials
|
|
623
|
+
# end
|
|
624
|
+
#
|
|
625
|
+
# @note Warning: If you accept a credential configuration (JSON file or Hash) from an
|
|
609
626
|
# external source for authentication to Google Cloud, you must validate it before
|
|
610
627
|
# providing it to a Google API client library. Providing an unvalidated credential
|
|
611
628
|
# configuration to Google APIs can compromise the security of your systems and data.
|