google-cloud-spanner-admin-instance-v1 0.7.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f45a2207cd5cb3f560c6504539bf0c22747bfc1fbf5b819a44b1e80a9b7e90dc
4
- data.tar.gz: c841443d92e353ad58892d6d7d25295248f90d96df464e5b93cb12fec0092d43
3
+ metadata.gz: 276c00474aac9657725db28deeb043afc788319d7096b5cc570ec495366d2ec8
4
+ data.tar.gz: bae07af2b455584a84d48b718d3eb9eccc9837db8d0cacaf2bf751b50433d9bf
5
5
  SHA512:
6
- metadata.gz: 537f49a02dfd99236269db589838019b206e7b2a9031a44e9ad2d0b8c97c9097dc5e6dda27e2d919b0b86327a12480d9d2760f83d1e9cf283bf4410c4314d0a3
7
- data.tar.gz: d83793984ba607805e75c7fd34e5b808044338c78f0ebf2acbf03f84f0441ec8d5fe3858b51284431154edd054670dd98aecda2b8081f3e5bd5753c97142deb6
6
+ metadata.gz: 9560a499b8ee39cb00b65d99703bc715a654f3af304cb24381e49694eb4d2b9c06ff3b607cc237e4d3fc53590413a29910e278c6cd85f255d8d14d7a7389ec35
7
+ data.tar.gz: 8b3ce86f7c9b563dc46095aa1b023af382df9b41375694417b050b6257a8ffdb0d84bec80751ed7d0fa4aeba3e0e20db5abf8149050a7689e0ae9efe80b294a8
data/AUTHENTICATION.md CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
114
114
  To configure your system for this, simply:
115
115
 
116
116
  1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
117
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
117
+ 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
118
118
  3. Write code as if already authenticated.
119
119
 
120
120
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
data/README.md CHANGED
@@ -46,7 +46,7 @@ for general usage information.
46
46
  ## Enabling Logging
47
47
 
48
48
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
49
+ The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
50
  or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
51
51
  that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
52
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.