google-cloud-security-private_ca-v1 0.4.0 → 0.5.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: c0d2fa1c58177d32ba29744ff241652464d3b88d689c00db9add329a7c8845c4
4
- data.tar.gz: dd5dc68264cb32370cc36cd3ca2d6266e5371d151250a108ce297dbf4d716644
3
+ metadata.gz: 54a4f6d31f5a7703d5e9813db0ef593e43507aa01f5d7749ff77c82a2f54126b
4
+ data.tar.gz: 1af1c59ed8e15480060c1d1e8150659e9362a949b0cf19a91dc297a25092f583
5
5
  SHA512:
6
- metadata.gz: 5d398c2823a265cc02db64655d16c08082a1cbac1d4f7e9ab46eac4eb3363e544a72d912a67e087ca3bfffec59da3b8073af3c17979235f7de02dd201b43127b
7
- data.tar.gz: ca0b5d7da06b051e2599bbb07f38df8433ad71a48f9ef9b2d87b9adce5a249d947f695ffd6127b2f25522ce4fe0bb7b91d1fd430009321524724e0f1732157ea
6
+ metadata.gz: 7e73c8623be189781c9364b510f322ab9ed75132018b20a724e7c068353ba66712c0f6bb353e17bb12dc36ca0c73febc603e4a845502827642a2da90c989c9a7
7
+ data.tar.gz: 17750f37731b00d05b82f7c76178d7a9573d8f700169584e9c46956d4d3444de629be3fd385ce91a85da633a3aff7c1b053b0959184c9ea555510288332fc168
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.