class Google::Cloud::Bigtable::Credentials

# Credentials

Represents the authentication and authorization used to connect to the Bigtable API.

@example

require "google/cloud/bigtable"

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

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

bigtable.project_id #=> "my-project"