google-cloud-service_usage-v1 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: 4adeef0b90e7a36ca932251361cfe8eddac68de74f6494ee13fb814d159fdc07
|
4
|
+
data.tar.gz: 79fbd96b72b6e46b06cf56ebb5a6e98b89b4197d2e29ed07a99fa63da39cd239
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75f2ebfd6b0fc94cddd91db7acd685c2fd2d3ff2ade8cf5e1665e59e00debc5d73fd86c3be9ce04fa082f519592eb7254ee805e45ba2b2f1f49d66788ef90144
|
7
|
+
data.tar.gz: 24f0ca77f08bf94a2a396306361dc2faab978f13741a2a147e0b05f644565a00bbb0ea5dde566e5430c114e2653ec1c7973e86c49ef28b6ef492778175a586e0
|
data/AUTHENTICATION.md
CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-service_usage-v1
|
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
67
67
|
{::Google::Cloud::ServiceUsage::V1::ServiceUsage::Credentials}):
|
68
68
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
* `SERVICE_USAGE_CREDENTIALS` - Path to JSON file, or JSON contents
|
70
|
+
* `SERVICE_USAGE_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/service_usage/v1"
|
@@ -82,8 +82,8 @@ client = ::Google::Cloud::ServiceUsage::V1::ServiceUsage::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/service_usage/v1"
|
@@ -93,7 +93,7 @@ client = ::Google::Cloud::ServiceUsage::V1::ServiceUsage::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/service_usage/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/service_usage/v1"
|
34
34
|
|
35
35
|
client = ::Google::Cloud::ServiceUsage::V1::ServiceUsage::Client.new
|
36
|
-
request =
|
36
|
+
request = ::Google::Cloud::ServiceUsage::V1::EnableServiceRequest.new # (request fields as keyword arguments...)
|
37
37
|
response = client.enable_service request
|
38
38
|
```
|
39
39
|
|
@@ -137,7 +137,7 @@ module Google
|
|
137
137
|
!@config.endpoint.split(".").first.include?("-")
|
138
138
|
credentials ||= Credentials.default scope: @config.scope,
|
139
139
|
enable_self_signed_jwt: enable_self_signed_jwt
|
140
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
140
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
141
141
|
credentials = Credentials.new credentials, scope: @config.scope
|
142
142
|
end
|
143
143
|
@quota_project_id = @config.quota_project
|
@@ -82,7 +82,7 @@ module Google
|
|
82
82
|
# Create credentials
|
83
83
|
credentials = @config.credentials
|
84
84
|
credentials ||= Credentials.default scope: @config.scope
|
85
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
85
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
86
86
|
credentials = Credentials.new credentials, scope: @config.scope
|
87
87
|
end
|
88
88
|
@quota_project_id = @config.quota_project
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-service_usage-v1
|
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
|