-
Notifications
You must be signed in to change notification settings - Fork 2k
/
getOccurrence.js
29 lines (24 loc) · 1.03 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
// Retrieves and prints a specified Occurrence from the server
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 grafeas = require('@google-cloud/grafeas');
const client = new grafeas.v1.GrafeasClient();
// 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));