Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: change Google Cloud to Cloud #1995

Merged
merged 3 commits into from
Mar 3, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To run the system tests, first create and configure a project in the Google Deve
- **GCLOUD_TESTS_PROJECT_ID**: Developers Console project's ID (e.g. bamboo-shift-455)
- **GCLOUD_TESTS_KEY**: The path to the JSON key file.
- ***GCLOUD_TESTS_API_KEY*** (*optional*): An API key that can be used to test the Translate API.
- ***GCLOUD_TESTS_DNS_DOMAIN*** (*optional*): A domain you own managed by Google Cloud DNS (expected format: `'gcloud-node.com.'`).
- ***GCLOUD_TESTS_DNS_DOMAIN*** (*optional*): A domain you own managed by Cloud DNS (expected format: `'gcloud-node.com.'`).

Install the [gcloud command-line tool][gcloudcli] to your machine and use it to create the indexes used in the datastore system tests with indexes found in `system-test/data/index/yaml`:

Expand Down
68 changes: 34 additions & 34 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Google Cloud Node.js Client
# Cloud Node.js Client
> Node.js idiomatic client for [Google Cloud Platform](https://cloud.google.com/) services.

[![NPM Version](https://img.shields.io/npm/v/google-cloud.svg)](https://www.npmjs.org/package/google-cloud)
Expand All @@ -12,21 +12,21 @@
This client supports the following Google Cloud Platform services at a [Beta](#versioning) quality level:

* [Google BigQuery](#google-bigquery-beta) (Beta)
* [Google Cloud Datastore](#google-cloud-datastore-beta) (Beta)
* [Google Cloud Storage](#google-cloud-storage-beta) (Beta)
* [Cloud Datastore](#google-cloud-datastore-beta) (Beta)
* [Cloud Storage](#google-cloud-storage-beta) (Beta)
* [Google Stackdriver Logging](#google-stackdriver-logging-beta) (Beta)

This client supports the following Google Cloud Platform services at an [Alpha](#versioning) quality level:

* [Cloud Spanner](#cloud-spanner-alpha) (Alpha)

This comment was marked as spam.

* [Google Cloud Bigtable](#google-cloud-bigtable-alpha) (Alpha)
* [Google Cloud DNS](#google-cloud-dns-alpha) (Alpha)
* [Google Cloud Natural Language](#google-cloud-natural-language-alpha) (Alpha)
* [Google Cloud Pub/Sub](#google-cloud-pubsub-alpha) (Alpha)
* [Google Cloud Resource Manager](#google-cloud-resource-manager-alpha) (Alpha)
* [Google Cloud Speech](#google-cloud-speech-alpha) (Alpha)
* [Google Cloud Translation API](#google-cloud-translation-api-alpha) (Alpha)
* [Google Cloud Vision](#google-cloud-vision-alpha) (Alpha)
* [Cloud Bigtable](#google-cloud-bigtable-alpha) (Alpha)
* [Cloud DNS](#google-cloud-dns-alpha) (Alpha)
* [Cloud Natural Language](#google-cloud-natural-language-alpha) (Alpha)
* [Cloud Pub/Sub](#google-cloud-pubsub-alpha) (Alpha)
* [Cloud Resource Manager](#google-cloud-resource-manager-alpha) (Alpha)
* [Cloud Speech](#google-cloud-speech-alpha) (Alpha)
* [Cloud Translation API](#google-cloud-translation-api-alpha) (Alpha)
* [Cloud Vision](#google-cloud-vision-alpha) (Alpha)
* [Google Compute Engine](#google-compute-engine-alpha) (Alpha)
* [Google Prediction API](#google-prediction-api-alpha) (Alpha)
* [Google Stackdriver Monitoring](#google-stackdriver-monitoring-alpha) (Alpha)
Expand Down Expand Up @@ -54,7 +54,7 @@ $ npm install --save google-cloud

## Authentication

With `google-cloud` it's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Google Cloud services.
With `google-cloud` it's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Cloud services.

### On Google Cloud Platform

Expand All @@ -78,16 +78,16 @@ If you are not running this client on Google Cloud Platform, you need a Google D
* Cloud Bigtable Admin API
* Cloud Bigtable Table Admin API
* Cloud Spanner API
* Google Cloud Datastore API
* Google Cloud DNS API
* Google Cloud Natural Language API
* Google Cloud Pub/Sub API
* Google Cloud Resource Manager API
* Google Cloud Speech API
* Google Cloud Storage
* Google Cloud Storage JSON API
* Google Cloud Translation API
* Google Cloud Vision API
* Cloud Datastore API
* Cloud DNS API
* Cloud Natural Language API
* Cloud Pub/Sub API
* Cloud Resource Manager API
* Cloud Speech API
* Cloud Storage
* Cloud Storage JSON API
* Cloud Translation API
* Cloud Vision API
* Google Compute Engine API
* Prediction API
* Stackdriver Logging API
Expand Down Expand Up @@ -173,12 +173,12 @@ job.getQueryResults().on('data', function(row) {});
```


## Google Cloud Datastore (Beta)
## Cloud Datastore (Beta)

- [API Documentation][gcloud-datastore-docs]
- [Official Documentation][cloud-datastore-docs]

*Follow the [activation instructions][cloud-datastore-activation] to use the Google Cloud Datastore API with your project.*
*Follow the [activation instructions][cloud-datastore-activation] to use the Cloud Datastore API with your project.*

#### Using the all-in-one module

Expand Down Expand Up @@ -247,7 +247,7 @@ datastoreClient.save({
```


## Google Cloud Storage (Beta)
## Cloud Storage (Beta)

- [API Documentation][gcloud-storage-docs]
- [Official Documentation][cloud-storage-docs]
Expand Down Expand Up @@ -482,12 +482,12 @@ database.runStream('SELECT * FROM Singers')
```


## Google Cloud Bigtable (Alpha)
## Cloud Bigtable (Alpha)

- [API Documentation][gcloud-bigtable-docs]
- [Official Documentation][cloud-bigtable-docs]

*You may need to [create a cluster][cloud-bigtable-cluster] to use the Google Cloud Bigtable API with your project.*
*You may need to [create a cluster][cloud-bigtable-cluster] to use the Cloud Bigtable API with your project.*

#### Using the all-in-one module

Expand Down Expand Up @@ -553,7 +553,7 @@ row.save('follows:gwashington', 1, function(err) {
```


## Google Cloud DNS (Alpha)
## Cloud DNS (Alpha)

- [API Documentation][gcloud-dns-docs]
- [Official Documentation][cloud-dns-docs]
Expand Down Expand Up @@ -612,7 +612,7 @@ zone.export('/zonefile.zone', function(err) {});
```


## Google Cloud Natural Language (Alpha)
## Cloud Natural Language (Alpha)

- [API Documentation][gcloud-language-docs]
- [Official Documentation][cloud-language-docs]
Expand Down Expand Up @@ -694,7 +694,7 @@ document.annotate(function(err, annotations) {
```


## Google Cloud Pub/Sub (Alpha)
## Cloud Pub/Sub (Alpha)

- [API Documentation][gcloud-pubsub-docs]
- [Official Documentation][cloud-pubsub-docs]
Expand Down Expand Up @@ -752,7 +752,7 @@ topic.subscribe('subscription-name', function(err, subscription) {
```


## Google Cloud Resource Manager (Alpha)
## Cloud Resource Manager (Alpha)

- [API Documentation][gcloud-resource-docs]
- [Official Documentation][cloud-resource-docs]
Expand Down Expand Up @@ -805,7 +805,7 @@ project.getMetadata(function(err, metadata) {
```


## Google Cloud Speech (Alpha)
## Cloud Speech (Alpha)

- [API Documentation][gcloud-speech-docs]
- [Official Documentation][cloud-speech-docs]
Expand Down Expand Up @@ -888,7 +888,7 @@ fs.createReadStream('./audio.raw')
```


## Google Cloud Translation API (Alpha)
## Cloud Translation API (Alpha)

- [API Documentation][gcloud-translate-docs]
- [Official Documentation][cloud-translate-docs]
Expand Down Expand Up @@ -957,7 +957,7 @@ translateClient.getLanguages(function(err, languages) {
```


## Google Cloud Vision (Alpha)
## Cloud Vision (Alpha)

- [API Documentation][gcloud-vision-docs]
- [Official Documentation][cloud-vision-docs]
Expand Down
2 changes: 1 addition & 1 deletion docs/authentication.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Authenticating with this module

It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Google Cloud services.
It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Cloud services.

```js
var config = {
Expand Down
4 changes: 2 additions & 2 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Our library uses some native libraries, which must be recompiled against the pla
Reference Issues: [#1287](https://github.com/GoogleCloudPlatform/google-cloud-node/issues/1287), [#1297](https://github.com/GoogleCloudPlatform/google-cloud-node/issues/1297)


## Does this replace [Google Cloud Node.js Client][googleapis]?
## Does this replace [Cloud Node.js Client][googleapis]?

Google Cloud Node.js Client is a client library for using the broad set of Google APIs. This module 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.
Cloud Node.js Client is a client library for using the broad set of Google APIs. This module is built specifically for the Google Cloud Platform and is the recommended way to integrate 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
Expand Down
8 changes: 4 additions & 4 deletions docs/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="container clearfix">
<div class="quote-box">
<h1>google-cloud</h1>
<p>Google Cloud Client Library for Node.js
<p>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
and Cloud Storage.</p>
Expand Down Expand Up @@ -156,20 +156,20 @@ <h3 class="block-title">FAQ</h3>
<h4>What is the relationship between the <code>google-cloud</code> package
and the <code>gcloud</code> command-line tool?</h4>
<p>Both the <code>gcloud</code> command-line tool and
<code>google-cloud</code> package are a part of the Google Cloud SDK: a collection
<code>google-cloud</code> package are a part of the Cloud SDK: a collection
of tools and libraries that enable you to easily create and manage
resources on the Google Cloud Platform. The <code>gcloud</code> command-line
tool can be used to manage both your development workflow and your
Google Cloud Platform resources while the <code>google-cloud</code> package is the
Google Cloud Client Library for Node.js.</p>
Cloud Client Library for Node.js.</p>

<h4>What is the relationship between <code>google-cloud</code>
and the Google APIs Node.js Client?</h4>
<p>The <a href="https://github.com/google/google-api-nodejs-client">
Google APIs Node.js Client</a> is a client library for
using the broad set of Google APIs.
<code>google-cloud</code> is built specifically for the Google Cloud Platform
and is the recommended way to integrate Google Cloud APIs into your
and is the recommended way to integrate 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.</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/bigquery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var bigquery = require('@google-cloud/bigquery')({

## Authentication

It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Google Cloud services.
It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Cloud services.

### On Google Cloud Platform

Expand Down
2 changes: 1 addition & 1 deletion packages/bigquery/src/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ Table.prototype.createWriteStream = function(metadata) {
};

/**
* Export table to Google Cloud Storage.
* Export table to Cloud Storage.
*
* @resource [Jobs: insert API Documentation]{@link https://cloud.google.com/bigquery/docs/reference/v2/jobs/insert}
*
Expand Down
6 changes: 3 additions & 3 deletions packages/bigtable/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# @google-cloud/bigtable ([Alpha][versioning])
> Google Cloud Bigtable Client Library for Node.js
> Cloud Bigtable Client Library for Node.js

*Looking for more Google APIs than just Bigtable? You might want to check out [`google-cloud`][google-cloud].*

- [API Documentation][gcloud-bigtable-docs]
- [Official Documentation][cloud-bigtable-docs]

*You may need to [create a cluster][cloud-bigtable-cluster] to use the Google Cloud Bigtable API with your project.*
*You may need to [create a cluster][cloud-bigtable-cluster] to use the Cloud Bigtable API with your project.*


```sh
Expand Down Expand Up @@ -62,7 +62,7 @@ var bigtable = require('@google-cloud/bigtable')({

## Authentication

It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Google Cloud services.
It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Cloud services.

### On Google Cloud Platform

Expand Down
2 changes: 1 addition & 1 deletion packages/bigtable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@google-cloud/bigtable",
"version": "0.8.0",
"author": "Google Inc.",
"description": "Google Cloud Bigtable Client Library for Node.js",
"description": "Cloud Bigtable Client Library for Node.js",
"contributors": [
{
"name": "Burcu Dogan",
Expand Down
2 changes: 1 addition & 1 deletion packages/bigtable/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var Instance = require('./instance.js');
* @constructor
*
* @resource [Creating a Cloud Bigtable Cluster]{@link https://cloud.google.com/bigtable/docs/creating-compute-instance}
* @resource [Google Cloud Bigtable Concepts Overview]{@link https://cloud.google.com/bigtable/docs/concepts}
* @resource [Cloud Bigtable Concepts Overview]{@link https://cloud.google.com/bigtable/docs/concepts}
*
* @param {object=} options - [Configuration object](#/docs).
* @param {string=} options.apiEndpoint - Override the default API endpoint used
Expand Down
2 changes: 1 addition & 1 deletion packages/bigtable/src/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var Mutation = require('./mutation.js');
var Row = require('./row.js');

/**
* Create a Table object to interact with a Google Cloud Bigtable table.
* Create a Table object to interact with a Cloud Bigtable table.
*
* @constructor
* @alias module:bigtable/table
Expand Down
2 changes: 1 addition & 1 deletion packages/common-grpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@google-cloud/common-grpc",
"version": "0.1.4",
"author": "Google Inc.",
"description": "Common components for Google Cloud APIs Node.js Client Libraries that require gRPC",
"description": "Common components for Cloud APIs Node.js Client Libraries that require gRPC",
"contributors": [
{
"name": "Burcu Dogan",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@google-cloud/common",
"version": "0.11.0",
"author": "Google Inc.",
"description": "Common components for Google Cloud APIs Node.js Client Libraries",
"description": "Common components for Cloud APIs Node.js Client Libraries",
"contributors": [
{
"name": "Burcu Dogan",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var uniq = require('array-uniq');
var util = module.exports;

var errorMessage = format([
'Sorry, we cannot connect to Google Cloud Services without a project ID.',
'Sorry, we cannot connect to Cloud Services without a project ID.',
'You may specify one with an environment variable named "GCLOUD_PROJECT".',
'See {baseUrl}/{path} for a detailed guide on creating an authenticated',
'connection.'
Expand Down
2 changes: 1 addition & 1 deletion packages/common/test/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe('common/util', function() {

it('should export an error for module instantiation errors', function() {
var errorMessage = format([
'Sorry, we cannot connect to Google Cloud Services without a project ID.',
'Sorry, we cannot connect to Cloud Services without a project ID.',
'You may specify one with an environment variable named',
'"GCLOUD_PROJECT". See {baseUrl}/{path} for a detailed guide on creating',
'an authenticated connection.'
Expand Down
2 changes: 1 addition & 1 deletion packages/compute/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var gce = require('@google-cloud/compute')({

## Authentication

It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Google Cloud services.
It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Cloud services.

### On Google Cloud Platform

Expand Down
8 changes: 4 additions & 4 deletions packages/datastore/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# @google-cloud/datastore ([Beta][versioning])
> Google Cloud Datastore Client Library for Node.js
> Cloud Datastore Client Library for Node.js

*Looking for more Google APIs than just Datastore? You might want to check out [`google-cloud`][google-cloud].*

- [API Documentation][gcloud-datastore-docs]
- [Official Documentation][cloud-datastore-docs]

*Follow the [activation instructions][cloud-datastore-activation] to use the Google Cloud Datastore API with your project.*
*Follow the [activation instructions][cloud-datastore-activation] to use the Cloud Datastore API with your project.*

```sh
$ npm install --save @google-cloud/datastore
Expand Down Expand Up @@ -67,7 +67,7 @@ var datastore = require('@google-cloud/datastore')({

## Authentication

It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Google Cloud services.
It's incredibly easy to get authenticated and start using Google's APIs. You can set your credentials on a global basis as well as on a per-API basis. See each individual API section below to see how you can auth on a per-API-basis. This is useful if you want to use different accounts for different Cloud services.

### On Google Cloud Platform

Expand All @@ -85,7 +85,7 @@ If you are not running this client on Google Cloud Platform, you need a Google D
1. Visit the [Google Developers Console][dev-console].
2. Create a new project or click on an existing project.
3. Navigate to **APIs & auth** > **APIs section** and turn on the following APIs (you may need to enable billing in order to use these services):
* Google Cloud Datastore API
* Cloud Datastore API
4. Navigate to **APIs & auth** > **Credentials** and then:
* If you want to use a new service account key, click on **Create credentials** and select **Service account key**. After the account key is created, you will be prompted to download the JSON key file that the library uses to authenticate your requests.
* If you want to generate a new service account key for an existing service account, click on **Generate new JSON key** and download the JSON key file.
Expand Down
2 changes: 1 addition & 1 deletion packages/datastore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@google-cloud/datastore",
"version": "0.7.0",
"author": "Google Inc.",
"description": "Google Cloud Datastore Client Library for Node.js",
"description": "Cloud Datastore Client Library for Node.js",
"contributors": [
{
"name": "Burcu Dogan",
Expand Down
Loading