-
Notifications
You must be signed in to change notification settings - Fork 595
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nodejs GAPIC: Bigquerydatatransfer v1 (#1)
- Loading branch information
Showing
16 changed files
with
5,535 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,31 @@ | ||
# nodejs-bigquery-data-transfer | ||
# Node.js Client for BigQuery Data Transfer API ([Alpha](https://github.com/GoogleCloudPlatform/google-cloud-node#versioning)) | ||
|
||
[BigQuery Data Transfer API][Product Documentation]: | ||
Transfers data from partner SaaS applications to Google BigQuery on a | ||
scheduled, managed basis. | ||
- [Client Library Documentation][] | ||
- [Product Documentation][] | ||
|
||
## Quick Start | ||
In order to use this library, you first need to go through the following | ||
steps: | ||
|
||
1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project) | ||
2. [Enable the BigQuery Data Transfer API.](https://console.cloud.google.com/apis/api/bigquerydatatransfer) | ||
3. [Setup Authentication.](https://googlecloudplatform.github.io/google-cloud-node/#/docs/google-cloud/master/guides/authentication) | ||
|
||
### Installation | ||
``` | ||
$ npm install --save datatransfer | ||
``` | ||
|
||
### Next Steps | ||
- Read the [Client Library Documentation][] for BigQuery Data Transfer API | ||
to see other available methods on the client. | ||
- Read the [BigQuery Data Transfer API Product documentation][Product Documentation] | ||
to learn more about the product and see How-to Guides. | ||
- View this [repository's main README](https://github.com/GoogleCloudPlatform/google-cloud-node/blob/master/README.md) | ||
to see the full list of Cloud APIs that we cover. | ||
|
||
[Client Library Documentation]: https://googlecloudplatform.github.io/google-cloud-node/#/docs/bigquerydatatransfer | ||
[Product Documentation]: https://cloud.google.com/bigquerydatatransfer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"repository": "GoogleCloudPlatform/google-cloud-node", | ||
"name": "datatransfer", | ||
"version": "0.7.1", | ||
"author": "Google Inc", | ||
"description": "BigQuery Data Transfer API client for Node.js", | ||
"main": "src/index.js", | ||
"files": [ | ||
"protos", | ||
"src", | ||
"AUTHORS", | ||
"COPYING" | ||
], | ||
"keywords": [ | ||
"google apis client", | ||
"google api client", | ||
"google apis", | ||
"google api", | ||
"google", | ||
"google cloud platform", | ||
"google cloud", | ||
"cloud", | ||
"google bigquerydatatransfer", | ||
"bigquerydatatransfer", | ||
"BigQuery Data Transfer API" | ||
], | ||
"dependencies": { | ||
"google-gax": "^0.14.2", | ||
"lodash.merge": "^4.6.0" | ||
}, | ||
"devDependencies": { | ||
"mocha": "^3.2.0", | ||
"through2": "^2.0.3" | ||
}, | ||
"scripts": { | ||
"publish-module": "node ../../scripts/publish.js bigquerydatatransfer", | ||
"smoke-test": "mocha smoke-test/*.js --timeout 5000", | ||
"test": "mocha test/*.js" | ||
}, | ||
"license": "Apache-2.0", | ||
"engines": { | ||
"node": ">=4.0.0" | ||
} | ||
} |
Oops, something went wrong.