diff --git a/AUTHORS b/AUTHORS index 8f7cda8d42d..89a1521ceb9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ -# This is the official list of gcloud authors for copyright purposes. +# This is the official list of gcloud-node authors for copyright purposes. # This file is distinct from the CONTRIBUTORS files. # See the latter for an explanation. @@ -9,4 +9,4 @@ Google Inc. Anand Suresh Brett Bergmann -Jesse Friedman \ No newline at end of file +Jesse Friedman diff --git a/docs/faq.md b/docs/faq.md index d0f63954c5b..64c2e28d46e 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -1,4 +1,4 @@ -## How do I use `gcloud` with Google Compute Engine? +## How do I use `gcloud-node` with Google Compute Engine? If you are running this client on Google Compute Engine, we handle authentication for you with no configuration. You just need to make sure that when you [set up the GCE instance][gce-how-to], you add the correct scopes for the APIs you want to access. @@ -8,7 +8,7 @@ If you are running this client on Google Compute Engine, we handle authenticatio If you are not running this client on Google Compute Engine, you need a Google Developers service account. To create a service account, please see our [Authentication][auth-guide] guide. -## How do I use `gcloud` with AWS Lambda? +## How do I use `gcloud-node` with AWS Lambda? Our library uses some native libraries, which must be recompiled against the platform running your application. For AWS Lambda, we recommend using [lambda-packager](https://github.com/tomdale/lambda-packager) prior to deploying your code. @@ -17,7 +17,7 @@ Reference Issues: [#1287](https://github.com/GoogleCloudPlatform/gcloud-node/iss ## Does this replace [Google Cloud Node.js Client][googleapis]? -Google Cloud Node.js Client is a client library for using the broad set of Google APIs. `gcloud` is built specifically for the Google Cloud Platform and is the recommended way to integrate Google Cloud APIs into your Node.js applications. If your application requires both Google Cloud Platform and other Google APIs, the 2 libraries may be used together. +Google Cloud Node.js Client is a client library for using the broad set of Google APIs. `gcloud-node` is built specifically for the Google Cloud Platform and is the recommended way to integrate Google Cloud APIs into your Node.js applications. If your application requires both Google Cloud Platform and other Google APIs, the 2 libraries may be used together. [dev-console]: https://console.developers.google.com/project [gce-how-to]: https://developers.google.com/compute/docs/authentication#using diff --git a/docs/home.html b/docs/home.html index 03c2988fa32..f6a183dbdd8 100644 --- a/docs/home.html +++ b/docs/home.html @@ -1,7 +1,7 @@
-

gcloud

+

gcloud-node

Google Cloud Client Library for Node.js - an idiomatic, intuitive, and natural way for Node.js developers to integrate with Google Cloud Platform services, like Cloud Datastore @@ -60,7 +60,7 @@

What is it?

-

gcloud is a client library for accessing Google +

gcloud-node is a client library for accessing Google Cloud Platform services that significantly reduces the boilerplate code you have to write. The library provides high-level API abstractions so they're easier to understand. It embraces @@ -69,7 +69,7 @@

What is it?

All this means you spend more time creating code that matters to you.

-

gcloud is configured to access Google Cloud Platform +

gcloud-node is configured to access Google Cloud Platform services and authenticate (OAuth 2.0) automatically on your behalf. With a one-line install and a private key, you are up and ready to go. Better yet, if you are running on a Google Compute Engine @@ -150,22 +150,22 @@

Examples

FAQ

-

What is the relationship between the gcloud package +

What is the relationship between the gcloud-node package and the gcloud command-line tool?

Both the gcloud command-line tool and - gcloud package are a part of the Google Cloud SDK: a collection + gcloud-node package are a part of the Google Cloud SDK: a collection of tools and libraries that enable you to easily create and manage resources on the Google Cloud Platform. The gcloud command-line tool can be used to manage both your development workflow and your Google Cloud Platform resources while the gcloud package is the Google Cloud Client Library for Node.js.

-

What is the relationship between gcloud +

What is the relationship between gcloud-node and the Google APIs Node.js Client?

The Google APIs Node.js Client is a client library for using the broad set of Google APIs. - gcloud is built specifically for the Google Cloud Platform + gcloud-node is built specifically for the Google Cloud Platform and is the recommended way to integrate Google Cloud APIs into your Node.js applications. If your application requires both Google Cloud Platform and other Google APIs, the 2 libraries may be used by your application.

diff --git a/docs/overview.html b/docs/overview.html index d0440672410..b2295633a8f 100644 --- a/docs/overview.html +++ b/docs/overview.html @@ -1,10 +1,10 @@

- First, install gcloud with npm and require it into your project: + First, install gcloud-node with npm and require it into your project:

$ npm install --save gcloud
var gcloud = require('gcloud');

- If you are running your app on Google Compute Engine, you won't need to worry about supplying connection configuration options to gcloud— we figure that out for you. + If you are running your app on Google Compute Engine, you won't need to worry about supplying connection configuration options to gcloud-node— we figure that out for you.

However, if you're running your app elsewhere, you will need to provide project details to authenticate API requests. @@ -19,5 +19,5 @@ keyFilename: '/path/to/keyfile.json' });

- The full set of options which can be passed to gcloud and sub-modules are outlined here. + The full set of options which can be passed to gcloud-node and sub-modules are outlined here.

diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index 4f1ecdda1c2..dd03d14494d 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -1,6 +1,6 @@ ## I'm using a key from the Developer's Console, but getting: `Your private key is in an unexpected format and cannot be used. Please try again with another private key.` -There are many types of keys that can be created through the Developer's Console. The one gcloud expects is one for a "Service account". +There are many types of keys that can be created through the Developer's Console. The one gcloud-node expects is one for a "Service account". See "I'm not using Compute Engine. What do I need to do?" from the [FAQ](https://googlecloudplatform.github.io/gcloud-node/#/faq) for detailed steps on how to create and obtain a JSON key.