Cloud Storage API - Class Google::Cloud::Storage::Credentials (v1.57.1)

Reference documentation and code samples for the Cloud Storage API class Google::Cloud::Storage::Credentials.

Credentials

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

Inherits

  • Google::Auth::Credentials

Example

# The recommended way to provide credentials is to use the `make_creds` method # on the appropriate credentials class for your environment. require "googleauth" require "google/cloud/storage" credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(  json_key_io: ::File.open("/path/to/keyfile.json"),  scope: "https://www.googleapis.com/auth/devstorage.full_control" ) storage = Google::Cloud::Storage.new(  project_id: "my-project",  credentials: credentials ) storage.project_id #=> "my-project"

Constants

SCOPE

value: ["https://www.googleapis.com/auth/devstorage.full_control"].freeze

PATH_ENV_VARS

value: [ "STORAGE_CREDENTIALS", "STORAGE_KEYFILE", "GOOGLE_CLOUD_CREDENTIALS", "GOOGLE_CLOUD_KEYFILE", "GCLOUD_KEYFILE" ].freeze

JSON_ENV_VARS

value: [ "STORAGE_CREDENTIALS_JSON", "STORAGE_KEYFILE_JSON", "GOOGLE_CLOUD_CREDENTIALS_JSON", "GOOGLE_CLOUD_KEYFILE_JSON", "GCLOUD_KEYFILE_JSON" ].freeze

DEFAULT_PATHS

value: ["~/.config/gcloud/application_default_credentials.json"].freeze