google-cloud-container-v1 0.5.0 → 0.7.2

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: 5b3b158a259bb9adf4884a2c06d82efb2a74f0ce4779a0ca11a78c3ac9c12bf3
4
- data.tar.gz: f06356fa005b46a12140a4037c1dc7bf4a0940c6e7f28c61816dc6046387bc61
3
+ metadata.gz: 7d4b30dd957d29e1d4a8db3cf5f9b9694280d44e66be261f4496cfe9480dbfb5
4
+ data.tar.gz: e87c4422bd13ac6e290290782bf5ce5500342c600311837973dc9bef0bde6da6
5
5
  SHA512:
6
- metadata.gz: a844e401b508015a84ab8a75e34019d12361ec079250d4f00a79468e8901027b387500abcbcfad46a83099e1e193e238cb3cc52a30a7c12123df467bd628f8ef
7
- data.tar.gz: 5d13bd337d3bbda41db9d3463499dc53dfb969ce34ebe7ff5bf94749040265fb91da2eec7c3a81da6f13f862bfce7f7287925725c065d7452af6f6fa1bead69a
6
+ metadata.gz: 4a6deb5bb2145ff573f7c09ac6da146aa9d3342510b2024fa9bcf9472e4eadef7b02781cfd6ca2776223fac0a9ba7c4ff62886342ac2b6b1f1ed93dfe6521d30
7
+ data.tar.gz: 04f3e9b010601eb4ddb1da7f8a1b4513687fb981068945a610edaf125a243567537168295735fb1037d792d6540ed940348c1d2813e284f751b8228a3597e0f9
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-container-v1
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::Container::V1::ClusterManager::Credentials}):
68
68
 
69
- 1. `CONTAINER_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `CONTAINER_KEYFILE` - Path to JSON file, or JSON contents
71
- 3. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
- 4. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
- 5. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
69
+ * `CONTAINER_CREDENTIALS` - Path to JSON file, or JSON contents
70
+ * `CONTAINER_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/container/v1"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::Container::V1::ClusterManager::Client.new
82
82
 
83
83
  ### Configuration
84
84
 
85
- The **Credentials JSON** can be configured instead of placing them in
86
- environment variables. Either on an individual client initialization:
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/container/v1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::Container::V1::ClusterManager::Client.new do |config|
93
93
  end
94
94
  ```
95
95
 
96
- Or configured globally for all clients:
96
+ Or globally for all clients:
97
97
 
98
98
  ```ruby
99
99
  require "google/cloud/container/v1"
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/container/v1"
34
34
 
35
35
  client = ::Google::Cloud::Container::V1::ClusterManager::Client.new
36
- request = my_create_request
36
+ request = ::Google::Cloud::Container::V1::ListClustersRequest.new # (request fields as keyword arguments...)
37
37
  response = client.list_clusters request
38
38
  ```
39
39