You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/faq.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff 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?
2
2
3
3
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.
4
4
@@ -8,7 +8,7 @@ If you are running this client on Google Compute Engine, we handle authenticatio
8
8
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.
9
9
10
10
11
-
## How do I use `gcloud` with AWS Lambda?
11
+
## How do I use `gcloud-node` with AWS Lambda?
12
12
13
13
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.
## Does this replace [Google Cloud Node.js Client][googleapis]?
19
19
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.
Copy file name to clipboardExpand all lines: docs/overview.html
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
<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:
3
3
</p>
4
4
<divhljs>$ npm install --save gcloud</div>
5
5
<divhljs>var gcloud = require('gcloud');</div>
6
6
<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>— 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.
8
8
</p>
9
9
<p>
10
10
However, if you're running your app elsewhere, you will need to provide project details to authenticate API requests.
@@ -19,5 +19,5 @@
19
19
keyFilename: '/path/to/keyfile.json'
20
20
});</div>
21
21
<p>
22
-
The full set of options which can be passed to gcloud and sub-modules are <ahref="#/docs">outlined here</a>.
22
+
The full set of options which can be passed to gcloud-node and sub-modules are <ahref="#/docs">outlined here</a>.
Copy file name to clipboardExpand all lines: docs/troubleshooting.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
## 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.`
2
2
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".
4
4
5
5
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.
0 commit comments