-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: use repo-meta to generate README (#130)
- Loading branch information
1 parent
4f88558
commit 092fa4c
Showing
10 changed files
with
348 additions
and
168 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
{ | ||
"name": "asset", | ||
"name_pretty": "Cloud Asset Inventory", | ||
"product_documentation": "https://cloud.google.com/resource-manager/docs/cloud-asset-inventory/overview", | ||
"client_documentation": "https://cloud.google.com/nodejs/docs/reference/asset/latest/", | ||
"issue_tracker": "https://issuetracker.google.com/savedsearches/559757", | ||
"release_level": "alpha", | ||
"language": "nodejs", | ||
"repo": "googleapis/nodejs-asset", | ||
"distribution_name": "@google-cloud/asset", | ||
"api_id": "cloudasset.googleapis.com", | ||
"requires_billing": true | ||
} |
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
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
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,86 @@ | ||
[//]: # "This README.md file is auto-generated, all changes to this file will be lost." | ||
[//]: # "To regenerate it, use `python -m synthtool`." | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# [Cloud Asset Inventory: Node.js Samples](https://github.com/googleapis/nodejs-asset) | ||
|
||
[![Open in Cloud Shell][shell_img]][shell_link] | ||
|
||
|
||
|
||
## Table of Contents | ||
|
||
* [Before you begin](#before-you-begin) | ||
* [Samples](#samples) | ||
* [Export Assets](#export-assets) | ||
* [Get Batch Asset History](#get-batch-asset-history) | ||
* [Asset History Quickstart](#asset-history-quickstart) | ||
|
||
## Before you begin | ||
|
||
Before running the samples, make sure you've followed the steps outlined in | ||
[Using the client library](https://github.com/googleapis/nodejs-asset#using-the-client-library). | ||
|
||
## Samples | ||
|
||
|
||
|
||
### Export Assets | ||
|
||
Export asserts to specified dump file path. | ||
|
||
View the [source code](https://github.com/googleapis/nodejs-asset/blob/master/samples/exportAssets.js). | ||
|
||
[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-asset&page=editor&open_in_editor=samples/exportAssets.js,samples/README.md) | ||
|
||
__Usage:__ | ||
|
||
|
||
`node exportAssets.js <gs:my-bucket/my-assets.txt>` | ||
|
||
|
||
----- | ||
|
||
|
||
|
||
|
||
### Get Batch Asset History | ||
|
||
Batch get history of assets. | ||
|
||
View the [source code](https://github.com/googleapis/nodejs-asset/blob/master/samples/getBatchAssetHistory.js). | ||
|
||
[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-asset&page=editor&open_in_editor=samples/getBatchAssetHistory.js,samples/README.md) | ||
|
||
__Usage:__ | ||
|
||
|
||
`node getBatchAssetHistory "storage.googleapis.com/<BUCKET_NAME>"` | ||
|
||
|
||
----- | ||
|
||
|
||
|
||
|
||
### Asset History Quickstart | ||
|
||
Batch get history of assets. | ||
|
||
View the [source code](https://github.com/googleapis/nodejs-asset/blob/master/samples/quickstart.js). | ||
|
||
[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-asset&page=editor&open_in_editor=samples/quickstart.js,samples/README.md) | ||
|
||
__Usage:__ | ||
|
||
|
||
`node getBatchAssetHistory "storage.googleapis.com/<BUCKET_NAME>"` | ||
|
||
|
||
|
||
|
||
|
||
|
||
[shell_img]: https://gstatic.com/cloudssh/images/open-btn.png | ||
[shell_link]: https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-asset&page=editor&open_in_editor=samples/README.md | ||
[product-docs]: https://cloud.google.com/resource-manager/docs/cloud-asset-inventory/overview |
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,60 @@ | ||
/** | ||
* Copyright 2018, Google, LLC. | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
// sample-metadata: | ||
// title: Export Assets | ||
// description: Export asserts to specified dump file path. | ||
// usage: node exportAssets.js <gs://my-bucket/my-assets.txt> | ||
|
||
async function main(dumpFilePath) { | ||
// [START asset_quickstart_export_assets] | ||
const {AssetServiceClient} = require('@google-cloud/asset'); | ||
const client = new AssetServiceClient(); | ||
|
||
async function exportAssets() { | ||
const projectId = await client.getProjectId(); | ||
const projectResource = client.projectPath(projectId); | ||
|
||
// TODO(developer): choose the dump file path | ||
// const dumpFilePath = 'Dump file path, e.g.: gs://<my_bucket>/<my_asset_file>' | ||
|
||
const request = { | ||
parent: projectResource, | ||
outputConfig: { | ||
gcsDestination: { | ||
uri: dumpFilePath, | ||
}, | ||
}, | ||
}; | ||
|
||
// Handle the operation using the promise pattern. | ||
const [operation] = await client.exportAssets(request); | ||
|
||
// Operation#promise starts polling for the completion of the operation. | ||
const [result] = await operation.promise(); | ||
|
||
// Do things with with the response. | ||
console.log(result); | ||
} | ||
exportAssets(); | ||
// [END asset_quickstart_export_assets] | ||
} | ||
|
||
main(...process.argv.slice(2)).catch(err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); |
Oops, something went wrong.