google-cloud-api_gateway-v1 0.1.0 → 0.1.4

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: 952cec75368c165a8fa012d33901eb2212fdcf1b485e1ce04508ebb9f20cc184
4
- data.tar.gz: 0007aa0314602c8660b557ecca8d5143d30bc449a32d281c7d59a218d54761f7
3
+ metadata.gz: 3a8987fd17694f7e10ea0413d1d335f537cc8b953adf05666d45312575f979a0
4
+ data.tar.gz: 18b7cb144ff9ba23a18f3439c9683c313eda9350d2fb1853a4d8f6f02f6e7e23
5
5
  SHA512:
6
- metadata.gz: a98883aae8d883cea3bec9847ad90117abf23ae6bd294273568fb69326edc68b031bf5e623e1dcb5df47f55e39c6b893ab426719a8d55ffb1d69c6022692e157
7
- data.tar.gz: c3e27c9e6533f53fddb57ff9c4798cb69ff14d174980eb3ffeb0bdd162b460553541e236d5e47565676faa41642fc24120193ae1b3405830ff9b9a805ef50dcc
6
+ metadata.gz: '069237abc0a1be5702d7d34c188c2e379b741fd0a9349acca6f2804023801b4be7fa034747b0bb65ed513925d4d40d0042bd18a875ebbd0b04fb4020a137646e'
7
+ data.tar.gz: 41fb56daca88f493efa5e3ba3ab55853fe5fb5b6c5c8ea7b53896e9e39e48c471eea5ba1b74f069787642f2fdecc4d66b92e0165ea2ece52e66842f196adb0df
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-api_gateway-v1
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::ApiGateway::V1::ApiGatewayService::Credentials}):
68
68
 
69
- 1. `API_GATEWAY_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `API_GATEWAY_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
+ * `API_GATEWAY_CREDENTIALS` - Path to JSON file, or JSON contents
70
+ * `API_GATEWAY_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/api_gateway/v1"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::ApiGateway::V1::ApiGatewayService::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/api_gateway/v1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::ApiGateway::V1::ApiGatewayService::Client.new do |conf
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/api_gateway/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/api_gateway/v1"
34
34
 
35
35
  client = ::Google::Cloud::ApiGateway::V1::ApiGatewayService::Client.new
36
- request = my_create_request
36
+ request = ::Google::Cloud::ApiGateway::V1::ListGatewaysRequest.new # (request fields as keyword arguments...)
37
37
  response = client.list_gateways request
38
38
  ```
39
39