google-cloud-bigtable-v2 1.10.0 → 1.10.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: 5361712d7da92b32643b8fb8b69c245ce814df515f00dff763797ca7ee014a87
|
|
4
|
+
data.tar.gz: d2fefd82d860d90268335a9595c094afeef3834d82338f46bb3dc15227060961
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e02f1d1af5be3be76a77801c2b096a181f0c7a0fc898e3d8937a0a31038bdec6ab5eced701c6f730f8dff3b005659a71a7d106dc9560b8f04309379ffadc2ef
|
|
7
|
+
data.tar.gz: d448c27f6f2caf91ab1aa866aa356939ca4dc829ffc4e37730d0f70de90aea1e24faa70d9ffd32c670178224af6d89dc648e72bcb669d0691a07bc72efc69b57
|
|
@@ -1579,8 +1579,6 @@ module Google
|
|
|
1579
1579
|
# @return [::String,nil]
|
|
1580
1580
|
# @!attribute [rw] credentials
|
|
1581
1581
|
# Credentials to send with calls. You may provide any of the following types:
|
|
1582
|
-
# * (`String`) The path to a service account key file in JSON format
|
|
1583
|
-
# * (`Hash`) A service account key as a Hash
|
|
1584
1582
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
1585
1583
|
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
1586
1584
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
@@ -1589,7 +1587,26 @@ module Google
|
|
|
1589
1587
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
1590
1588
|
# * (`nil`) indicating no credentials
|
|
1591
1589
|
#
|
|
1592
|
-
# Warning:
|
|
1590
|
+
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
|
|
1591
|
+
# is deprecated. Providing an unvalidated credential configuration to
|
|
1592
|
+
# Google APIs can compromise the security of your systems and data.
|
|
1593
|
+
#
|
|
1594
|
+
# @example
|
|
1595
|
+
#
|
|
1596
|
+
# # The recommended way to provide credentials is to use the `make_creds` method
|
|
1597
|
+
# # on the appropriate credentials class for your environment.
|
|
1598
|
+
#
|
|
1599
|
+
# require "googleauth"
|
|
1600
|
+
#
|
|
1601
|
+
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
|
|
1602
|
+
# json_key_io: ::File.open("/path/to/keyfile.json")
|
|
1603
|
+
# )
|
|
1604
|
+
#
|
|
1605
|
+
# client = ::Google::Cloud::Bigtable::V2::Bigtable::Client.new do |config|
|
|
1606
|
+
# config.credentials = credentials
|
|
1607
|
+
# end
|
|
1608
|
+
#
|
|
1609
|
+
# @note Warning: If you accept a credential configuration (JSON file or Hash) from an
|
|
1593
1610
|
# external source for authentication to Google Cloud, you must validate it before
|
|
1594
1611
|
# providing it to a Google API client library. Providing an unvalidated credential
|
|
1595
1612
|
# configuration to Google APIs can compromise the security of your systems and data.
|