-
Notifications
You must be signed in to change notification settings - Fork 2k
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
18e9d9d
commit 7ab65b4
Showing
3 changed files
with
152 additions
and
96 deletions.
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 |
---|---|---|
@@ -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; | ||
}); |
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,59 @@ | ||
/** | ||
* 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: Get Batch Asset History | ||
// description: Batch get history of assets. | ||
// usage: node getBatchAssetHistory "//storage.googleapis.com/<BUCKET_NAME>" | ||
|
||
async function main(assetNames) { | ||
// [START asset_quickstart_batch_get_assets_history] | ||
const util = require('util'); | ||
const {AssetServiceClient} = require('@google-cloud/asset'); | ||
|
||
const client = new AssetServiceClient(); | ||
|
||
async function batchGetAssetsHistory() { | ||
const projectId = await client.getProjectId(); | ||
const projectResource = client.projectPath(projectId); | ||
// TODO(developer): Choose asset names, such as //storage.googleapis.com/[YOUR_BUCKET_NAME]. | ||
// const assetNames = ['ASSET_NAME1', 'ASSET_NAME2', ...]; | ||
|
||
const request = { | ||
parent: projectResource, | ||
assetNames: assetNames.split(','), | ||
contentType: 'RESOURCE', | ||
readTimeWindow: { | ||
startTime: { | ||
seconds: Math.floor(new Date().getTime() / 1000), | ||
}, | ||
}, | ||
}; | ||
|
||
// Handle the operation using the promise pattern. | ||
const result = await client.batchGetAssetsHistory(request); | ||
// Do things with with the response. | ||
console.log(util.inspect(result, {depth: null})); | ||
// [END asset_quickstart_batch_get_assets_history] | ||
} | ||
batchGetAssetsHistory(); | ||
} | ||
|
||
main(...process.argv.slice(2)).catch(err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); |
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