AUTHENTICATION.md in google-cloud-phishing_protection-v1beta1-0.3.1 vs AUTHENTICATION.md in google-cloud-phishing_protection-v1beta1-0.3.2

- old
+ new

@@ -64,15 +64,15 @@ The environment variables that google-cloud-phishing_protection-v1beta1 checks for credentials are configured on the service Credentials class (such as {::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Credentials}): -1. `PHISHING_PROTECTION_CREDENTIALS` - Path to JSON file, or JSON contents -2. `PHISHING_PROTECTION_KEYFILE` - Path to JSON file, or JSON contents -3. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents -4. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents -5. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file +* `PHISHING_PROTECTION_CREDENTIALS` - Path to JSON file, or JSON contents +* `PHISHING_PROTECTION_KEYFILE` - Path to JSON file, or JSON contents +* `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents +* `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents +* `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file ```ruby require "google/cloud/phishing_protection/v1beta1" ENV["PHISHING_PROTECTION_CREDENTIALS"] = "path/to/keyfile.json" @@ -80,21 +80,21 @@ client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Client.new ``` ### Configuration -The **Credentials JSON** can be configured instead of placing them in -environment variables. Either on an individual client initialization: +The path to the **Credentials JSON** file can be configured instead of storing +it in an environment variable. Either on an individual client initialization: ```ruby require "google/cloud/phishing_protection/v1beta1" client = ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Client.new do |config| config.credentials = "path/to/keyfile.json" end ``` -Or configured globally for all clients: +Or globally for all clients: ```ruby require "google/cloud/phishing_protection/v1beta1" ::Google::Cloud::PhishingProtection::V1beta1::PhishingProtectionService::Client.configure do |config|