-
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.
samples: add relationship support samples (#560)
- Loading branch information
Showing
8 changed files
with
161 additions
and
23 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
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
66 changes: 66 additions & 0 deletions
66
packages/google-cloud-asset/samples/exportAssetsBigquery.js
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,66 @@ | ||
// Copyright 2021 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 To BigQuery | ||
// description: Export asserts to specified BigQuery table. | ||
// usage: node exportAssetsBigquery.js <projects/project_id/datasets/dataset_id> <table_name> | ||
|
||
async function main(dataSet, table) { | ||
// [START asset_quickstart_export_assets_bigquery] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// const dataSet = 'projects/project_id/datasets/dataset_id'; | ||
// const table = 'mytable'; | ||
|
||
const {AssetServiceClient} = require('@google-cloud/asset'); | ||
const client = new AssetServiceClient(); | ||
|
||
async function exportAssetsBigquery() { | ||
const projectId = await client.getProjectId(); | ||
const projectResource = client.projectPath(projectId); | ||
const dataset = dataSet; | ||
|
||
const request = { | ||
parent: projectResource, | ||
outputConfig: { | ||
bigqueryDestination: { | ||
dataset: `projects/${projectId}/${dataset}`, | ||
table: table, | ||
force: true, | ||
}, | ||
}, | ||
}; | ||
|
||
// 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); | ||
} | ||
|
||
exportAssetsBigquery(); | ||
// [END asset_quickstart_export_assets_bigquery] | ||
} | ||
|
||
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
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