google-cloud-security-private_ca-v1 0.3.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: 3459a3c7af6f345720af1c2ab63de621204499cadd1f35fee663d7e7cd8df20b
4
- data.tar.gz: 6a7661d1c40a50d6d99f2bd253826c8d6c3274d84fd31e58e74219aa7936a4c6
3
+ metadata.gz: 54a4f6d31f5a7703d5e9813db0ef593e43507aa01f5d7749ff77c82a2f54126b
4
+ data.tar.gz: 1af1c59ed8e15480060c1d1e8150659e9362a949b0cf19a91dc297a25092f583
5
5
  SHA512:
6
- metadata.gz: 798c9b6f16f49f19bacee265a6f776152039d8b0ea3073f59214b0457716ec063d2a6b2615e41327c751a35af545decaaefb4f55b90634cc7e398ab0bef21d23
7
- data.tar.gz: de3567eae39b2936daab5714650f4838378b6fcc2797b698b92ac0e066c4fec2a57aa242486b3d3bf046ade2170c765d624c9a493b426cbec13473b5d5da2814
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.
@@ -76,14 +76,14 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
76
76
 
77
77
  ## Supported Ruby Versions
78
78
 
79
- This library is supported on Ruby 2.5+.
79
+ This library is supported on Ruby 2.6+.
80
80
 
81
81
  Google provides official support for Ruby versions that are actively supported
82
82
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
83
- in security maintenance, and not end of life. Currently, this means Ruby 2.5
84
- and later. Older versions of Ruby _may_ still work, but are unsupported and not
85
- recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
86
- about the Ruby support schedule.
83
+ in security maintenance, and not end of life. Older versions of Ruby _may_
84
+ still work, but are unsupported and not recommended. See
85
+ https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby
86
+ support schedule.
87
87
 
88
88
  ## Which client should I use?
89
89