google-cloud-container-v1beta1 0.6.0 → 0.8.1

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: c6c5ee4a9cee05591c8cf4155355b17dc2e71ab971c3ad7314e0af3c767adb54
4
- data.tar.gz: 2d86aa25e0044ffc5f9b57bd615a6de33bc6fdcf7621ec58f573875d2bd09783
3
+ metadata.gz: 7dc369fc1421b0580295c164a86c3b7d937d5fdfea911de213135a800125507d
4
+ data.tar.gz: 762f461ada58a06bdb5910536c94ff6d11e03f5dbc29ba1bce40a8590235e6e9
5
5
  SHA512:
6
- metadata.gz: bb99396b4c2bb10053c71c8f33956a36b001e09918f216497dfbf6198e9779fcd7be6f163071fe16527cd8d48716343a28ed2cef393ffe662313f81d09631318
7
- data.tar.gz: 277dd08b01f92cc37bf58526b9ee832ea90e1b0786f0d3df0ac6f9371176c1236a65522369c02ea6cfa17c1d68f0c912767df865d094c04ce897f158247a7d46
6
+ metadata.gz: da6a7251930e8cb4b17afbbee767d4310b5427f81cc230a1b3dcceb19e0033b3ca4ff2d4feca8753a0e3768021199aebf38a04bce3d15bcd915dcdf1ca1361b5
7
+ data.tar.gz: 3fbb74c956a143497858e8e57272e84df0a1f5a74efff17f5477e8364eeb993ef2362961edbfd61f60188ecda2580f3584327893f01b38bae468dc1db67f22ab
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-container-v1beta1
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::Container::V1beta1::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/v1beta1"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::Container::V1beta1::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/v1beta1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::Container::V1beta1::ClusterManager::Client.new do |con
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/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/container/v1beta1"
34
34
 
35
35
  client = ::Google::Cloud::Container::V1beta1::ClusterManager::Client.new
36
- request = my_create_request
36
+ request = ::Google::Cloud::Container::V1beta1::ListClustersRequest.new # (request fields as keyword arguments...)
37
37
  response = client.list_clusters request
38
38
  ```
39
39