-
Notifications
You must be signed in to change notification settings - Fork 2k
/
getOccurrence.js
32 lines (27 loc) · 1.17 KB
/
getOccurrence.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// sample-metadata:
// title: Get Occurrence
// description: Retrieves and prints a specified Occurrence
// usage: node getOccurrence.js "project-id" "occurrence-id"
async function main(
projectId = 'your-project-id', // Your GCP Project ID
occurrenceId = 'my-occurrence' // The API-generated identifier associated with the occurrence
) {
// [START containeranalysis_get_occurrence]
/**
* TODO(developer): Uncomment these variables before running the sample
*/
// const projectId = 'your-project-id', // Your GCP Project ID
// const occurrenceId = 'my-occurrence' // The API-generated identifier associated with the occurrence
// Import the library and create a client
const containerAnalysis = require('@google-cloud/containeranalysis');
const client = new containerAnalysis.v1beta1.GrafeasV1Beta1Client();
// Get full path to occurrence
const formattedName = client.occurrencePath(projectId, occurrenceId);
// Retrieves the specified occurrence
const [occurrence] = await client.getOccurrence({
name: formattedName,
});
console.log(`Occurrence name: ${occurrence.name}`);
// [END containeranalysis_get_occurrence]
}
main(...process.argv.slice(2));