Class: Google::Cloud::Firestore::Credentials

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

Overview

Credentials

Represents the authentication and authorization used to connect to the Firestore service.

Examples:

require "google/cloud/firestore"

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

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

firestore.project_id #=> "my-project"

Constant Summary collapse

SCOPE =
["https://www.googleapis.com/auth/datastore"].freeze
PATH_ENV_VARS =
%w[FIRESTORE_CREDENTIALS FIRESTORE_KEYFILE
GOOGLE_CLOUD_CREDENTIALS GOOGLE_CLOUD_KEYFILE
GCLOUD_KEYFILE].freeze
JSON_ENV_VARS =
%w[FIRESTORE_CREDENTIALS_JSON FIRESTORE_KEYFILE_JSON
GOOGLE_CLOUD_CREDENTIALS_JSON
GOOGLE_CLOUD_KEYFILE_JSON
GCLOUD_KEYFILE_JSON].freeze
DEFAULT_PATHS =
["~/.config/gcloud/application_default_credentials.json"].freeze