google-cloud-redis-v1beta1 0.4.1 → 0.5.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 +8 -8
- data/README.md +1 -1
- data/lib/google/cloud/redis/v1beta1/cloud_redis/client.rb +298 -77
- data/lib/google/cloud/redis/v1beta1/cloud_redis/operations.rb +149 -37
- data/lib/google/cloud/redis/v1beta1/cloud_redis.rb +1 -1
- data/lib/google/cloud/redis/v1beta1/cloud_redis_pb.rb +18 -2
- data/lib/google/cloud/redis/v1beta1/cloud_redis_services_pb.rb +3 -3
- data/lib/google/cloud/redis/v1beta1/version.rb +1 -1
- data/proto_docs/google/api/field_behavior.rb +7 -1
- data/proto_docs/google/cloud/redis/v1beta1/cloud_redis.rb +104 -39
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1105f4624b4b93ab6c2f859320dd1b37a97a6f69fba13737b1f3bee7cff2d426
|
4
|
+
data.tar.gz: 35192cf9f1e9545ac9a55bfce4be0d57bf3c9a0ef55fde0234aa1e29c8752382
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d547d83d8c0c64eab6b6e43a83924ad5e128bf9996f419cdf8165e23cf07d8b58e1a55708df99e5741330a9f7ca1ce20296c588b124732b2645d5ad82967909
|
7
|
+
data.tar.gz: c4a33f65bf851cb44aa844bf148b3d8ca96d95c712d04850f4bce09fc3eb780852ead08e3fdbea3e9320d34774bbc2354d01dc8561f5cff16a8024d470444e88
|
data/AUTHENTICATION.md
CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-redis-v1beta1
|
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
67
67
|
{::Google::Cloud::Redis::V1beta1::CloudRedis::Credentials}):
|
68
68
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
* `REDIS_CREDENTIALS` - Path to JSON file, or JSON contents
|
70
|
+
* `REDIS_KEYFILE` - Path to JSON file, or JSON contents
|
71
|
+
* `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
|
72
|
+
* `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
|
73
|
+
* `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
|
74
74
|
|
75
75
|
```ruby
|
76
76
|
require "google/cloud/redis/v1beta1"
|
@@ -82,8 +82,8 @@ client = ::Google::Cloud::Redis::V1beta1::CloudRedis::Client.new
|
|
82
82
|
|
83
83
|
### Configuration
|
84
84
|
|
85
|
-
The **Credentials JSON** can be configured instead of
|
86
|
-
environment
|
85
|
+
The path to the **Credentials JSON** file can be configured instead of storing
|
86
|
+
it in an environment variable. Either on an individual client initialization:
|
87
87
|
|
88
88
|
```ruby
|
89
89
|
require "google/cloud/redis/v1beta1"
|
@@ -93,7 +93,7 @@ client = ::Google::Cloud::Redis::V1beta1::CloudRedis::Client.new do |config|
|
|
93
93
|
end
|
94
94
|
```
|
95
95
|
|
96
|
-
Or
|
96
|
+
Or globally for all clients:
|
97
97
|
|
98
98
|
```ruby
|
99
99
|
require "google/cloud/redis/v1beta1"
|
data/README.md
CHANGED
@@ -33,7 +33,7 @@ In order to use this library, you first need to go through the following steps:
|
|
33
33
|
require "google/cloud/redis/v1beta1"
|
34
34
|
|
35
35
|
client = ::Google::Cloud::Redis::V1beta1::CloudRedis::Client.new
|
36
|
-
request =
|
36
|
+
request = ::Google::Cloud::Redis::V1beta1::ListInstancesRequest.new # (request fields as keyword arguments...)
|
37
37
|
response = client.list_instances request
|
38
38
|
```
|
39
39
|
|