google-cloud-gke_connect-gateway-v1beta1 0.1.0 → 0.1.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f002bf7e20b461794c38b80d465c5f693213bee0b250d482b9c3d5280a6205d
|
4
|
+
data.tar.gz: b71602b5c55b67d6b5fa173fafa6be9418649ed968276dcb490da6f4507109e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7ae9aec2b6613030ed39e39d8455135966a8024aeba0391a2a3ec6f2c752501be321812a5c17ad9f46a8631268178f865dfeeca8ac45316fd7db864ffb6a6b8
|
7
|
+
data.tar.gz: 636060cb7ce6a173e21339a14d84efde4cc30205488d3d11473f8ca37444cde9050d04f3fc1b8e283d6408fcfa4bbe24efc7e9e4ef4ceaf9d589eb3c34a61632
|
data/AUTHENTICATION.md
CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-gke_connect-gateway-v1beta1
|
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
67
67
|
{::Google::Cloud::GkeConnect::Gateway::V1beta1::GatewayService::Credentials}):
|
68
68
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
* `GKE_CONNECT_GATEWAY_CREDENTIALS` - Path to JSON file, or JSON contents
|
70
|
+
* `GKE_CONNECT_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/gke_connect/gateway/v1beta1"
|
@@ -82,8 +82,8 @@ client = ::Google::Cloud::GkeConnect::Gateway::V1beta1::GatewayService::Client.n
|
|
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/gke_connect/gateway/v1beta1"
|
@@ -93,7 +93,7 @@ client = ::Google::Cloud::GkeConnect::Gateway::V1beta1::GatewayService::Client.n
|
|
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/gke_connect/gateway/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/gke_connect/gateway/v1beta1"
|
34
34
|
|
35
35
|
client = ::Google::Cloud::GkeConnect::Gateway::V1beta1::GatewayService::Client.new
|
36
|
-
request =
|
36
|
+
request = ::Google::Api::HttpBody.new # (request fields as keyword arguments...)
|
37
37
|
response = client.get_resource request
|
38
38
|
```
|
39
39
|
|
@@ -136,7 +136,7 @@ module Google
|
|
136
136
|
!@config.endpoint.split(".").first.include?("-")
|
137
137
|
credentials ||= Credentials.default scope: @config.scope,
|
138
138
|
enable_self_signed_jwt: enable_self_signed_jwt
|
139
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
139
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
140
140
|
credentials = Credentials.new credentials, scope: @config.scope
|
141
141
|
end
|
142
142
|
@quota_project_id = @config.quota_project
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-gke_connect-gateway-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|