google-cloud-bigquery-data_exchange-v1beta1 0.11.0 → 0.11.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d578500438cc841fbb1b71c767afc4eea77c7216bcadf85b22aac8e369e0207
|
|
4
|
+
data.tar.gz: 2f445d77fcf40d2a2484e2d25c23cbbb2282c692ba0f95a56766a917ac6c4656
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ec20ba3d5a03da7b2331d64c89520dca5d8f61bcc690bb857dd98129df0f6ccb7681ce38fe9d9a3799ed0972a9e5f225d4800ed1ad788d3acc3fde818b24e72
|
|
7
|
+
data.tar.gz: fa016948e162239ffd85199b285553ad74599f9eb9c39ebcd373df991de71ef89d6786ee8387ad50e828912af5095f7121bb8b8a8489bbeab4b30b0636061230
|
|
@@ -1620,8 +1620,6 @@ module Google
|
|
|
1620
1620
|
# @return [::String,nil]
|
|
1621
1621
|
# @!attribute [rw] credentials
|
|
1622
1622
|
# Credentials to send with calls. You may provide any of the following types:
|
|
1623
|
-
# * (`String`) The path to a service account key file in JSON format
|
|
1624
|
-
# * (`Hash`) A service account key as a Hash
|
|
1625
1623
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
1626
1624
|
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
1627
1625
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
@@ -1630,7 +1628,26 @@ module Google
|
|
|
1630
1628
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
1631
1629
|
# * (`nil`) indicating no credentials
|
|
1632
1630
|
#
|
|
1633
|
-
# Warning:
|
|
1631
|
+
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
|
|
1632
|
+
# is deprecated. Providing an unvalidated credential configuration to
|
|
1633
|
+
# Google APIs can compromise the security of your systems and data.
|
|
1634
|
+
#
|
|
1635
|
+
# @example
|
|
1636
|
+
#
|
|
1637
|
+
# # The recommended way to provide credentials is to use the `make_creds` method
|
|
1638
|
+
# # on the appropriate credentials class for your environment.
|
|
1639
|
+
#
|
|
1640
|
+
# require "googleauth"
|
|
1641
|
+
#
|
|
1642
|
+
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
|
|
1643
|
+
# json_key_io: ::File.open("/path/to/keyfile.json")
|
|
1644
|
+
# )
|
|
1645
|
+
#
|
|
1646
|
+
# client = ::Google::Cloud::Bigquery::DataExchange::V1beta1::AnalyticsHubService::Client.new do |config|
|
|
1647
|
+
# config.credentials = credentials
|
|
1648
|
+
# end
|
|
1649
|
+
#
|
|
1650
|
+
# @note Warning: If you accept a credential configuration (JSON file or Hash) from an
|
|
1634
1651
|
# external source for authentication to Google Cloud, you must validate it before
|
|
1635
1652
|
# providing it to a Google API client library. Providing an unvalidated credential
|
|
1636
1653
|
# configuration to Google APIs can compromise the security of your systems and data.
|