google-cloud-dataform-v1beta1 0.14.0 → 0.14.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: b098180ec6a63e35a6016d2623229881664f88392ea6913c17bd8d0bb2554203
|
|
4
|
+
data.tar.gz: b002e4149964fd6c869b3b0b5381b09013ff8b4ea00e2e7850c47a127f08388a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: facf2a92b93043248bd886247808868ee679765d440b6663f9f7b17df9b1001bd31e3ca9ecefb4dde0a0fc6166f2f0472c7789bfdd5a681270881aeb8d9958f5
|
|
7
|
+
data.tar.gz: 30622b22532169a34d1a9b0d9b6aa2f44f08f64c3978b6b57157f3c0676b1140644b428ca58c37c61c0cb40c2e5b49dec38e81c714015d7a72cc14cd4c1bb819
|
|
@@ -5241,8 +5241,6 @@ module Google
|
|
|
5241
5241
|
# @return [::String,nil]
|
|
5242
5242
|
# @!attribute [rw] credentials
|
|
5243
5243
|
# Credentials to send with calls. You may provide any of the following types:
|
|
5244
|
-
# * (`String`) The path to a service account key file in JSON format
|
|
5245
|
-
# * (`Hash`) A service account key as a Hash
|
|
5246
5244
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
5247
5245
|
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
5248
5246
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
@@ -5251,7 +5249,26 @@ module Google
|
|
|
5251
5249
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
5252
5250
|
# * (`nil`) indicating no credentials
|
|
5253
5251
|
#
|
|
5254
|
-
# Warning:
|
|
5252
|
+
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
|
|
5253
|
+
# is deprecated. Providing an unvalidated credential configuration to
|
|
5254
|
+
# Google APIs can compromise the security of your systems and data.
|
|
5255
|
+
#
|
|
5256
|
+
# @example
|
|
5257
|
+
#
|
|
5258
|
+
# # The recommended way to provide credentials is to use the `make_creds` method
|
|
5259
|
+
# # on the appropriate credentials class for your environment.
|
|
5260
|
+
#
|
|
5261
|
+
# require "googleauth"
|
|
5262
|
+
#
|
|
5263
|
+
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
|
|
5264
|
+
# json_key_io: ::File.open("/path/to/keyfile.json")
|
|
5265
|
+
# )
|
|
5266
|
+
#
|
|
5267
|
+
# client = ::Google::Cloud::Dataform::V1beta1::Dataform::Client.new do |config|
|
|
5268
|
+
# config.credentials = credentials
|
|
5269
|
+
# end
|
|
5270
|
+
#
|
|
5271
|
+
# @note Warning: If you accept a credential configuration (JSON file or Hash) from an
|
|
5255
5272
|
# external source for authentication to Google Cloud, you must validate it before
|
|
5256
5273
|
# providing it to a Google API client library. Providing an unvalidated credential
|
|
5257
5274
|
# configuration to Google APIs can compromise the security of your systems and data.
|