google-cloud-filestore-v1 0.2.0 → 0.4.0

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: c8e835ec00127e7323977e718266ba78ff3b9f4840567e8c36dc6f9e87d1cff2
4
- data.tar.gz: 430ab144ff5ef136544cb2cd9cb351929554a830ef37aaba4f0cdc979bad2774
3
+ metadata.gz: 9b70ddabe830810fe6853f9cd5a52a19e226e17ddf50e2e74a5f420bca4b9b4a
4
+ data.tar.gz: 8ee4a7229904377deaf684c0e69135a149710b6db04fcf051947967a3b5c2cf5
5
5
  SHA512:
6
- metadata.gz: 9e490e9ef17d32fa6356328940072769ab9e7ed2a3692a19bec13f23a052fce6021d87b0ae9400a9d776fd421b893fc9760cbfaadaa4c48757e3096647115ae7
7
- data.tar.gz: d7c89714e6d3fa323472dadd20b58b69f9ed3907c4bbc736698536a6a27816a34e91cbe112076c9d8986012c1c7233dbe9aa890d3c7671bab468f30d6445a43f
6
+ metadata.gz: b972375e6c5e185d9001f7d2eb4cf80a9e0f7be5aa0724d5371e48591ba0eb705faaf8f16482638f606178611170640760140ea2c292233a453f6b94d9fc2296
7
+ data.tar.gz: 8b6100d87e495e113265e912b6ac4f0f5ba24745debeda4a69a7f7b477cbb084eb002163feff3de187f9934ea9262aacc6b8fef10e7ad81ed91af62c816abf7e
data/AUTHENTICATION.md CHANGED
@@ -112,7 +112,7 @@ credentials are discovered.
112
112
  To configure your system for this, simply:
113
113
 
114
114
  1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
115
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
115
+ 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
116
116
  3. Write code as if already authenticated.
117
117
 
118
118
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Ruby Client for the Filestore V1 API
2
2
 
3
- API Client library for the Filestore V1 API
3
+ The Cloud Filestore API is used for creating and managing cloud file servers.
4
4
 
5
5
  Filestore instances are fully managed NFS file servers on Google Cloud for use with applications running on Compute Engine virtual machines (VMs) instances or Google Kubernetes Engine clusters.
6
6
 
@@ -46,8 +46,8 @@ 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,
50
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
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
+ or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/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.
53
53