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: 1d5f5dc30edbbc2e13c09dfdf16a724123ecf7e02dd4af444e8694671d446b83
4
- data.tar.gz: bac490dab61bd19b601e9dd0d28624c39840f4201eb52959162f2fefb59b04a3
3
+ metadata.gz: 4adeef0b90e7a36ca932251361cfe8eddac68de74f6494ee13fb814d159fdc07
4
+ data.tar.gz: 79fbd96b72b6e46b06cf56ebb5a6e98b89b4197d2e29ed07a99fa63da39cd239
5
5
  SHA512:
6
- metadata.gz: ad771b8a3a34ea8d70180bc30bed4f940f350e34587aaf98b610ea06a68b9b04bf4cf413594e781a5d0d2a53e24d9314db08dc5356f87dbe49d0362d07834cb3
7
- data.tar.gz: d9115bd8781d2ccc295832132675d84cc1ee073a262ed3358125128a5b6596022ffa35da883ea23291672ad05b894029881c8e66edd97c03ab699914cda634b6
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
- 1. `SERVICE_USAGE_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `SERVICE_USAGE_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
+ * `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 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/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 configured globally for all clients:
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 = my_create_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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module ServiceUsage
23
23
  module V1
24
- VERSION = "0.1.0"
24
+ VERSION = "0.1.1"
25
25
  end
26
26
  end
27
27
  end
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.0
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-06-21 00:00:00.000000000 Z
11
+ date: 2021-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common