google-cloud-filestore-v1 0.2.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +1 -1
- data/README.md +3 -3
- data/lib/google/cloud/filestore/v1/cloud_filestore_manager/client.rb +575 -60
- data/lib/google/cloud/filestore/v1/cloud_filestore_manager/operations.rb +14 -16
- data/lib/google/cloud/filestore/v1/cloud_filestore_manager/paths.rb +21 -0
- data/lib/google/cloud/filestore/v1/cloud_filestore_manager/rest/client.rb +1562 -0
- data/lib/google/cloud/filestore/v1/cloud_filestore_manager/rest/operations.rb +793 -0
- data/lib/google/cloud/filestore/v1/cloud_filestore_manager/rest/service_stub.rb +999 -0
- data/lib/google/cloud/filestore/v1/cloud_filestore_manager/rest.rb +71 -0
- data/lib/google/cloud/filestore/v1/cloud_filestore_manager.rb +13 -7
- data/lib/google/cloud/filestore/v1/cloud_filestore_service_pb.rb +69 -0
- data/lib/google/cloud/filestore/v1/cloud_filestore_service_services_pb.rb +17 -6
- data/lib/google/cloud/filestore/v1/rest.rb +37 -0
- data/lib/google/cloud/filestore/v1/version.rb +1 -1
- data/lib/google/cloud/filestore/v1.rb +7 -2
- data/proto_docs/google/api/client.rb +324 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/filestore/v1/cloud_filestore_service.rb +237 -29
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +15 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b70ddabe830810fe6853f9cd5a52a19e226e17ddf50e2e74a5f420bca4b9b4a
|
4
|
+
data.tar.gz: 8ee4a7229904377deaf684c0e69135a149710b6db04fcf051947967a3b5c2cf5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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/
|
50
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
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
|
|