Class: Google::Cloud::Debugger::Credentials

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

Overview

Credentials

Represents the authentication and authorization used to connect to the Stackdriver Debugger service.

Examples:

require "google/cloud/debugger"

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

debugger = Google::Cloud::Debugger.new(
  project_id: "my-project",
  credentials: creds
)

debugger.project_id #=> "my-project"

Constant Summary collapse

SCOPE =
["https://www.googleapis.com/auth/cloud_debugger"] +
Google::Cloud::Logging::Credentials::SCOPE
PATH_ENV_VARS =
%w(DEBUGGER_CREDENTIALS
GOOGLE_CLOUD_CREDENTIALS
DEBUGGER_KEYFILE
GOOGLE_CLOUD_KEYFILE
GCLOUD_KEYFILE)
JSON_ENV_VARS =
%w(DEBUGGER_CREDENTIALS_JSON
GOOGLE_CLOUD_CREDENTIALS_JSON
DEBUGGER_KEYFILE_JSON
GOOGLE_CLOUD_KEYFILE_JSON
GCLOUD_KEYFILE_JSON)
DEFAULT_PATHS =
["~/.config/gcloud/application_default_credentials.json"]