Class: Google::Cloud::Translate::V2::Credentials

Inherits:
Auth::Credentials
  • Object
show all
Defined in:
lib/google/cloud/translate/v2/credentials.rb

Overview

Credentials

Represents the authentication and authorization used to connect to the Cloud Translation API.

Examples:

require "google/cloud/translate/v2"

keyfile = "/path/to/keyfile.json"
creds = Google::Cloud::Translate::V2::Credentials.new keyfile

translate = Google::Cloud::Translate.new(
  version: :v2,
  project_id: "my-todo-project",
  credentials: creds
)

translate.project_id #=> "my-todo-project"

Constant Summary collapse

SCOPE =
["https://www.googleapis.com/auth/cloud-platform"].freeze
PATH_ENV_VARS =
["TRANSLATE_CREDENTIALS",
"TRANSLATE_KEYFILE",
"GOOGLE_CLOUD_CREDENTIALS",
"GOOGLE_CLOUD_KEYFILE",
"GCLOUD_KEYFILE"].freeze
JSON_ENV_VARS =
["TRANSLATE_CREDENTIALS_JSON",
"TRANSLATE_KEYFILE_JSON",
"GOOGLE_CLOUD_CREDENTIALS_JSON",
"GOOGLE_CLOUD_KEYFILE_JSON",
"GCLOUD_KEYFILE_JSON"].freeze
DEFAULT_PATHS =
["~/.config/gcloud/application_default_credentials.json"].freeze