Skip to content

Commit c0cfd31

Browse files
convert gcloud -> gcloud-node
1 parent 896b0f4 commit c0cfd31

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

AUTHORS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This is the official list of gcloud authors for copyright purposes.
1+
# This is the official list of gcloud-node authors for copyright purposes.
22
# This file is distinct from the CONTRIBUTORS files.
33
# See the latter for an explanation.
44

@@ -9,4 +9,4 @@
99
Google Inc.
1010
Anand Suresh
1111
Brett Bergmann
12-
Jesse Friedman
12+
Jesse Friedman

docs/faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## How do I use `gcloud` with Google Compute Engine?
1+
## How do I use `gcloud-node` with Google Compute Engine?
22

33
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.
44

@@ -8,7 +8,7 @@ If you are running this client on Google Compute Engine, we handle authenticatio
88
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.
99

1010

11-
## How do I use `gcloud` with AWS Lambda?
11+
## How do I use `gcloud-node` with AWS Lambda?
1212

1313
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.
1414

@@ -17,7 +17,7 @@ Reference Issues: [#1287](https://github.com/GoogleCloudPlatform/gcloud-node/iss
1717

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

20-
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.
20+
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.
2121

2222
[dev-console]: https://console.developers.google.com/project
2323
[gce-how-to]: https://developers.google.com/compute/docs/authentication#using

docs/home.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<section class="hero-banner">
22
<div class="container clearfix">
33
<div class="quote-box">
4-
<h1>gcloud</h1>
4+
<h1>gcloud-node</h1>
55
<p>Google Cloud Client Library for Node.js
66
- an idiomatic, intuitive, and natural way for Node.js developers to
77
integrate with Google Cloud Platform services, like Cloud Datastore
@@ -60,7 +60,7 @@ <h4 class="latest-release subtle" ng-if="home.latestRelease">
6060
<div class="quote-box">
6161
<h3 class="block-title">What is it?</h3>
6262

63-
<p><code>gcloud</code> is a client library for accessing Google
63+
<p><code>gcloud-node</code> is a client library for accessing Google
6464
Cloud Platform services that significantly reduces the boilerplate
6565
code you have to write. The library provides high-level API
6666
abstractions so they're easier to understand. It embraces
@@ -69,7 +69,7 @@ <h3 class="block-title">What is it?</h3>
6969
All this means you spend more time creating code that matters
7070
to you.</p>
7171

72-
<p><code>gcloud</code> is configured to access Google Cloud Platform
72+
<p><code>gcloud-node</code> is configured to access Google Cloud Platform
7373
services and authenticate (OAuth 2.0) automatically on your behalf.
7474
With a one-line install and a private key, you are up and ready
7575
to go. Better yet, if you are running on a Google Compute Engine
@@ -150,22 +150,22 @@ <h3 class="block-title">Examples</h3>
150150
<div class="container clearfix">
151151
<h3 class="block-title">FAQ</h3>
152152

153-
<h4>What is the relationship between the <code>gcloud</code> package
153+
<h4>What is the relationship between the <code>gcloud-node</code> package
154154
and the <code>gcloud</code> command-line tool?</h4>
155155
<p>Both the <code>gcloud</code> command-line tool and
156-
<code>gcloud</code> package are a part of the Google Cloud SDK: a collection
156+
<code>gcloud-node</code> package are a part of the Google Cloud SDK: a collection
157157
of tools and libraries that enable you to easily create and manage
158158
resources on the Google Cloud Platform. The <code>gcloud</code> command-line
159159
tool can be used to manage both your development workflow and your
160160
Google Cloud Platform resources while the <code>gcloud</code> package is the
161161
Google Cloud Client Library for Node.js.</p>
162162

163-
<h4>What is the relationship between <code>gcloud</code>
163+
<h4>What is the relationship between <code>gcloud-node</code>
164164
and the Google APIs Node.js Client?</h4>
165165
<p>The <a href="https://github.com/google/google-api-nodejs-client">
166166
Google APIs Node.js Client</a> is a client library for
167167
using the broad set of Google APIs.
168-
<code>gcloud</code> is built specifically for the Google Cloud Platform
168+
<code>gcloud-node</code> is built specifically for the Google Cloud Platform
169169
and is the recommended way to integrate Google Cloud APIs into your
170170
Node.js applications. If your application requires both Google Cloud Platform and
171171
other Google APIs, the 2 libraries may be used by your application.</p>

docs/overview.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<p>
2-
First, install <code>gcloud</code> with npm and require it into your project:
2+
First, install <code>gcloud-node</code> with npm and require it into your project:
33
</p>
44
<div hljs>$ npm install --save gcloud</div>
55
<div hljs>var gcloud = require('gcloud');</div>
66
<p>
7-
If you are running your app on Google Compute Engine, you won't need to worry about supplying connection configuration options to <code>gcloud</code>&mdash; we figure that out for you.
7+
If you are running your app on Google Compute Engine, you won't need to worry about supplying connection configuration options to <code>gcloud-node</code> we figure that out for you.
88
</p>
99
<p>
1010
However, if you're running your app elsewhere, you will need to provide project details to authenticate API requests.
@@ -19,5 +19,5 @@
1919
keyFilename: '/path/to/keyfile.json'
2020
});</div>
2121
<p>
22-
The full set of options which can be passed to gcloud and sub-modules are <a href="#/docs">outlined here</a>.
22+
The full set of options which can be passed to gcloud-node and sub-modules are <a href="#/docs">outlined here</a>.
2323
</p>

docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 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.`
22

3-
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".
3+
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".
44

55
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.
66

0 commit comments

Comments
 (0)